Adds in item scrubber
Fixes vault item highlight issue with new vault GUI
Begin adding some functions from Tinkers Construct, as well as assets.
Add a nether resource dimension
This commit is contained in:
Tara 2023-01-16 18:22:40 -07:00
parent f3bce6751b
commit 2a3fec5d66
140 changed files with 2984 additions and 215 deletions

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "otemod:block/cobalt_block"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "otemod:block/cobalt_ore"
}
}
}

View file

@ -0,0 +1,43 @@
{
"multipart": [
{
"apply": { "model": "otemod:block/gold_bars/post_ends" }
},
{
"when": { "north": "false", "west": "false", "south": "false", "east": "false" },
"apply": { "model": "otemod:block/gold_bars/post" }
},
{
"when": { "north": "true", "west": "false", "south": "false", "east": "false" },
"apply": { "model": "otemod:block/gold_bars/cap" }
},
{
"when": { "north": "false", "west": "false", "south": "false", "east": "true" },
"apply": { "model": "otemod:block/gold_bars/cap", "y": 90 }
},
{
"when": { "north": "false", "west": "false", "south": "true", "east": "false" },
"apply": { "model": "otemod:block/gold_bars/cap_alt" }
},
{
"when": { "north": "false", "west": "true", "south": "false", "east": "false" },
"apply": { "model": "otemod:block/gold_bars/cap_alt", "y": 90 }
},
{
"when": { "north": "true" },
"apply": { "model": "otemod:block/gold_bars/side" }
},
{
"when": { "east": "true" },
"apply": { "model": "otemod:block/gold_bars/side", "y": 90 }
},
{
"when": { "south": "true" },
"apply": { "model": "otemod:block/gold_bars/side_alt" }
},
{
"when": { "west": "true" },
"apply": { "model": "otemod:block/gold_bars/side_alt", "y": 90 }
}
]
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "otemod:block/item_scrubber"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "otemod:block/nether_grout"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "otemod:block/raw_cobalt_ore"
}
}
}

View file

@ -0,0 +1,8 @@
{
"variants": {
"facing=north": { "model": "otemod:block/scorched_table" },
"facing=south": { "model": "otemod:block/scorched_table", "y": 180 },
"facing=west": { "model": "otemod:block/scorched_table", "y": 270 },
"facing=east": { "model": "otemod:block/scorched_table", "y": 90 }
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 173 KiB

View file

@ -12,12 +12,25 @@
"item.otemod.eternium_fragment": "Fragmented Eternium",
"item.otemod.eternium_dust": "Eternium Dust",
"item.otemod.aurora_compound": "Aurora Compound",
"item.otemod.raw_cobalt": "Raw Cobalt",
"item.otemod.cobalt_nugget": "Cobalt Nugget",
"item.otemod.cobalt_ingot": "Cobalt Ingot",
"item.otemod.pattern": "Pattern",
"item.otemod.scorched_brick": "Scorched Brick",
"item.otemod.copper_can": "Copper Can",
"block.otemod.eternium_ore_block": "Eternium Ore",
"block.otemod.deepslate_eternium_ore_block": "Deepslate Eternium Ore",
"block.otemod.aurora_block": "Aurora Block",
"block.otemod.aurora_door": "Aurora Door",
"block.otemod.clear_glass_block": "Clear Glass Block",
"block.otemod.cobalt_ore": "Cobalt Ore",
"block.otemod.raw_cobalt_ore": "Raw Cobalt Ore",
"block.otemod.gold_bars": "Gold Bars",
"block.otemod.cobalt_block": "Cobalt",
"block.otemod.nether_grout": "Nether Grout",
"block.otemod.scorched_table": "Scorched Table",
"block.otemod.item_scrubber": "Item Scrubber",
"dev.zontreck.otemod.msgs.only_player": "§cOnly players are allowed to execute this command",
@ -27,9 +40,5 @@
"dev.zontreck.otemod.msgs.warps.set.success": "Warp successfully created",
"dev.zontreck.otemod.msgs.warps.del.success": "Warp successfully deleted",
"dev.zontreck.otemod.msgs.warps.set.fail": "Failed to create warp",
"dev.zontreck.otemod.msgs.warps.del.fail": "Failed to delete warp",
"minecraft.player.joined": "",
"minecraft.player.joined.renamed": "",
"minecraft.player.quit": ""
"dev.zontreck.otemod.msgs.warps.del.fail": "Failed to delete warp"
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "otemod:block/cobalt_block"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "otemod:block/cobalt_ore"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "block/iron_bars_cap",
"render_type": "minecraft:translucent",
"textures": {
"particle": "otemod:block/gold_bars",
"bars": "otemod:block/gold_bars",
"edge": "otemod:block/gold_bars"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "block/iron_bars_cap_alt",
"render_type": "minecraft:translucent",
"textures": {
"particle": "otemod:block/gold_bars",
"bars": "otemod:block/gold_bars",
"edge": "otemod:block/gold_bars"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "block/iron_bars_post",
"render_type": "minecraft:translucent",
"textures": {
"particle": "otemod:block/gold_bars",
"bars": "otemod:block/gold_bars"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "block/iron_bars_post_ends",
"render_type": "minecraft:translucent",
"textures": {
"particle": "otemod:block/gold_bars",
"edge": "otemod:block/gold_bars"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "block/iron_bars_side",
"render_type": "minecraft:translucent",
"textures": {
"particle": "otemod:block/gold_bars",
"bars": "otemod:block/gold_bars",
"edge": "otemod:block/gold_bars"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "block/iron_bars_side_alt",
"render_type": "minecraft:translucent",
"textures": {
"particle": "otemod:block/gold_bars",
"bars": "otemod:block/gold_bars",
"edge": "otemod:block/gold_bars"
}
}

View file

@ -0,0 +1,269 @@
{
"credit": "Made with Blockbench",
"render_type": "minecraft:translucent",
"textures": {
"0": "otemod:block/scrubber/scrubber_top"
},
"elements": [
{
"from": [0, 0, 0],
"to": [2, 2, 2],
"color": 2,
"faces": {
"north": {"uv": [0, 0, 2, 2], "texture": "#0"},
"east": {"uv": [0, 0, 2, 2], "texture": "#0"},
"south": {"uv": [0, 0, 2, 2], "texture": "#0"},
"west": {"uv": [0, 0, 2, 2], "texture": "#0"},
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
}
},
{
"from": [0, 0, 14],
"to": [2, 2, 16],
"color": 2,
"faces": {
"north": {"uv": [0, 0, 2, 2], "texture": "#0"},
"east": {"uv": [0, 0, 2, 2], "texture": "#0"},
"south": {"uv": [0, 0, 2, 2], "texture": "#0"},
"west": {"uv": [0, 0, 2, 2], "texture": "#0"},
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
}
},
{
"from": [0, 10, 0],
"to": [2, 12, 2],
"color": 2,
"faces": {
"north": {"uv": [0, 0, 2, 2], "texture": "#0"},
"east": {"uv": [0, 0, 2, 2], "texture": "#0"},
"south": {"uv": [0, 0, 2, 2], "texture": "#0"},
"west": {"uv": [0, 0, 2, 2], "texture": "#0"},
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
}
},
{
"from": [0, 10, 14],
"to": [2, 12, 16],
"color": 2,
"faces": {
"north": {"uv": [0, 0, 2, 2], "texture": "#0"},
"east": {"uv": [0, 0, 2, 2], "texture": "#0"},
"south": {"uv": [0, 0, 2, 2], "texture": "#0"},
"west": {"uv": [0, 0, 2, 2], "texture": "#0"},
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
}
},
{
"from": [0, 2, 0],
"to": [1, 10, 1],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 1, 8], "texture": "#0"},
"east": {"uv": [0, 0, 1, 8], "texture": "#0"},
"south": {"uv": [0, 0, 1, 8], "texture": "#0"},
"west": {"uv": [0, 0, 1, 8], "texture": "#0"},
"up": {"uv": [0, 0, 1, 1], "texture": "#0"},
"down": {"uv": [0, 0, 1, 1], "texture": "#0"}
}
},
{
"from": [0, 2, 15],
"to": [1, 10, 16],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 1, 8], "texture": "#0"},
"east": {"uv": [0, 0, 1, 8], "texture": "#0"},
"south": {"uv": [0, 0, 1, 8], "texture": "#0"},
"west": {"uv": [0, 0, 1, 8], "texture": "#0"},
"up": {"uv": [0, 0, 1, 1], "texture": "#0"},
"down": {"uv": [0, 0, 1, 1], "texture": "#0"}
}
},
{
"from": [0, 0, 2],
"to": [1, 1, 14],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 1, 1], "texture": "#0"},
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
"south": {"uv": [0, 0, 1, 1], "texture": "#0"},
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
"up": {"uv": [0, 0, 1, 12], "texture": "#0"},
"down": {"uv": [0, 0, 1, 12], "texture": "#0"}
}
},
{
"from": [0, 11, 2],
"to": [1, 12, 14],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 1, 1], "texture": "#0"},
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
"south": {"uv": [0, 0, 1, 1], "texture": "#0"},
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
"up": {"uv": [0, 0, 1, 12], "texture": "#0"},
"down": {"uv": [0, 0, 1, 12], "texture": "#0"}
}
},
{
"from": [14, 0, 14],
"to": [16, 2, 16],
"color": 2,
"faces": {
"north": {"uv": [0, 0, 2, 2], "texture": "#0"},
"east": {"uv": [0, 0, 2, 2], "texture": "#0"},
"south": {"uv": [0, 0, 2, 2], "texture": "#0"},
"west": {"uv": [0, 0, 2, 2], "texture": "#0"},
"up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}
}
},
{
"from": [14, 0, 0],
"to": [16, 2, 2],
"color": 2,
"faces": {
"north": {"uv": [0, 0, 2, 2], "texture": "#0"},
"east": {"uv": [0, 0, 2, 2], "texture": "#0"},
"south": {"uv": [0, 0, 2, 2], "texture": "#0"},
"west": {"uv": [0, 0, 2, 2], "texture": "#0"},
"up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}
}
},
{
"from": [14, 10, 14],
"to": [16, 12, 16],
"color": 2,
"faces": {
"north": {"uv": [0, 0, 2, 2], "texture": "#0"},
"east": {"uv": [0, 0, 2, 2], "texture": "#0"},
"south": {"uv": [0, 0, 2, 2], "texture": "#0"},
"west": {"uv": [0, 0, 2, 2], "texture": "#0"},
"up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}
}
},
{
"from": [14, 10, 0],
"to": [16, 12, 2],
"color": 2,
"faces": {
"north": {"uv": [0, 0, 2, 2], "texture": "#0"},
"east": {"uv": [0, 0, 2, 2], "texture": "#0"},
"south": {"uv": [0, 0, 2, 2], "texture": "#0"},
"west": {"uv": [0, 0, 2, 2], "texture": "#0"},
"up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}
}
},
{
"from": [15, 2, 15],
"to": [16, 10, 16],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 1, 8], "texture": "#0"},
"east": {"uv": [0, 0, 1, 8], "texture": "#0"},
"south": {"uv": [0, 0, 1, 8], "texture": "#0"},
"west": {"uv": [0, 0, 1, 8], "texture": "#0"},
"up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}
}
},
{
"from": [2, 0, 15],
"to": [14, 1, 16],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
"east": {"uv": [0, 0, 1, 1], "texture": "#0"},
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
"west": {"uv": [0, 0, 1, 1], "texture": "#0"},
"up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}
}
},
{
"from": [2, 11, 15],
"to": [14, 12, 16],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
"east": {"uv": [0, 0, 1, 1], "texture": "#0"},
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
"west": {"uv": [0, 0, 1, 1], "texture": "#0"},
"up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}
}
},
{
"from": [2, 11, 0],
"to": [14, 12, 1],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
"east": {"uv": [0, 0, 1, 1], "texture": "#0"},
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
"west": {"uv": [0, 0, 1, 1], "texture": "#0"},
"up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}
}
},
{
"from": [2, 0, 0],
"to": [14, 1, 1],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
"east": {"uv": [0, 0, 1, 1], "texture": "#0"},
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
"west": {"uv": [0, 0, 1, 1], "texture": "#0"},
"up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}
}
},
{
"from": [15, 2, 0],
"to": [16, 10, 1],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 1, 8], "texture": "#0"},
"east": {"uv": [0, 0, 1, 8], "texture": "#0"},
"south": {"uv": [0, 0, 1, 8], "texture": "#0"},
"west": {"uv": [0, 0, 1, 8], "texture": "#0"},
"up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}
}
},
{
"from": [15, 0, 2],
"to": [16, 1, 14],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 1, 1], "texture": "#0"},
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
"south": {"uv": [0, 0, 1, 1], "texture": "#0"},
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
"up": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"}
}
},
{
"from": [15, 11, 2],
"to": [16, 12, 14],
"color": 7,
"faces": {
"north": {"uv": [0, 0, 1, 1], "texture": "#0"},
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
"south": {"uv": [0, 0, 1, 1], "texture": "#0"},
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
"up": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"},
"down": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"}
}
}
]
}

View file

@ -0,0 +1,12 @@
{
"parent": "minecraft:block/cube",
"textures": {
"down": "otemod:block/scrubber/scrubber_bottom",
"up": "otemod:block/scrubber/scrubber_top",
"south": "otemod:block/scrubber/scrubber_front",
"west": "otemod:block/scrubber/scrubber_left",
"north": "otemod:block/scrubber/scrubber_back",
"east": "otemod:block/scrubber/scrubber_right"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "otemod:block/nether_grout"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "otemod:block/raw_cobalt_ore"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "otemod:block/template/table",
"textures": {
"side": "otemod:block/scorched_table/table_side",
"top": "otemod:block/scorched_table/table_top",
"bottom": "otemod:block/scorched_table/table_bottom"
}
}

View file

@ -0,0 +1,114 @@
{
"loader": "otemod:casting",
"parent": "block/block",
"textures": {
"particle": "#side"
},
"elements": [
{
"name": "Table outer",
"from": [ 0, 10, 0 ],
"to": [ 16, 16, 16 ],
"faces": {
"north": { "texture": "#side", "cullface": "north" },
"east": { "texture": "#side", "cullface": "east" },
"south": { "texture": "#side", "cullface": "south" },
"west": { "texture": "#side", "cullface": "west" },
"down": { "texture": "#bottom" }
}
},
{
"name": "Table inner",
"from": [ 15, 16, 15 ],
"to": [ 1, 15, 1 ],
"faces": {
"north": { "texture": "#side", "cullface": "up" },
"east": { "texture": "#side", "cullface": "up" },
"south": { "texture": "#side", "cullface": "up" },
"west": { "texture": "#side", "cullface": "up" },
"up": { "texture": "#top", "cullface": "up" }
}
},
{
"name": "Northwest leg",
"from": [ 0, 0, 0] ,
"to": [ 4, 10, 4 ],
"faces": {
"north": { "texture": "#side", "cullface": "north" },
"east": { "texture": "#side" },
"south": { "texture": "#side" },
"west": { "texture": "#side", "cullface": "west" },
"down": { "texture": "#bottom", "cullface": "down" }
}
},
{
"name": "Northeast leg",
"from": [ 12, 0, 0 ],
"to": [ 16, 10, 4 ],
"faces": {
"north": { "texture": "#side", "cullface": "north" },
"east": { "texture": "#side", "cullface": "east" },
"south": { "texture": "#side"},
"west": { "texture": "#side"},
"down": { "texture": "#bottom", "cullface": "down" }
}
},
{
"name": "Southeast leg",
"from": [ 12, 0, 12 ],
"to": [ 16, 10, 16 ],
"faces": {
"north": { "texture": "#side" },
"east": { "texture": "#side", "cullface": "east" },
"south": { "texture": "#side", "cullface": "south" },
"west": { "texture": "#side" },
"down": { "texture": "#bottom", "cullface": "down" }
}
},
{
"name": "Southwest leg",
"from": [ 0, 0, 12 ],
"to": [ 4, 10, 16 ],
"faces": {
"north": { "texture": "#side" },
"east": { "texture": "#side" },
"south": { "texture": "#side", "cullface": "south" },
"west": { "texture": "#side", "cullface": "west" },
"down": { "texture": "#bottom", "cullface": "down" }
}
},
{
"name": "West top edge",
"from": [ 0, 16, 0 ],
"to": [ 1, 16, 16 ],
"faces": { "up": { "texture": "#top", "cullface": "up" }}
},
{
"name": "East top edge",
"from": [ 15, 16, 0 ],
"to": [ 16, 16, 16 ],
"faces": { "up": { "texture": "#top", "cullface": "up" }}
},
{
"name": "North top edge",
"from": [ 1, 16, 0 ],
"to": [ 15, 16, 1 ],
"faces": { "up": { "texture": "#top", "cullface": "up" }}
},
{
"name": "South top edge",
"from": [ 1, 16, 15 ],
"to": [ 15, 16, 16 ],
"faces": { "up": { "texture": "#top", "cullface": "up" }}
}
],
"fluid": {
"from": [ 1, 15, 1 ],
"to": [ 15, 15.9, 15 ],
"faces": { "up": {} }
},
"items": [
{ "center": [ 8, 15.5, 8 ], "size": 14, "x": 270, "y": 180, "transform": "fixed" },
{ "center": [ 8, 15.5, 8 ], "size": 14.1, "x": 270, "y": 180, "transform": "fixed" }
]
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/cobalt_block"
}

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:item/cobalt_ingot"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:item/cobalt_nugget"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/cobalt_ore"
}

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:block/gold_bars"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/item_scrubber"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/nether_grout"
}

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:item/pattern"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:item/raw_cobalt"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/raw_cobalt_ore"
}

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:item/scorched_brick"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/scorched_table"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 430 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B