commit a8f7f7043ae147c93a36f20d9e01ae145b8b0b8b Author: Lars Mueller Date: Fri Jun 19 13:34:37 2020 +0200 Setup diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..b6e6351 --- /dev/null +++ b/Readme.md @@ -0,0 +1,29 @@ +# Online Craftguide (`online_craftguide`) + +Generates a static ("serverless") online craftguide. + +## About + +See this [Minetest Game craftguide](https://appgurueu.github.io/online_craftguide/) for an example. +Depends on [`modlib`](https://github.com/appgurueu/modlib). Requires inventory images rendered using [`online_craftguide_csm`](https://github.com/appgurueu/modlib) to work (which are not copied automatically). Code written by Lars Mueller aka LMD or appguru(eu) and licensed under the MIT license. The Minetest logo is licensed as CC BY-SA 3.0 with credits going to erlehmann. Generated inventory images (files in the `docs/images` folder) are derived from [Minetest Game](https://github.com/minetest/minetest_game) and therefore CC BY-SA 3.0, with credits going to [various contributors](https://github.com/minetest/minetest_game/blob/master/LICENSE.txt). Uses & embeds [Bootstrap icons](https://icons.getbootstrap.com) which are licensed under the MIT license, with credits going to [mdo](https://github.com/mdo). + +## Links + +* [GitHub](https://github.com/appgurueu/online_craftguide) - sources, issue tracking, contributing +* [Discord](https://discordapp.com/invite/ysP74by) - discussion, chatting +* [Minetest Forum](https://forum.minetest.net/viewtopic.php?f=9&t=24945) - (more organized) discussion +* [ContentDB](https://content.minetest.net/packages/LMD/online_craftguide) - releases (cloning from GitHub is recommended) + +## Features + +* Responsive website using Bootstrap +* Good layout & design +* Search + +## Instructions + +* Install [`modlib`](https://github.com/appgurueu/modlib) and this mod as well as the [`online_craftguide_csm`](https://github.com/appgurueu/modlib) +* Join a game with the `online_craftguide_csm` and wait for the rendering to finish +* Copy the `online_craftguide_csm/images` folder to your `online_craftguide/docs/images` folder +* Start a game with the mod enabled - it will generate the website for you +* Your online craftguide is now stored in your `online_craftguide/docs` folder \ No newline at end of file diff --git a/docs/craftguide.js b/docs/craftguide.js new file mode 100644 index 0000000..fd49b49 --- /dev/null +++ b/docs/craftguide.js @@ -0,0 +1,204 @@ +"use strict"; +function searchItems(query) { + let filtered = []; + for (let itemname in items) { + if (!query) { + filtered.push(itemname); + } else { + let item = items[itemname]; + for (let word of query) { + word = word.toLowerCase(); + if (itemname.indexOf(word) >= 0 || item.searchable_description.indexOf(word) >= 0) { + filtered.push(itemname); + break; + } + } + } + } + filtered.sort(); + return filtered; +} + +function getItemName(required_groups) { + let items = {}; + for (let itemname in groups[required_groups[0]]) + items[itemname] = true; + for (let i=1; i < required_groups.length; i++) { + let more_items = groups[required_groups[1]]; + for (let itemname in items) + if (!more_items[itemname]) delete items[itemname]; + } + for (let itemname in items) + return itemname; +} + +const max_wear = Math.pow(2, 16)-1; +const no_item = '
Nothing
'; +function itemInfo(itemname, number, highlighted) { + if (!itemname) + return no_item; + let groups = itemname.startsWith("group:") ? itemname.substr("group:".length).split(","):""; + if (groups) { + itemname = getItemName(groups); + for (let i in groups) + groups[i] = ''+groups[i].replace(/_/g, " ")+''; + groups = groups.join(" "); + } + let img = '?'; + let overlay_content = groups; + let tooltip = "No such item"; + let justify_overlay_content = "end"; + if (itemname) { + let item = items[itemname]; + var casual_name = itemname.replace(":", "_"); + img = '' + itemname + ''; + tooltip = item.title; + let is_tool = item.type == "tool"; + if (is_tool) { + if (number > 0) { + let percentage = 100*(max_wear-number)/max_wear; + overlay_content += '
'; + justify_overlay_content = "center"; + } + } else if (number > 1) { + overlay_content += '' + number + ''; + } + } + if (overlay_content) + overlay_content = '
' + overlay_content + '
'; + let data = itemname ? 'id="item-' + casual_name + '" data-itemname="' + itemname + '"':""; + return '
' + img + overlay_content + '
'; +} + +function itemList(filtered) { + let html = ""; + for (let itemname of filtered) { + html += '
' + itemInfo(itemname) + '
'; + } + return html; +} + +function renderItemList(filtered) { + $("#items").html(itemList(filtered)); +} + +function viewCraft(craft, highlighted) { + let html = '
'; + let width = craft.width || craft.items.length; + let height = Math.ceil(craft.items.length/width); + + for (let y = 0; y < height; y++) { + let index_base = y * width; + html += '
'; + for (let x = 0; x < width; x++) { + let stack = craft.items[index_base + x]; + html += '
' + (stack ? itemInfo(...stack, stack[0] == highlighted):itemInfo()) + "
"; + } + html += "
"; + } + let method = craft.method == "normal" ? "":''+craft.method+''; + method += craft.shapeless ? 'shapeless':""; + return html+'
'+method+arrow+itemInfo(...craft.output)+"
"; +} + +function groupInfo(groupname) { + for (var itemname in groups[groupname]) break; + $("#modal-item-info-label").html('' + itemname + '' + groupname.replace(/\_/g, " ") + ""); + let items = []; + for (itemname in groups[groupname]) { + items.push(itemname); + } + items.sort(); + $("#modal-item-info .modal-body").html('
' + itemList(items) + '
'); + updateListeners('#modal-item-info'); + updateTooltips('#modal-item-info'); +} + +function detailedItemInfo(itemname) { + let casual_name = itemname.replace(":", "_"); + let item = items[itemname]; + let body = '
'; + const addDefinition = (property, value) => body += '
' + property + '
' + value + '
'; + addDefinition("Type", {"craft": "Item", "tool": "Tool", "node": "Block"}[item.type]); + if (item.description) + addDefinition("Description", item.description); + if (item.groups) { + let groups = []; + for (let group in item.groups) { + groups.push({group: group.replace(/\_/g, " "), rating: item.groups[group], data: group}); + } + groups.sort((a, b) => a.rating < b.rating ? -1 : 1); + for (let index in groups) { + let group = groups[index]; + // badge-rating-' + group.rating + ' + groups[index] = ''; + } + addDefinition("Groups", groups.join(" ")); + } + body += "
"; + if (item.aliases) { + body += "

Aliases

"; + } + if (item.crafts) { + body += '
Recipes ' + item.crafts.length + '
'; + let recipes = []; + for (let craft of item.crafts) { + recipes.push(viewCraft(crafts[craft])); + } + body += recipes.join("
"); + } + if (item.usages) { + body += '
Usages ' + item.usages.length + '
'; + let usages = []; + for (let usage of item.usages) { + usages.push(viewCraft(crafts[usage], itemname)); + } + body += usages.join("
"); + } + let modal = $('#modal-item-info'); + modal.modal("hide"); + $("#modal-item-info-label").html('' + itemname + '' + item.title + " (" + itemname + ")"); + $("#modal-item-info .modal-body").html(body); + updateListeners('#modal-item-info'); + updateTooltips('#modal-item-info'); + modal.modal("show"); + $(".badge-group").on("click", function(event) { + let groupname = event.currentTarget.attributes["data-group"].value; + groupInfo(groupname); + }) +} + +function updateTooltips(base) { + $((base ? base+" ":"") + '[data-toggle="tooltip"]').tooltip({ + sanitize: false + }); +} + +function updateListeners(base) { + $((base ? base+" ":"") + "div.card-item").on("click", function (event) { + let itemname = event.currentTarget.attributes["data-itemname"].value; + $('#recipe *[data-toggle="tooltip"]').tooltip("dispose"); + detailedItemInfo(itemname); + $('#recipe *[data-toggle="tooltip"]').tooltip({ + sanitize: false + }); + }); +} + +function updateSearch() { + renderItemList(searchItems($("#search").val().split(/\s+/g))); + updateTooltips(); + updateListeners(); +} + +$("#search").on("change", updateSearch); +$("#search-btn").on("input", updateSearch); +$(function() { + updateSearch(); +}); + +renderItemList(searchItems()); \ No newline at end of file diff --git a/docs/favicon.ico b/docs/favicon.ico new file mode 100644 index 0000000..40247b8 Binary files /dev/null and b/docs/favicon.ico differ diff --git a/docs/favicon.png b/docs/favicon.png new file mode 100644 index 0000000..502c6f4 Binary files /dev/null and b/docs/favicon.png differ diff --git a/docs/images/CraftItem.png b/docs/images/CraftItem.png new file mode 100644 index 0000000..ea95e84 Binary files /dev/null and b/docs/images/CraftItem.png differ diff --git a/docs/images/MBOItem.png b/docs/images/MBOItem.png new file mode 100644 index 0000000..ea95e84 Binary files /dev/null and b/docs/images/MBOItem.png differ diff --git a/docs/images/MaterialItem.png b/docs/images/MaterialItem.png new file mode 100644 index 0000000..ea95e84 Binary files /dev/null and b/docs/images/MaterialItem.png differ diff --git a/docs/images/MaterialItem2.png b/docs/images/MaterialItem2.png new file mode 100644 index 0000000..ea95e84 Binary files /dev/null and b/docs/images/MaterialItem2.png differ diff --git a/docs/images/MaterialItem3.png b/docs/images/MaterialItem3.png new file mode 100644 index 0000000..ea95e84 Binary files /dev/null and b/docs/images/MaterialItem3.png differ diff --git a/docs/images/MesePick.png b/docs/images/MesePick.png new file mode 100644 index 0000000..d6d5c21 Binary files /dev/null and b/docs/images/MesePick.png differ diff --git a/docs/images/NodeItem.png b/docs/images/NodeItem.png new file mode 100644 index 0000000..ea95e84 Binary files /dev/null and b/docs/images/NodeItem.png differ diff --git a/docs/images/STAxe.png b/docs/images/STAxe.png new file mode 100644 index 0000000..503245c Binary files /dev/null and b/docs/images/STAxe.png differ diff --git a/docs/images/STPick.png b/docs/images/STPick.png new file mode 100644 index 0000000..9157c5c Binary files /dev/null and b/docs/images/STPick.png differ diff --git a/docs/images/STShovel.png b/docs/images/STShovel.png new file mode 100644 index 0000000..3ada000 Binary files /dev/null and b/docs/images/STShovel.png differ diff --git a/docs/images/STSword.png b/docs/images/STSword.png new file mode 100644 index 0000000..586e4c0 Binary files /dev/null and b/docs/images/STSword.png differ diff --git a/docs/images/SteelAxe.png b/docs/images/SteelAxe.png new file mode 100644 index 0000000..8855def Binary files /dev/null and b/docs/images/SteelAxe.png differ diff --git a/docs/images/SteelPick.png b/docs/images/SteelPick.png new file mode 100644 index 0000000..cbd673e Binary files /dev/null and b/docs/images/SteelPick.png differ diff --git a/docs/images/SteelShovel.png b/docs/images/SteelShovel.png new file mode 100644 index 0000000..e373616 Binary files /dev/null and b/docs/images/SteelShovel.png differ diff --git a/docs/images/SteelSword.png b/docs/images/SteelSword.png new file mode 100644 index 0000000..2e99da9 Binary files /dev/null and b/docs/images/SteelSword.png differ diff --git a/docs/images/Stick.png b/docs/images/Stick.png new file mode 100644 index 0000000..a19f3e4 Binary files /dev/null and b/docs/images/Stick.png differ diff --git a/docs/images/ToolItem.png b/docs/images/ToolItem.png new file mode 100644 index 0000000..ea95e84 Binary files /dev/null and b/docs/images/ToolItem.png differ diff --git a/docs/images/WAxe.png b/docs/images/WAxe.png new file mode 100644 index 0000000..5fb2eee Binary files /dev/null and b/docs/images/WAxe.png differ diff --git a/docs/images/WPick.png b/docs/images/WPick.png new file mode 100644 index 0000000..20de491 Binary files /dev/null and b/docs/images/WPick.png differ diff --git a/docs/images/WShovel.png b/docs/images/WShovel.png new file mode 100644 index 0000000..08d9a85 Binary files /dev/null and b/docs/images/WShovel.png differ diff --git a/docs/images/WSword.png b/docs/images/WSword.png new file mode 100644 index 0000000..9b6cccb Binary files /dev/null and b/docs/images/WSword.png differ diff --git a/docs/images/apple.png b/docs/images/apple.png new file mode 100644 index 0000000..92e14a9 Binary files /dev/null and b/docs/images/apple.png differ diff --git a/docs/images/beds_bed.png b/docs/images/beds_bed.png new file mode 100644 index 0000000..8948a98 Binary files /dev/null and b/docs/images/beds_bed.png differ diff --git a/docs/images/beds_bed_bottom.png b/docs/images/beds_bed_bottom.png new file mode 100644 index 0000000..8948a98 Binary files /dev/null and b/docs/images/beds_bed_bottom.png differ diff --git a/docs/images/beds_bed_bottom_red.png b/docs/images/beds_bed_bottom_red.png new file mode 100644 index 0000000..8948a98 Binary files /dev/null and b/docs/images/beds_bed_bottom_red.png differ diff --git a/docs/images/beds_bed_top.png b/docs/images/beds_bed_top.png new file mode 100644 index 0000000..4ce5317 Binary files /dev/null and b/docs/images/beds_bed_top.png differ diff --git a/docs/images/beds_bed_top_red.png b/docs/images/beds_bed_top_red.png new file mode 100644 index 0000000..4ce5317 Binary files /dev/null and b/docs/images/beds_bed_top_red.png differ diff --git a/docs/images/beds_fancy_bed.png b/docs/images/beds_fancy_bed.png new file mode 100644 index 0000000..b3450c4 Binary files /dev/null and b/docs/images/beds_fancy_bed.png differ diff --git a/docs/images/beds_fancy_bed_bottom.png b/docs/images/beds_fancy_bed_bottom.png new file mode 100644 index 0000000..b3450c4 Binary files /dev/null and b/docs/images/beds_fancy_bed_bottom.png differ diff --git a/docs/images/beds_fancy_bed_top.png b/docs/images/beds_fancy_bed_top.png new file mode 100644 index 0000000..be32f75 Binary files /dev/null and b/docs/images/beds_fancy_bed_top.png differ diff --git a/docs/images/binoculars_binoculars.png b/docs/images/binoculars_binoculars.png new file mode 100644 index 0000000..f2faca9 Binary files /dev/null and b/docs/images/binoculars_binoculars.png differ diff --git a/docs/images/blank.png b/docs/images/blank.png new file mode 100644 index 0000000..ac9b30d Binary files /dev/null and b/docs/images/blank.png differ diff --git a/docs/images/boats_boat.png b/docs/images/boats_boat.png new file mode 100644 index 0000000..843fee0 Binary files /dev/null and b/docs/images/boats_boat.png differ diff --git a/docs/images/bones_bones.png b/docs/images/bones_bones.png new file mode 100644 index 0000000..cb1b4ad Binary files /dev/null and b/docs/images/bones_bones.png differ diff --git a/docs/images/book.png b/docs/images/book.png new file mode 100644 index 0000000..b91c5cf Binary files /dev/null and b/docs/images/book.png differ diff --git a/docs/images/bookshelf.png b/docs/images/bookshelf.png new file mode 100644 index 0000000..ed3a122 Binary files /dev/null and b/docs/images/bookshelf.png differ diff --git a/docs/images/brick.png b/docs/images/brick.png new file mode 100644 index 0000000..2434636 Binary files /dev/null and b/docs/images/brick.png differ diff --git a/docs/images/bucket.png b/docs/images/bucket.png new file mode 100644 index 0000000..fbda9a2 Binary files /dev/null and b/docs/images/bucket.png differ diff --git a/docs/images/bucket_bucket_empty.png b/docs/images/bucket_bucket_empty.png new file mode 100644 index 0000000..fbda9a2 Binary files /dev/null and b/docs/images/bucket_bucket_empty.png differ diff --git a/docs/images/bucket_bucket_lava.png b/docs/images/bucket_bucket_lava.png new file mode 100644 index 0000000..7444ddf Binary files /dev/null and b/docs/images/bucket_bucket_lava.png differ diff --git a/docs/images/bucket_bucket_river_water.png b/docs/images/bucket_bucket_river_water.png new file mode 100644 index 0000000..8bd4548 Binary files /dev/null and b/docs/images/bucket_bucket_river_water.png differ diff --git a/docs/images/bucket_bucket_water.png b/docs/images/bucket_bucket_water.png new file mode 100644 index 0000000..62296f6 Binary files /dev/null and b/docs/images/bucket_bucket_water.png differ diff --git a/docs/images/bucket_lava.png b/docs/images/bucket_lava.png new file mode 100644 index 0000000..7444ddf Binary files /dev/null and b/docs/images/bucket_lava.png differ diff --git a/docs/images/bucket_water.png b/docs/images/bucket_water.png new file mode 100644 index 0000000..62296f6 Binary files /dev/null and b/docs/images/bucket_water.png differ diff --git a/docs/images/butterflies_butterfly_red.png b/docs/images/butterflies_butterfly_red.png new file mode 100644 index 0000000..a2d7263 Binary files /dev/null and b/docs/images/butterflies_butterfly_red.png differ diff --git a/docs/images/butterflies_butterfly_violet.png b/docs/images/butterflies_butterfly_violet.png new file mode 100644 index 0000000..3556ca3 Binary files /dev/null and b/docs/images/butterflies_butterfly_violet.png differ diff --git a/docs/images/butterflies_butterfly_white.png b/docs/images/butterflies_butterfly_white.png new file mode 100644 index 0000000..a521774 Binary files /dev/null and b/docs/images/butterflies_butterfly_white.png differ diff --git a/docs/images/cactus.png b/docs/images/cactus.png new file mode 100644 index 0000000..5d30d9b Binary files /dev/null and b/docs/images/cactus.png differ diff --git a/docs/images/carts_brakerail.png b/docs/images/carts_brakerail.png new file mode 100644 index 0000000..06f822a Binary files /dev/null and b/docs/images/carts_brakerail.png differ diff --git a/docs/images/carts_cart.png b/docs/images/carts_cart.png new file mode 100644 index 0000000..ce7130d Binary files /dev/null and b/docs/images/carts_cart.png differ diff --git a/docs/images/carts_powerrail.png b/docs/images/carts_powerrail.png new file mode 100644 index 0000000..c3f5f80 Binary files /dev/null and b/docs/images/carts_powerrail.png differ diff --git a/docs/images/carts_rail.png b/docs/images/carts_rail.png new file mode 100644 index 0000000..3807efa Binary files /dev/null and b/docs/images/carts_rail.png differ diff --git a/docs/images/chest.png b/docs/images/chest.png new file mode 100644 index 0000000..db58cee Binary files /dev/null and b/docs/images/chest.png differ diff --git a/docs/images/clay.png b/docs/images/clay.png new file mode 100644 index 0000000..9abab38 Binary files /dev/null and b/docs/images/clay.png differ diff --git a/docs/images/clay_brick.png b/docs/images/clay_brick.png new file mode 100644 index 0000000..ef43d8c Binary files /dev/null and b/docs/images/clay_brick.png differ diff --git a/docs/images/cobble.png b/docs/images/cobble.png new file mode 100644 index 0000000..7b79364 Binary files /dev/null and b/docs/images/cobble.png differ diff --git a/docs/images/craft.png b/docs/images/craft.png new file mode 100644 index 0000000..ea95e84 Binary files /dev/null and b/docs/images/craft.png differ diff --git a/docs/images/default_acacia_bush_leaves.png b/docs/images/default_acacia_bush_leaves.png new file mode 100644 index 0000000..c3fba8c Binary files /dev/null and b/docs/images/default_acacia_bush_leaves.png differ diff --git a/docs/images/default_acacia_bush_sapling.png b/docs/images/default_acacia_bush_sapling.png new file mode 100644 index 0000000..b607fd1 Binary files /dev/null and b/docs/images/default_acacia_bush_sapling.png differ diff --git a/docs/images/default_acacia_bush_stem.png b/docs/images/default_acacia_bush_stem.png new file mode 100644 index 0000000..1295d34 Binary files /dev/null and b/docs/images/default_acacia_bush_stem.png differ diff --git a/docs/images/default_acacia_leaves.png b/docs/images/default_acacia_leaves.png new file mode 100644 index 0000000..1dac51e Binary files /dev/null and b/docs/images/default_acacia_leaves.png differ diff --git a/docs/images/default_acacia_sapling.png b/docs/images/default_acacia_sapling.png new file mode 100644 index 0000000..847d1c7 Binary files /dev/null and b/docs/images/default_acacia_sapling.png differ diff --git a/docs/images/default_acacia_tree.png b/docs/images/default_acacia_tree.png new file mode 100644 index 0000000..244aae3 Binary files /dev/null and b/docs/images/default_acacia_tree.png differ diff --git a/docs/images/default_acacia_wood.png b/docs/images/default_acacia_wood.png new file mode 100644 index 0000000..1738c7b Binary files /dev/null and b/docs/images/default_acacia_wood.png differ diff --git a/docs/images/default_apple.png b/docs/images/default_apple.png new file mode 100644 index 0000000..92e14a9 Binary files /dev/null and b/docs/images/default_apple.png differ diff --git a/docs/images/default_aspen_leaves.png b/docs/images/default_aspen_leaves.png new file mode 100644 index 0000000..e9fd166 Binary files /dev/null and b/docs/images/default_aspen_leaves.png differ diff --git a/docs/images/default_aspen_sapling.png b/docs/images/default_aspen_sapling.png new file mode 100644 index 0000000..221e2bb Binary files /dev/null and b/docs/images/default_aspen_sapling.png differ diff --git a/docs/images/default_aspen_tree.png b/docs/images/default_aspen_tree.png new file mode 100644 index 0000000..c7c39cd Binary files /dev/null and b/docs/images/default_aspen_tree.png differ diff --git a/docs/images/default_aspen_wood.png b/docs/images/default_aspen_wood.png new file mode 100644 index 0000000..e3c8a1c Binary files /dev/null and b/docs/images/default_aspen_wood.png differ diff --git a/docs/images/default_axe_bronze.png b/docs/images/default_axe_bronze.png new file mode 100644 index 0000000..3089816 Binary files /dev/null and b/docs/images/default_axe_bronze.png differ diff --git a/docs/images/default_axe_diamond.png b/docs/images/default_axe_diamond.png new file mode 100644 index 0000000..909d683 Binary files /dev/null and b/docs/images/default_axe_diamond.png differ diff --git a/docs/images/default_axe_mese.png b/docs/images/default_axe_mese.png new file mode 100644 index 0000000..bbae246 Binary files /dev/null and b/docs/images/default_axe_mese.png differ diff --git a/docs/images/default_axe_steel.png b/docs/images/default_axe_steel.png new file mode 100644 index 0000000..8855def Binary files /dev/null and b/docs/images/default_axe_steel.png differ diff --git a/docs/images/default_axe_stone.png b/docs/images/default_axe_stone.png new file mode 100644 index 0000000..503245c Binary files /dev/null and b/docs/images/default_axe_stone.png differ diff --git a/docs/images/default_axe_wood.png b/docs/images/default_axe_wood.png new file mode 100644 index 0000000..5fb2eee Binary files /dev/null and b/docs/images/default_axe_wood.png differ diff --git a/docs/images/default_blueberries.png b/docs/images/default_blueberries.png new file mode 100644 index 0000000..5eae631 Binary files /dev/null and b/docs/images/default_blueberries.png differ diff --git a/docs/images/default_blueberry_bush_leaves.png b/docs/images/default_blueberry_bush_leaves.png new file mode 100644 index 0000000..1127121 Binary files /dev/null and b/docs/images/default_blueberry_bush_leaves.png differ diff --git a/docs/images/default_blueberry_bush_leaves_with_berries.png b/docs/images/default_blueberry_bush_leaves_with_berries.png new file mode 100644 index 0000000..5a8a77a Binary files /dev/null and b/docs/images/default_blueberry_bush_leaves_with_berries.png differ diff --git a/docs/images/default_blueberry_bush_sapling.png b/docs/images/default_blueberry_bush_sapling.png new file mode 100644 index 0000000..a6f7267 Binary files /dev/null and b/docs/images/default_blueberry_bush_sapling.png differ diff --git a/docs/images/default_book.png b/docs/images/default_book.png new file mode 100644 index 0000000..b91c5cf Binary files /dev/null and b/docs/images/default_book.png differ diff --git a/docs/images/default_bookshelf.png b/docs/images/default_bookshelf.png new file mode 100644 index 0000000..ed3a122 Binary files /dev/null and b/docs/images/default_bookshelf.png differ diff --git a/docs/images/default_brick.png b/docs/images/default_brick.png new file mode 100644 index 0000000..2434636 Binary files /dev/null and b/docs/images/default_brick.png differ diff --git a/docs/images/default_bronze_ingot.png b/docs/images/default_bronze_ingot.png new file mode 100644 index 0000000..4f56dd0 Binary files /dev/null and b/docs/images/default_bronze_ingot.png differ diff --git a/docs/images/default_bronzeblock.png b/docs/images/default_bronzeblock.png new file mode 100644 index 0000000..4b5bfa6 Binary files /dev/null and b/docs/images/default_bronzeblock.png differ diff --git a/docs/images/default_bush_leaves.png b/docs/images/default_bush_leaves.png new file mode 100644 index 0000000..0141b55 Binary files /dev/null and b/docs/images/default_bush_leaves.png differ diff --git a/docs/images/default_bush_sapling.png b/docs/images/default_bush_sapling.png new file mode 100644 index 0000000..ede2cca Binary files /dev/null and b/docs/images/default_bush_sapling.png differ diff --git a/docs/images/default_bush_stem.png b/docs/images/default_bush_stem.png new file mode 100644 index 0000000..458697c Binary files /dev/null and b/docs/images/default_bush_stem.png differ diff --git a/docs/images/default_cactus.png b/docs/images/default_cactus.png new file mode 100644 index 0000000..5d30d9b Binary files /dev/null and b/docs/images/default_cactus.png differ diff --git a/docs/images/default_chest.png b/docs/images/default_chest.png new file mode 100644 index 0000000..db58cee Binary files /dev/null and b/docs/images/default_chest.png differ diff --git a/docs/images/default_chest_locked.png b/docs/images/default_chest_locked.png new file mode 100644 index 0000000..1403f91 Binary files /dev/null and b/docs/images/default_chest_locked.png differ diff --git a/docs/images/default_clay.png b/docs/images/default_clay.png new file mode 100644 index 0000000..9abab38 Binary files /dev/null and b/docs/images/default_clay.png differ diff --git a/docs/images/default_clay_brick.png b/docs/images/default_clay_brick.png new file mode 100644 index 0000000..ef43d8c Binary files /dev/null and b/docs/images/default_clay_brick.png differ diff --git a/docs/images/default_clay_lump.png b/docs/images/default_clay_lump.png new file mode 100644 index 0000000..17b450f Binary files /dev/null and b/docs/images/default_clay_lump.png differ diff --git a/docs/images/default_coal_lump.png b/docs/images/default_coal_lump.png new file mode 100644 index 0000000..e630529 Binary files /dev/null and b/docs/images/default_coal_lump.png differ diff --git a/docs/images/default_coalblock.png b/docs/images/default_coalblock.png new file mode 100644 index 0000000..2ab8d54 Binary files /dev/null and b/docs/images/default_coalblock.png differ diff --git a/docs/images/default_cobble.png b/docs/images/default_cobble.png new file mode 100644 index 0000000..7b79364 Binary files /dev/null and b/docs/images/default_cobble.png differ diff --git a/docs/images/default_copper_ingot.png b/docs/images/default_copper_ingot.png new file mode 100644 index 0000000..30d89ef Binary files /dev/null and b/docs/images/default_copper_ingot.png differ diff --git a/docs/images/default_copper_lump.png b/docs/images/default_copper_lump.png new file mode 100644 index 0000000..9d3eb9e Binary files /dev/null and b/docs/images/default_copper_lump.png differ diff --git a/docs/images/default_copperblock.png b/docs/images/default_copperblock.png new file mode 100644 index 0000000..4d6b5f4 Binary files /dev/null and b/docs/images/default_copperblock.png differ diff --git a/docs/images/default_coral_brown.png b/docs/images/default_coral_brown.png new file mode 100644 index 0000000..b43e4de Binary files /dev/null and b/docs/images/default_coral_brown.png differ diff --git a/docs/images/default_coral_cyan.png b/docs/images/default_coral_cyan.png new file mode 100644 index 0000000..a907889 Binary files /dev/null and b/docs/images/default_coral_cyan.png differ diff --git a/docs/images/default_coral_green.png b/docs/images/default_coral_green.png new file mode 100644 index 0000000..e0be90f Binary files /dev/null and b/docs/images/default_coral_green.png differ diff --git a/docs/images/default_coral_orange.png b/docs/images/default_coral_orange.png new file mode 100644 index 0000000..54edca7 Binary files /dev/null and b/docs/images/default_coral_orange.png differ diff --git a/docs/images/default_coral_pink.png b/docs/images/default_coral_pink.png new file mode 100644 index 0000000..1fa02d7 Binary files /dev/null and b/docs/images/default_coral_pink.png differ diff --git a/docs/images/default_coral_skeleton.png b/docs/images/default_coral_skeleton.png new file mode 100644 index 0000000..67d170b Binary files /dev/null and b/docs/images/default_coral_skeleton.png differ diff --git a/docs/images/default_desert_cobble.png b/docs/images/default_desert_cobble.png new file mode 100644 index 0000000..97fd062 Binary files /dev/null and b/docs/images/default_desert_cobble.png differ diff --git a/docs/images/default_desert_sand.png b/docs/images/default_desert_sand.png new file mode 100644 index 0000000..9dafca3 Binary files /dev/null and b/docs/images/default_desert_sand.png differ diff --git a/docs/images/default_desert_sandstone.png b/docs/images/default_desert_sandstone.png new file mode 100644 index 0000000..e33943a Binary files /dev/null and b/docs/images/default_desert_sandstone.png differ diff --git a/docs/images/default_desert_sandstone_block.png b/docs/images/default_desert_sandstone_block.png new file mode 100644 index 0000000..c358559 Binary files /dev/null and b/docs/images/default_desert_sandstone_block.png differ diff --git a/docs/images/default_desert_sandstone_brick.png b/docs/images/default_desert_sandstone_brick.png new file mode 100644 index 0000000..9f1f5b5 Binary files /dev/null and b/docs/images/default_desert_sandstone_brick.png differ diff --git a/docs/images/default_desert_stone.png b/docs/images/default_desert_stone.png new file mode 100644 index 0000000..a0c8ef8 Binary files /dev/null and b/docs/images/default_desert_stone.png differ diff --git a/docs/images/default_desert_stone_block.png b/docs/images/default_desert_stone_block.png new file mode 100644 index 0000000..e76d68e Binary files /dev/null and b/docs/images/default_desert_stone_block.png differ diff --git a/docs/images/default_desert_stonebrick.png b/docs/images/default_desert_stonebrick.png new file mode 100644 index 0000000..b8ac34a Binary files /dev/null and b/docs/images/default_desert_stonebrick.png differ diff --git a/docs/images/default_diamond.png b/docs/images/default_diamond.png new file mode 100644 index 0000000..5a7828e Binary files /dev/null and b/docs/images/default_diamond.png differ diff --git a/docs/images/default_diamondblock.png b/docs/images/default_diamondblock.png new file mode 100644 index 0000000..d2c31ee Binary files /dev/null and b/docs/images/default_diamondblock.png differ diff --git a/docs/images/default_dirt.png b/docs/images/default_dirt.png new file mode 100644 index 0000000..6b9fc6d Binary files /dev/null and b/docs/images/default_dirt.png differ diff --git a/docs/images/default_dirt_with_coniferous_litter.png b/docs/images/default_dirt_with_coniferous_litter.png new file mode 100644 index 0000000..6d5d1b2 Binary files /dev/null and b/docs/images/default_dirt_with_coniferous_litter.png differ diff --git a/docs/images/default_dirt_with_dry_grass.png b/docs/images/default_dirt_with_dry_grass.png new file mode 100644 index 0000000..c03d0a9 Binary files /dev/null and b/docs/images/default_dirt_with_dry_grass.png differ diff --git a/docs/images/default_dirt_with_grass.png b/docs/images/default_dirt_with_grass.png new file mode 100644 index 0000000..70eab52 Binary files /dev/null and b/docs/images/default_dirt_with_grass.png differ diff --git a/docs/images/default_dirt_with_rainforest_litter.png b/docs/images/default_dirt_with_rainforest_litter.png new file mode 100644 index 0000000..b088be3 Binary files /dev/null and b/docs/images/default_dirt_with_rainforest_litter.png differ diff --git a/docs/images/default_dirt_with_snow.png b/docs/images/default_dirt_with_snow.png new file mode 100644 index 0000000..55c5622 Binary files /dev/null and b/docs/images/default_dirt_with_snow.png differ diff --git a/docs/images/default_dry_dirt.png b/docs/images/default_dry_dirt.png new file mode 100644 index 0000000..3ce5752 Binary files /dev/null and b/docs/images/default_dry_dirt.png differ diff --git a/docs/images/default_dry_dirt_with_dry_grass.png b/docs/images/default_dry_dirt_with_dry_grass.png new file mode 100644 index 0000000..4e21ac4 Binary files /dev/null and b/docs/images/default_dry_dirt_with_dry_grass.png differ diff --git a/docs/images/default_dry_grass_1.png b/docs/images/default_dry_grass_1.png new file mode 100644 index 0000000..963c84a Binary files /dev/null and b/docs/images/default_dry_grass_1.png differ diff --git a/docs/images/default_dry_shrub.png b/docs/images/default_dry_shrub.png new file mode 100644 index 0000000..66a1b71 Binary files /dev/null and b/docs/images/default_dry_shrub.png differ diff --git a/docs/images/default_emergent_jungle_sapling.png b/docs/images/default_emergent_jungle_sapling.png new file mode 100644 index 0000000..bcbcf24 Binary files /dev/null and b/docs/images/default_emergent_jungle_sapling.png differ diff --git a/docs/images/default_fence_acacia_wood.png b/docs/images/default_fence_acacia_wood.png new file mode 100644 index 0000000..648f7b7 Binary files /dev/null and b/docs/images/default_fence_acacia_wood.png differ diff --git a/docs/images/default_fence_aspen_wood.png b/docs/images/default_fence_aspen_wood.png new file mode 100644 index 0000000..6385193 Binary files /dev/null and b/docs/images/default_fence_aspen_wood.png differ diff --git a/docs/images/default_fence_junglewood.png b/docs/images/default_fence_junglewood.png new file mode 100644 index 0000000..b65a802 Binary files /dev/null and b/docs/images/default_fence_junglewood.png differ diff --git a/docs/images/default_fence_pine_wood.png b/docs/images/default_fence_pine_wood.png new file mode 100644 index 0000000..d01fba6 Binary files /dev/null and b/docs/images/default_fence_pine_wood.png differ diff --git a/docs/images/default_fence_rail_acacia_wood.png b/docs/images/default_fence_rail_acacia_wood.png new file mode 100644 index 0000000..9cd1a69 Binary files /dev/null and b/docs/images/default_fence_rail_acacia_wood.png differ diff --git a/docs/images/default_fence_rail_aspen_wood.png b/docs/images/default_fence_rail_aspen_wood.png new file mode 100644 index 0000000..1bf1fd0 Binary files /dev/null and b/docs/images/default_fence_rail_aspen_wood.png differ diff --git a/docs/images/default_fence_rail_junglewood.png b/docs/images/default_fence_rail_junglewood.png new file mode 100644 index 0000000..1c8f7b7 Binary files /dev/null and b/docs/images/default_fence_rail_junglewood.png differ diff --git a/docs/images/default_fence_rail_pine_wood.png b/docs/images/default_fence_rail_pine_wood.png new file mode 100644 index 0000000..ad314e7 Binary files /dev/null and b/docs/images/default_fence_rail_pine_wood.png differ diff --git a/docs/images/default_fence_rail_wood.png b/docs/images/default_fence_rail_wood.png new file mode 100644 index 0000000..d0fc9a3 Binary files /dev/null and b/docs/images/default_fence_rail_wood.png differ diff --git a/docs/images/default_fence_wood.png b/docs/images/default_fence_wood.png new file mode 100644 index 0000000..e797c63 Binary files /dev/null and b/docs/images/default_fence_wood.png differ diff --git a/docs/images/default_fern_1.png b/docs/images/default_fern_1.png new file mode 100644 index 0000000..0c14b86 Binary files /dev/null and b/docs/images/default_fern_1.png differ diff --git a/docs/images/default_flint.png b/docs/images/default_flint.png new file mode 100644 index 0000000..c4d674d Binary files /dev/null and b/docs/images/default_flint.png differ diff --git a/docs/images/default_furnace.png b/docs/images/default_furnace.png new file mode 100644 index 0000000..bf5d669 Binary files /dev/null and b/docs/images/default_furnace.png differ diff --git a/docs/images/default_glass.png b/docs/images/default_glass.png new file mode 100644 index 0000000..5f4c998 Binary files /dev/null and b/docs/images/default_glass.png differ diff --git a/docs/images/default_gold_ingot.png b/docs/images/default_gold_ingot.png new file mode 100644 index 0000000..68e009a Binary files /dev/null and b/docs/images/default_gold_ingot.png differ diff --git a/docs/images/default_gold_lump.png b/docs/images/default_gold_lump.png new file mode 100644 index 0000000..0f221ea Binary files /dev/null and b/docs/images/default_gold_lump.png differ diff --git a/docs/images/default_goldblock.png b/docs/images/default_goldblock.png new file mode 100644 index 0000000..4acbced Binary files /dev/null and b/docs/images/default_goldblock.png differ diff --git a/docs/images/default_grass_1.png b/docs/images/default_grass_1.png new file mode 100644 index 0000000..dad498e Binary files /dev/null and b/docs/images/default_grass_1.png differ diff --git a/docs/images/default_gravel.png b/docs/images/default_gravel.png new file mode 100644 index 0000000..f74ad33 Binary files /dev/null and b/docs/images/default_gravel.png differ diff --git a/docs/images/default_ice.png b/docs/images/default_ice.png new file mode 100644 index 0000000..db23462 Binary files /dev/null and b/docs/images/default_ice.png differ diff --git a/docs/images/default_iron_lump.png b/docs/images/default_iron_lump.png new file mode 100644 index 0000000..10986a0 Binary files /dev/null and b/docs/images/default_iron_lump.png differ diff --git a/docs/images/default_junglegrass.png b/docs/images/default_junglegrass.png new file mode 100644 index 0000000..46a1fd2 Binary files /dev/null and b/docs/images/default_junglegrass.png differ diff --git a/docs/images/default_jungleleaves.png b/docs/images/default_jungleleaves.png new file mode 100644 index 0000000..7f05440 Binary files /dev/null and b/docs/images/default_jungleleaves.png differ diff --git a/docs/images/default_junglesapling.png b/docs/images/default_junglesapling.png new file mode 100644 index 0000000..a18ef9f Binary files /dev/null and b/docs/images/default_junglesapling.png differ diff --git a/docs/images/default_jungletree.png b/docs/images/default_jungletree.png new file mode 100644 index 0000000..5fdd5df Binary files /dev/null and b/docs/images/default_jungletree.png differ diff --git a/docs/images/default_junglewood.png b/docs/images/default_junglewood.png new file mode 100644 index 0000000..8552826 Binary files /dev/null and b/docs/images/default_junglewood.png differ diff --git a/docs/images/default_ladder.png b/docs/images/default_ladder.png new file mode 100644 index 0000000..0f20e4c Binary files /dev/null and b/docs/images/default_ladder.png differ diff --git a/docs/images/default_ladder_steel.png b/docs/images/default_ladder_steel.png new file mode 100644 index 0000000..d178f7f Binary files /dev/null and b/docs/images/default_ladder_steel.png differ diff --git a/docs/images/default_ladder_wood.png b/docs/images/default_ladder_wood.png new file mode 100644 index 0000000..0f20e4c Binary files /dev/null and b/docs/images/default_ladder_wood.png differ diff --git a/docs/images/default_large_cactus_seedling.png b/docs/images/default_large_cactus_seedling.png new file mode 100644 index 0000000..664f014 Binary files /dev/null and b/docs/images/default_large_cactus_seedling.png differ diff --git a/docs/images/default_lava_source.png b/docs/images/default_lava_source.png new file mode 100644 index 0000000..ec61876 Binary files /dev/null and b/docs/images/default_lava_source.png differ diff --git a/docs/images/default_leaves.png b/docs/images/default_leaves.png new file mode 100644 index 0000000..2797e40 Binary files /dev/null and b/docs/images/default_leaves.png differ diff --git a/docs/images/default_marram_grass_1.png b/docs/images/default_marram_grass_1.png new file mode 100644 index 0000000..a7bf88a Binary files /dev/null and b/docs/images/default_marram_grass_1.png differ diff --git a/docs/images/default_mese.png b/docs/images/default_mese.png new file mode 100644 index 0000000..b334dca Binary files /dev/null and b/docs/images/default_mese.png differ diff --git a/docs/images/default_mese_block.png b/docs/images/default_mese_block.png new file mode 100644 index 0000000..b334dca Binary files /dev/null and b/docs/images/default_mese_block.png differ diff --git a/docs/images/default_mese_crystal.png b/docs/images/default_mese_crystal.png new file mode 100644 index 0000000..25ffb11 Binary files /dev/null and b/docs/images/default_mese_crystal.png differ diff --git a/docs/images/default_mese_crystal_fragment.png b/docs/images/default_mese_crystal_fragment.png new file mode 100644 index 0000000..a8a1924 Binary files /dev/null and b/docs/images/default_mese_crystal_fragment.png differ diff --git a/docs/images/default_mese_post_light.png b/docs/images/default_mese_post_light.png new file mode 100644 index 0000000..dceaa5c Binary files /dev/null and b/docs/images/default_mese_post_light.png differ diff --git a/docs/images/default_meselamp.png b/docs/images/default_meselamp.png new file mode 100644 index 0000000..1a05f1f Binary files /dev/null and b/docs/images/default_meselamp.png differ diff --git a/docs/images/default_mossycobble.png b/docs/images/default_mossycobble.png new file mode 100644 index 0000000..d36dec6 Binary files /dev/null and b/docs/images/default_mossycobble.png differ diff --git a/docs/images/default_obsidian.png b/docs/images/default_obsidian.png new file mode 100644 index 0000000..6c0e7a5 Binary files /dev/null and b/docs/images/default_obsidian.png differ diff --git a/docs/images/default_obsidian_block.png b/docs/images/default_obsidian_block.png new file mode 100644 index 0000000..8e7b64a Binary files /dev/null and b/docs/images/default_obsidian_block.png differ diff --git a/docs/images/default_obsidian_glass.png b/docs/images/default_obsidian_glass.png new file mode 100644 index 0000000..423cfa5 Binary files /dev/null and b/docs/images/default_obsidian_glass.png differ diff --git a/docs/images/default_obsidian_shard.png b/docs/images/default_obsidian_shard.png new file mode 100644 index 0000000..6c10e4f Binary files /dev/null and b/docs/images/default_obsidian_shard.png differ diff --git a/docs/images/default_obsidianbrick.png b/docs/images/default_obsidianbrick.png new file mode 100644 index 0000000..f16f5c7 Binary files /dev/null and b/docs/images/default_obsidianbrick.png differ diff --git a/docs/images/default_paper.png b/docs/images/default_paper.png new file mode 100644 index 0000000..51d921b Binary files /dev/null and b/docs/images/default_paper.png differ diff --git a/docs/images/default_papyrus.png b/docs/images/default_papyrus.png new file mode 100644 index 0000000..f331988 Binary files /dev/null and b/docs/images/default_papyrus.png differ diff --git a/docs/images/default_permafrost.png b/docs/images/default_permafrost.png new file mode 100644 index 0000000..147f1fb Binary files /dev/null and b/docs/images/default_permafrost.png differ diff --git a/docs/images/default_permafrost_with_moss.png b/docs/images/default_permafrost_with_moss.png new file mode 100644 index 0000000..da2a4ee Binary files /dev/null and b/docs/images/default_permafrost_with_moss.png differ diff --git a/docs/images/default_permafrost_with_stones.png b/docs/images/default_permafrost_with_stones.png new file mode 100644 index 0000000..8bf8a38 Binary files /dev/null and b/docs/images/default_permafrost_with_stones.png differ diff --git a/docs/images/default_pick_bronze.png b/docs/images/default_pick_bronze.png new file mode 100644 index 0000000..fc357bd Binary files /dev/null and b/docs/images/default_pick_bronze.png differ diff --git a/docs/images/default_pick_diamond.png b/docs/images/default_pick_diamond.png new file mode 100644 index 0000000..31c4907 Binary files /dev/null and b/docs/images/default_pick_diamond.png differ diff --git a/docs/images/default_pick_mese.png b/docs/images/default_pick_mese.png new file mode 100644 index 0000000..d6d5c21 Binary files /dev/null and b/docs/images/default_pick_mese.png differ diff --git a/docs/images/default_pick_steel.png b/docs/images/default_pick_steel.png new file mode 100644 index 0000000..cbd673e Binary files /dev/null and b/docs/images/default_pick_steel.png differ diff --git a/docs/images/default_pick_stone.png b/docs/images/default_pick_stone.png new file mode 100644 index 0000000..9157c5c Binary files /dev/null and b/docs/images/default_pick_stone.png differ diff --git a/docs/images/default_pick_wood.png b/docs/images/default_pick_wood.png new file mode 100644 index 0000000..20de491 Binary files /dev/null and b/docs/images/default_pick_wood.png differ diff --git a/docs/images/default_pine_bush_needles.png b/docs/images/default_pine_bush_needles.png new file mode 100644 index 0000000..dde4fbc Binary files /dev/null and b/docs/images/default_pine_bush_needles.png differ diff --git a/docs/images/default_pine_bush_sapling.png b/docs/images/default_pine_bush_sapling.png new file mode 100644 index 0000000..4047fb5 Binary files /dev/null and b/docs/images/default_pine_bush_sapling.png differ diff --git a/docs/images/default_pine_bush_stem.png b/docs/images/default_pine_bush_stem.png new file mode 100644 index 0000000..48950d3 Binary files /dev/null and b/docs/images/default_pine_bush_stem.png differ diff --git a/docs/images/default_pine_needles.png b/docs/images/default_pine_needles.png new file mode 100644 index 0000000..dde4fbc Binary files /dev/null and b/docs/images/default_pine_needles.png differ diff --git a/docs/images/default_pine_sapling.png b/docs/images/default_pine_sapling.png new file mode 100644 index 0000000..34adc10 Binary files /dev/null and b/docs/images/default_pine_sapling.png differ diff --git a/docs/images/default_pine_tree.png b/docs/images/default_pine_tree.png new file mode 100644 index 0000000..eb9dba1 Binary files /dev/null and b/docs/images/default_pine_tree.png differ diff --git a/docs/images/default_pine_wood.png b/docs/images/default_pine_wood.png new file mode 100644 index 0000000..eed90bb Binary files /dev/null and b/docs/images/default_pine_wood.png differ diff --git a/docs/images/default_pinetree.png b/docs/images/default_pinetree.png new file mode 100644 index 0000000..eb9dba1 Binary files /dev/null and b/docs/images/default_pinetree.png differ diff --git a/docs/images/default_pinewood.png b/docs/images/default_pinewood.png new file mode 100644 index 0000000..eed90bb Binary files /dev/null and b/docs/images/default_pinewood.png differ diff --git a/docs/images/default_rail.png b/docs/images/default_rail.png new file mode 100644 index 0000000..3807efa Binary files /dev/null and b/docs/images/default_rail.png differ diff --git a/docs/images/default_river_water_source.png b/docs/images/default_river_water_source.png new file mode 100644 index 0000000..ef40cbd Binary files /dev/null and b/docs/images/default_river_water_source.png differ diff --git a/docs/images/default_sand.png b/docs/images/default_sand.png new file mode 100644 index 0000000..244533d Binary files /dev/null and b/docs/images/default_sand.png differ diff --git a/docs/images/default_sand_with_kelp.png b/docs/images/default_sand_with_kelp.png new file mode 100644 index 0000000..43dc8bb Binary files /dev/null and b/docs/images/default_sand_with_kelp.png differ diff --git a/docs/images/default_sandstone.png b/docs/images/default_sandstone.png new file mode 100644 index 0000000..21948f8 Binary files /dev/null and b/docs/images/default_sandstone.png differ diff --git a/docs/images/default_sandstone_block.png b/docs/images/default_sandstone_block.png new file mode 100644 index 0000000..4021304 Binary files /dev/null and b/docs/images/default_sandstone_block.png differ diff --git a/docs/images/default_sandstonebrick.png b/docs/images/default_sandstonebrick.png new file mode 100644 index 0000000..c9537ca Binary files /dev/null and b/docs/images/default_sandstonebrick.png differ diff --git a/docs/images/default_sapling.png b/docs/images/default_sapling.png new file mode 100644 index 0000000..fd3c208 Binary files /dev/null and b/docs/images/default_sapling.png differ diff --git a/docs/images/default_shovel_bronze.png b/docs/images/default_shovel_bronze.png new file mode 100644 index 0000000..ddeceec Binary files /dev/null and b/docs/images/default_shovel_bronze.png differ diff --git a/docs/images/default_shovel_diamond.png b/docs/images/default_shovel_diamond.png new file mode 100644 index 0000000..dfd6152 Binary files /dev/null and b/docs/images/default_shovel_diamond.png differ diff --git a/docs/images/default_shovel_mese.png b/docs/images/default_shovel_mese.png new file mode 100644 index 0000000..9ce8eeb Binary files /dev/null and b/docs/images/default_shovel_mese.png differ diff --git a/docs/images/default_shovel_steel.png b/docs/images/default_shovel_steel.png new file mode 100644 index 0000000..e373616 Binary files /dev/null and b/docs/images/default_shovel_steel.png differ diff --git a/docs/images/default_shovel_stone.png b/docs/images/default_shovel_stone.png new file mode 100644 index 0000000..3ada000 Binary files /dev/null and b/docs/images/default_shovel_stone.png differ diff --git a/docs/images/default_shovel_wood.png b/docs/images/default_shovel_wood.png new file mode 100644 index 0000000..08d9a85 Binary files /dev/null and b/docs/images/default_shovel_wood.png differ diff --git a/docs/images/default_sign_wall.png b/docs/images/default_sign_wall.png new file mode 100644 index 0000000..a8cfb1e Binary files /dev/null and b/docs/images/default_sign_wall.png differ diff --git a/docs/images/default_sign_wall_steel.png b/docs/images/default_sign_wall_steel.png new file mode 100644 index 0000000..e0c2883 Binary files /dev/null and b/docs/images/default_sign_wall_steel.png differ diff --git a/docs/images/default_sign_wall_wood.png b/docs/images/default_sign_wall_wood.png new file mode 100644 index 0000000..a8cfb1e Binary files /dev/null and b/docs/images/default_sign_wall_wood.png differ diff --git a/docs/images/default_silver_sand.png b/docs/images/default_silver_sand.png new file mode 100644 index 0000000..cf43c7a Binary files /dev/null and b/docs/images/default_silver_sand.png differ diff --git a/docs/images/default_silver_sandstone.png b/docs/images/default_silver_sandstone.png new file mode 100644 index 0000000..39c73f6 Binary files /dev/null and b/docs/images/default_silver_sandstone.png differ diff --git a/docs/images/default_silver_sandstone_block.png b/docs/images/default_silver_sandstone_block.png new file mode 100644 index 0000000..f45e28c Binary files /dev/null and b/docs/images/default_silver_sandstone_block.png differ diff --git a/docs/images/default_silver_sandstone_brick.png b/docs/images/default_silver_sandstone_brick.png new file mode 100644 index 0000000..79e1f2c Binary files /dev/null and b/docs/images/default_silver_sandstone_brick.png differ diff --git a/docs/images/default_skeleton_key.png b/docs/images/default_skeleton_key.png new file mode 100644 index 0000000..96df7da Binary files /dev/null and b/docs/images/default_skeleton_key.png differ diff --git a/docs/images/default_snow.png b/docs/images/default_snow.png new file mode 100644 index 0000000..0b64e79 Binary files /dev/null and b/docs/images/default_snow.png differ diff --git a/docs/images/default_snowblock.png b/docs/images/default_snowblock.png new file mode 100644 index 0000000..d7e8492 Binary files /dev/null and b/docs/images/default_snowblock.png differ diff --git a/docs/images/default_steel_ingot.png b/docs/images/default_steel_ingot.png new file mode 100644 index 0000000..95f1c90 Binary files /dev/null and b/docs/images/default_steel_ingot.png differ diff --git a/docs/images/default_steelblock.png b/docs/images/default_steelblock.png new file mode 100644 index 0000000..6bda0d5 Binary files /dev/null and b/docs/images/default_steelblock.png differ diff --git a/docs/images/default_stick.png b/docs/images/default_stick.png new file mode 100644 index 0000000..a19f3e4 Binary files /dev/null and b/docs/images/default_stick.png differ diff --git a/docs/images/default_stone.png b/docs/images/default_stone.png new file mode 100644 index 0000000..33d2bdd Binary files /dev/null and b/docs/images/default_stone.png differ diff --git a/docs/images/default_stone_block.png b/docs/images/default_stone_block.png new file mode 100644 index 0000000..1c31fba Binary files /dev/null and b/docs/images/default_stone_block.png differ diff --git a/docs/images/default_stone_with_coal.png b/docs/images/default_stone_with_coal.png new file mode 100644 index 0000000..0c46565 Binary files /dev/null and b/docs/images/default_stone_with_coal.png differ diff --git a/docs/images/default_stone_with_copper.png b/docs/images/default_stone_with_copper.png new file mode 100644 index 0000000..5cd5ebd Binary files /dev/null and b/docs/images/default_stone_with_copper.png differ diff --git a/docs/images/default_stone_with_diamond.png b/docs/images/default_stone_with_diamond.png new file mode 100644 index 0000000..bc71b68 Binary files /dev/null and b/docs/images/default_stone_with_diamond.png differ diff --git a/docs/images/default_stone_with_gold.png b/docs/images/default_stone_with_gold.png new file mode 100644 index 0000000..c510647 Binary files /dev/null and b/docs/images/default_stone_with_gold.png differ diff --git a/docs/images/default_stone_with_iron.png b/docs/images/default_stone_with_iron.png new file mode 100644 index 0000000..0483e4b Binary files /dev/null and b/docs/images/default_stone_with_iron.png differ diff --git a/docs/images/default_stone_with_mese.png b/docs/images/default_stone_with_mese.png new file mode 100644 index 0000000..3f1a9d5 Binary files /dev/null and b/docs/images/default_stone_with_mese.png differ diff --git a/docs/images/default_stone_with_tin.png b/docs/images/default_stone_with_tin.png new file mode 100644 index 0000000..8404a66 Binary files /dev/null and b/docs/images/default_stone_with_tin.png differ diff --git a/docs/images/default_stonebrick.png b/docs/images/default_stonebrick.png new file mode 100644 index 0000000..e8cd64a Binary files /dev/null and b/docs/images/default_stonebrick.png differ diff --git a/docs/images/default_sword_bronze.png b/docs/images/default_sword_bronze.png new file mode 100644 index 0000000..7e130e0 Binary files /dev/null and b/docs/images/default_sword_bronze.png differ diff --git a/docs/images/default_sword_diamond.png b/docs/images/default_sword_diamond.png new file mode 100644 index 0000000..b19f830 Binary files /dev/null and b/docs/images/default_sword_diamond.png differ diff --git a/docs/images/default_sword_mese.png b/docs/images/default_sword_mese.png new file mode 100644 index 0000000..cf7e9d6 Binary files /dev/null and b/docs/images/default_sword_mese.png differ diff --git a/docs/images/default_sword_steel.png b/docs/images/default_sword_steel.png new file mode 100644 index 0000000..2e99da9 Binary files /dev/null and b/docs/images/default_sword_steel.png differ diff --git a/docs/images/default_sword_stone.png b/docs/images/default_sword_stone.png new file mode 100644 index 0000000..586e4c0 Binary files /dev/null and b/docs/images/default_sword_stone.png differ diff --git a/docs/images/default_sword_wood.png b/docs/images/default_sword_wood.png new file mode 100644 index 0000000..9b6cccb Binary files /dev/null and b/docs/images/default_sword_wood.png differ diff --git a/docs/images/default_tin_ingot.png b/docs/images/default_tin_ingot.png new file mode 100644 index 0000000..ba2e4cf Binary files /dev/null and b/docs/images/default_tin_ingot.png differ diff --git a/docs/images/default_tin_lump.png b/docs/images/default_tin_lump.png new file mode 100644 index 0000000..d050e07 Binary files /dev/null and b/docs/images/default_tin_lump.png differ diff --git a/docs/images/default_tinblock.png b/docs/images/default_tinblock.png new file mode 100644 index 0000000..97f3663 Binary files /dev/null and b/docs/images/default_tinblock.png differ diff --git a/docs/images/default_torch.png b/docs/images/default_torch.png new file mode 100644 index 0000000..3e8bf88 Binary files /dev/null and b/docs/images/default_torch.png differ diff --git a/docs/images/default_tree.png b/docs/images/default_tree.png new file mode 100644 index 0000000..1244655 Binary files /dev/null and b/docs/images/default_tree.png differ diff --git a/docs/images/default_water_source.png b/docs/images/default_water_source.png new file mode 100644 index 0000000..9c767dd Binary files /dev/null and b/docs/images/default_water_source.png differ diff --git a/docs/images/default_wood.png b/docs/images/default_wood.png new file mode 100644 index 0000000..1b42bce Binary files /dev/null and b/docs/images/default_wood.png differ diff --git a/docs/images/dirt.png b/docs/images/dirt.png new file mode 100644 index 0000000..6b9fc6d Binary files /dev/null and b/docs/images/dirt.png differ diff --git a/docs/images/dirt_with_grass.png b/docs/images/dirt_with_grass.png new file mode 100644 index 0000000..70eab52 Binary files /dev/null and b/docs/images/dirt_with_grass.png differ diff --git a/docs/images/doors_door_glass.png b/docs/images/doors_door_glass.png new file mode 100644 index 0000000..3b529db Binary files /dev/null and b/docs/images/doors_door_glass.png differ diff --git a/docs/images/doors_door_obsidian_glass.png b/docs/images/doors_door_obsidian_glass.png new file mode 100644 index 0000000..21867cb Binary files /dev/null and b/docs/images/doors_door_obsidian_glass.png differ diff --git a/docs/images/doors_door_steel.png b/docs/images/doors_door_steel.png new file mode 100644 index 0000000..1206209 Binary files /dev/null and b/docs/images/doors_door_steel.png differ diff --git a/docs/images/doors_door_wood.png b/docs/images/doors_door_wood.png new file mode 100644 index 0000000..83abb29 Binary files /dev/null and b/docs/images/doors_door_wood.png differ diff --git a/docs/images/doors_gate_acacia_wood_closed.png b/docs/images/doors_gate_acacia_wood_closed.png new file mode 100644 index 0000000..7be7785 Binary files /dev/null and b/docs/images/doors_gate_acacia_wood_closed.png differ diff --git a/docs/images/doors_gate_aspen_wood_closed.png b/docs/images/doors_gate_aspen_wood_closed.png new file mode 100644 index 0000000..86bfe52 Binary files /dev/null and b/docs/images/doors_gate_aspen_wood_closed.png differ diff --git a/docs/images/doors_gate_junglewood_closed.png b/docs/images/doors_gate_junglewood_closed.png new file mode 100644 index 0000000..3e64b0e Binary files /dev/null and b/docs/images/doors_gate_junglewood_closed.png differ diff --git a/docs/images/doors_gate_pine_wood_closed.png b/docs/images/doors_gate_pine_wood_closed.png new file mode 100644 index 0000000..6e3d407 Binary files /dev/null and b/docs/images/doors_gate_pine_wood_closed.png differ diff --git a/docs/images/doors_gate_wood_closed.png b/docs/images/doors_gate_wood_closed.png new file mode 100644 index 0000000..725c259 Binary files /dev/null and b/docs/images/doors_gate_wood_closed.png differ diff --git a/docs/images/doors_trapdoor.png b/docs/images/doors_trapdoor.png new file mode 100644 index 0000000..fe5223a Binary files /dev/null and b/docs/images/doors_trapdoor.png differ diff --git a/docs/images/doors_trapdoor_steel.png b/docs/images/doors_trapdoor_steel.png new file mode 100644 index 0000000..66106b6 Binary files /dev/null and b/docs/images/doors_trapdoor_steel.png differ diff --git a/docs/images/dye_black.png b/docs/images/dye_black.png new file mode 100644 index 0000000..27a69a2 Binary files /dev/null and b/docs/images/dye_black.png differ diff --git a/docs/images/dye_blue.png b/docs/images/dye_blue.png new file mode 100644 index 0000000..ebae210 Binary files /dev/null and b/docs/images/dye_blue.png differ diff --git a/docs/images/dye_brown.png b/docs/images/dye_brown.png new file mode 100644 index 0000000..542f6d1 Binary files /dev/null and b/docs/images/dye_brown.png differ diff --git a/docs/images/dye_cyan.png b/docs/images/dye_cyan.png new file mode 100644 index 0000000..ae6b203 Binary files /dev/null and b/docs/images/dye_cyan.png differ diff --git a/docs/images/dye_dark_green.png b/docs/images/dye_dark_green.png new file mode 100644 index 0000000..1b942eb Binary files /dev/null and b/docs/images/dye_dark_green.png differ diff --git a/docs/images/dye_dark_grey.png b/docs/images/dye_dark_grey.png new file mode 100644 index 0000000..cda0c2b Binary files /dev/null and b/docs/images/dye_dark_grey.png differ diff --git a/docs/images/dye_green.png b/docs/images/dye_green.png new file mode 100644 index 0000000..dd90a7f Binary files /dev/null and b/docs/images/dye_green.png differ diff --git a/docs/images/dye_grey.png b/docs/images/dye_grey.png new file mode 100644 index 0000000..8959153 Binary files /dev/null and b/docs/images/dye_grey.png differ diff --git a/docs/images/dye_magenta.png b/docs/images/dye_magenta.png new file mode 100644 index 0000000..d2bf592 Binary files /dev/null and b/docs/images/dye_magenta.png differ diff --git a/docs/images/dye_orange.png b/docs/images/dye_orange.png new file mode 100644 index 0000000..5f69a74 Binary files /dev/null and b/docs/images/dye_orange.png differ diff --git a/docs/images/dye_pink.png b/docs/images/dye_pink.png new file mode 100644 index 0000000..1c63124 Binary files /dev/null and b/docs/images/dye_pink.png differ diff --git a/docs/images/dye_red.png b/docs/images/dye_red.png new file mode 100644 index 0000000..6d514e6 Binary files /dev/null and b/docs/images/dye_red.png differ diff --git a/docs/images/dye_violet.png b/docs/images/dye_violet.png new file mode 100644 index 0000000..dc63024 Binary files /dev/null and b/docs/images/dye_violet.png differ diff --git a/docs/images/dye_white.png b/docs/images/dye_white.png new file mode 100644 index 0000000..527f8a2 Binary files /dev/null and b/docs/images/dye_white.png differ diff --git a/docs/images/dye_yellow.png b/docs/images/dye_yellow.png new file mode 100644 index 0000000..187d82d Binary files /dev/null and b/docs/images/dye_yellow.png differ diff --git a/docs/images/farming_bread.png b/docs/images/farming_bread.png new file mode 100644 index 0000000..e68732c Binary files /dev/null and b/docs/images/farming_bread.png differ diff --git a/docs/images/farming_cotton.png b/docs/images/farming_cotton.png new file mode 100644 index 0000000..05fa023 Binary files /dev/null and b/docs/images/farming_cotton.png differ diff --git a/docs/images/farming_flour.png b/docs/images/farming_flour.png new file mode 100644 index 0000000..069fe5f Binary files /dev/null and b/docs/images/farming_flour.png differ diff --git a/docs/images/farming_hoe_steel.png b/docs/images/farming_hoe_steel.png new file mode 100644 index 0000000..f40d51b Binary files /dev/null and b/docs/images/farming_hoe_steel.png differ diff --git a/docs/images/farming_hoe_stone.png b/docs/images/farming_hoe_stone.png new file mode 100644 index 0000000..1cd8de7 Binary files /dev/null and b/docs/images/farming_hoe_stone.png differ diff --git a/docs/images/farming_hoe_wood.png b/docs/images/farming_hoe_wood.png new file mode 100644 index 0000000..d12e88a Binary files /dev/null and b/docs/images/farming_hoe_wood.png differ diff --git a/docs/images/farming_seed_cotton.png b/docs/images/farming_seed_cotton.png new file mode 100644 index 0000000..4b1f3fc Binary files /dev/null and b/docs/images/farming_seed_cotton.png differ diff --git a/docs/images/farming_seed_wheat.png b/docs/images/farming_seed_wheat.png new file mode 100644 index 0000000..7bb0a66 Binary files /dev/null and b/docs/images/farming_seed_wheat.png differ diff --git a/docs/images/farming_straw.png b/docs/images/farming_straw.png new file mode 100644 index 0000000..b7d9a0c Binary files /dev/null and b/docs/images/farming_straw.png differ diff --git a/docs/images/farming_string.png b/docs/images/farming_string.png new file mode 100644 index 0000000..698f528 Binary files /dev/null and b/docs/images/farming_string.png differ diff --git a/docs/images/farming_wheat.png b/docs/images/farming_wheat.png new file mode 100644 index 0000000..228f054 Binary files /dev/null and b/docs/images/farming_wheat.png differ diff --git a/docs/images/fire_flint_and_steel.png b/docs/images/fire_flint_and_steel.png new file mode 100644 index 0000000..42b5164 Binary files /dev/null and b/docs/images/fire_flint_and_steel.png differ diff --git a/docs/images/fire_permanent_flame.png b/docs/images/fire_permanent_flame.png new file mode 100644 index 0000000..1504974 Binary files /dev/null and b/docs/images/fire_permanent_flame.png differ diff --git a/docs/images/fireflies_bug_net.png b/docs/images/fireflies_bug_net.png new file mode 100644 index 0000000..8b1693e Binary files /dev/null and b/docs/images/fireflies_bug_net.png differ diff --git a/docs/images/fireflies_firefly.png b/docs/images/fireflies_firefly.png new file mode 100644 index 0000000..4e1d6a8 Binary files /dev/null and b/docs/images/fireflies_firefly.png differ diff --git a/docs/images/fireflies_firefly_bottle.png b/docs/images/fireflies_firefly_bottle.png new file mode 100644 index 0000000..278f21a Binary files /dev/null and b/docs/images/fireflies_firefly_bottle.png differ diff --git a/docs/images/flowers_chrysanthemum_green.png b/docs/images/flowers_chrysanthemum_green.png new file mode 100644 index 0000000..b60f88a Binary files /dev/null and b/docs/images/flowers_chrysanthemum_green.png differ diff --git a/docs/images/flowers_dandelion_white.png b/docs/images/flowers_dandelion_white.png new file mode 100644 index 0000000..350e0b2 Binary files /dev/null and b/docs/images/flowers_dandelion_white.png differ diff --git a/docs/images/flowers_dandelion_yellow.png b/docs/images/flowers_dandelion_yellow.png new file mode 100644 index 0000000..e275e28 Binary files /dev/null and b/docs/images/flowers_dandelion_yellow.png differ diff --git a/docs/images/flowers_flower_dandelion_white.png b/docs/images/flowers_flower_dandelion_white.png new file mode 100644 index 0000000..350e0b2 Binary files /dev/null and b/docs/images/flowers_flower_dandelion_white.png differ diff --git a/docs/images/flowers_flower_dandelion_yellow.png b/docs/images/flowers_flower_dandelion_yellow.png new file mode 100644 index 0000000..e275e28 Binary files /dev/null and b/docs/images/flowers_flower_dandelion_yellow.png differ diff --git a/docs/images/flowers_flower_geranium.png b/docs/images/flowers_flower_geranium.png new file mode 100644 index 0000000..18149fc Binary files /dev/null and b/docs/images/flowers_flower_geranium.png differ diff --git a/docs/images/flowers_flower_rose.png b/docs/images/flowers_flower_rose.png new file mode 100644 index 0000000..46d8bdb Binary files /dev/null and b/docs/images/flowers_flower_rose.png differ diff --git a/docs/images/flowers_flower_tulip.png b/docs/images/flowers_flower_tulip.png new file mode 100644 index 0000000..b762f02 Binary files /dev/null and b/docs/images/flowers_flower_tulip.png differ diff --git a/docs/images/flowers_flower_viola.png b/docs/images/flowers_flower_viola.png new file mode 100644 index 0000000..d29c5f1 Binary files /dev/null and b/docs/images/flowers_flower_viola.png differ diff --git a/docs/images/flowers_geranium.png b/docs/images/flowers_geranium.png new file mode 100644 index 0000000..18149fc Binary files /dev/null and b/docs/images/flowers_geranium.png differ diff --git a/docs/images/flowers_mushroom_brown.png b/docs/images/flowers_mushroom_brown.png new file mode 100644 index 0000000..51af8ac Binary files /dev/null and b/docs/images/flowers_mushroom_brown.png differ diff --git a/docs/images/flowers_mushroom_fertile_brown.png b/docs/images/flowers_mushroom_fertile_brown.png new file mode 100644 index 0000000..51af8ac Binary files /dev/null and b/docs/images/flowers_mushroom_fertile_brown.png differ diff --git a/docs/images/flowers_mushroom_fertile_red.png b/docs/images/flowers_mushroom_fertile_red.png new file mode 100644 index 0000000..f81af12 Binary files /dev/null and b/docs/images/flowers_mushroom_fertile_red.png differ diff --git a/docs/images/flowers_mushroom_red.png b/docs/images/flowers_mushroom_red.png new file mode 100644 index 0000000..f81af12 Binary files /dev/null and b/docs/images/flowers_mushroom_red.png differ diff --git a/docs/images/flowers_mushroom_spores_brown.png b/docs/images/flowers_mushroom_spores_brown.png new file mode 100644 index 0000000..51af8ac Binary files /dev/null and b/docs/images/flowers_mushroom_spores_brown.png differ diff --git a/docs/images/flowers_mushroom_spores_red.png b/docs/images/flowers_mushroom_spores_red.png new file mode 100644 index 0000000..f81af12 Binary files /dev/null and b/docs/images/flowers_mushroom_spores_red.png differ diff --git a/docs/images/flowers_rose.png b/docs/images/flowers_rose.png new file mode 100644 index 0000000..46d8bdb Binary files /dev/null and b/docs/images/flowers_rose.png differ diff --git a/docs/images/flowers_tulip.png b/docs/images/flowers_tulip.png new file mode 100644 index 0000000..b762f02 Binary files /dev/null and b/docs/images/flowers_tulip.png differ diff --git a/docs/images/flowers_tulip_black.png b/docs/images/flowers_tulip_black.png new file mode 100644 index 0000000..235493c Binary files /dev/null and b/docs/images/flowers_tulip_black.png differ diff --git a/docs/images/flowers_viola.png b/docs/images/flowers_viola.png new file mode 100644 index 0000000..d29c5f1 Binary files /dev/null and b/docs/images/flowers_viola.png differ diff --git a/docs/images/flowers_waterlily.png b/docs/images/flowers_waterlily.png new file mode 100644 index 0000000..0d080c7 Binary files /dev/null and b/docs/images/flowers_waterlily.png differ diff --git a/docs/images/furnace.png b/docs/images/furnace.png new file mode 100644 index 0000000..bf5d669 Binary files /dev/null and b/docs/images/furnace.png differ diff --git a/docs/images/glass.png b/docs/images/glass.png new file mode 100644 index 0000000..5f4c998 Binary files /dev/null and b/docs/images/glass.png differ diff --git a/docs/images/gravel.png b/docs/images/gravel.png new file mode 100644 index 0000000..f74ad33 Binary files /dev/null and b/docs/images/gravel.png differ diff --git a/docs/images/junglegrass.png b/docs/images/junglegrass.png new file mode 100644 index 0000000..46a1fd2 Binary files /dev/null and b/docs/images/junglegrass.png differ diff --git a/docs/images/jungletree.png b/docs/images/jungletree.png new file mode 100644 index 0000000..5fdd5df Binary files /dev/null and b/docs/images/jungletree.png differ diff --git a/docs/images/ladder.png b/docs/images/ladder.png new file mode 100644 index 0000000..0f20e4c Binary files /dev/null and b/docs/images/ladder.png differ diff --git a/docs/images/lava_source.png b/docs/images/lava_source.png new file mode 100644 index 0000000..ec61876 Binary files /dev/null and b/docs/images/lava_source.png differ diff --git a/docs/images/leaves.png b/docs/images/leaves.png new file mode 100644 index 0000000..2797e40 Binary files /dev/null and b/docs/images/leaves.png differ diff --git a/docs/images/locked_chest.png b/docs/images/locked_chest.png new file mode 100644 index 0000000..1403f91 Binary files /dev/null and b/docs/images/locked_chest.png differ diff --git a/docs/images/lump_of_clay.png b/docs/images/lump_of_clay.png new file mode 100644 index 0000000..17b450f Binary files /dev/null and b/docs/images/lump_of_clay.png differ diff --git a/docs/images/lump_of_coal.png b/docs/images/lump_of_coal.png new file mode 100644 index 0000000..e630529 Binary files /dev/null and b/docs/images/lump_of_coal.png differ diff --git a/docs/images/lump_of_iron.png b/docs/images/lump_of_iron.png new file mode 100644 index 0000000..10986a0 Binary files /dev/null and b/docs/images/lump_of_iron.png differ diff --git a/docs/images/map_mapping_kit.png b/docs/images/map_mapping_kit.png new file mode 100644 index 0000000..f5d4290 Binary files /dev/null and b/docs/images/map_mapping_kit.png differ diff --git a/docs/images/mapgen_apple.png b/docs/images/mapgen_apple.png new file mode 100644 index 0000000..92e14a9 Binary files /dev/null and b/docs/images/mapgen_apple.png differ diff --git a/docs/images/mapgen_cobble.png b/docs/images/mapgen_cobble.png new file mode 100644 index 0000000..7b79364 Binary files /dev/null and b/docs/images/mapgen_cobble.png differ diff --git a/docs/images/mapgen_desert_sand.png b/docs/images/mapgen_desert_sand.png new file mode 100644 index 0000000..9dafca3 Binary files /dev/null and b/docs/images/mapgen_desert_sand.png differ diff --git a/docs/images/mapgen_desert_stone.png b/docs/images/mapgen_desert_stone.png new file mode 100644 index 0000000..a0c8ef8 Binary files /dev/null and b/docs/images/mapgen_desert_stone.png differ diff --git a/docs/images/mapgen_dirt.png b/docs/images/mapgen_dirt.png new file mode 100644 index 0000000..6b9fc6d Binary files /dev/null and b/docs/images/mapgen_dirt.png differ diff --git a/docs/images/mapgen_dirt_with_grass.png b/docs/images/mapgen_dirt_with_grass.png new file mode 100644 index 0000000..70eab52 Binary files /dev/null and b/docs/images/mapgen_dirt_with_grass.png differ diff --git a/docs/images/mapgen_dirt_with_snow.png b/docs/images/mapgen_dirt_with_snow.png new file mode 100644 index 0000000..55c5622 Binary files /dev/null and b/docs/images/mapgen_dirt_with_snow.png differ diff --git a/docs/images/mapgen_gravel.png b/docs/images/mapgen_gravel.png new file mode 100644 index 0000000..f74ad33 Binary files /dev/null and b/docs/images/mapgen_gravel.png differ diff --git a/docs/images/mapgen_ice.png b/docs/images/mapgen_ice.png new file mode 100644 index 0000000..db23462 Binary files /dev/null and b/docs/images/mapgen_ice.png differ diff --git a/docs/images/mapgen_junglegrass.png b/docs/images/mapgen_junglegrass.png new file mode 100644 index 0000000..46a1fd2 Binary files /dev/null and b/docs/images/mapgen_junglegrass.png differ diff --git a/docs/images/mapgen_jungleleaves.png b/docs/images/mapgen_jungleleaves.png new file mode 100644 index 0000000..7f05440 Binary files /dev/null and b/docs/images/mapgen_jungleleaves.png differ diff --git a/docs/images/mapgen_jungletree.png b/docs/images/mapgen_jungletree.png new file mode 100644 index 0000000..5fdd5df Binary files /dev/null and b/docs/images/mapgen_jungletree.png differ diff --git a/docs/images/mapgen_lava_source.png b/docs/images/mapgen_lava_source.png new file mode 100644 index 0000000..ec61876 Binary files /dev/null and b/docs/images/mapgen_lava_source.png differ diff --git a/docs/images/mapgen_leaves.png b/docs/images/mapgen_leaves.png new file mode 100644 index 0000000..2797e40 Binary files /dev/null and b/docs/images/mapgen_leaves.png differ diff --git a/docs/images/mapgen_mossycobble.png b/docs/images/mapgen_mossycobble.png new file mode 100644 index 0000000..d36dec6 Binary files /dev/null and b/docs/images/mapgen_mossycobble.png differ diff --git a/docs/images/mapgen_pine_needles.png b/docs/images/mapgen_pine_needles.png new file mode 100644 index 0000000..dde4fbc Binary files /dev/null and b/docs/images/mapgen_pine_needles.png differ diff --git a/docs/images/mapgen_pine_tree.png b/docs/images/mapgen_pine_tree.png new file mode 100644 index 0000000..eb9dba1 Binary files /dev/null and b/docs/images/mapgen_pine_tree.png differ diff --git a/docs/images/mapgen_river_water_source.png b/docs/images/mapgen_river_water_source.png new file mode 100644 index 0000000..ef40cbd Binary files /dev/null and b/docs/images/mapgen_river_water_source.png differ diff --git a/docs/images/mapgen_sand.png b/docs/images/mapgen_sand.png new file mode 100644 index 0000000..244533d Binary files /dev/null and b/docs/images/mapgen_sand.png differ diff --git a/docs/images/mapgen_snow.png b/docs/images/mapgen_snow.png new file mode 100644 index 0000000..0b64e79 Binary files /dev/null and b/docs/images/mapgen_snow.png differ diff --git a/docs/images/mapgen_snowblock.png b/docs/images/mapgen_snowblock.png new file mode 100644 index 0000000..d7e8492 Binary files /dev/null and b/docs/images/mapgen_snowblock.png differ diff --git a/docs/images/mapgen_stair_cobble.png b/docs/images/mapgen_stair_cobble.png new file mode 100644 index 0000000..63d4ba0 Binary files /dev/null and b/docs/images/mapgen_stair_cobble.png differ diff --git a/docs/images/mapgen_stair_desert_stone.png b/docs/images/mapgen_stair_desert_stone.png new file mode 100644 index 0000000..84eff89 Binary files /dev/null and b/docs/images/mapgen_stair_desert_stone.png differ diff --git a/docs/images/mapgen_stone.png b/docs/images/mapgen_stone.png new file mode 100644 index 0000000..33d2bdd Binary files /dev/null and b/docs/images/mapgen_stone.png differ diff --git a/docs/images/mapgen_tree.png b/docs/images/mapgen_tree.png new file mode 100644 index 0000000..1244655 Binary files /dev/null and b/docs/images/mapgen_tree.png differ diff --git a/docs/images/mapgen_water_source.png b/docs/images/mapgen_water_source.png new file mode 100644 index 0000000..9c767dd Binary files /dev/null and b/docs/images/mapgen_water_source.png differ diff --git a/docs/images/mese.png b/docs/images/mese.png new file mode 100644 index 0000000..b334dca Binary files /dev/null and b/docs/images/mese.png differ diff --git a/docs/images/mossycobble.png b/docs/images/mossycobble.png new file mode 100644 index 0000000..d36dec6 Binary files /dev/null and b/docs/images/mossycobble.png differ diff --git a/docs/images/mushroom_brown_natural.png b/docs/images/mushroom_brown_natural.png new file mode 100644 index 0000000..51af8ac Binary files /dev/null and b/docs/images/mushroom_brown_natural.png differ diff --git a/docs/images/mushroom_red_natural.png b/docs/images/mushroom_red_natural.png new file mode 100644 index 0000000..f81af12 Binary files /dev/null and b/docs/images/mushroom_red_natural.png differ diff --git a/docs/images/node.png b/docs/images/node.png new file mode 100644 index 0000000..ea95e84 Binary files /dev/null and b/docs/images/node.png differ diff --git a/docs/images/paper.png b/docs/images/paper.png new file mode 100644 index 0000000..51d921b Binary files /dev/null and b/docs/images/paper.png differ diff --git a/docs/images/papyrus.png b/docs/images/papyrus.png new file mode 100644 index 0000000..f331988 Binary files /dev/null and b/docs/images/papyrus.png differ diff --git a/docs/images/rail.png b/docs/images/rail.png new file mode 100644 index 0000000..3807efa Binary files /dev/null and b/docs/images/rail.png differ diff --git a/docs/images/sand.png b/docs/images/sand.png new file mode 100644 index 0000000..244533d Binary files /dev/null and b/docs/images/sand.png differ diff --git a/docs/images/sandstone.png b/docs/images/sandstone.png new file mode 100644 index 0000000..21948f8 Binary files /dev/null and b/docs/images/sandstone.png differ diff --git a/docs/images/sapling.png b/docs/images/sapling.png new file mode 100644 index 0000000..fd3c208 Binary files /dev/null and b/docs/images/sapling.png differ diff --git a/docs/images/screwdriver_screwdriver.png b/docs/images/screwdriver_screwdriver.png new file mode 100644 index 0000000..d376186 Binary files /dev/null and b/docs/images/screwdriver_screwdriver.png differ diff --git a/docs/images/screwdriver_screwdriver1.png b/docs/images/screwdriver_screwdriver1.png new file mode 100644 index 0000000..d376186 Binary files /dev/null and b/docs/images/screwdriver_screwdriver1.png differ diff --git a/docs/images/screwdriver_screwdriver2.png b/docs/images/screwdriver_screwdriver2.png new file mode 100644 index 0000000..d376186 Binary files /dev/null and b/docs/images/screwdriver_screwdriver2.png differ diff --git a/docs/images/screwdriver_screwdriver3.png b/docs/images/screwdriver_screwdriver3.png new file mode 100644 index 0000000..d376186 Binary files /dev/null and b/docs/images/screwdriver_screwdriver3.png differ diff --git a/docs/images/screwdriver_screwdriver4.png b/docs/images/screwdriver_screwdriver4.png new file mode 100644 index 0000000..d376186 Binary files /dev/null and b/docs/images/screwdriver_screwdriver4.png differ diff --git a/docs/images/sign_wall.png b/docs/images/sign_wall.png new file mode 100644 index 0000000..a8cfb1e Binary files /dev/null and b/docs/images/sign_wall.png differ diff --git a/docs/images/snow.png b/docs/images/snow.png new file mode 100644 index 0000000..0b64e79 Binary files /dev/null and b/docs/images/snow.png differ diff --git a/docs/images/stairs_slab_acacia_wood.png b/docs/images/stairs_slab_acacia_wood.png new file mode 100644 index 0000000..bc8a629 Binary files /dev/null and b/docs/images/stairs_slab_acacia_wood.png differ diff --git a/docs/images/stairs_slab_aspen_wood.png b/docs/images/stairs_slab_aspen_wood.png new file mode 100644 index 0000000..a92c4b5 Binary files /dev/null and b/docs/images/stairs_slab_aspen_wood.png differ diff --git a/docs/images/stairs_slab_brick.png b/docs/images/stairs_slab_brick.png new file mode 100644 index 0000000..d956dd1 Binary files /dev/null and b/docs/images/stairs_slab_brick.png differ diff --git a/docs/images/stairs_slab_bronzeblock.png b/docs/images/stairs_slab_bronzeblock.png new file mode 100644 index 0000000..97e04a6 Binary files /dev/null and b/docs/images/stairs_slab_bronzeblock.png differ diff --git a/docs/images/stairs_slab_cobble.png b/docs/images/stairs_slab_cobble.png new file mode 100644 index 0000000..424362c Binary files /dev/null and b/docs/images/stairs_slab_cobble.png differ diff --git a/docs/images/stairs_slab_copperblock.png b/docs/images/stairs_slab_copperblock.png new file mode 100644 index 0000000..6fc8d78 Binary files /dev/null and b/docs/images/stairs_slab_copperblock.png differ diff --git a/docs/images/stairs_slab_desert_cobble.png b/docs/images/stairs_slab_desert_cobble.png new file mode 100644 index 0000000..6f0ce5d Binary files /dev/null and b/docs/images/stairs_slab_desert_cobble.png differ diff --git a/docs/images/stairs_slab_desert_sandstone.png b/docs/images/stairs_slab_desert_sandstone.png new file mode 100644 index 0000000..3f359c9 Binary files /dev/null and b/docs/images/stairs_slab_desert_sandstone.png differ diff --git a/docs/images/stairs_slab_desert_sandstone_block.png b/docs/images/stairs_slab_desert_sandstone_block.png new file mode 100644 index 0000000..2b39265 Binary files /dev/null and b/docs/images/stairs_slab_desert_sandstone_block.png differ diff --git a/docs/images/stairs_slab_desert_sandstone_brick.png b/docs/images/stairs_slab_desert_sandstone_brick.png new file mode 100644 index 0000000..e8f1a20 Binary files /dev/null and b/docs/images/stairs_slab_desert_sandstone_brick.png differ diff --git a/docs/images/stairs_slab_desert_stone.png b/docs/images/stairs_slab_desert_stone.png new file mode 100644 index 0000000..3a642ef Binary files /dev/null and b/docs/images/stairs_slab_desert_stone.png differ diff --git a/docs/images/stairs_slab_desert_stone_block.png b/docs/images/stairs_slab_desert_stone_block.png new file mode 100644 index 0000000..52bc926 Binary files /dev/null and b/docs/images/stairs_slab_desert_stone_block.png differ diff --git a/docs/images/stairs_slab_desert_stonebrick.png b/docs/images/stairs_slab_desert_stonebrick.png new file mode 100644 index 0000000..b854ce4 Binary files /dev/null and b/docs/images/stairs_slab_desert_stonebrick.png differ diff --git a/docs/images/stairs_slab_glass.png b/docs/images/stairs_slab_glass.png new file mode 100644 index 0000000..46c8f3c Binary files /dev/null and b/docs/images/stairs_slab_glass.png differ diff --git a/docs/images/stairs_slab_goldblock.png b/docs/images/stairs_slab_goldblock.png new file mode 100644 index 0000000..b29f3f7 Binary files /dev/null and b/docs/images/stairs_slab_goldblock.png differ diff --git a/docs/images/stairs_slab_ice.png b/docs/images/stairs_slab_ice.png new file mode 100644 index 0000000..83f7286 Binary files /dev/null and b/docs/images/stairs_slab_ice.png differ diff --git a/docs/images/stairs_slab_junglewood.png b/docs/images/stairs_slab_junglewood.png new file mode 100644 index 0000000..0d38f07 Binary files /dev/null and b/docs/images/stairs_slab_junglewood.png differ diff --git a/docs/images/stairs_slab_mossycobble.png b/docs/images/stairs_slab_mossycobble.png new file mode 100644 index 0000000..78e1ae6 Binary files /dev/null and b/docs/images/stairs_slab_mossycobble.png differ diff --git a/docs/images/stairs_slab_obsidian.png b/docs/images/stairs_slab_obsidian.png new file mode 100644 index 0000000..801d73a Binary files /dev/null and b/docs/images/stairs_slab_obsidian.png differ diff --git a/docs/images/stairs_slab_obsidian_block.png b/docs/images/stairs_slab_obsidian_block.png new file mode 100644 index 0000000..a9dd19f Binary files /dev/null and b/docs/images/stairs_slab_obsidian_block.png differ diff --git a/docs/images/stairs_slab_obsidian_glass.png b/docs/images/stairs_slab_obsidian_glass.png new file mode 100644 index 0000000..42c7ecf Binary files /dev/null and b/docs/images/stairs_slab_obsidian_glass.png differ diff --git a/docs/images/stairs_slab_obsidianbrick.png b/docs/images/stairs_slab_obsidianbrick.png new file mode 100644 index 0000000..052f6a3 Binary files /dev/null and b/docs/images/stairs_slab_obsidianbrick.png differ diff --git a/docs/images/stairs_slab_pine_wood.png b/docs/images/stairs_slab_pine_wood.png new file mode 100644 index 0000000..5893a0f Binary files /dev/null and b/docs/images/stairs_slab_pine_wood.png differ diff --git a/docs/images/stairs_slab_pinewood.png b/docs/images/stairs_slab_pinewood.png new file mode 100644 index 0000000..5893a0f Binary files /dev/null and b/docs/images/stairs_slab_pinewood.png differ diff --git a/docs/images/stairs_slab_sandstone.png b/docs/images/stairs_slab_sandstone.png new file mode 100644 index 0000000..aee1d4f Binary files /dev/null and b/docs/images/stairs_slab_sandstone.png differ diff --git a/docs/images/stairs_slab_sandstone_block.png b/docs/images/stairs_slab_sandstone_block.png new file mode 100644 index 0000000..38b769f Binary files /dev/null and b/docs/images/stairs_slab_sandstone_block.png differ diff --git a/docs/images/stairs_slab_sandstonebrick.png b/docs/images/stairs_slab_sandstonebrick.png new file mode 100644 index 0000000..149edec Binary files /dev/null and b/docs/images/stairs_slab_sandstonebrick.png differ diff --git a/docs/images/stairs_slab_silver_sandstone.png b/docs/images/stairs_slab_silver_sandstone.png new file mode 100644 index 0000000..d96850d Binary files /dev/null and b/docs/images/stairs_slab_silver_sandstone.png differ diff --git a/docs/images/stairs_slab_silver_sandstone_block.png b/docs/images/stairs_slab_silver_sandstone_block.png new file mode 100644 index 0000000..ee6439a Binary files /dev/null and b/docs/images/stairs_slab_silver_sandstone_block.png differ diff --git a/docs/images/stairs_slab_silver_sandstone_brick.png b/docs/images/stairs_slab_silver_sandstone_brick.png new file mode 100644 index 0000000..2cad299 Binary files /dev/null and b/docs/images/stairs_slab_silver_sandstone_brick.png differ diff --git a/docs/images/stairs_slab_snowblock.png b/docs/images/stairs_slab_snowblock.png new file mode 100644 index 0000000..33a9b90 Binary files /dev/null and b/docs/images/stairs_slab_snowblock.png differ diff --git a/docs/images/stairs_slab_steelblock.png b/docs/images/stairs_slab_steelblock.png new file mode 100644 index 0000000..046c3ba Binary files /dev/null and b/docs/images/stairs_slab_steelblock.png differ diff --git a/docs/images/stairs_slab_stone.png b/docs/images/stairs_slab_stone.png new file mode 100644 index 0000000..2408f13 Binary files /dev/null and b/docs/images/stairs_slab_stone.png differ diff --git a/docs/images/stairs_slab_stone_block.png b/docs/images/stairs_slab_stone_block.png new file mode 100644 index 0000000..e76da58 Binary files /dev/null and b/docs/images/stairs_slab_stone_block.png differ diff --git a/docs/images/stairs_slab_stonebrick.png b/docs/images/stairs_slab_stonebrick.png new file mode 100644 index 0000000..4016419 Binary files /dev/null and b/docs/images/stairs_slab_stonebrick.png differ diff --git a/docs/images/stairs_slab_straw.png b/docs/images/stairs_slab_straw.png new file mode 100644 index 0000000..e4be956 Binary files /dev/null and b/docs/images/stairs_slab_straw.png differ diff --git a/docs/images/stairs_slab_tinblock.png b/docs/images/stairs_slab_tinblock.png new file mode 100644 index 0000000..683280d Binary files /dev/null and b/docs/images/stairs_slab_tinblock.png differ diff --git a/docs/images/stairs_slab_wood.png b/docs/images/stairs_slab_wood.png new file mode 100644 index 0000000..cc5b48a Binary files /dev/null and b/docs/images/stairs_slab_wood.png differ diff --git a/docs/images/stairs_stair_acacia_wood.png b/docs/images/stairs_stair_acacia_wood.png new file mode 100644 index 0000000..e1c842b Binary files /dev/null and b/docs/images/stairs_stair_acacia_wood.png differ diff --git a/docs/images/stairs_stair_aspen_wood.png b/docs/images/stairs_stair_aspen_wood.png new file mode 100644 index 0000000..81548ab Binary files /dev/null and b/docs/images/stairs_stair_aspen_wood.png differ diff --git a/docs/images/stairs_stair_brick.png b/docs/images/stairs_stair_brick.png new file mode 100644 index 0000000..b0cf2a6 Binary files /dev/null and b/docs/images/stairs_stair_brick.png differ diff --git a/docs/images/stairs_stair_bronzeblock.png b/docs/images/stairs_stair_bronzeblock.png new file mode 100644 index 0000000..59a44de Binary files /dev/null and b/docs/images/stairs_stair_bronzeblock.png differ diff --git a/docs/images/stairs_stair_cobble.png b/docs/images/stairs_stair_cobble.png new file mode 100644 index 0000000..63d4ba0 Binary files /dev/null and b/docs/images/stairs_stair_cobble.png differ diff --git a/docs/images/stairs_stair_copperblock.png b/docs/images/stairs_stair_copperblock.png new file mode 100644 index 0000000..bf85147 Binary files /dev/null and b/docs/images/stairs_stair_copperblock.png differ diff --git a/docs/images/stairs_stair_desert_cobble.png b/docs/images/stairs_stair_desert_cobble.png new file mode 100644 index 0000000..0b2fb41 Binary files /dev/null and b/docs/images/stairs_stair_desert_cobble.png differ diff --git a/docs/images/stairs_stair_desert_sandstone.png b/docs/images/stairs_stair_desert_sandstone.png new file mode 100644 index 0000000..91f7a6f Binary files /dev/null and b/docs/images/stairs_stair_desert_sandstone.png differ diff --git a/docs/images/stairs_stair_desert_sandstone_block.png b/docs/images/stairs_stair_desert_sandstone_block.png new file mode 100644 index 0000000..98f2169 Binary files /dev/null and b/docs/images/stairs_stair_desert_sandstone_block.png differ diff --git a/docs/images/stairs_stair_desert_sandstone_brick.png b/docs/images/stairs_stair_desert_sandstone_brick.png new file mode 100644 index 0000000..46c7971 Binary files /dev/null and b/docs/images/stairs_stair_desert_sandstone_brick.png differ diff --git a/docs/images/stairs_stair_desert_stone.png b/docs/images/stairs_stair_desert_stone.png new file mode 100644 index 0000000..84eff89 Binary files /dev/null and b/docs/images/stairs_stair_desert_stone.png differ diff --git a/docs/images/stairs_stair_desert_stone_block.png b/docs/images/stairs_stair_desert_stone_block.png new file mode 100644 index 0000000..9226d7a Binary files /dev/null and b/docs/images/stairs_stair_desert_stone_block.png differ diff --git a/docs/images/stairs_stair_desert_stonebrick.png b/docs/images/stairs_stair_desert_stonebrick.png new file mode 100644 index 0000000..24f2b52 Binary files /dev/null and b/docs/images/stairs_stair_desert_stonebrick.png differ diff --git a/docs/images/stairs_stair_glass.png b/docs/images/stairs_stair_glass.png new file mode 100644 index 0000000..9675119 Binary files /dev/null and b/docs/images/stairs_stair_glass.png differ diff --git a/docs/images/stairs_stair_goldblock.png b/docs/images/stairs_stair_goldblock.png new file mode 100644 index 0000000..bcb3b6d Binary files /dev/null and b/docs/images/stairs_stair_goldblock.png differ diff --git a/docs/images/stairs_stair_ice.png b/docs/images/stairs_stair_ice.png new file mode 100644 index 0000000..706fe57 Binary files /dev/null and b/docs/images/stairs_stair_ice.png differ diff --git a/docs/images/stairs_stair_inner_acacia_wood.png b/docs/images/stairs_stair_inner_acacia_wood.png new file mode 100644 index 0000000..97fd2e0 Binary files /dev/null and b/docs/images/stairs_stair_inner_acacia_wood.png differ diff --git a/docs/images/stairs_stair_inner_aspen_wood.png b/docs/images/stairs_stair_inner_aspen_wood.png new file mode 100644 index 0000000..87d091a Binary files /dev/null and b/docs/images/stairs_stair_inner_aspen_wood.png differ diff --git a/docs/images/stairs_stair_inner_brick.png b/docs/images/stairs_stair_inner_brick.png new file mode 100644 index 0000000..2821af1 Binary files /dev/null and b/docs/images/stairs_stair_inner_brick.png differ diff --git a/docs/images/stairs_stair_inner_bronzeblock.png b/docs/images/stairs_stair_inner_bronzeblock.png new file mode 100644 index 0000000..faeaaa6 Binary files /dev/null and b/docs/images/stairs_stair_inner_bronzeblock.png differ diff --git a/docs/images/stairs_stair_inner_cobble.png b/docs/images/stairs_stair_inner_cobble.png new file mode 100644 index 0000000..e8f3631 Binary files /dev/null and b/docs/images/stairs_stair_inner_cobble.png differ diff --git a/docs/images/stairs_stair_inner_copperblock.png b/docs/images/stairs_stair_inner_copperblock.png new file mode 100644 index 0000000..016d485 Binary files /dev/null and b/docs/images/stairs_stair_inner_copperblock.png differ diff --git a/docs/images/stairs_stair_inner_desert_cobble.png b/docs/images/stairs_stair_inner_desert_cobble.png new file mode 100644 index 0000000..f1c39fb Binary files /dev/null and b/docs/images/stairs_stair_inner_desert_cobble.png differ diff --git a/docs/images/stairs_stair_inner_desert_sandstone.png b/docs/images/stairs_stair_inner_desert_sandstone.png new file mode 100644 index 0000000..7bf7ffc Binary files /dev/null and b/docs/images/stairs_stair_inner_desert_sandstone.png differ diff --git a/docs/images/stairs_stair_inner_desert_sandstone_block.png b/docs/images/stairs_stair_inner_desert_sandstone_block.png new file mode 100644 index 0000000..85885c4 Binary files /dev/null and b/docs/images/stairs_stair_inner_desert_sandstone_block.png differ diff --git a/docs/images/stairs_stair_inner_desert_sandstone_brick.png b/docs/images/stairs_stair_inner_desert_sandstone_brick.png new file mode 100644 index 0000000..f6f32b8 Binary files /dev/null and b/docs/images/stairs_stair_inner_desert_sandstone_brick.png differ diff --git a/docs/images/stairs_stair_inner_desert_stone.png b/docs/images/stairs_stair_inner_desert_stone.png new file mode 100644 index 0000000..e19cc93 Binary files /dev/null and b/docs/images/stairs_stair_inner_desert_stone.png differ diff --git a/docs/images/stairs_stair_inner_desert_stone_block.png b/docs/images/stairs_stair_inner_desert_stone_block.png new file mode 100644 index 0000000..136a27c Binary files /dev/null and b/docs/images/stairs_stair_inner_desert_stone_block.png differ diff --git a/docs/images/stairs_stair_inner_desert_stonebrick.png b/docs/images/stairs_stair_inner_desert_stonebrick.png new file mode 100644 index 0000000..669bc7b Binary files /dev/null and b/docs/images/stairs_stair_inner_desert_stonebrick.png differ diff --git a/docs/images/stairs_stair_inner_glass.png b/docs/images/stairs_stair_inner_glass.png new file mode 100644 index 0000000..3c5808d Binary files /dev/null and b/docs/images/stairs_stair_inner_glass.png differ diff --git a/docs/images/stairs_stair_inner_goldblock.png b/docs/images/stairs_stair_inner_goldblock.png new file mode 100644 index 0000000..a3f413e Binary files /dev/null and b/docs/images/stairs_stair_inner_goldblock.png differ diff --git a/docs/images/stairs_stair_inner_ice.png b/docs/images/stairs_stair_inner_ice.png new file mode 100644 index 0000000..f70f7f0 Binary files /dev/null and b/docs/images/stairs_stair_inner_ice.png differ diff --git a/docs/images/stairs_stair_inner_junglewood.png b/docs/images/stairs_stair_inner_junglewood.png new file mode 100644 index 0000000..4f37e08 Binary files /dev/null and b/docs/images/stairs_stair_inner_junglewood.png differ diff --git a/docs/images/stairs_stair_inner_mossycobble.png b/docs/images/stairs_stair_inner_mossycobble.png new file mode 100644 index 0000000..2344a88 Binary files /dev/null and b/docs/images/stairs_stair_inner_mossycobble.png differ diff --git a/docs/images/stairs_stair_inner_obsidian.png b/docs/images/stairs_stair_inner_obsidian.png new file mode 100644 index 0000000..8e8368c Binary files /dev/null and b/docs/images/stairs_stair_inner_obsidian.png differ diff --git a/docs/images/stairs_stair_inner_obsidian_block.png b/docs/images/stairs_stair_inner_obsidian_block.png new file mode 100644 index 0000000..3bd32cd Binary files /dev/null and b/docs/images/stairs_stair_inner_obsidian_block.png differ diff --git a/docs/images/stairs_stair_inner_obsidian_glass.png b/docs/images/stairs_stair_inner_obsidian_glass.png new file mode 100644 index 0000000..c058f9b Binary files /dev/null and b/docs/images/stairs_stair_inner_obsidian_glass.png differ diff --git a/docs/images/stairs_stair_inner_obsidianbrick.png b/docs/images/stairs_stair_inner_obsidianbrick.png new file mode 100644 index 0000000..327a73d Binary files /dev/null and b/docs/images/stairs_stair_inner_obsidianbrick.png differ diff --git a/docs/images/stairs_stair_inner_pine_wood.png b/docs/images/stairs_stair_inner_pine_wood.png new file mode 100644 index 0000000..1b0cd79 Binary files /dev/null and b/docs/images/stairs_stair_inner_pine_wood.png differ diff --git a/docs/images/stairs_stair_inner_sandstone.png b/docs/images/stairs_stair_inner_sandstone.png new file mode 100644 index 0000000..3d46733 Binary files /dev/null and b/docs/images/stairs_stair_inner_sandstone.png differ diff --git a/docs/images/stairs_stair_inner_sandstone_block.png b/docs/images/stairs_stair_inner_sandstone_block.png new file mode 100644 index 0000000..00c823d Binary files /dev/null and b/docs/images/stairs_stair_inner_sandstone_block.png differ diff --git a/docs/images/stairs_stair_inner_sandstonebrick.png b/docs/images/stairs_stair_inner_sandstonebrick.png new file mode 100644 index 0000000..977bc0c Binary files /dev/null and b/docs/images/stairs_stair_inner_sandstonebrick.png differ diff --git a/docs/images/stairs_stair_inner_silver_sandstone.png b/docs/images/stairs_stair_inner_silver_sandstone.png new file mode 100644 index 0000000..f9c10b5 Binary files /dev/null and b/docs/images/stairs_stair_inner_silver_sandstone.png differ diff --git a/docs/images/stairs_stair_inner_silver_sandstone_block.png b/docs/images/stairs_stair_inner_silver_sandstone_block.png new file mode 100644 index 0000000..e0c19d3 Binary files /dev/null and b/docs/images/stairs_stair_inner_silver_sandstone_block.png differ diff --git a/docs/images/stairs_stair_inner_silver_sandstone_brick.png b/docs/images/stairs_stair_inner_silver_sandstone_brick.png new file mode 100644 index 0000000..943bf22 Binary files /dev/null and b/docs/images/stairs_stair_inner_silver_sandstone_brick.png differ diff --git a/docs/images/stairs_stair_inner_snowblock.png b/docs/images/stairs_stair_inner_snowblock.png new file mode 100644 index 0000000..56c49c8 Binary files /dev/null and b/docs/images/stairs_stair_inner_snowblock.png differ diff --git a/docs/images/stairs_stair_inner_steelblock.png b/docs/images/stairs_stair_inner_steelblock.png new file mode 100644 index 0000000..6f2fe2a Binary files /dev/null and b/docs/images/stairs_stair_inner_steelblock.png differ diff --git a/docs/images/stairs_stair_inner_stone.png b/docs/images/stairs_stair_inner_stone.png new file mode 100644 index 0000000..8f35ed6 Binary files /dev/null and b/docs/images/stairs_stair_inner_stone.png differ diff --git a/docs/images/stairs_stair_inner_stone_block.png b/docs/images/stairs_stair_inner_stone_block.png new file mode 100644 index 0000000..2eab74e Binary files /dev/null and b/docs/images/stairs_stair_inner_stone_block.png differ diff --git a/docs/images/stairs_stair_inner_stonebrick.png b/docs/images/stairs_stair_inner_stonebrick.png new file mode 100644 index 0000000..7bee907 Binary files /dev/null and b/docs/images/stairs_stair_inner_stonebrick.png differ diff --git a/docs/images/stairs_stair_inner_straw.png b/docs/images/stairs_stair_inner_straw.png new file mode 100644 index 0000000..fd1d57e Binary files /dev/null and b/docs/images/stairs_stair_inner_straw.png differ diff --git a/docs/images/stairs_stair_inner_tinblock.png b/docs/images/stairs_stair_inner_tinblock.png new file mode 100644 index 0000000..d4367c5 Binary files /dev/null and b/docs/images/stairs_stair_inner_tinblock.png differ diff --git a/docs/images/stairs_stair_inner_wood.png b/docs/images/stairs_stair_inner_wood.png new file mode 100644 index 0000000..0c70c80 Binary files /dev/null and b/docs/images/stairs_stair_inner_wood.png differ diff --git a/docs/images/stairs_stair_junglewood.png b/docs/images/stairs_stair_junglewood.png new file mode 100644 index 0000000..737352b Binary files /dev/null and b/docs/images/stairs_stair_junglewood.png differ diff --git a/docs/images/stairs_stair_mossycobble.png b/docs/images/stairs_stair_mossycobble.png new file mode 100644 index 0000000..3e51d3b Binary files /dev/null and b/docs/images/stairs_stair_mossycobble.png differ diff --git a/docs/images/stairs_stair_obsidian.png b/docs/images/stairs_stair_obsidian.png new file mode 100644 index 0000000..83b59ae Binary files /dev/null and b/docs/images/stairs_stair_obsidian.png differ diff --git a/docs/images/stairs_stair_obsidian_block.png b/docs/images/stairs_stair_obsidian_block.png new file mode 100644 index 0000000..d3d98f0 Binary files /dev/null and b/docs/images/stairs_stair_obsidian_block.png differ diff --git a/docs/images/stairs_stair_obsidian_glass.png b/docs/images/stairs_stair_obsidian_glass.png new file mode 100644 index 0000000..dd1b7ff Binary files /dev/null and b/docs/images/stairs_stair_obsidian_glass.png differ diff --git a/docs/images/stairs_stair_obsidianbrick.png b/docs/images/stairs_stair_obsidianbrick.png new file mode 100644 index 0000000..578f1d1 Binary files /dev/null and b/docs/images/stairs_stair_obsidianbrick.png differ diff --git a/docs/images/stairs_stair_outer_acacia_wood.png b/docs/images/stairs_stair_outer_acacia_wood.png new file mode 100644 index 0000000..53b78a9 Binary files /dev/null and b/docs/images/stairs_stair_outer_acacia_wood.png differ diff --git a/docs/images/stairs_stair_outer_aspen_wood.png b/docs/images/stairs_stair_outer_aspen_wood.png new file mode 100644 index 0000000..30a7509 Binary files /dev/null and b/docs/images/stairs_stair_outer_aspen_wood.png differ diff --git a/docs/images/stairs_stair_outer_brick.png b/docs/images/stairs_stair_outer_brick.png new file mode 100644 index 0000000..10c5197 Binary files /dev/null and b/docs/images/stairs_stair_outer_brick.png differ diff --git a/docs/images/stairs_stair_outer_bronzeblock.png b/docs/images/stairs_stair_outer_bronzeblock.png new file mode 100644 index 0000000..c3bbab7 Binary files /dev/null and b/docs/images/stairs_stair_outer_bronzeblock.png differ diff --git a/docs/images/stairs_stair_outer_cobble.png b/docs/images/stairs_stair_outer_cobble.png new file mode 100644 index 0000000..0bdf678 Binary files /dev/null and b/docs/images/stairs_stair_outer_cobble.png differ diff --git a/docs/images/stairs_stair_outer_copperblock.png b/docs/images/stairs_stair_outer_copperblock.png new file mode 100644 index 0000000..30d3ae4 Binary files /dev/null and b/docs/images/stairs_stair_outer_copperblock.png differ diff --git a/docs/images/stairs_stair_outer_desert_cobble.png b/docs/images/stairs_stair_outer_desert_cobble.png new file mode 100644 index 0000000..739c1a5 Binary files /dev/null and b/docs/images/stairs_stair_outer_desert_cobble.png differ diff --git a/docs/images/stairs_stair_outer_desert_sandstone.png b/docs/images/stairs_stair_outer_desert_sandstone.png new file mode 100644 index 0000000..014e36c Binary files /dev/null and b/docs/images/stairs_stair_outer_desert_sandstone.png differ diff --git a/docs/images/stairs_stair_outer_desert_sandstone_block.png b/docs/images/stairs_stair_outer_desert_sandstone_block.png new file mode 100644 index 0000000..10a8172 Binary files /dev/null and b/docs/images/stairs_stair_outer_desert_sandstone_block.png differ diff --git a/docs/images/stairs_stair_outer_desert_sandstone_brick.png b/docs/images/stairs_stair_outer_desert_sandstone_brick.png new file mode 100644 index 0000000..314deab Binary files /dev/null and b/docs/images/stairs_stair_outer_desert_sandstone_brick.png differ diff --git a/docs/images/stairs_stair_outer_desert_stone.png b/docs/images/stairs_stair_outer_desert_stone.png new file mode 100644 index 0000000..8d69417 Binary files /dev/null and b/docs/images/stairs_stair_outer_desert_stone.png differ diff --git a/docs/images/stairs_stair_outer_desert_stone_block.png b/docs/images/stairs_stair_outer_desert_stone_block.png new file mode 100644 index 0000000..3527626 Binary files /dev/null and b/docs/images/stairs_stair_outer_desert_stone_block.png differ diff --git a/docs/images/stairs_stair_outer_desert_stonebrick.png b/docs/images/stairs_stair_outer_desert_stonebrick.png new file mode 100644 index 0000000..bc77806 Binary files /dev/null and b/docs/images/stairs_stair_outer_desert_stonebrick.png differ diff --git a/docs/images/stairs_stair_outer_glass.png b/docs/images/stairs_stair_outer_glass.png new file mode 100644 index 0000000..66522b1 Binary files /dev/null and b/docs/images/stairs_stair_outer_glass.png differ diff --git a/docs/images/stairs_stair_outer_goldblock.png b/docs/images/stairs_stair_outer_goldblock.png new file mode 100644 index 0000000..c29ee6e Binary files /dev/null and b/docs/images/stairs_stair_outer_goldblock.png differ diff --git a/docs/images/stairs_stair_outer_ice.png b/docs/images/stairs_stair_outer_ice.png new file mode 100644 index 0000000..0ca9382 Binary files /dev/null and b/docs/images/stairs_stair_outer_ice.png differ diff --git a/docs/images/stairs_stair_outer_junglewood.png b/docs/images/stairs_stair_outer_junglewood.png new file mode 100644 index 0000000..5a2fc70 Binary files /dev/null and b/docs/images/stairs_stair_outer_junglewood.png differ diff --git a/docs/images/stairs_stair_outer_mossycobble.png b/docs/images/stairs_stair_outer_mossycobble.png new file mode 100644 index 0000000..0bd1135 Binary files /dev/null and b/docs/images/stairs_stair_outer_mossycobble.png differ diff --git a/docs/images/stairs_stair_outer_obsidian.png b/docs/images/stairs_stair_outer_obsidian.png new file mode 100644 index 0000000..b9ed2b2 Binary files /dev/null and b/docs/images/stairs_stair_outer_obsidian.png differ diff --git a/docs/images/stairs_stair_outer_obsidian_block.png b/docs/images/stairs_stair_outer_obsidian_block.png new file mode 100644 index 0000000..6818397 Binary files /dev/null and b/docs/images/stairs_stair_outer_obsidian_block.png differ diff --git a/docs/images/stairs_stair_outer_obsidian_glass.png b/docs/images/stairs_stair_outer_obsidian_glass.png new file mode 100644 index 0000000..24ecbd8 Binary files /dev/null and b/docs/images/stairs_stair_outer_obsidian_glass.png differ diff --git a/docs/images/stairs_stair_outer_obsidianbrick.png b/docs/images/stairs_stair_outer_obsidianbrick.png new file mode 100644 index 0000000..e1d3d4c Binary files /dev/null and b/docs/images/stairs_stair_outer_obsidianbrick.png differ diff --git a/docs/images/stairs_stair_outer_pine_wood.png b/docs/images/stairs_stair_outer_pine_wood.png new file mode 100644 index 0000000..0275dfa Binary files /dev/null and b/docs/images/stairs_stair_outer_pine_wood.png differ diff --git a/docs/images/stairs_stair_outer_sandstone.png b/docs/images/stairs_stair_outer_sandstone.png new file mode 100644 index 0000000..aac1f4c Binary files /dev/null and b/docs/images/stairs_stair_outer_sandstone.png differ diff --git a/docs/images/stairs_stair_outer_sandstone_block.png b/docs/images/stairs_stair_outer_sandstone_block.png new file mode 100644 index 0000000..2effd7d Binary files /dev/null and b/docs/images/stairs_stair_outer_sandstone_block.png differ diff --git a/docs/images/stairs_stair_outer_sandstonebrick.png b/docs/images/stairs_stair_outer_sandstonebrick.png new file mode 100644 index 0000000..e65aae8 Binary files /dev/null and b/docs/images/stairs_stair_outer_sandstonebrick.png differ diff --git a/docs/images/stairs_stair_outer_silver_sandstone.png b/docs/images/stairs_stair_outer_silver_sandstone.png new file mode 100644 index 0000000..4ac8535 Binary files /dev/null and b/docs/images/stairs_stair_outer_silver_sandstone.png differ diff --git a/docs/images/stairs_stair_outer_silver_sandstone_block.png b/docs/images/stairs_stair_outer_silver_sandstone_block.png new file mode 100644 index 0000000..e84b1fd Binary files /dev/null and b/docs/images/stairs_stair_outer_silver_sandstone_block.png differ diff --git a/docs/images/stairs_stair_outer_silver_sandstone_brick.png b/docs/images/stairs_stair_outer_silver_sandstone_brick.png new file mode 100644 index 0000000..2dd6873 Binary files /dev/null and b/docs/images/stairs_stair_outer_silver_sandstone_brick.png differ diff --git a/docs/images/stairs_stair_outer_snowblock.png b/docs/images/stairs_stair_outer_snowblock.png new file mode 100644 index 0000000..88d052f Binary files /dev/null and b/docs/images/stairs_stair_outer_snowblock.png differ diff --git a/docs/images/stairs_stair_outer_steelblock.png b/docs/images/stairs_stair_outer_steelblock.png new file mode 100644 index 0000000..81fd6a4 Binary files /dev/null and b/docs/images/stairs_stair_outer_steelblock.png differ diff --git a/docs/images/stairs_stair_outer_stone.png b/docs/images/stairs_stair_outer_stone.png new file mode 100644 index 0000000..2623956 Binary files /dev/null and b/docs/images/stairs_stair_outer_stone.png differ diff --git a/docs/images/stairs_stair_outer_stone_block.png b/docs/images/stairs_stair_outer_stone_block.png new file mode 100644 index 0000000..a48a06e Binary files /dev/null and b/docs/images/stairs_stair_outer_stone_block.png differ diff --git a/docs/images/stairs_stair_outer_stonebrick.png b/docs/images/stairs_stair_outer_stonebrick.png new file mode 100644 index 0000000..f3f642c Binary files /dev/null and b/docs/images/stairs_stair_outer_stonebrick.png differ diff --git a/docs/images/stairs_stair_outer_straw.png b/docs/images/stairs_stair_outer_straw.png new file mode 100644 index 0000000..6024aa8 Binary files /dev/null and b/docs/images/stairs_stair_outer_straw.png differ diff --git a/docs/images/stairs_stair_outer_tinblock.png b/docs/images/stairs_stair_outer_tinblock.png new file mode 100644 index 0000000..be3ab9d Binary files /dev/null and b/docs/images/stairs_stair_outer_tinblock.png differ diff --git a/docs/images/stairs_stair_outer_wood.png b/docs/images/stairs_stair_outer_wood.png new file mode 100644 index 0000000..79eec9f Binary files /dev/null and b/docs/images/stairs_stair_outer_wood.png differ diff --git a/docs/images/stairs_stair_pine_wood.png b/docs/images/stairs_stair_pine_wood.png new file mode 100644 index 0000000..ead5b91 Binary files /dev/null and b/docs/images/stairs_stair_pine_wood.png differ diff --git a/docs/images/stairs_stair_pinewood.png b/docs/images/stairs_stair_pinewood.png new file mode 100644 index 0000000..ead5b91 Binary files /dev/null and b/docs/images/stairs_stair_pinewood.png differ diff --git a/docs/images/stairs_stair_sandstone.png b/docs/images/stairs_stair_sandstone.png new file mode 100644 index 0000000..28b1c8d Binary files /dev/null and b/docs/images/stairs_stair_sandstone.png differ diff --git a/docs/images/stairs_stair_sandstone_block.png b/docs/images/stairs_stair_sandstone_block.png new file mode 100644 index 0000000..481ebfc Binary files /dev/null and b/docs/images/stairs_stair_sandstone_block.png differ diff --git a/docs/images/stairs_stair_sandstonebrick.png b/docs/images/stairs_stair_sandstonebrick.png new file mode 100644 index 0000000..af49ac6 Binary files /dev/null and b/docs/images/stairs_stair_sandstonebrick.png differ diff --git a/docs/images/stairs_stair_silver_sandstone.png b/docs/images/stairs_stair_silver_sandstone.png new file mode 100644 index 0000000..9163543 Binary files /dev/null and b/docs/images/stairs_stair_silver_sandstone.png differ diff --git a/docs/images/stairs_stair_silver_sandstone_block.png b/docs/images/stairs_stair_silver_sandstone_block.png new file mode 100644 index 0000000..38eeeaf Binary files /dev/null and b/docs/images/stairs_stair_silver_sandstone_block.png differ diff --git a/docs/images/stairs_stair_silver_sandstone_brick.png b/docs/images/stairs_stair_silver_sandstone_brick.png new file mode 100644 index 0000000..cc5461f Binary files /dev/null and b/docs/images/stairs_stair_silver_sandstone_brick.png differ diff --git a/docs/images/stairs_stair_snowblock.png b/docs/images/stairs_stair_snowblock.png new file mode 100644 index 0000000..0e52c3c Binary files /dev/null and b/docs/images/stairs_stair_snowblock.png differ diff --git a/docs/images/stairs_stair_steelblock.png b/docs/images/stairs_stair_steelblock.png new file mode 100644 index 0000000..92e46c5 Binary files /dev/null and b/docs/images/stairs_stair_steelblock.png differ diff --git a/docs/images/stairs_stair_stone.png b/docs/images/stairs_stair_stone.png new file mode 100644 index 0000000..6ce0963 Binary files /dev/null and b/docs/images/stairs_stair_stone.png differ diff --git a/docs/images/stairs_stair_stone_block.png b/docs/images/stairs_stair_stone_block.png new file mode 100644 index 0000000..d68bc80 Binary files /dev/null and b/docs/images/stairs_stair_stone_block.png differ diff --git a/docs/images/stairs_stair_stonebrick.png b/docs/images/stairs_stair_stonebrick.png new file mode 100644 index 0000000..f87eee6 Binary files /dev/null and b/docs/images/stairs_stair_stonebrick.png differ diff --git a/docs/images/stairs_stair_straw.png b/docs/images/stairs_stair_straw.png new file mode 100644 index 0000000..31defe0 Binary files /dev/null and b/docs/images/stairs_stair_straw.png differ diff --git a/docs/images/stairs_stair_tinblock.png b/docs/images/stairs_stair_tinblock.png new file mode 100644 index 0000000..f70becf Binary files /dev/null and b/docs/images/stairs_stair_tinblock.png differ diff --git a/docs/images/stairs_stair_wood.png b/docs/images/stairs_stair_wood.png new file mode 100644 index 0000000..3f7d3f5 Binary files /dev/null and b/docs/images/stairs_stair_wood.png differ diff --git a/docs/images/steel_ingot.png b/docs/images/steel_ingot.png new file mode 100644 index 0000000..95f1c90 Binary files /dev/null and b/docs/images/steel_ingot.png differ diff --git a/docs/images/steelblock.png b/docs/images/steelblock.png new file mode 100644 index 0000000..6bda0d5 Binary files /dev/null and b/docs/images/steelblock.png differ diff --git a/docs/images/stone.png b/docs/images/stone.png new file mode 100644 index 0000000..33d2bdd Binary files /dev/null and b/docs/images/stone.png differ diff --git a/docs/images/stone_with_coal.png b/docs/images/stone_with_coal.png new file mode 100644 index 0000000..0c46565 Binary files /dev/null and b/docs/images/stone_with_coal.png differ diff --git a/docs/images/stone_with_iron.png b/docs/images/stone_with_iron.png new file mode 100644 index 0000000..0483e4b Binary files /dev/null and b/docs/images/stone_with_iron.png differ diff --git a/docs/images/tnt_boom.png b/docs/images/tnt_boom.png new file mode 100644 index 0000000..0858c19 Binary files /dev/null and b/docs/images/tnt_boom.png differ diff --git a/docs/images/tnt_gunpowder.png b/docs/images/tnt_gunpowder.png new file mode 100644 index 0000000..2a0e753 Binary files /dev/null and b/docs/images/tnt_gunpowder.png differ diff --git a/docs/images/tnt_gunpowder_burning.png b/docs/images/tnt_gunpowder_burning.png new file mode 100644 index 0000000..0f260cd Binary files /dev/null and b/docs/images/tnt_gunpowder_burning.png differ diff --git a/docs/images/tnt_tnt.png b/docs/images/tnt_tnt.png new file mode 100644 index 0000000..d1d43d1 Binary files /dev/null and b/docs/images/tnt_tnt.png differ diff --git a/docs/images/tnt_tnt_burning.png b/docs/images/tnt_tnt_burning.png new file mode 100644 index 0000000..c1384a6 Binary files /dev/null and b/docs/images/tnt_tnt_burning.png differ diff --git a/docs/images/tnt_tnt_stick.png b/docs/images/tnt_tnt_stick.png new file mode 100644 index 0000000..1432184 Binary files /dev/null and b/docs/images/tnt_tnt_stick.png differ diff --git a/docs/images/tool.png b/docs/images/tool.png new file mode 100644 index 0000000..ea95e84 Binary files /dev/null and b/docs/images/tool.png differ diff --git a/docs/images/torch.png b/docs/images/torch.png new file mode 100644 index 0000000..3e8bf88 Binary files /dev/null and b/docs/images/torch.png differ diff --git a/docs/images/tree.png b/docs/images/tree.png new file mode 100644 index 0000000..1244655 Binary files /dev/null and b/docs/images/tree.png differ diff --git a/docs/images/unknown_item.png b/docs/images/unknown_item.png new file mode 100644 index 0000000..3883844 Binary files /dev/null and b/docs/images/unknown_item.png differ diff --git a/docs/images/vessels_drinking_glass.png b/docs/images/vessels_drinking_glass.png new file mode 100644 index 0000000..81aad8b Binary files /dev/null and b/docs/images/vessels_drinking_glass.png differ diff --git a/docs/images/vessels_glass_bottle.png b/docs/images/vessels_glass_bottle.png new file mode 100644 index 0000000..ce77283 Binary files /dev/null and b/docs/images/vessels_glass_bottle.png differ diff --git a/docs/images/vessels_glass_fragments.png b/docs/images/vessels_glass_fragments.png new file mode 100644 index 0000000..14af104 Binary files /dev/null and b/docs/images/vessels_glass_fragments.png differ diff --git a/docs/images/vessels_shelf.png b/docs/images/vessels_shelf.png new file mode 100644 index 0000000..5d66f31 Binary files /dev/null and b/docs/images/vessels_shelf.png differ diff --git a/docs/images/vessels_steel_bottle.png b/docs/images/vessels_steel_bottle.png new file mode 100644 index 0000000..a48e44f Binary files /dev/null and b/docs/images/vessels_steel_bottle.png differ diff --git a/docs/images/walls_cobble.png b/docs/images/walls_cobble.png new file mode 100644 index 0000000..009b335 Binary files /dev/null and b/docs/images/walls_cobble.png differ diff --git a/docs/images/walls_desertcobble.png b/docs/images/walls_desertcobble.png new file mode 100644 index 0000000..6987b97 Binary files /dev/null and b/docs/images/walls_desertcobble.png differ diff --git a/docs/images/walls_mossycobble.png b/docs/images/walls_mossycobble.png new file mode 100644 index 0000000..458e884 Binary files /dev/null and b/docs/images/walls_mossycobble.png differ diff --git a/docs/images/water_source.png b/docs/images/water_source.png new file mode 100644 index 0000000..9c767dd Binary files /dev/null and b/docs/images/water_source.png differ diff --git a/docs/images/wieldhand.png b/docs/images/wieldhand.png new file mode 100644 index 0000000..03ac2e9 Binary files /dev/null and b/docs/images/wieldhand.png differ diff --git a/docs/images/wood.png b/docs/images/wood.png new file mode 100644 index 0000000..1b42bce Binary files /dev/null and b/docs/images/wood.png differ diff --git a/docs/images/wooden_fence.png b/docs/images/wooden_fence.png new file mode 100644 index 0000000..e797c63 Binary files /dev/null and b/docs/images/wooden_fence.png differ diff --git a/docs/images/wool_black.png b/docs/images/wool_black.png new file mode 100644 index 0000000..e2f9027 Binary files /dev/null and b/docs/images/wool_black.png differ diff --git a/docs/images/wool_blue.png b/docs/images/wool_blue.png new file mode 100644 index 0000000..3a9e718 Binary files /dev/null and b/docs/images/wool_blue.png differ diff --git a/docs/images/wool_brown.png b/docs/images/wool_brown.png new file mode 100644 index 0000000..ad8d688 Binary files /dev/null and b/docs/images/wool_brown.png differ diff --git a/docs/images/wool_cyan.png b/docs/images/wool_cyan.png new file mode 100644 index 0000000..ff2ae7a Binary files /dev/null and b/docs/images/wool_cyan.png differ diff --git a/docs/images/wool_dark_blue.png b/docs/images/wool_dark_blue.png new file mode 100644 index 0000000..3a9e718 Binary files /dev/null and b/docs/images/wool_dark_blue.png differ diff --git a/docs/images/wool_dark_green.png b/docs/images/wool_dark_green.png new file mode 100644 index 0000000..1d1617e Binary files /dev/null and b/docs/images/wool_dark_green.png differ diff --git a/docs/images/wool_dark_grey.png b/docs/images/wool_dark_grey.png new file mode 100644 index 0000000..ae5a2cc Binary files /dev/null and b/docs/images/wool_dark_grey.png differ diff --git a/docs/images/wool_gold.png b/docs/images/wool_gold.png new file mode 100644 index 0000000..4f1eeab Binary files /dev/null and b/docs/images/wool_gold.png differ diff --git a/docs/images/wool_green.png b/docs/images/wool_green.png new file mode 100644 index 0000000..0a53232 Binary files /dev/null and b/docs/images/wool_green.png differ diff --git a/docs/images/wool_grey.png b/docs/images/wool_grey.png new file mode 100644 index 0000000..2afd2fe Binary files /dev/null and b/docs/images/wool_grey.png differ diff --git a/docs/images/wool_magenta.png b/docs/images/wool_magenta.png new file mode 100644 index 0000000..5b063b9 Binary files /dev/null and b/docs/images/wool_magenta.png differ diff --git a/docs/images/wool_orange.png b/docs/images/wool_orange.png new file mode 100644 index 0000000..592d2a4 Binary files /dev/null and b/docs/images/wool_orange.png differ diff --git a/docs/images/wool_pink.png b/docs/images/wool_pink.png new file mode 100644 index 0000000..637b3f8 Binary files /dev/null and b/docs/images/wool_pink.png differ diff --git a/docs/images/wool_red.png b/docs/images/wool_red.png new file mode 100644 index 0000000..132dcd1 Binary files /dev/null and b/docs/images/wool_red.png differ diff --git a/docs/images/wool_violet.png b/docs/images/wool_violet.png new file mode 100644 index 0000000..765f486 Binary files /dev/null and b/docs/images/wool_violet.png differ diff --git a/docs/images/wool_white.png b/docs/images/wool_white.png new file mode 100644 index 0000000..ed83e35 Binary files /dev/null and b/docs/images/wool_white.png differ diff --git a/docs/images/wool_yellow.png b/docs/images/wool_yellow.png new file mode 100644 index 0000000..4f1eeab Binary files /dev/null and b/docs/images/wool_yellow.png differ diff --git a/docs/images/xpanes_bar_1.png b/docs/images/xpanes_bar_1.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_1.png differ diff --git a/docs/images/xpanes_bar_10.png b/docs/images/xpanes_bar_10.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_10.png differ diff --git a/docs/images/xpanes_bar_11.png b/docs/images/xpanes_bar_11.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_11.png differ diff --git a/docs/images/xpanes_bar_12.png b/docs/images/xpanes_bar_12.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_12.png differ diff --git a/docs/images/xpanes_bar_13.png b/docs/images/xpanes_bar_13.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_13.png differ diff --git a/docs/images/xpanes_bar_14.png b/docs/images/xpanes_bar_14.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_14.png differ diff --git a/docs/images/xpanes_bar_15.png b/docs/images/xpanes_bar_15.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_15.png differ diff --git a/docs/images/xpanes_bar_2.png b/docs/images/xpanes_bar_2.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_2.png differ diff --git a/docs/images/xpanes_bar_3.png b/docs/images/xpanes_bar_3.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_3.png differ diff --git a/docs/images/xpanes_bar_4.png b/docs/images/xpanes_bar_4.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_4.png differ diff --git a/docs/images/xpanes_bar_5.png b/docs/images/xpanes_bar_5.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_5.png differ diff --git a/docs/images/xpanes_bar_6.png b/docs/images/xpanes_bar_6.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_6.png differ diff --git a/docs/images/xpanes_bar_7.png b/docs/images/xpanes_bar_7.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_7.png differ diff --git a/docs/images/xpanes_bar_8.png b/docs/images/xpanes_bar_8.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_8.png differ diff --git a/docs/images/xpanes_bar_9.png b/docs/images/xpanes_bar_9.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_9.png differ diff --git a/docs/images/xpanes_bar_flat.png b/docs/images/xpanes_bar_flat.png new file mode 100644 index 0000000..e31f089 Binary files /dev/null and b/docs/images/xpanes_bar_flat.png differ diff --git a/docs/images/xpanes_door_steel_bar.png b/docs/images/xpanes_door_steel_bar.png new file mode 100644 index 0000000..5fa7547 Binary files /dev/null and b/docs/images/xpanes_door_steel_bar.png differ diff --git a/docs/images/xpanes_obsidian_pane_1.png b/docs/images/xpanes_obsidian_pane_1.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_1.png differ diff --git a/docs/images/xpanes_obsidian_pane_10.png b/docs/images/xpanes_obsidian_pane_10.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_10.png differ diff --git a/docs/images/xpanes_obsidian_pane_11.png b/docs/images/xpanes_obsidian_pane_11.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_11.png differ diff --git a/docs/images/xpanes_obsidian_pane_12.png b/docs/images/xpanes_obsidian_pane_12.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_12.png differ diff --git a/docs/images/xpanes_obsidian_pane_13.png b/docs/images/xpanes_obsidian_pane_13.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_13.png differ diff --git a/docs/images/xpanes_obsidian_pane_14.png b/docs/images/xpanes_obsidian_pane_14.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_14.png differ diff --git a/docs/images/xpanes_obsidian_pane_15.png b/docs/images/xpanes_obsidian_pane_15.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_15.png differ diff --git a/docs/images/xpanes_obsidian_pane_2.png b/docs/images/xpanes_obsidian_pane_2.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_2.png differ diff --git a/docs/images/xpanes_obsidian_pane_3.png b/docs/images/xpanes_obsidian_pane_3.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_3.png differ diff --git a/docs/images/xpanes_obsidian_pane_4.png b/docs/images/xpanes_obsidian_pane_4.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_4.png differ diff --git a/docs/images/xpanes_obsidian_pane_5.png b/docs/images/xpanes_obsidian_pane_5.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_5.png differ diff --git a/docs/images/xpanes_obsidian_pane_6.png b/docs/images/xpanes_obsidian_pane_6.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_6.png differ diff --git a/docs/images/xpanes_obsidian_pane_7.png b/docs/images/xpanes_obsidian_pane_7.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_7.png differ diff --git a/docs/images/xpanes_obsidian_pane_8.png b/docs/images/xpanes_obsidian_pane_8.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_8.png differ diff --git a/docs/images/xpanes_obsidian_pane_9.png b/docs/images/xpanes_obsidian_pane_9.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_9.png differ diff --git a/docs/images/xpanes_obsidian_pane_flat.png b/docs/images/xpanes_obsidian_pane_flat.png new file mode 100644 index 0000000..45f1120 Binary files /dev/null and b/docs/images/xpanes_obsidian_pane_flat.png differ diff --git a/docs/images/xpanes_pane_1.png b/docs/images/xpanes_pane_1.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_1.png differ diff --git a/docs/images/xpanes_pane_10.png b/docs/images/xpanes_pane_10.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_10.png differ diff --git a/docs/images/xpanes_pane_11.png b/docs/images/xpanes_pane_11.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_11.png differ diff --git a/docs/images/xpanes_pane_12.png b/docs/images/xpanes_pane_12.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_12.png differ diff --git a/docs/images/xpanes_pane_13.png b/docs/images/xpanes_pane_13.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_13.png differ diff --git a/docs/images/xpanes_pane_14.png b/docs/images/xpanes_pane_14.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_14.png differ diff --git a/docs/images/xpanes_pane_15.png b/docs/images/xpanes_pane_15.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_15.png differ diff --git a/docs/images/xpanes_pane_2.png b/docs/images/xpanes_pane_2.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_2.png differ diff --git a/docs/images/xpanes_pane_3.png b/docs/images/xpanes_pane_3.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_3.png differ diff --git a/docs/images/xpanes_pane_4.png b/docs/images/xpanes_pane_4.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_4.png differ diff --git a/docs/images/xpanes_pane_5.png b/docs/images/xpanes_pane_5.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_5.png differ diff --git a/docs/images/xpanes_pane_6.png b/docs/images/xpanes_pane_6.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_6.png differ diff --git a/docs/images/xpanes_pane_7.png b/docs/images/xpanes_pane_7.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_7.png differ diff --git a/docs/images/xpanes_pane_8.png b/docs/images/xpanes_pane_8.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_8.png differ diff --git a/docs/images/xpanes_pane_9.png b/docs/images/xpanes_pane_9.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_9.png differ diff --git a/docs/images/xpanes_pane_flat.png b/docs/images/xpanes_pane_flat.png new file mode 100644 index 0000000..20f5757 Binary files /dev/null and b/docs/images/xpanes_pane_flat.png differ diff --git a/docs/images/xpanes_trapdoor_steel_bar.png b/docs/images/xpanes_trapdoor_steel_bar.png new file mode 100644 index 0000000..1fba133 Binary files /dev/null and b/docs/images/xpanes_trapdoor_steel_bar.png differ diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..f7edce7 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + Minetest Crafting Guide + + + +
+

Minetest Crafting Guide

+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..bbc474d --- /dev/null +++ b/index.html @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + Minetest Crafting Guide + + + +
+

Minetest Crafting Guide

+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..a6009be --- /dev/null +++ b/init.lua @@ -0,0 +1,142 @@ +local function serialize_stack(stack) + return {stack:get_name() or "", stack:get_definition().type == "tool" and stack:get_wear() or stack:get_count()} +end +item_defs = {} +usages = {} +crafts = {} +groups = {} +local function get_craft_recipes(def_name) + local item_crafts = minetest.get_all_craft_recipes(def_name) + if not item_crafts then + return + end + for index, craft in ipairs(item_crafts) do + local stack = ItemStack(craft.output) + local craft_items = {} + local width = craft.width > 0 and craft.width or 1 + for i = #craft.items, width, -width do + local keep_line + for j = i, math.max(1, i-width), -1 do + local item = craft.items[j] + if item and item ~= "" then + keep_line = true + break + end + end + if not keep_line then + for j = i, math.max(1, i-width), -1 do + table.remove(craft.items, j) + end + end + end + local maxidx = 1 + for index, item in pairs(craft.items) do + craft_items[index] = serialize_stack(ItemStack(item)) + maxidx = math.max(maxidx, index) + end + for i = 1, maxidx do + if not craft_items[i] then + craft_items[i] = {} + end + end + local craft_index = #crafts + item_crafts[index] = craft_index + table.insert(crafts, { + method = craft.method, + shapeless = craft.width == 0, + width = craft.width ~= 0 and math.min(#craft_items, craft.width), + items = craft_items, + output = serialize_stack(stack) + }) + for _, item in ipairs(craft.items or {}) do + local itemname = ItemStack(item):get_name() + if not item_defs[itemname] then + usages[itemname] = {craft_index} + else + local tab = item_defs[itemname].usages + if not tab then + tab = {} + item_defs[itemname].usages = tab + end + if not modlib.table.find(tab, craft_index) then + table.insert(tab, craft_index) + end + end + end + end + return item_crafts +end +local handle = io.open(minetest.get_modpath("online_craftguide").."/docs/index.html", "w") +function minetest_to_html(text) + local previous_color + text = text:gsub("<", "<"):gsub("'", "'"):gsub('"', """):gsub("\x1b%((%a)@(.-)%)", function(type, args) + if type == "c" and previous_color ~= args then + local retval = (previous_color and "" or "").."" + previous_color = args + return retval + end + return "" + end):gsub("\n", "
"):gsub("\x1bE", "") + return text .. (previous_color and "
" or "") +end +function minetest_to_searchable(text) + return text:gsub("\x1b%((%a)@(.-)%)", ""):gsub("\x1bE", ""):lower() +end +function add_item(name, def) + if (def.groups and def.groups.not_in_creative_inventory) or def.description == "" then + return + end + local def_name = def.name + local item = item_defs[def_name] + if not item then + local title, description = unpack(modlib.text.split(def.description, "\n", 2)) + item = { + crafts = get_craft_recipes(def_name), + title = minetest_to_html(title), + description = description and minetest_to_html(description) or nil, + searchable_description = minetest_to_searchable(def.description), + type = def.type, + groups = def.groups, + usages = usages[def.name] + } + if def.groups then + for group, rating in pairs(def.groups) do + groups[group] = groups[group] or {} + groups[group][def_name] = rating + end + end + item_defs[def_name] = item + end + if name ~= def_name then + item.aliases = item.aliases or {} + table.insert(item.aliases, name) + end +end +function preprocess_html(text) + local regex = [[(.-)]] + text = text:gsub(regex, function(_,match) + local svg = modlib.file.read(minetest.get_modpath("online_craftguide").."/node_modules/bootstrap-icons/icons/"..modlib.text.split(match, "%s", 2, true)[1]..".svg") + return svg:gsub(regex, function(before, _, after) return before .. match .. after end):gsub("\n", "") + end) + local replaced + text = text:gsub([[.-]], function() + if replaced then + error("multiple script tags") + end + replaced = true + return "" + end) + return text +end +minetest.register_on_mods_loaded(function() + for name, def in pairs(minetest.registered_items) do + add_item(name, def) + end + for _, item in pairs(item_defs) do + if item.aliases then + table.sort(item.aliases) + end + end + handle:write(preprocess_html(modlib.file.read(modlib.mod.get_resource("online_craftguide", "index.html")))) + handle:close() +end) \ No newline at end of file diff --git a/items.json b/items.json new file mode 100644 index 0000000..2e91830 --- /dev/null +++ b/items.json @@ -0,0 +1 @@ +{"crafts":[{"items":[["map:mapping_kit",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["beds:bed_bottom",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["beds:fancy_bed_bottom",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["farming:hoe_wood",0.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["farming:string",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["farming:cotton",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["farming:wheat",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["farming:straw",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["boats:boat",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["doors:gate_aspen_wood_closed",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["doors:gate_pine_wood_closed",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["doors:gate_junglewood_closed",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["doors:gate_acacia_wood_closed",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["doors:gate_wood_closed",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["doors:door_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["doors:trapdoor",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["bucket:bucket_lava",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["vessels:shelf",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_aspen_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_outer_aspen_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_inner_aspen_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_aspen_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_acacia_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_outer_acacia_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_inner_acacia_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_acacia_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_pine_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_outer_pine_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_inner_pine_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_pine_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_junglewood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_outer_junglewood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_inner_junglewood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_junglewood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_outer_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_inner_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:dry_shrub",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:marram_grass_1",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fern_1",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:dry_grass_1",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:grass_1",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:coalblock",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:sign_wall_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:lava_source",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:ladder_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:bookshelf",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:papyrus",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:large_cactus_seedling",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:cactus",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["group:leaves",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:junglegrass",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:pine_bush_stem",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:acacia_bush_stem",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:bush_stem",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fence_rail_junglewood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fence_rail_acacia_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fence_rail_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fence_rail_pine_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fence_rail_aspen_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fence_junglewood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fence_acacia_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fence_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fence_pine_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:fence_aspen_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:emergent_jungle_sapling",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:junglesapling",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:acacia_sapling",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:pine_sapling",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:aspen_sapling",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:pine_bush_sapling",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:acacia_bush_sapling",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:bush_sapling",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["group:sapling",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:junglewood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:acacia_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:pine_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:aspen_wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["group:wood",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:jungletree",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:acacia_tree",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:pine_tree",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:aspen_tree",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["group:tree",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":null,"method":"cooking","number":0.0,"shapeless":true},{"items":[["group:stick",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:paper",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:coal_lump",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:book_written",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:book",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:sword_wood",0.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:axe_wood",0.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:shovel_wood",0.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:pick_wood",0.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:torch",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:chest_locked",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:chest",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["craftguide:sign",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["craftguide:book",1.0]],"method":"cooking","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:papyrus",1.0],["default:papyrus",1.0],["default:papyrus",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["stairs:slab_wood",1.0],["stairs:slab_wood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_wood",1.0],["stairs:stair_wood",1.0],["stairs:stair_wood",1.0],["stairs:stair_wood",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:bush_stem",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:tree",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["default:steel_ingot",1.0],["group:wood",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:mese_crystal",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["group:wood",1.0],["default:steel_ingot",1.0]],"method":"normal","number":18.0,"shapeless":false,"width":3.0},{"items":[["default:junglewood",1.0],["group:stick",1.0],["default:junglewood",1.0],["default:junglewood",1.0],["group:stick",1.0],["default:junglewood",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":3.0},{"items":[["default:pine_wood",1.0],["default:pine_wood",1.0],["default:pine_wood",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:steel_ingot",1.0]],"method":"normal","number":5.0,"shapeless":false,"width":1.0},{"items":[["default:diamond",1.0],["default:diamond",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:acacia_wood",1.0],["default:acacia_wood",1.0]],"method":"normal","number":16.0,"shapeless":false,"width":2.0},{"items":[["default:diamondblock",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["default:glass",1.0],["default:mese_crystal",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_desert_sandstone",1.0],["stairs:slab_desert_sandstone",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_desert_sandstone",1.0],["stairs:stair_desert_sandstone",1.0],["stairs:stair_desert_sandstone",1.0],["stairs:stair_desert_sandstone",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:desert_sand",1.0],["default:desert_sand",1.0],["default:desert_sand",1.0],["default:desert_sand",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":[["stairs:slab_sandstone_block",1.0],["stairs:slab_sandstone_block",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_sandstone_block",1.0],["stairs:stair_sandstone_block",1.0],["stairs:stair_sandstone_block",1.0],["stairs:stair_sandstone_block",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:sandstone",1.0],["default:sandstone",1.0],["default:sandstone",1.0],["default:sandstone",1.0],["default:sandstone",1.0],["default:sandstone",1.0],["default:sandstone",1.0],["default:sandstone",1.0],["default:sandstone",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":1.0,"shapeless":false,"width":0.0},{"items":[["dye:yellow",1.0],["dye:red",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_orange",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["default:steel_ingot",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:ice",1.0],["default:ice",1.0],["default:ice",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["group:dye,color_red",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["default:diamond",1.0],["default:diamond",1.0],["default:diamond",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":[["default:steel_ingot",1.0],["group:stick",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":[["vessels:drinking_glass",1.0],["vessels:drinking_glass",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["vessels:glass_bottle",1.0],["vessels:glass_bottle",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["dye:green",1.0],["dye:blue",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_cyan",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["default:mese_crystal",1.0],["group:stick",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:snowblock",1.0],["default:snowblock",1.0],["default:snowblock",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["default:coal_lump",1.0],["group:stick",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["default:diamond",1.0],["group:stick",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":[["stairs:slab_ice",1.0],["stairs:slab_ice",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_ice",1.0],["stairs:stair_ice",1.0],["stairs:stair_ice",1.0],["stairs:stair_ice",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["group:dye,color_violet",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:coal_lump",1.0],["default:gravel",1.0]],"method":"normal","number":5.0,"shapeless":true},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["group:dye,color_grey",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["stairs:slab_desert_sandstone_brick",1.0],["stairs:slab_desert_sandstone_brick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_desert_sandstone_brick",1.0],["stairs:stair_desert_sandstone_brick",1.0],["stairs:stair_desert_sandstone_brick",1.0],["stairs:stair_desert_sandstone_brick",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:desert_sandstone",1.0],["default:desert_sandstone",1.0],["default:desert_sandstone",1.0],["default:desert_sandstone",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":2.0},{"items":[["group:wood",1.0],["group:wood",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["group:stick",1.0],["default:pine_wood",1.0],["group:stick",1.0],["group:stick",1.0],["default:pine_wood",1.0],["group:stick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["group:stone",1.0],["group:stone",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":[["group:dye,color_magenta",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["default:steel_ingot",1.0],["default:steel_ingot",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":[["stairs:slab_stone_block",1.0],["stairs:slab_stone_block",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_stone_block",1.0],["stairs:stair_stone_block",1.0],["stairs:stair_stone_block",1.0],["stairs:stair_stone_block",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:stone",1.0],["default:stone",1.0],["default:stone",1.0],["default:stone",1.0],["default:stone",1.0],["default:stone",1.0],["default:stone",1.0],["default:stone",1.0],["default:stone",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:glass",1.0],["default:glass",1.0],["default:glass",1.0],["default:glass",1.0],["default:glass",1.0],["default:glass",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":[["group:flower,color_yellow",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0]],"method":"normal","number":16.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["stairs:slab_stonebrick",1.0],["stairs:slab_stonebrick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_stonebrick",1.0],["stairs:stair_stonebrick",1.0],["stairs:stair_stonebrick",1.0],["stairs:stair_stonebrick",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:stone",1.0],["default:stone",1.0],["default:stone",1.0],["default:stone",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":2.0},{"items":[["default:paper",1.0],["default:paper",1.0],["default:paper",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["farming:straw",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_goldblock",1.0],["stairs:slab_goldblock",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_goldblock",1.0],["stairs:stair_goldblock",1.0],["stairs:stair_goldblock",1.0],["stairs:stair_goldblock",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:gold_ingot",1.0],["default:gold_ingot",1.0],["default:gold_ingot",1.0],["default:gold_ingot",1.0],["default:gold_ingot",1.0],["default:gold_ingot",1.0],["default:gold_ingot",1.0],["default:gold_ingot",1.0],["default:gold_ingot",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_obsidian_glass",1.0],["stairs:slab_obsidian_glass",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_obsidian_glass",1.0],["stairs:stair_obsidian_glass",1.0],["stairs:stair_obsidian_glass",1.0],["stairs:stair_obsidian_glass",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:obsidian_shard",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:sandstone",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["group:stick",1.0],["default:acacia_wood",1.0],["group:stick",1.0],["group:stick",1.0],["default:acacia_wood",1.0],["group:stick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_pine_wood",1.0],["stairs:slab_pine_wood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_pine_wood",1.0],["stairs:stair_pine_wood",1.0],["stairs:stair_pine_wood",1.0],["stairs:stair_pine_wood",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:pine_bush_stem",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:pine_tree",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["default:desert_sandstone",1.0],["default:desert_sandstone",1.0],["default:desert_sandstone",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["farming:cotton",1.0],["farming:cotton",1.0]],"method":"normal","number":2.0,"shapeless":false,"width":1.0},{"items":[["default:junglewood",1.0],["default:junglewood",1.0]],"method":"normal","number":16.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["stairs:slab_desert_cobble",1.0],["stairs:slab_desert_cobble",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_desert_cobble",1.0],["stairs:stair_desert_cobble",1.0],["stairs:stair_desert_cobble",1.0],["stairs:stair_desert_cobble",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:stonebrick",1.0],["default:stonebrick",1.0],["default:stonebrick",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["dye:white",1.0],["dye:dark_green",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["dye:cyan",1.0],["dye:yellow",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["dye:yellow",1.0],["dye:blue",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_green",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["farming:straw",1.0],["farming:straw",1.0],["farming:straw",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:mossycobble",1.0],["default:mossycobble",1.0],["default:mossycobble",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:acacia_wood",1.0],["default:acacia_wood",1.0],["default:acacia_wood",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:brick",1.0],["default:brick",1.0],["default:brick",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["default:bronze_ingot",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0]],"method":"normal","number":2.0,"shapeless":false,"width":3.0},{"items":[["group:stone",1.0],["group:stone",1.0],["group:stone",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":[["group:wood",1.0],["group:wood",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["group:stone",1.0],["group:stone",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["dye:white",1.0],["dye:red",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_pink",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["farming:flour",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:desert_stonebrick",1.0],["default:desert_stonebrick",1.0],["default:desert_stonebrick",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_silver_sandstone_brick",1.0],["stairs:slab_silver_sandstone_brick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_silver_sandstone_brick",1.0],["stairs:stair_silver_sandstone_brick",1.0],["stairs:stair_silver_sandstone_brick",1.0],["stairs:stair_silver_sandstone_brick",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:silver_sandstone",1.0],["default:silver_sandstone",1.0],["default:silver_sandstone",1.0],["default:silver_sandstone",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":2.0},{"items":[["default:sign_wall_wood",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["default:mese_crystal",1.0],["default:mese_crystal",1.0],["default:mese_crystal",1.0],["default:mese_crystal",1.0],["default:mese_crystal",1.0],["default:mese_crystal",1.0],["default:mese_crystal",1.0],["default:mese_crystal",1.0],["default:mese_crystal",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["group:stick",1.0],["default:junglewood",1.0],["group:stick",1.0],["group:stick",1.0],["default:junglewood",1.0],["group:stick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["default:desert_cobble",1.0],["default:desert_cobble",1.0],["default:desert_cobble",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":1.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:obsidian_glass",1.0],["default:obsidian_glass",1.0],["default:obsidian_glass",1.0],["default:obsidian_glass",1.0],["default:obsidian_glass",1.0],["default:obsidian_glass",1.0]],"method":"normal","number":16.0,"shapeless":false,"width":3.0},{"items":[["group:stick",1.0]],"method":"normal","number":5.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["stairs:slab_obsidianbrick",1.0],["stairs:slab_obsidianbrick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_obsidianbrick",1.0],["stairs:stair_obsidianbrick",1.0],["stairs:stair_obsidianbrick",1.0],["stairs:stair_obsidianbrick",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:obsidian",1.0],["default:obsidian",1.0],["default:obsidian",1.0],["default:obsidian",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":2.0},{"items":[["farming:wheat",1.0],["farming:wheat",1.0],["farming:wheat",1.0],["farming:wheat",1.0],["farming:wheat",1.0],["farming:wheat",1.0],["farming:wheat",1.0],["farming:wheat",1.0],["farming:wheat",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_straw",1.0],["stairs:slab_straw",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_straw",1.0],["stairs:stair_straw",1.0],["stairs:stair_straw",1.0],["stairs:stair_straw",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:clay",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["default:obsidian_glass",1.0],["default:obsidian_glass",1.0],["default:obsidian_glass",1.0],["default:obsidian_glass",1.0],["default:obsidian_glass",1.0],["default:obsidian_glass",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":[["default:obsidianbrick",1.0],["default:obsidianbrick",1.0],["default:obsidianbrick",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["group:stone",1.0],["group:stone",1.0],["group:stone",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["dye:cyan",1.0],["dye:magenta",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_blue",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["dye:grey",1.0],["dye:black",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["dye:blue",1.0],["dye:orange",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["dye:yellow",1.0],["dye:violet",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_dark_grey",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["group:dye,color_orange",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["default:tinblock",1.0],["default:tinblock",1.0],["default:tinblock",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["default:acacia_wood",1.0],["group:stick",1.0],["default:acacia_wood",1.0],["default:acacia_wood",1.0],["group:stick",1.0],["default:acacia_wood",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":3.0},{"items":[["dye:pink",1.0],["dye:violet",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_magenta",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:flint",1.0],["default:steel_ingot",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":[["default:book",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["default:diamond",1.0],["default:diamond",1.0],["default:diamond",1.0],["default:diamond",1.0],["default:diamond",1.0],["default:diamond",1.0],["default:diamond",1.0],["default:diamond",1.0],["default:diamond",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["default:desert_sandstone",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_desert_sandstone_block",1.0],["stairs:slab_desert_sandstone_block",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_desert_sandstone_block",1.0],["stairs:stair_desert_sandstone_block",1.0],["stairs:stair_desert_sandstone_block",1.0],["stairs:stair_desert_sandstone_block",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:desert_sandstone",1.0],["default:desert_sandstone",1.0],["default:desert_sandstone",1.0],["default:desert_sandstone",1.0],["default:desert_sandstone",1.0],["default:desert_sandstone",1.0],["default:desert_sandstone",1.0],["default:desert_sandstone",1.0],["default:desert_sandstone",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":3.0},{"items":[["group:stick",1.0],["default:aspen_wood",1.0],["group:stick",1.0],["group:stick",1.0],["default:aspen_wood",1.0],["group:stick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_junglewood",1.0],["stairs:slab_junglewood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_junglewood",1.0],["stairs:stair_junglewood",1.0],["stairs:stair_junglewood",1.0],["stairs:stair_junglewood",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:jungletree",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["group:dye,color_blue",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["stairs:slab_cobble",1.0],["stairs:slab_cobble",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_cobble",1.0],["stairs:stair_cobble",1.0],["stairs:stair_cobble",1.0],["stairs:stair_cobble",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["group:stone",1.0],["group:stick",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:diamond",1.0],["default:diamond",1.0],["default:diamond",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":3.0},{"items":[["dye:orange",1.0],["dye:black",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["dye:red",1.0],["dye:green",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_brown",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["stairs:slab_acacia_wood",1.0],["stairs:slab_acacia_wood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_acacia_wood",1.0],["stairs:stair_acacia_wood",1.0],["stairs:stair_acacia_wood",1.0],["stairs:stair_acacia_wood",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:acacia_bush_stem",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:acacia_tree",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["farming:wheat",1.0],["farming:wheat",1.0],["farming:wheat",1.0],["farming:wheat",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["xpanes:bar_flat",1.0],["xpanes:bar_flat",1.0],["xpanes:bar_flat",1.0],["xpanes:bar_flat",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:sandstonebrick",1.0],["default:sandstonebrick",1.0],["default:sandstonebrick",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:steel_ingot",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["vessels:steel_bottle",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:iron_lump",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:steelblock",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["default:book",1.0],["default:book_written",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["default:mese_crystal",1.0],["default:mese_crystal",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":[["group:wood",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_brick",1.0],["stairs:slab_brick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_brick",1.0],["stairs:stair_brick",1.0],["stairs:stair_brick",1.0],["stairs:stair_brick",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:clay_brick",1.0],["default:clay_brick",1.0],["default:clay_brick",1.0],["default:clay_brick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":[["group:flower,color_white",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["dye:magenta",1.0],["dye:blue",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["dye:red",1.0],["dye:blue",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["default:blueberries",1.0]],"method":"normal","number":2.0,"shapeless":false,"width":1.0},{"items":[["group:flower,color_violet",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["stairs:slab_snowblock",1.0],["stairs:slab_snowblock",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_snowblock",1.0],["stairs:stair_snowblock",1.0],["stairs:stair_snowblock",1.0],["stairs:stair_snowblock",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:snow",1.0],["default:snow",1.0],["default:snow",1.0],["default:snow",1.0],["default:snow",1.0],["default:snow",1.0],["default:snow",1.0],["default:snow",1.0],["default:snow",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["group:coal",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["group:flower,color_black",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["default:junglesapling",1.0],["default:junglesapling",1.0],["default:junglesapling",1.0],["default:junglesapling",1.0],["default:junglesapling",1.0],["default:junglesapling",1.0],["default:junglesapling",1.0],["default:junglesapling",1.0],["default:junglesapling",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["group:stone",1.0],["group:stone",1.0],["group:stone",1.0],["group:stone",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:junglewood",1.0],["default:junglewood",1.0],["default:junglewood",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["tnt:tnt_stick",1.0],["tnt:tnt_stick",1.0],["tnt:tnt_stick",1.0],["tnt:tnt_stick",1.0],["tnt:tnt_stick",1.0],["tnt:tnt_stick",1.0],["tnt:tnt_stick",1.0],["tnt:tnt_stick",1.0],["tnt:tnt_stick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_desert_stone_block",1.0],["stairs:slab_desert_stone_block",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_desert_stone_block",1.0],["stairs:stair_desert_stone_block",1.0],["stairs:stair_desert_stone_block",1.0],["stairs:stair_desert_stone_block",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:desert_stone",1.0],["default:desert_stone",1.0],["default:desert_stone",1.0],["default:desert_stone",1.0],["default:desert_stone",1.0],["default:desert_stone",1.0],["default:desert_stone",1.0],["default:desert_stone",1.0],["default:desert_stone",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":3.0},{"items":[["default:skeleton_key",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:key",0.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:gold_lump",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:goldblock",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["default:mese_crystal",1.0],["default:mese_crystal",1.0],["default:mese_crystal",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":3.0},{"items":[["default:sandstone",1.0],["default:sandstone",1.0],["default:sandstone",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:silver_sandstone",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["group:dye,color_yellow",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["dye:white",1.0],["dye:dark_grey",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["dye:white",1.0],["dye:black",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_grey",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["default:glass",1.0]],"method":"normal","number":14.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":3.0,"shapeless":false,"width":0.0},{"items":[["dye:yellow",1.0],["dye:magenta",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_red",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_tinblock",1.0],["stairs:slab_tinblock",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_tinblock",1.0],["stairs:stair_tinblock",1.0],["stairs:stair_tinblock",1.0],["stairs:stair_tinblock",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:tin_ingot",1.0],["default:tin_ingot",1.0],["default:tin_ingot",1.0],["default:tin_ingot",1.0],["default:tin_ingot",1.0],["default:tin_ingot",1.0],["default:tin_ingot",1.0],["default:tin_ingot",1.0],["default:tin_ingot",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:desert_sandstone_brick",1.0],["default:desert_sandstone_brick",1.0],["default:desert_sandstone_brick",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:glass",1.0],["default:paper",1.0],["group:stick",1.0],["default:steel_ingot",1.0],["default:paper",1.0],["default:steel_ingot",1.0],["group:wood",1.0],["default:paper",1.0],["dye:black",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["wool:white",1.0],["wool:white",1.0],["wool:white",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["default:obsidian",1.0],["default:obsidian",1.0],["default:obsidian",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:steel_ingot",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:stone",1.0],["default:stone",1.0],["default:stone",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["group:dye,color_dark_green",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["group:dye,color_green",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["stairs:slab_stone",1.0],["stairs:slab_stone",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_stone",1.0],["stairs:stair_stone",1.0],["stairs:stair_stone",1.0],["stairs:stair_stone",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:mossycobble",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:cobble",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:cobble",1.0],["default:cobble",1.0],["default:cobble",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:aspen_wood",1.0],["group:stick",1.0],["default:aspen_wood",1.0],["default:aspen_wood",1.0],["group:stick",1.0],["default:aspen_wood",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":3.0},{"items":[["default:mese",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["default:mese_crystal_fragment",1.0],["default:mese_crystal_fragment",1.0],["default:mese_crystal_fragment",1.0],["default:mese_crystal_fragment",1.0],["default:mese_crystal_fragment",1.0],["default:mese_crystal_fragment",1.0],["default:mese_crystal_fragment",1.0],["default:mese_crystal_fragment",1.0],["default:mese_crystal_fragment",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_sandstone",1.0],["stairs:slab_sandstone",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_sandstone",1.0],["stairs:stair_sandstone",1.0],["stairs:stair_sandstone",1.0],["stairs:stair_sandstone",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:sand",1.0],["default:sand",1.0],["default:sand",1.0],["default:sand",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":[["default:snowblock",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["default:clay_lump",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:brick",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["group:dye,color_black",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["dye:green",1.0],["dye:black",1.0]],"method":"normal","number":2.0,"shapeless":true},{"items":[["group:flower,color_dark_green",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:bronzeblock",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:tin_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":3.0},{"items":[["default:glass",1.0]],"method":"normal","number":10.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["default:gold_ingot",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:mese_crystal",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:glass",1.0],["default:glass",1.0],["default:glass",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_desert_stone",1.0],["stairs:slab_desert_stone",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_desert_stone",1.0],["stairs:stair_desert_stone",1.0],["stairs:stair_desert_stone",1.0],["stairs:stair_desert_stone",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:desert_cobble",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:coalblock",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["fireflies:firefly",1.0],["vessels:glass_bottle",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_sandstonebrick",1.0],["stairs:slab_sandstonebrick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_sandstonebrick",1.0],["stairs:stair_sandstonebrick",1.0],["stairs:stair_sandstonebrick",1.0],["stairs:stair_sandstonebrick",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:sandstone",1.0],["default:sandstone",1.0],["default:sandstone",1.0],["default:sandstone",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":2.0},{"items":[["default:aspen_wood",1.0],["default:aspen_wood",1.0],["default:aspen_wood",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_desert_stonebrick",1.0],["stairs:slab_desert_stonebrick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_desert_stonebrick",1.0],["stairs:stair_desert_stonebrick",1.0],["stairs:stair_desert_stonebrick",1.0],["stairs:stair_desert_stonebrick",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:desert_stone",1.0],["default:desert_stone",1.0],["default:desert_stone",1.0],["default:desert_stone",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":2.0},{"items":[["group:wood",1.0],["group:wood",1.0],["group:wood",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:coal_lump",1.0],["default:coal_lump",1.0],["default:coal_lump",1.0],["default:coal_lump",1.0],["default:coal_lump",1.0],["default:coal_lump",1.0],["default:coal_lump",1.0],["default:coal_lump",1.0],["default:coal_lump",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["group:dye,color_dark_grey",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["default:book",1.0],["default:book",1.0],["default:book",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_silver_sandstone_block",1.0],["stairs:slab_silver_sandstone_block",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_silver_sandstone_block",1.0],["stairs:stair_silver_sandstone_block",1.0],["stairs:stair_silver_sandstone_block",1.0],["stairs:stair_silver_sandstone_block",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:silver_sandstone",1.0],["default:silver_sandstone",1.0],["default:silver_sandstone",1.0],["default:silver_sandstone",1.0],["default:silver_sandstone",1.0],["default:silver_sandstone",1.0],["default:silver_sandstone",1.0],["default:silver_sandstone",1.0],["default:silver_sandstone",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["default:clay_lump",1.0],["default:clay_lump",1.0],["default:clay_lump",1.0],["default:clay_lump",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":[["stairs:slab_copperblock",1.0],["stairs:slab_copperblock",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_copperblock",1.0],["stairs:stair_copperblock",1.0],["stairs:stair_copperblock",1.0],["stairs:stair_copperblock",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0],["default:copper_ingot",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["default:wood",1.0],["default:wood",1.0]],"method":"normal","number":16.0,"shapeless":false,"width":2.0},{"items":[["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["default:obsidian_glass",1.0],["default:obsidian_glass",1.0],["default:obsidian_glass",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["stairs:slab_bronzeblock",1.0],["stairs:slab_bronzeblock",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_bronzeblock",1.0],["stairs:stair_bronzeblock",1.0],["stairs:stair_bronzeblock",1.0],["stairs:stair_bronzeblock",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["default:bronze_ingot",1.0],["default:bronze_ingot",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["default:glass",1.0],["default:glass",1.0],["default:glass",1.0],["default:glass",1.0],["default:glass",1.0],["default:glass",1.0]],"method":"normal","number":16.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:obsidian",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_silver_sandstone",1.0],["stairs:slab_silver_sandstone",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_silver_sandstone",1.0],["stairs:stair_silver_sandstone",1.0],["stairs:stair_silver_sandstone",1.0],["stairs:stair_silver_sandstone",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:silver_sand",1.0],["default:silver_sand",1.0],["default:silver_sand",1.0],["default:silver_sand",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:copper_lump",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:copperblock",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["default:steel_ingot",1.0],["group:wood",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0]],"method":"normal","number":18.0,"shapeless":false,"width":3.0},{"items":[["default:wood",1.0],["default:wood",1.0],["default:wood",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_aspen_wood",1.0],["stairs:slab_aspen_wood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_aspen_wood",1.0],["stairs:stair_aspen_wood",1.0],["stairs:stair_aspen_wood",1.0],["stairs:stair_aspen_wood",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:aspen_tree",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_obsidian_block",1.0],["stairs:slab_obsidian_block",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_obsidian_block",1.0],["stairs:stair_obsidian_block",1.0],["stairs:stair_obsidian_block",1.0],["stairs:stair_obsidian_block",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:obsidian",1.0],["default:obsidian",1.0],["default:obsidian",1.0],["default:obsidian",1.0],["default:obsidian",1.0],["default:obsidian",1.0],["default:obsidian",1.0],["default:obsidian",1.0],["default:obsidian",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_steelblock",1.0],["stairs:slab_steelblock",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_steelblock",1.0],["stairs:stair_steelblock",1.0],["stairs:stair_steelblock",1.0],["stairs:stair_steelblock",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["stairs:slab_mossycobble",1.0],["stairs:slab_mossycobble",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_mossycobble",1.0],["stairs:stair_mossycobble",1.0],["stairs:stair_mossycobble",1.0],["stairs:stair_mossycobble",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["default:pine_wood",1.0],["group:stick",1.0],["default:pine_wood",1.0],["default:pine_wood",1.0],["group:stick",1.0],["default:pine_wood",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":3.0},{"items":[["group:stick",1.0],["default:wood",1.0],["group:stick",1.0],["group:stick",1.0],["default:wood",1.0],["group:stick",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:steel_ingot",1.0],["default:steel_ingot",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_obsidian",1.0],["stairs:slab_obsidian",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_obsidian",1.0],["stairs:stair_obsidian",1.0],["stairs:stair_obsidian",1.0],["stairs:stair_obsidian",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["default:obsidian_shard",1.0],["default:obsidian_shard",1.0],["default:obsidian_shard",1.0],["default:obsidian_shard",1.0],["default:obsidian_shard",1.0],["default:obsidian_shard",1.0],["default:obsidian_shard",1.0],["default:obsidian_shard",1.0],["default:obsidian_shard",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["farming:cotton",1.0],["farming:cotton",1.0],["farming:cotton",1.0],["farming:cotton",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":[["group:dye,color_white",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["default:desert_sandstone_block",1.0],["default:desert_sandstone_block",1.0],["default:desert_sandstone_block",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:steelblock",1.0],["default:steelblock",1.0],["default:steelblock",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:mese_crystal",1.0],["default:mese_crystal",1.0],["default:mese_crystal",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:stone_block",1.0],["default:stone_block",1.0],["default:stone_block",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:silver_sandstone",1.0],["default:silver_sandstone",1.0],["default:silver_sandstone",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":1.0,"shapeless":false,"width":0.0},{"items":[["default:aspen_wood",1.0],["default:aspen_wood",1.0]],"method":"normal","number":16.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:silver_sandstone_brick",1.0],["default:silver_sandstone_brick",1.0],["default:silver_sandstone_brick",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:silver_sandstone_block",1.0],["default:silver_sandstone_block",1.0],["default:silver_sandstone_block",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:obsidian_block",1.0],["default:obsidian_block",1.0],["default:obsidian_block",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:sandstone_block",1.0],["default:sandstone_block",1.0],["default:sandstone_block",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:copperblock",1.0],["default:copperblock",1.0],["default:copperblock",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:chest",1.0],["default:steel_ingot",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["default:steel_ingot",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":[["default:tin_lump",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:tinblock",1.0]],"method":"normal","number":9.0,"shapeless":false,"width":1.0},{"items":[["vessels:glass_fragments",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:slab_glass",1.0],["stairs:slab_glass",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["stairs:stair_glass",1.0],["stairs:stair_glass",1.0],["stairs:stair_glass",1.0],["stairs:stair_glass",1.0]],"method":"normal","number":3.0,"shapeless":false,"width":2.0},{"items":[["group:sand",1.0]],"method":"cooking","number":1.0,"shapeless":false,"width":1.0},{"items":[["default:desert_stone_block",1.0],["default:desert_stone_block",1.0],["default:desert_stone_block",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["group:wood",1.0],["group:stick",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":[["default:wood",1.0],["group:stick",1.0],["default:wood",1.0],["default:wood",1.0],["group:stick",1.0],["default:wood",1.0]],"method":"normal","number":4.0,"shapeless":false,"width":3.0},{"items":[["tnt:gunpowder",1.0]],"method":"normal","number":2.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:vessel",1.0],["group:vessel",1.0],["group:vessel",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":3.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0],["group:wood",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["farming:string",1.0],["farming:string",1.0],["farming:string",1.0],["farming:string",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":[["xpanes:bar_flat",1.0],["xpanes:bar_flat",1.0],["xpanes:bar_flat",1.0],["xpanes:bar_flat",1.0],["xpanes:bar_flat",1.0],["xpanes:bar_flat",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":2.0},{"items":[["default:bronzeblock",1.0],["default:bronzeblock",1.0],["default:bronzeblock",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:pine_wood",1.0],["default:pine_wood",1.0]],"method":"normal","number":16.0,"shapeless":false,"width":2.0},{"items":null,"method":"normal","number":8.0,"shapeless":false,"width":0.0},{"items":null,"method":"normal","number":6.0,"shapeless":false,"width":0.0},{"items":[["default:steel_ingot",1.0]],"method":"normal","number":15.0,"shapeless":false,"width":1.0},{"items":[["default:goldblock",1.0],["default:goldblock",1.0],["default:goldblock",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["group:dye,color_cyan",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0},{"items":[["default:desert_stone",1.0],["default:desert_stone",1.0],["default:desert_stone",1.0]],"method":"normal","number":6.0,"shapeless":false,"width":3.0},{"items":[["default:steel_ingot",1.0],["group:wood",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["default:coal_lump",1.0],["default:steel_ingot",1.0],["default:steel_ingot",1.0],["group:wood",1.0],["default:steel_ingot",1.0]],"method":"normal","number":18.0,"shapeless":false,"width":3.0},{"items":[["default:obsidian_glass",1.0]],"method":"normal","number":1.0,"shapeless":false,"width":1.0},{"items":[["group:dye,color_brown",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["group:dye,color_pink",1.0],["group:wool",1.0]],"method":"normal","number":1.0,"shapeless":true},{"items":[["default:bronze_ingot",1.0],["group:stick",1.0],["group:stick",1.0]],"method":"normal","number":0.0,"shapeless":false,"width":1.0},{"items":null,"method":"normal","number":7.0,"shapeless":false,"width":0.0}],"items":{"":{"crafts":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"description":"","groups":null,"type":"none"},"air":{"description":"Air","groups":{"not_in_creative_inventory":1.0},"type":"node"},"beds:bed_bottom":{"crafts":[369.0],"description":"\u001b(T@beds)Simple Bed\u001bE","groups":{"bed":1.0,"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[2.0]},"beds:bed_top":{"description":"","groups":{"bed":2.0,"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node"},"beds:fancy_bed_bottom":{"crafts":[128.0],"description":"\u001b(T@beds)Fancy Bed\u001bE","groups":{"bed":1.0,"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[3.0]},"beds:fancy_bed_top":{"description":"","groups":{"bed":2.0,"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node"},"binoculars:binoculars":{"crafts":[542.0],"description":"\u001b(T@binoculars)Binoculars\u001bE\n\u001b(T@binoculars)Use with 'Zoom' key\u001bE","groups":null,"type":"craft"},"boats:boat":{"crafts":[243.0],"description":"\u001b(T@boats)Boat\u001bE","groups":{"flammable":2.0},"type":"craft","usages":[9.0]},"bones:bones":{"description":"\u001b(T@bones)Bones\u001bE","groups":{"dig_immediate":2.0},"type":"node"},"bucket:bucket_empty":{"crafts":[131.0],"description":"\u001b(T@bucket)Empty Bucket\u001bE","groups":{"tool":1.0},"type":"craft"},"bucket:bucket_lava":{"description":"\u001b(T@bucket)Lava Bucket\u001bE","groups":{"tool":1.0},"type":"craft","usages":[17.0]},"bucket:bucket_river_water":{"description":"\u001b(T@bucket)River Water Bucket\u001bE","groups":{"tool":1.0,"water_bucket":1.0},"type":"craft"},"bucket:bucket_water":{"description":"\u001b(T@bucket)Water Bucket\u001bE","groups":{"tool":1.0,"water_bucket":1.0},"type":"craft"},"butterflies:butterfly_red":{"description":"\u001b(T@butterflies)Red Butterfly\u001bE","groups":{"catchable":1.0},"type":"node"},"butterflies:butterfly_violet":{"description":"\u001b(T@butterflies)Violet Butterfly\u001bE","groups":{"catchable":1.0},"type":"node"},"butterflies:butterfly_white":{"description":"\u001b(T@butterflies)White Butterfly\u001bE","groups":{"catchable":1.0},"type":"node"},"butterflies:hidden_butterfly_red":{"description":"","groups":{"not_in_creative_inventory":1.0},"type":"node"},"butterflies:hidden_butterfly_violet":{"description":"","groups":{"not_in_creative_inventory":1.0},"type":"node"},"butterflies:hidden_butterfly_white":{"description":"","groups":{"not_in_creative_inventory":1.0},"type":"node"},"carts:brakerail":{"crafts":[541.0],"description":"\u001b(T@carts)Brake Rail\u001bE","groups":{"attached_node":1.0,"connect_to_raillike":2.0,"dig_immediate":2.0,"rail":1.0},"type":"node"},"carts:cart":{"crafts":[313.0],"description":"\u001b(T@carts)Cart\u001bE\n\u001b(T@carts)(Sneak+Click to pick up)\u001bE","groups":null,"type":"craft"},"carts:powerrail":{"crafts":[114.0],"description":"\u001b(T@carts)Powered Rail\u001bE","groups":{"attached_node":1.0,"connect_to_raillike":2.0,"dig_immediate":2.0,"rail":1.0},"type":"node"},"carts:rail":{"crafts":[455.0],"description":"\u001b(T@carts)Rail\u001bE","groups":{"attached_node":1.0,"connect_to_raillike":2.0,"dig_immediate":2.0,"rail":1.0},"type":"node"},"craftguide:book":{"crafts":[278.0],"description":"\u001b(T@craftguide)Crafting Guide\u001bE","groups":{"book":1.0},"type":"craft","usages":[100.0]},"craftguide:sign":{"crafts":[239.0],"description":"\u001b(T@craftguide)Crafting Guide Sign\u001bE","groups":{"attached_node":1.0,"choppy":1.0,"flammable":3.0,"oddly_breakable_by_hand":1.0},"type":"node","usages":[99.0]},"default:acacia_bush_leaves":{"description":"\u001b(T@default)Acacia Bush Leaves\u001bE","groups":{"flammable":2.0,"leaves":1.0,"snappy":3.0},"type":"node"},"default:acacia_bush_sapling":{"description":"\u001b(T@default)Acacia Bush Sapling\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"flammable":2.0,"sapling":1.0,"snappy":2.0},"type":"node","usages":[73.0]},"default:acacia_bush_stem":{"description":"\u001b(T@default)Acacia Bush Stem\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":1.0},"type":"node","usages":[304.0]},"default:acacia_leaves":{"description":"\u001b(T@default)Acacia Tree Leaves\u001bE","groups":{"flammable":2.0,"leafdecay":3.0,"leaves":1.0,"snappy":3.0},"type":"node"},"default:acacia_sapling":{"description":"\u001b(T@default)Acacia Tree Sapling\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"flammable":2.0,"sapling":1.0,"snappy":2.0},"type":"node","usages":[69.0]},"default:acacia_tree":{"description":"\u001b(T@default)Acacia Tree\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":1.0,"tree":1.0},"type":"node","usages":[82.0,305.0]},"default:acacia_wood":{"crafts":[302.0,303.0,304.0,305.0],"description":"\u001b(T@default)Acacia Wood Planks\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"wood":1.0},"type":"node","usages":[273.0]},"default:apple":{"description":"\u001b(T@default)Apple\u001bE","groups":{"dig_immediate":3.0,"flammable":2.0,"fleshy":3.0,"food_apple":1.0,"leafdecay":3.0,"leafdecay_drop":1.0},"type":"node"},"default:apple_mark":{"description":"\u001b(T@default)Apple Marker\u001bE","groups":{"not_in_creative_inventory":1.0},"type":"node"},"default:aspen_leaves":{"description":"\u001b(T@default)Aspen Tree Leaves\u001bE","groups":{"flammable":2.0,"leafdecay":3.0,"leaves":1.0,"snappy":3.0},"type":"node"},"default:aspen_sapling":{"description":"\u001b(T@default)Aspen Tree Sapling\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"flammable":3.0,"sapling":1.0,"snappy":2.0},"type":"node","usages":[71.0]},"default:aspen_tree":{"description":"\u001b(T@default)Aspen Tree\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":1.0,"tree":1.0},"type":"node","usages":[84.0,459.0]},"default:aspen_wood":{"crafts":[457.0,458.0,459.0],"description":"\u001b(T@default)Aspen Wood Planks\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0,"wood":1.0},"type":"node","usages":[415.0,493.0]},"default:axe_bronze":{"crafts":[145.0],"description":"\u001b(T@default)Bronze Axe\u001bE","groups":{"axe":1.0},"type":"tool"},"default:axe_diamond":{"crafts":[134.0],"description":"\u001b(T@default)Diamond Axe\u001bE","groups":{"axe":1.0},"type":"tool"},"default:axe_mese":{"crafts":[484.0],"description":"\u001b(T@default)Mese Axe\u001bE","groups":{"axe":1.0},"type":"tool"},"default:axe_steel":{"crafts":[137.0],"description":"\u001b(T@default)Steel Axe\u001bE","groups":{"axe":1.0},"type":"tool"},"default:axe_stone":{"crafts":[226.0],"description":"\u001b(T@default)Stone Axe\u001bE","groups":{"axe":1.0},"type":"tool"},"default:axe_wood":{"crafts":[320.0],"description":"\u001b(T@default)Wooden Axe\u001bE","groups":{"axe":1.0,"flammable":2.0},"type":"tool","usages":[93.0]},"default:blueberries":{"description":"\u001b(T@default)Blueberries\u001bE","groups":{"food_berry":1.0,"food_blueberries":1.0},"type":"craft","usages":[328.0]},"default:blueberry_bush_leaves":{"description":"\u001b(T@default)Blueberry Bush Leaves\u001bE","groups":{"flammable":2.0,"leaves":1.0,"snappy":3.0},"type":"node"},"default:blueberry_bush_leaves_with_berries":{"description":"\u001b(T@default)Blueberry Bush Leaves with Berries\u001bE","groups":{"dig_immediate":3.0,"flammable":2.0,"leaves":1.0,"snappy":3.0},"type":"node"},"default:blueberry_bush_sapling":{"description":"\u001b(T@default)Blueberry Bush Sapling\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"flammable":2.0,"sapling":1.0,"snappy":2.0},"type":"node"},"default:book":{"crafts":[185.0],"description":"\u001b(T@default)Book\u001bE","groups":{"book":1.0,"flammable":3.0},"type":"craft","usages":[91.0,278.0,318.0,425.0]},"default:book_written":{"crafts":[318.0],"description":"\u001b(T@default)Book with Text\u001bE","groups":{"book":1.0,"flammable":3.0,"not_in_creative_inventory":1.0},"type":"craft","usages":[318.0]},"default:bookshelf":{"crafts":[425.0],"description":"\u001b(T@default)Bookshelf\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[48.0]},"default:brick":{"crafts":[322.0,323.0,324.0],"description":"\u001b(T@default)Brick Block\u001bE","groups":{"cracky":3.0},"type":"node","usages":[221.0,393.0]},"default:bronze_ingot":{"crafts":[398.0,399.0],"description":"\u001b(T@default)Bronze Ingot\u001bE","groups":null,"type":"craft","usages":[222.0,405.0,442.0,545.0]},"default:bronzeblock":{"crafts":[440.0,441.0,442.0],"description":"\u001b(T@default)Bronze Block\u001bE","groups":{"cracky":1.0,"level":2.0},"type":"node","usages":[398.0,532.0]},"default:bush_leaves":{"description":"\u001b(T@default)Bush Leaves\u001bE","groups":{"flammable":2.0,"leaves":1.0,"snappy":3.0},"type":"node"},"default:bush_sapling":{"description":"\u001b(T@default)Bush Sapling\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"flammable":2.0,"sapling":1.0,"snappy":2.0},"type":"node","usages":[74.0]},"default:bush_stem":{"description":"\u001b(T@default)Bush Stem\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":1.0},"type":"node","usages":[112.0]},"default:cactus":{"description":"\u001b(T@default)Cactus\u001bE","groups":{"choppy":3.0},"type":"node","usages":[51.0]},"default:cave_ice":{"description":"\u001b(T@default)Cave Ice\u001bE","groups":{"cools_lava":1.0,"cracky":3.0,"not_in_creative_inventory":1.0,"slippery":3.0},"type":"node"},"default:chest":{"crafts":[279.0],"description":"\u001b(T@default)Chest\u001bE","groups":{"choppy":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[98.0,510.0]},"default:chest_locked":{"crafts":[510.0,511.0],"description":"\u001b(T@default)Locked Chest\u001bE","groups":{"choppy":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[97.0]},"default:chest_locked_open":{"description":"\u001b(T@default)Locked Chest\u001bE","groups":{"choppy":2.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":2.0},"type":"node"},"default:chest_open":{"description":"\u001b(T@default)Chest\u001bE","groups":{"choppy":2.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":2.0},"type":"node"},"default:clay":{"crafts":[431.0],"description":"\u001b(T@default)Clay\u001bE","groups":{"crumbly":3.0},"type":"node","usages":[257.0]},"default:clay_brick":{"crafts":[392.0,393.0],"description":"\u001b(T@default)Clay Brick\u001bE","groups":null,"type":"craft","usages":[324.0]},"default:clay_lump":{"crafts":[257.0],"description":"\u001b(T@default)Clay Lump\u001bE","groups":null,"type":"craft","usages":[392.0,431.0]},"default:cloud":{"description":"\u001b(T@default)Cloud\u001bE","groups":{"not_in_creative_inventory":1.0},"type":"node"},"default:coal_lump":{"crafts":[410.0],"description":"\u001b(T@default)Coal Lump\u001bE","groups":{"coal":1.0,"flammable":1.0},"type":"craft","usages":[156.0,421.0,541.0]},"default:coalblock":{"crafts":[421.0],"description":"\u001b(T@default)Coal Block\u001bE","groups":{"cracky":3.0},"type":"node","usages":[410.0]},"default:cobble":{"crafts":[290.0,291.0],"description":"\u001b(T@default)Cobblestone\u001bE","groups":{"cracky":3.0,"stone":2.0},"type":"node","usages":[380.0,384.0]},"default:copper_ingot":{"crafts":[453.0,454.0],"description":"\u001b(T@default)Copper Ingot\u001bE","groups":null,"type":"craft","usages":[434.0]},"default:copper_lump":{"description":"\u001b(T@default)Copper Lump\u001bE","groups":null,"type":"craft","usages":[453.0]},"default:copperblock":{"crafts":[432.0,433.0,434.0],"description":"\u001b(T@default)Copper Block\u001bE","groups":{"cracky":1.0,"level":2.0},"type":"node","usages":[454.0,509.0]},"default:coral_brown":{"description":"\u001b(T@default)Brown Coral\u001bE","groups":{"cracky":3.0},"type":"node"},"default:coral_cyan":{"description":"\u001b(T@default)Cyan Coral\u001bE","groups":{"snappy":3.0},"type":"node"},"default:coral_green":{"description":"\u001b(T@default)Green Coral\u001bE","groups":{"snappy":3.0},"type":"node"},"default:coral_orange":{"description":"\u001b(T@default)Orange Coral\u001bE","groups":{"cracky":3.0},"type":"node"},"default:coral_pink":{"description":"\u001b(T@default)Pink Coral\u001bE","groups":{"snappy":3.0},"type":"node"},"default:coral_skeleton":{"description":"\u001b(T@default)Coral Skeleton\u001bE","groups":{"cracky":3.0},"type":"node"},"default:desert_cobble":{"crafts":[204.0,205.0],"description":"\u001b(T@default)Desert Cobblestone\u001bE","groups":{"cracky":3.0,"stone":2.0},"type":"node","usages":[242.0,409.0]},"default:desert_sand":{"crafts":[281.0],"description":"\u001b(T@default)Desert Sand\u001bE","groups":{"crumbly":3.0,"falling_node":1.0,"sand":1.0,"soil":1.0},"type":"node","usages":[124.0]},"default:desert_sandstone":{"crafts":[122.0,123.0,124.0],"description":"\u001b(T@default)Desert Sandstone\u001bE","groups":{"cracky":3.0,"crumbly":1.0},"type":"node","usages":[166.0,200.0,281.0,284.0]},"default:desert_sandstone_block":{"crafts":[282.0,283.0,284.0],"description":"\u001b(T@default)Desert Sandstone Block\u001bE","groups":{"cracky":2.0},"type":"node","usages":[479.0]},"default:desert_sandstone_brick":{"crafts":[164.0,165.0,166.0],"description":"\u001b(T@default)Desert Sandstone Brick\u001bE","groups":{"cracky":2.0},"type":"node","usages":[367.0]},"default:desert_stone":{"crafts":[407.0,408.0,409.0],"description":"\u001b(T@default)Desert Stone\u001bE","groups":{"cracky":3.0,"stone":1.0},"type":"node","usages":[345.0,418.0,540.0]},"default:desert_stone_block":{"crafts":[343.0,344.0,345.0],"description":"\u001b(T@default)Desert Stone Block\u001bE","groups":{"cracky":2.0,"stone":1.0},"type":"node","usages":[518.0]},"default:desert_stonebrick":{"crafts":[416.0,417.0,418.0],"description":"\u001b(T@default)Desert Stone Brick\u001bE","groups":{"cracky":2.0,"stone":1.0},"type":"node","usages":[235.0]},"default:diamond":{"crafts":[120.0],"description":"\u001b(T@default)Diamond\u001bE","groups":null,"type":"craft","usages":[118.0,134.0,149.0,280.0,293.0]},"default:diamondblock":{"crafts":[280.0],"description":"\u001b(T@default)Diamond Block\u001bE","groups":{"cracky":1.0,"level":3.0},"type":"node","usages":[120.0]},"default:dirt":{"description":"\u001b(T@default)Dirt\u001bE","groups":{"crumbly":3.0,"soil":1.0},"type":"node"},"default:dirt_with_coniferous_litter":{"description":"\u001b(T@default)Dirt with Coniferous Litter\u001bE","groups":{"crumbly":3.0,"soil":1.0,"spreading_dirt_type":1.0},"type":"node"},"default:dirt_with_dry_grass":{"description":"\u001b(T@default)Dirt with Dry Grass\u001bE","groups":{"crumbly":3.0,"soil":1.0},"type":"node"},"default:dirt_with_grass":{"description":"\u001b(T@default)Dirt with Grass\u001bE","groups":{"crumbly":3.0,"soil":1.0,"spreading_dirt_type":1.0},"type":"node"},"default:dirt_with_grass_footsteps":{"description":"\u001b(T@default)Dirt with Grass and Footsteps\u001bE","groups":{"crumbly":3.0,"not_in_creative_inventory":1.0,"soil":1.0},"type":"node"},"default:dirt_with_rainforest_litter":{"description":"\u001b(T@default)Dirt with Rainforest Litter\u001bE","groups":{"crumbly":3.0,"soil":1.0,"spreading_dirt_type":1.0},"type":"node"},"default:dirt_with_snow":{"description":"\u001b(T@default)Dirt with Snow\u001bE","groups":{"crumbly":3.0,"snowy":1.0,"soil":1.0,"spreading_dirt_type":1.0},"type":"node"},"default:dry_dirt":{"description":"\u001b(T@default)Dry Dirt\u001bE","groups":{"crumbly":3.0,"soil":1.0},"type":"node"},"default:dry_dirt_with_dry_grass":{"description":"\u001b(T@default)Dry Dirt with Dry Grass\u001bE","groups":{"crumbly":3.0,"soil":1.0},"type":"node"},"default:dry_grass_1":{"description":"\u001b(T@default)Dry Grass\u001bE","groups":{"attached_node":1.0,"dry_grass":1.0,"flammable":3.0,"flora":1.0,"snappy":3.0},"type":"node","usages":[42.0]},"default:dry_grass_2":{"description":"\u001b(T@default)Dry Grass\u001bE","groups":{"attached_node":1.0,"dry_grass":1.0,"flammable":3.0,"flora":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:dry_grass_3":{"description":"\u001b(T@default)Dry Grass\u001bE","groups":{"attached_node":1.0,"dry_grass":1.0,"flammable":3.0,"flora":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:dry_grass_4":{"description":"\u001b(T@default)Dry Grass\u001bE","groups":{"attached_node":1.0,"dry_grass":1.0,"flammable":3.0,"flora":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:dry_grass_5":{"description":"\u001b(T@default)Dry Grass\u001bE","groups":{"attached_node":1.0,"dry_grass":1.0,"flammable":3.0,"flora":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:dry_shrub":{"description":"\u001b(T@default)Dry Shrub\u001bE","groups":{"attached_node":1.0,"flammable":3.0,"snappy":3.0},"type":"node","usages":[39.0]},"default:emergent_jungle_sapling":{"crafts":[336.0],"description":"\u001b(T@default)Emergent Jungle Tree Sapling\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"flammable":2.0,"sapling":1.0,"snappy":2.0},"type":"node","usages":[67.0]},"default:fence_acacia_wood":{"crafts":[273.0],"description":"\u001b(T@default)Acacia Wood Fence\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[63.0]},"default:fence_aspen_wood":{"crafts":[385.0],"description":"\u001b(T@default)Aspen Wood Fence\u001bE","groups":{"choppy":3.0,"fence":1.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[66.0]},"default:fence_junglewood":{"crafts":[115.0],"description":"\u001b(T@default)Jungle Wood Fence\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[62.0]},"default:fence_pine_wood":{"crafts":[469.0],"description":"\u001b(T@default)Pine Wood Fence\u001bE","groups":{"choppy":3.0,"fence":1.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[65.0]},"default:fence_rail_acacia_wood":{"crafts":[119.0],"description":"\u001b(T@default)Acacia Wood Fence Rail\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[58.0]},"default:fence_rail_aspen_wood":{"crafts":[493.0],"description":"\u001b(T@default)Aspen Wood Fence Rail\u001bE","groups":{"choppy":3.0,"fence":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[61.0]},"default:fence_rail_junglewood":{"crafts":[202.0],"description":"\u001b(T@default)Jungle Wood Fence Rail\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[57.0]},"default:fence_rail_pine_wood":{"crafts":[533.0],"description":"\u001b(T@default)Pine Wood Fence Rail\u001bE","groups":{"choppy":3.0,"fence":1.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[60.0]},"default:fence_rail_wood":{"crafts":[435.0],"description":"\u001b(T@default)Apple Wood Fence Rail\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[59.0]},"default:fence_wood":{"crafts":[521.0],"description":"\u001b(T@default)Apple Wood Fence\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[64.0]},"default:fern_1":{"description":"\u001b(T@default)Fern\u001bE","groups":{"attached_node":1.0,"flammable":3.0,"flora":1.0,"snappy":3.0},"type":"node","usages":[41.0]},"default:fern_2":{"description":"\u001b(T@default)Fern\u001bE","groups":{"attached_node":1.0,"flammable":3.0,"flora":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:fern_3":{"description":"\u001b(T@default)Fern\u001bE","groups":{"attached_node":1.0,"flammable":3.0,"flora":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:flint":{"description":"\u001b(T@default)Flint\u001bE","groups":null,"type":"craft","usages":[277.0]},"default:furnace":{"crafts":[338.0],"description":"\u001b(T@default)Furnace\u001bE","groups":{"cracky":2.0},"type":"node"},"default:furnace_active":{"description":"\u001b(T@default)Furnace\u001bE","groups":{"cracky":2.0,"not_in_creative_inventory":1.0},"type":"node"},"default:glass":{"crafts":[514.0,515.0,516.0,517.0],"description":"\u001b(T@default)Glass\u001bE","groups":{"cracky":3.0,"oddly_breakable_by_hand":3.0},"type":"node","usages":[443.0]},"default:gold_ingot":{"crafts":[346.0,347.0,348.0,349.0],"description":"\u001b(T@default)Gold Ingot\u001bE","groups":null,"type":"craft","usages":[189.0,402.0]},"default:gold_lump":{"description":"\u001b(T@default)Gold Lump\u001bE","groups":null,"type":"craft","usages":[348.0]},"default:goldblock":{"crafts":[187.0,188.0,189.0],"description":"\u001b(T@default)Gold Block\u001bE","groups":{"cracky":1.0},"type":"node","usages":[349.0,537.0]},"default:grass_1":{"description":"\u001b(T@default)Grass\u001bE","groups":{"attached_node":1.0,"flammable":1.0,"flora":1.0,"grass":1.0,"snappy":3.0},"type":"node","usages":[43.0]},"default:grass_2":{"description":"\u001b(T@default)Grass\u001bE","groups":{"attached_node":1.0,"flammable":1.0,"flora":1.0,"grass":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:grass_3":{"description":"\u001b(T@default)Grass\u001bE","groups":{"attached_node":1.0,"flammable":1.0,"flora":1.0,"grass":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:grass_4":{"description":"\u001b(T@default)Grass\u001bE","groups":{"attached_node":1.0,"flammable":1.0,"flora":1.0,"grass":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:grass_5":{"description":"\u001b(T@default)Grass\u001bE","groups":{"attached_node":1.0,"flammable":1.0,"flora":1.0,"grass":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:gravel":{"description":"\u001b(T@default)Gravel\u001bE","groups":{"crumbly":2.0,"falling_node":1.0},"type":"node","usages":[156.0]},"default:ice":{"crafts":[151.0,152.0],"description":"\u001b(T@default)Ice\u001bE","groups":{"cools_lava":1.0,"cracky":3.0,"slippery":3.0},"type":"node","usages":[132.0]},"default:iron_lump":{"description":"\u001b(T@default)Iron Lump\u001bE","groups":null,"type":"craft","usages":[316.0]},"default:junglegrass":{"description":"\u001b(T@default)Jungle Grass\u001bE","groups":{"attached_node":1.0,"flammable":1.0,"flora":1.0,"snappy":3.0},"type":"node","usages":[53.0]},"default:jungleleaves":{"description":"\u001b(T@default)Jungle Tree Leaves\u001bE","groups":{"flammable":2.0,"leafdecay":3.0,"leaves":1.0,"snappy":3.0},"type":"node"},"default:junglesapling":{"description":"\u001b(T@default)Jungle Tree Sapling\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"flammable":2.0,"sapling":1.0,"snappy":2.0},"type":"node","usages":[336.0]},"default:jungletree":{"description":"\u001b(T@default)Jungle Tree\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":1.0,"tree":1.0},"type":"node","usages":[288.0]},"default:junglewood":{"crafts":[286.0,287.0,288.0],"description":"\u001b(T@default)Jungle Wood Planks\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"wood":1.0},"type":"node","usages":[241.0,340.0]},"default:key":{"description":"\u001b(T@default)Key\u001bE","groups":{"key":1.0,"not_in_creative_inventory":1.0},"type":"tool","usages":[347.0]},"default:ladder_steel":{"crafts":[536.0],"description":"\u001b(T@default)Steel Ladder\u001bE","groups":{"cracky":2.0},"type":"node"},"default:ladder_wood":{"crafts":[246.0],"description":"\u001b(T@default)Wooden Ladder\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":3.0},"type":"node","usages":[47.0]},"default:large_cactus_seedling":{"crafts":[492.0],"description":"\u001b(T@default)Large Cactus Seedling\u001bE","groups":{"attached_node":1.0,"choppy":3.0,"dig_immediate":3.0},"type":"node","usages":[50.0]},"default:lava_flowing":{"description":"\u001b(T@default)Flowing Lava\u001bE","groups":{"igniter":1.0,"lava":3.0,"liquid":2.0,"not_in_creative_inventory":1.0},"type":"node"},"default:lava_source":{"description":"\u001b(T@default)Lava Source\u001bE","groups":{"igniter":1.0,"lava":3.0,"liquid":2.0},"type":"node","usages":[46.0]},"default:leaves":{"description":"\u001b(T@default)Apple Tree Leaves\u001bE","groups":{"flammable":2.0,"leafdecay":3.0,"leaves":1.0,"snappy":3.0},"type":"node"},"default:marram_grass_1":{"description":"\u001b(T@default)Marram Grass\u001bE","groups":{"attached_node":1.0,"flammable":3.0,"snappy":3.0},"type":"node","usages":[40.0]},"default:marram_grass_2":{"description":"\u001b(T@default)Marram Grass\u001bE","groups":{"attached_node":1.0,"flammable":3.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:marram_grass_3":{"description":"\u001b(T@default)Marram Grass\u001bE","groups":{"attached_node":1.0,"flammable":3.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"default:mese":{"crafts":[240.0],"description":"\u001b(T@default)Mese Block\u001bE","groups":{"cracky":1.0,"level":2.0},"type":"node","usages":[386.0]},"default:mese_crystal":{"crafts":[386.0,387.0],"description":"\u001b(T@default)Mese Crystal\u001bE","groups":null,"type":"craft","usages":[350.0,404.0,484.0]},"default:mese_crystal_fragment":{"crafts":[404.0],"description":"\u001b(T@default)Mese Crystal Fragment\u001bE","groups":null,"type":"craft","usages":[387.0]},"default:mese_post_light":{"crafts":[359.0],"description":"\u001b(T@default)Mese Post Light\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node"},"default:meselamp":{"crafts":[121.0],"description":"\u001b(T@default)Mese Lamp\u001bE","groups":{"cracky":3.0,"oddly_breakable_by_hand":3.0},"type":"node"},"default:mossycobble":{"crafts":[466.0,467.0],"description":"\u001b(T@default)Mossy Cobblestone\u001bE","groups":{"cracky":3.0,"stone":1.0},"type":"node","usages":[379.0]},"default:obsidian":{"crafts":[473.0,474.0,475.0],"description":"\u001b(T@default)Obsidian\u001bE","groups":{"cracky":1.0,"level":2.0},"type":"node","usages":[462.0]},"default:obsidian_block":{"crafts":[460.0,461.0,462.0],"description":"\u001b(T@default)Obsidian Block\u001bE","groups":{"cracky":1.0,"level":2.0},"type":"node","usages":[500.0]},"default:obsidian_glass":{"crafts":[190.0,191.0,192.0],"description":"\u001b(T@default)Obsidian Glass\u001bE","groups":{"cracky":3.0},"type":"node","usages":[245.0,258.0,438.0,542.0]},"default:obsidian_shard":{"crafts":[447.0],"description":"\u001b(T@default)Obsidian Shard\u001bE","groups":null,"type":"craft","usages":[192.0,475.0]},"default:obsidianbrick":{"crafts":[248.0,249.0,250.0],"description":"\u001b(T@default)Obsidian Brick\u001bE","groups":{"cracky":1.0,"level":2.0},"type":"node","usages":[259.0]},"default:paper":{"crafts":[108.0],"description":"\u001b(T@default)Paper\u001bE","groups":{"flammable":3.0},"type":"craft","usages":[88.0,185.0,368.0]},"default:papyrus":{"description":"\u001b(T@default)Papyrus\u001bE","groups":{"flammable":2.0,"snappy":3.0},"type":"node","usages":[108.0]},"default:permafrost":{"description":"\u001b(T@default)Permafrost\u001bE","groups":{"cracky":3.0},"type":"node"},"default:permafrost_with_moss":{"description":"\u001b(T@default)Permafrost with Moss\u001bE","groups":{"cracky":3.0},"type":"node"},"default:permafrost_with_stones":{"description":"\u001b(T@default)Permafrost with Stones\u001bE","groups":{"cracky":3.0},"type":"node"},"default:pick_bronze":{"crafts":[222.0],"description":"\u001b(T@default)Bronze Pickaxe\u001bE","groups":{"pickaxe":1.0},"type":"tool"},"default:pick_diamond":{"crafts":[293.0],"description":"\u001b(T@default)Diamond Pickaxe\u001bE","groups":{"pickaxe":1.0},"type":"tool"},"default:pick_mese":{"crafts":[350.0],"description":"\u001b(T@default)Mese Pickaxe\u001bE","groups":{"pickaxe":1.0},"type":"tool"},"default:pick_steel":{"crafts":[382.0],"description":"\u001b(T@default)Steel Pickaxe\u001bE","groups":{"pickaxe":1.0},"type":"tool"},"default:pick_stone":{"crafts":[261.0],"description":"\u001b(T@default)Stone Pickaxe\u001bE","groups":{"pickaxe":1.0},"type":"tool"},"default:pick_wood":{"crafts":[419.0],"description":"\u001b(T@default)Wooden Pickaxe\u001bE","groups":{"flammable":2.0,"pickaxe":1.0},"type":"tool","usages":[95.0]},"default:pine_bush_needles":{"description":"\u001b(T@default)Pine Bush Needles\u001bE","groups":{"flammable":2.0,"leaves":1.0,"snappy":3.0},"type":"node"},"default:pine_bush_sapling":{"description":"\u001b(T@default)Pine Bush Sapling\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"flammable":2.0,"sapling":1.0,"snappy":2.0},"type":"node","usages":[72.0]},"default:pine_bush_stem":{"description":"\u001b(T@default)Pine Bush Stem\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":1.0},"type":"node","usages":[54.0,197.0]},"default:pine_needles":{"description":"\u001b(T@default)Pine Needles\u001bE","groups":{"flammable":2.0,"leafdecay":3.0,"leaves":1.0,"snappy":3.0},"type":"node"},"default:pine_sapling":{"description":"\u001b(T@default)Pine Tree Sapling\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"flammable":3.0,"sapling":1.0,"snappy":2.0},"type":"node","usages":[70.0]},"default:pine_tree":{"description":"\u001b(T@default)Pine Tree\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":1.0,"tree":1.0},"type":"node","usages":[198.0]},"default:pine_wood":{"crafts":[195.0,196.0,197.0,198.0],"description":"\u001b(T@default)Pine Wood Planks\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0,"wood":1.0},"type":"node","usages":[168.0,469.0,533.0]},"default:river_water_flowing":{"description":"\u001b(T@default)Flowing River Water\u001bE","groups":{"cools_lava":1.0,"liquid":3.0,"not_in_creative_inventory":1.0,"water":3.0},"type":"node"},"default:river_water_source":{"description":"\u001b(T@default)River Water Source\u001bE","groups":{"cools_lava":1.0,"liquid":3.0,"water":3.0},"type":"node"},"default:sand":{"crafts":[193.0],"description":"\u001b(T@default)Sand\u001bE","groups":{"crumbly":3.0,"falling_node":1.0,"sand":1.0},"type":"node","usages":[390.0]},"default:sand_with_kelp":{"description":"\u001b(T@default)Kelp\u001bE","groups":{"snappy":3.0},"type":"node"},"default:sandstone":{"crafts":[388.0,389.0,390.0],"description":"\u001b(T@default)Sandstone\u001bE","groups":{"cracky":3.0,"crumbly":1.0},"type":"node","usages":[351.0,414.0]},"default:sandstone_block":{"crafts":[125.0,126.0,127.0],"description":"\u001b(T@default)Sandstone Block\u001bE","groups":{"cracky":2.0},"type":"node","usages":[503.0]},"default:sandstonebrick":{"crafts":[412.0,413.0,414.0],"description":"\u001b(T@default)Sandstone Brick\u001bE","groups":{"cracky":2.0},"type":"node","usages":[312.0]},"default:sapling":{"description":"\u001b(T@default)Apple Tree Sapling\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"flammable":2.0,"sapling":1.0,"snappy":2.0},"type":"node"},"default:shovel_bronze":{"crafts":[545.0],"description":"\u001b(T@default)Bronze Shovel\u001bE","groups":{"shovel":1.0},"type":"tool"},"default:shovel_diamond":{"crafts":[149.0],"description":"\u001b(T@default)Diamond Shovel\u001bE","groups":{"shovel":1.0},"type":"tool"},"default:shovel_mese":{"crafts":[142.0],"description":"\u001b(T@default)Mese Shovel\u001bE","groups":{"shovel":1.0},"type":"tool"},"default:shovel_steel":{"crafts":[135.0],"description":"\u001b(T@default)Steel Shovel\u001bE","groups":{"shovel":1.0},"type":"tool"},"default:shovel_stone":{"crafts":[292.0],"description":"\u001b(T@default)Stone Shovel\u001bE","groups":{"shovel":1.0},"type":"tool"},"default:shovel_wood":{"crafts":[520.0],"description":"\u001b(T@default)Wooden Shovel\u001bE","groups":{"flammable":2.0,"shovel":1.0},"type":"tool","usages":[94.0]},"default:sign_wall_steel":{"crafts":[308.0],"description":"\u001b(T@default)Steel Sign\u001bE","groups":{"attached_node":1.0,"cracky":2.0},"type":"node"},"default:sign_wall_wood":{"crafts":[436.0],"description":"\u001b(T@default)Wooden Sign\u001bE","groups":{"attached_node":1.0,"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":3.0},"type":"node","usages":[239.0]},"default:silver_sand":{"crafts":[353.0],"description":"\u001b(T@default)Silver Sand\u001bE","groups":{"crumbly":3.0,"falling_node":1.0,"sand":1.0},"type":"node","usages":[450.0]},"default:silver_sandstone":{"crafts":[448.0,449.0,450.0],"description":"\u001b(T@default)Silver Sandstone\u001bE","groups":{"cracky":3.0,"crumbly":1.0},"type":"node","usages":[428.0,491.0]},"default:silver_sandstone_block":{"crafts":[426.0,427.0,428.0],"description":"\u001b(T@default)Silver Sandstone Block\u001bE","groups":{"cracky":2.0},"type":"node","usages":[498.0]},"default:silver_sandstone_brick":{"crafts":[236.0,237.0,238.0],"description":"\u001b(T@default)Silver Sandstone Brick\u001bE","groups":{"cracky":2.0},"type":"node","usages":[495.0]},"default:skeleton_key":{"crafts":[402.0],"description":"\u001b(T@default)Skeleton Key\u001bE","groups":null,"type":"craft","usages":[346.0]},"default:snow":{"crafts":[391.0],"description":"\u001b(T@default)Snow\u001bE","groups":{"crumbly":3.0,"falling_node":1.0,"snowy":1.0},"type":"node","usages":[333.0]},"default:snowblock":{"crafts":[331.0,332.0,333.0],"description":"\u001b(T@default)Snow Block\u001bE","groups":{"cools_lava":1.0,"crumbly":3.0,"snowy":1.0},"type":"node","usages":[143.0,391.0]},"default:steel_ingot":{"crafts":[315.0,316.0,317.0],"description":"\u001b(T@default)Steel Ingot\u001bE","groups":null,"type":"craft","usages":[313.0,368.0,371.0,382.0,455.0,465.0,472.0,510.0,511.0,536.0,541.0]},"default:steelblock":{"crafts":[463.0,464.0,465.0],"description":"\u001b(T@default)Steel Block\u001bE","groups":{"cracky":1.0,"level":2.0},"type":"node","usages":[317.0,483.0]},"default:stick":{"crafts":[321.0],"description":"\u001b(T@default)Stick\u001bE","groups":{"flammable":2.0,"stick":1.0},"type":"craft"},"default:stone":{"crafts":[377.0,378.0,379.0,380.0],"description":"\u001b(T@default)Stone\u001bE","groups":{"cracky":3.0,"stone":1.0},"type":"node","usages":[372.0]},"default:stone_block":{"crafts":[173.0,174.0,175.0],"description":"\u001b(T@default)Stone Block\u001bE","groups":{"cracky":2.0,"stone":1.0},"type":"node","usages":[490.0]},"default:stone_with_coal":{"description":"\u001b(T@default)Coal Ore\u001bE","groups":{"cracky":3.0},"type":"node"},"default:stone_with_copper":{"description":"\u001b(T@default)Copper Ore\u001bE","groups":{"cracky":2.0},"type":"node"},"default:stone_with_diamond":{"description":"\u001b(T@default)Diamond Ore\u001bE","groups":{"cracky":1.0},"type":"node"},"default:stone_with_gold":{"description":"\u001b(T@default)Gold Ore\u001bE","groups":{"cracky":2.0},"type":"node"},"default:stone_with_iron":{"description":"\u001b(T@default)Iron Ore\u001bE","groups":{"cracky":2.0},"type":"node"},"default:stone_with_mese":{"description":"\u001b(T@default)Mese Ore\u001bE","groups":{"cracky":1.0},"type":"node"},"default:stone_with_tin":{"description":"\u001b(T@default)Tin Ore\u001bE","groups":{"cracky":2.0},"type":"node"},"default:stonebrick":{"crafts":[182.0,183.0,184.0],"description":"\u001b(T@default)Stone Brick\u001bE","groups":{"cracky":2.0,"stone":1.0},"type":"node","usages":[206.0]},"default:sword_bronze":{"crafts":[405.0],"description":"\u001b(T@default)Bronze Sword\u001bE","groups":{"sword":1.0},"type":"tool"},"default:sword_diamond":{"crafts":[118.0],"description":"\u001b(T@default)Diamond Sword\u001bE","groups":{"sword":1.0},"type":"tool"},"default:sword_mese":{"crafts":[319.0],"description":"\u001b(T@default)Mese Sword\u001bE","groups":{"sword":1.0},"type":"tool"},"default:sword_steel":{"crafts":[472.0],"description":"\u001b(T@default)Steel Sword\u001bE","groups":{"sword":1.0},"type":"tool"},"default:sword_stone":{"crafts":[229.0],"description":"\u001b(T@default)Stone Sword\u001bE","groups":{"sword":1.0},"type":"tool"},"default:sword_wood":{"crafts":[167.0],"description":"\u001b(T@default)Wooden Sword\u001bE","groups":{"flammable":2.0,"sword":1.0},"type":"tool","usages":[92.0]},"default:tin_ingot":{"crafts":[512.0,513.0],"description":"\u001b(T@default)Tin Ingot\u001bE","groups":null,"type":"craft","usages":[399.0]},"default:tin_lump":{"description":"\u001b(T@default)Tin Lump\u001bE","groups":null,"type":"craft","usages":[512.0]},"default:tinblock":{"crafts":[362.0,363.0,364.0],"description":"\u001b(T@default)Tin Block\u001bE","groups":{"cracky":1.0,"level":2.0},"type":"node","usages":[271.0,513.0]},"default:torch":{"crafts":[148.0],"description":"\u001b(T@default)Torch\u001bE","groups":{"attached_node":1.0,"choppy":2.0,"dig_immediate":3.0,"flammable":1.0,"torch":1.0},"type":"node","usages":[96.0]},"default:torch_ceiling":{"description":"","groups":{"attached_node":1.0,"choppy":2.0,"dig_immediate":3.0,"flammable":1.0,"not_in_creative_inventory":1.0,"torch":1.0},"type":"node"},"default:torch_wall":{"description":"","groups":{"attached_node":1.0,"choppy":2.0,"dig_immediate":3.0,"flammable":1.0,"not_in_creative_inventory":1.0,"torch":1.0},"type":"node"},"default:tree":{"description":"\u001b(T@default)Apple Tree\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":1.0,"tree":1.0},"type":"node","usages":[113.0]},"default:water_flowing":{"description":"\u001b(T@default)Flowing Water\u001bE","groups":{"cools_lava":1.0,"liquid":3.0,"not_in_creative_inventory":1.0,"water":3.0},"type":"node"},"default:water_source":{"description":"\u001b(T@default)Water Source\u001bE","groups":{"cools_lava":1.0,"liquid":3.0,"water":3.0},"type":"node"},"default:wood":{"crafts":[110.0,111.0,112.0,113.0],"description":"\u001b(T@default)Apple Wood Planks\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"wood":1.0},"type":"node","usages":[435.0,456.0,470.0,521.0]},"doors:door_glass":{"crafts":[177.0],"description":"\u001b(T@doors)Glass Door\u001bE","groups":{"cracky":3.0,"oddly_breakable_by_hand":3.0},"type":"craft"},"doors:door_glass_b":{"aliases":{"doors:door_glass_a":true},"description":"\u001b(T@doors)Glass Door\u001bE","groups":{"cracky":3.0,"door":1.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":3.0},"type":"node"},"doors:door_obsidian_glass":{"crafts":[258.0],"description":"\u001b(T@doors)Obsidian Glass Door\u001bE","groups":{"cracky":3.0},"type":"craft"},"doors:door_obsidian_glass_b":{"aliases":{"doors:door_obsidian_glass_a":true},"description":"\u001b(T@doors)Obsidian Glass Door\u001bE","groups":{"cracky":3.0,"door":1.0,"not_in_creative_inventory":1.0},"type":"node"},"doors:door_steel":{"crafts":[101.0],"description":"\u001b(T@doors)Steel Door\u001bE","groups":{"cracky":1.0,"level":2.0},"type":"craft"},"doors:door_steel_b":{"aliases":{"doors:door_steel_a":true},"description":"\u001b(T@doors)Steel Door\u001bE","groups":{"cracky":1.0,"door":1.0,"level":2.0,"not_in_creative_inventory":1.0},"type":"node"},"doors:door_wood":{"crafts":[526.0],"description":"\u001b(T@doors)Wooden Door\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"craft","usages":[15.0]},"doors:door_wood_b":{"aliases":{"doors:door_wood_a":true},"description":"\u001b(T@doors)Wooden Door\u001bE","groups":{"choppy":2.0,"door":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":2.0},"type":"node"},"doors:gate_acacia_wood_closed":{"crafts":[194.0],"description":"\u001b(T@doors)Acacia Wood Fence Gate\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[13.0]},"doors:gate_acacia_wood_open":{"description":"\u001b(T@doors)Acacia Wood Fence Gate\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":2.0},"type":"node"},"doors:gate_aspen_wood_closed":{"crafts":[285.0],"description":"\u001b(T@doors)Aspen Wood Fence Gate\u001bE","groups":{"choppy":3.0,"fence":1.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[10.0]},"doors:gate_aspen_wood_open":{"description":"\u001b(T@doors)Aspen Wood Fence Gate\u001bE","groups":{"choppy":3.0,"fence":1.0,"flammable":3.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":2.0},"type":"node"},"doors:gate_junglewood_closed":{"crafts":[241.0],"description":"\u001b(T@doors)Jungle Wood Fence Gate\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[12.0]},"doors:gate_junglewood_open":{"description":"\u001b(T@doors)Jungle Wood Fence Gate\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":2.0},"type":"node"},"doors:gate_pine_wood_closed":{"crafts":[168.0],"description":"\u001b(T@doors)Pine Wood Fence Gate\u001bE","groups":{"choppy":3.0,"fence":1.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[11.0]},"doors:gate_pine_wood_open":{"description":"\u001b(T@doors)Pine Wood Fence Gate\u001bE","groups":{"choppy":3.0,"fence":1.0,"flammable":3.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":2.0},"type":"node"},"doors:gate_wood_closed":{"crafts":[470.0],"description":"\u001b(T@doors)Apple Wood Fence Gate\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[14.0]},"doors:gate_wood_open":{"description":"\u001b(T@doors)Apple Wood Fence Gate\u001bE","groups":{"choppy":2.0,"fence":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":2.0},"type":"node"},"doors:hidden":{"description":"\u001b(T@doors)Hidden Door Segment\u001bE","groups":{"not_in_creative_inventory":1.0},"type":"node"},"doors:trapdoor":{"crafts":[225.0],"description":"\u001b(T@doors)Wooden Trapdoor\u001bE","groups":{"choppy":2.0,"door":1.0,"flammable":2.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[16.0]},"doors:trapdoor_open":{"description":"\u001b(T@doors)Wooden Trapdoor\u001bE","groups":{"choppy":2.0,"door":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":2.0},"type":"node"},"doors:trapdoor_steel":{"crafts":[150.0],"description":"\u001b(T@doors)Steel Trapdoor\u001bE","groups":{"cracky":1.0,"door":1.0,"level":2.0},"type":"node"},"doors:trapdoor_steel_open":{"description":"\u001b(T@doors)Steel Trapdoor\u001bE","groups":{"cracky":1.0,"door":1.0,"level":2.0,"not_in_creative_inventory":1.0},"type":"node"},"dye:black":{"crafts":[334.0,335.0],"description":"\u001b(T@dye)Black Dye\u001bE","groups":{"color_black":1.0,"dye":1.0},"type":"craft","usages":[294.0,356.0,368.0,395.0]},"dye:blue":{"crafts":[263.0,264.0],"description":"\u001b(T@dye)Blue Dye\u001bE","groups":{"color_blue":1.0,"dye":1.0},"type":"craft","usages":[213.0,266.0,326.0,327.0]},"dye:brown":{"crafts":[294.0,295.0,296.0],"description":"\u001b(T@dye)Brown Dye\u001bE","groups":{"color_brown":1.0,"dye":1.0},"type":"craft"},"dye:cyan":{"crafts":[140.0,141.0],"description":"\u001b(T@dye)Cyan Dye\u001bE","groups":{"color_cyan":1.0,"dye":1.0},"type":"craft","usages":[212.0,263.0]},"dye:dark_green":{"crafts":[395.0,396.0],"description":"\u001b(T@dye)Dark Green Dye\u001bE","groups":{"color_dark_green":1.0,"dye":1.0},"type":"craft","usages":[211.0]},"dye:dark_grey":{"crafts":[265.0,266.0,267.0,268.0],"description":"\u001b(T@dye)Dark Grey Dye\u001bE","groups":{"color_dark_grey":1.0,"dye":1.0},"type":"craft","usages":[355.0]},"dye:green":{"crafts":[211.0,212.0,213.0,214.0],"description":"\u001b(T@dye)Green Dye\u001bE","groups":{"color_green":1.0,"dye":1.0},"type":"craft","usages":[140.0,295.0,395.0]},"dye:grey":{"crafts":[355.0,356.0,357.0],"description":"\u001b(T@dye)Grey Dye\u001bE","groups":{"color_grey":1.0,"dye":1.0},"type":"craft","usages":[265.0]},"dye:magenta":{"crafts":[274.0,275.0],"description":"\u001b(T@dye)Magenta Dye\u001bE","groups":{"color_magenta":1.0,"dye":1.0},"type":"craft","usages":[263.0,326.0,360.0]},"dye:orange":{"crafts":[129.0,130.0],"description":"\u001b(T@dye)Orange Dye\u001bE","groups":{"color_orange":1.0,"dye":1.0},"type":"craft","usages":[266.0,294.0]},"dye:pink":{"crafts":[230.0,231.0],"description":"\u001b(T@dye)Pink Dye\u001bE","groups":{"color_pink":1.0,"dye":1.0},"type":"craft","usages":[274.0]},"dye:red":{"crafts":[360.0,361.0],"description":"\u001b(T@dye)Red Dye\u001bE","groups":{"color_red":1.0,"dye":1.0},"type":"craft","usages":[327.0]},"dye:violet":{"crafts":[326.0,327.0,328.0,329.0],"description":"\u001b(T@dye)Violet Dye\u001bE","groups":{"color_violet":1.0,"dye":1.0},"type":"craft","usages":[274.0]},"dye:white":{"crafts":[325.0],"description":"\u001b(T@dye)White Dye\u001bE","groups":{"color_white":1.0,"dye":1.0},"type":"craft","usages":[230.0,355.0,356.0]},"dye:yellow":{"crafts":[178.0],"description":"\u001b(T@dye)Yellow Dye\u001bE","groups":{"color_yellow":1.0,"dye":1.0},"type":"craft","usages":[129.0,212.0,213.0,267.0,360.0]},"farming:bread":{"crafts":[234.0],"description":"\u001b(T@farming)Bread\u001bE","groups":{"flammable":2.0,"food_bread":1.0},"type":"craft"},"farming:cotton":{"description":"\u001b(T@farming)Cotton\u001bE","groups":{"flammable":4.0},"type":"craft","usages":[201.0,476.0]},"farming:cotton_1":{"description":"","groups":{"attached_node":1.0,"cotton":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0},"type":"node"},"farming:cotton_2":{"description":"","groups":{"attached_node":1.0,"cotton":2.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0},"type":"node"},"farming:cotton_3":{"description":"","groups":{"attached_node":1.0,"cotton":3.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0},"type":"node"},"farming:cotton_4":{"description":"","groups":{"attached_node":1.0,"cotton":4.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0},"type":"node"},"farming:cotton_5":{"description":"","groups":{"attached_node":1.0,"cotton":5.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0},"type":"node"},"farming:cotton_6":{"description":"","groups":{"attached_node":1.0,"cotton":6.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0},"type":"node"},"farming:cotton_7":{"description":"","groups":{"attached_node":1.0,"cotton":7.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0},"type":"node"},"farming:cotton_8":{"description":"","groups":{"attached_node":1.0,"cotton":8.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0},"type":"node"},"farming:desert_sand_soil":{"description":"\u001b(T@farming)Desert Sand Soil\u001bE","groups":{"crumbly":3.0,"desert":1.0,"falling_node":1.0,"field":1.0,"not_in_creative_inventory":1.0,"sand":1.0,"soil":2.0},"type":"node"},"farming:desert_sand_soil_wet":{"description":"\u001b(T@farming)Wet Desert Sand Soil\u001bE","groups":{"crumbly":3.0,"desert":1.0,"falling_node":1.0,"field":1.0,"not_in_creative_inventory":1.0,"sand":1.0,"soil":3.0,"wet":1.0},"type":"node"},"farming:dry_soil":{"description":"\u001b(T@farming)Dry Soil\u001bE","groups":{"crumbly":3.0,"field":1.0,"grassland":1.0,"not_in_creative_inventory":1.0,"soil":2.0},"type":"node"},"farming:dry_soil_wet":{"description":"\u001b(T@farming)Wet Dry Soil\u001bE","groups":{"crumbly":3.0,"field":1.0,"grassland":1.0,"not_in_creative_inventory":1.0,"soil":3.0,"wet":1.0},"type":"node"},"farming:flour":{"crafts":[306.0],"description":"\u001b(T@farming)Flour\u001bE","groups":{"flammable":1.0,"food_flour":1.0},"type":"craft","usages":[234.0]},"farming:hoe_bronze":{"description":"\u001b(T@farming)Bronze Hoe\u001bE","groups":{"hoe":1.0,"not_in_creative_inventory":1.0},"type":"tool"},"farming:hoe_diamond":{"description":"\u001b(T@farming)Diamond Hoe\u001bE","groups":{"hoe":1.0,"not_in_creative_inventory":1.0},"type":"tool"},"farming:hoe_mese":{"description":"\u001b(T@farming)Mese Hoe\u001bE","groups":{"hoe":1.0,"not_in_creative_inventory":1.0},"type":"tool"},"farming:hoe_steel":{"crafts":[172.0],"description":"\u001b(T@farming)Steel Hoe\u001bE","groups":{"hoe":1.0},"type":"tool"},"farming:hoe_stone":{"crafts":[170.0],"description":"\u001b(T@farming)Stone Hoe\u001bE","groups":{"hoe":1.0},"type":"tool"},"farming:hoe_wood":{"crafts":[227.0],"description":"\u001b(T@farming)Wooden Hoe\u001bE","groups":{"flammable":2.0,"hoe":1.0},"type":"tool","usages":[4.0]},"farming:seed_cotton":{"description":"\u001b(T@farming)Cotton Seed\u001bE","groups":{"attached_node":1.0,"desert":1.0,"flammable":2.0,"grassland":1.0,"seed":1.0,"snappy":3.0},"type":"node"},"farming:seed_wheat":{"description":"\u001b(T@farming)Wheat Seed\u001bE","groups":{"attached_node":1.0,"flammable":2.0,"grassland":1.0,"seed":1.0,"snappy":3.0},"type":"node"},"farming:soil":{"description":"\u001b(T@farming)Soil\u001bE","groups":{"crumbly":3.0,"field":1.0,"grassland":1.0,"not_in_creative_inventory":1.0,"soil":2.0},"type":"node"},"farming:soil_wet":{"description":"\u001b(T@farming)Wet Soil\u001bE","groups":{"crumbly":3.0,"field":1.0,"grassland":1.0,"not_in_creative_inventory":1.0,"soil":3.0,"wet":1.0},"type":"node"},"farming:straw":{"crafts":[251.0,252.0,253.0],"description":"\u001b(T@farming)Straw\u001bE","groups":{"fall_damage_add_percent":-30.0,"flammable":4.0,"snappy":3.0},"type":"node","usages":[217.0]},"farming:string":{"crafts":[201.0],"description":"\u001b(T@farming)String\u001bE","groups":{"flammable":2.0},"type":"craft","usages":[5.0,529.0]},"farming:wheat":{"crafts":[186.0],"description":"\u001b(T@farming)Wheat\u001bE","groups":{"flammable":4.0,"food_wheat":1.0},"type":"craft","usages":[7.0,251.0,306.0]},"farming:wheat_1":{"description":"","groups":{"attached_node":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0,"wheat":1.0},"type":"node"},"farming:wheat_2":{"description":"","groups":{"attached_node":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0,"wheat":2.0},"type":"node"},"farming:wheat_3":{"description":"","groups":{"attached_node":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0,"wheat":3.0},"type":"node"},"farming:wheat_4":{"description":"","groups":{"attached_node":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0,"wheat":4.0},"type":"node"},"farming:wheat_5":{"description":"","groups":{"attached_node":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0,"wheat":5.0},"type":"node"},"farming:wheat_6":{"description":"","groups":{"attached_node":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0,"wheat":6.0},"type":"node"},"farming:wheat_7":{"description":"","groups":{"attached_node":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0,"wheat":7.0},"type":"node"},"farming:wheat_8":{"description":"","groups":{"attached_node":1.0,"flammable":2.0,"not_in_creative_inventory":1.0,"plant":1.0,"snappy":3.0,"wheat":8.0},"type":"node"},"fire:basic_flame":{"description":"","groups":{"dig_immediate":3.0,"igniter":2.0,"not_in_creative_inventory":1.0},"type":"node"},"fire:flint_and_steel":{"crafts":[277.0],"description":"\u001b(T@fire)Flint and Steel\u001bE","groups":null,"type":"tool"},"fire:permanent_flame":{"description":"\u001b(T@fire)Permanent Flame\u001bE","groups":{"dig_immediate":3.0,"igniter":2.0},"type":"node"},"fireflies:bug_net":{"crafts":[529.0],"description":"\u001b(T@fireflies)Bug Net\u001bE","groups":null,"type":"tool"},"fireflies:firefly":{"description":"\u001b(T@fireflies)Firefly\u001bE","groups":{"catchable":1.0},"type":"node","usages":[411.0]},"fireflies:firefly_bottle":{"crafts":[411.0],"description":"\u001b(T@fireflies)Firefly in a Bottle\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"vessel":1.0},"type":"node"},"fireflies:hidden_firefly":{"description":"\u001b(T@fireflies)Hidden Firefly\u001bE","groups":{"not_in_creative_inventory":1.0},"type":"node"},"flowers:chrysanthemum_green":{"description":"\u001b(T@flowers)Green Chrysanthemum\u001bE","groups":{"attached_node":1.0,"color_green":1.0,"flammable":1.0,"flora":1.0,"flower":1.0,"snappy":3.0},"type":"node"},"flowers:dandelion_white":{"description":"\u001b(T@flowers)White Dandelion\u001bE","groups":{"attached_node":1.0,"color_white":1.0,"flammable":1.0,"flora":1.0,"flower":1.0,"snappy":3.0},"type":"node"},"flowers:dandelion_yellow":{"description":"\u001b(T@flowers)Yellow Dandelion\u001bE","groups":{"attached_node":1.0,"color_yellow":1.0,"flammable":1.0,"flora":1.0,"flower":1.0,"snappy":3.0},"type":"node"},"flowers:geranium":{"description":"\u001b(T@flowers)Blue Geranium\u001bE","groups":{"attached_node":1.0,"color_blue":1.0,"flammable":1.0,"flora":1.0,"flower":1.0,"snappy":3.0},"type":"node"},"flowers:mushroom_brown":{"description":"\u001b(T@flowers)Brown Mushroom\u001bE","groups":{"attached_node":1.0,"flammable":1.0,"food_mushroom":1.0,"mushroom":1.0,"snappy":3.0},"type":"node"},"flowers:mushroom_red":{"description":"\u001b(T@flowers)Red Mushroom\u001bE","groups":{"attached_node":1.0,"flammable":1.0,"mushroom":1.0,"snappy":3.0},"type":"node"},"flowers:rose":{"description":"\u001b(T@flowers)Red Rose\u001bE","groups":{"attached_node":1.0,"color_red":1.0,"flammable":1.0,"flora":1.0,"flower":1.0,"snappy":3.0},"type":"node"},"flowers:tulip":{"description":"\u001b(T@flowers)Orange Tulip\u001bE","groups":{"attached_node":1.0,"color_orange":1.0,"flammable":1.0,"flora":1.0,"flower":1.0,"snappy":3.0},"type":"node"},"flowers:tulip_black":{"description":"\u001b(T@flowers)Black Tulip\u001bE","groups":{"attached_node":1.0,"color_black":1.0,"flammable":1.0,"flora":1.0,"flower":1.0,"snappy":3.0},"type":"node"},"flowers:viola":{"description":"\u001b(T@flowers)Viola\u001bE","groups":{"attached_node":1.0,"color_violet":1.0,"flammable":1.0,"flora":1.0,"flower":1.0,"snappy":3.0},"type":"node"},"flowers:waterlily":{"description":"\u001b(T@flowers)Waterlily\u001bE","groups":{"flammable":1.0,"flower":1.0,"snappy":3.0},"type":"node"},"flowers:waterlily_waving":{"description":"\u001b(T@flowers)Waterlily\u001bE","groups":{"flammable":1.0,"flower":1.0,"not_in_creative_inventory":1.0,"snappy":3.0},"type":"node"},"ignore":{"description":"Ignore","groups":{"not_in_creative_inventory":1.0},"type":"node"},"map:mapping_kit":{"crafts":[368.0],"description":"\u001b(T@map)Mapping Kit\u001bE\n\u001b(T@map)Use with 'Minimap' key\u001bE","groups":{"flammable":3.0},"type":"craft","usages":[1.0]},"screwdriver:screwdriver":{"crafts":[371.0],"description":"\u001b(T@screwdriver)Screwdriver\u001bE\n\u001b(T@screwdriver)(left-click rotates face, right-click rotates axis)\u001bE","groups":{"tool":1.0},"type":"tool"},"stairs:slab_acacia_wood":{"crafts":[220.0],"description":"\u001b(T@stairs)Acacia Wood Slab\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"slab":1.0},"type":"node","usages":[23.0,302.0]},"stairs:slab_aspen_wood":{"crafts":[415.0],"description":"\u001b(T@stairs)Aspen Wood Slab\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0,"slab":1.0},"type":"node","usages":[19.0,457.0]},"stairs:slab_brick":{"crafts":[221.0],"description":"\u001b(T@stairs)Brick Slab\u001bE","groups":{"cracky":3.0,"slab":1.0},"type":"node","usages":[322.0]},"stairs:slab_bronzeblock":{"crafts":[532.0],"description":"\u001b(T@stairs)Bronze Block Slab\u001bE","groups":{"cracky":1.0,"level":2.0,"slab":1.0},"type":"node","usages":[440.0]},"stairs:slab_cobble":{"crafts":[384.0],"description":"\u001b(T@stairs)Cobblestone Slab\u001bE","groups":{"cracky":3.0,"slab":1.0},"type":"node","usages":[290.0]},"stairs:slab_copperblock":{"crafts":[509.0],"description":"\u001b(T@stairs)Copper Block Slab\u001bE","groups":{"cracky":1.0,"level":2.0,"slab":1.0},"type":"node","usages":[432.0]},"stairs:slab_desert_cobble":{"crafts":[242.0],"description":"\u001b(T@stairs)Desert Cobblestone Slab\u001bE","groups":{"cracky":3.0,"slab":1.0},"type":"node","usages":[204.0]},"stairs:slab_desert_sandstone":{"crafts":[200.0],"description":"\u001b(T@stairs)Desert Sandstone Slab\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"slab":1.0},"type":"node","usages":[122.0]},"stairs:slab_desert_sandstone_block":{"crafts":[479.0],"description":"\u001b(T@stairs)Desert Sandstone Block Slab\u001bE","groups":{"cracky":2.0,"slab":1.0},"type":"node","usages":[282.0]},"stairs:slab_desert_sandstone_brick":{"crafts":[367.0],"description":"\u001b(T@stairs)Desert Sandstone Brick Slab\u001bE","groups":{"cracky":2.0,"slab":1.0},"type":"node","usages":[164.0]},"stairs:slab_desert_stone":{"crafts":[540.0],"description":"\u001b(T@stairs)Desert Stone Slab\u001bE","groups":{"cracky":3.0,"slab":1.0},"type":"node","usages":[407.0]},"stairs:slab_desert_stone_block":{"crafts":[518.0],"description":"\u001b(T@stairs)Desert Stone Block Slab\u001bE","groups":{"cracky":2.0,"slab":1.0},"type":"node","usages":[343.0]},"stairs:slab_desert_stonebrick":{"crafts":[235.0],"description":"\u001b(T@stairs)Desert Stone Brick Slab\u001bE","groups":{"cracky":2.0,"slab":1.0},"type":"node","usages":[416.0]},"stairs:slab_glass":{"crafts":[406.0],"description":"\u001b(T@stairs)Glass Slab\u001bE","groups":{"cracky":3.0,"slab":1.0},"type":"node","usages":[515.0]},"stairs:slab_goldblock":{"crafts":[537.0],"description":"\u001b(T@stairs)Gold Block Slab\u001bE","groups":{"cracky":1.0,"slab":1.0},"type":"node","usages":[187.0]},"stairs:slab_ice":{"crafts":[132.0],"description":"\u001b(T@stairs)Ice Slab\u001bE","groups":{"cools_lava":1.0,"cracky":3.0,"slab":1.0,"slippery":3.0},"type":"node","usages":[151.0]},"stairs:slab_junglewood":{"crafts":[340.0],"description":"\u001b(T@stairs)Jungle Wood Slab\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"slab":1.0},"type":"node","usages":[286.0]},"stairs:slab_mossycobble":{"crafts":[218.0],"description":"\u001b(T@stairs)Mossy Cobblestone Slab\u001bE","groups":{"cracky":3.0,"slab":1.0},"type":"node","usages":[466.0]},"stairs:slab_obsidian":{"crafts":[370.0],"description":"\u001b(T@stairs)Obsidian Slab\u001bE","groups":{"cracky":1.0,"level":2.0,"slab":1.0},"type":"node","usages":[473.0]},"stairs:slab_obsidian_block":{"crafts":[500.0],"description":"\u001b(T@stairs)Obsidian Block Slab\u001bE","groups":{"cracky":1.0,"level":2.0,"slab":1.0},"type":"node","usages":[460.0]},"stairs:slab_obsidian_glass":{"crafts":[438.0],"description":"\u001b(T@stairs)Obsidian Glass Slab\u001bE","groups":{"cracky":3.0,"slab":1.0},"type":"node","usages":[190.0]},"stairs:slab_obsidianbrick":{"crafts":[259.0],"description":"\u001b(T@stairs)Obsidian Brick Slab\u001bE","groups":{"cracky":1.0,"level":2.0,"slab":1.0},"type":"node","usages":[248.0]},"stairs:slab_pine_wood":{"crafts":[116.0],"description":"\u001b(T@stairs)Pine Wood Slab\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0,"slab":1.0},"type":"node","usages":[27.0,195.0]},"stairs:slab_sandstone":{"crafts":[351.0],"description":"\u001b(T@stairs)Sandstone Slab\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"slab":1.0},"type":"node","usages":[388.0]},"stairs:slab_sandstone_block":{"crafts":[503.0],"description":"\u001b(T@stairs)Sandstone Block Slab\u001bE","groups":{"cracky":2.0,"slab":1.0},"type":"node","usages":[125.0]},"stairs:slab_sandstonebrick":{"crafts":[312.0],"description":"\u001b(T@stairs)Sandstone Brick Slab\u001bE","groups":{"cracky":2.0,"slab":1.0},"type":"node","usages":[412.0]},"stairs:slab_silver_sandstone":{"crafts":[491.0],"description":"\u001b(T@stairs)Silver Sandstone Slab\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"slab":1.0},"type":"node","usages":[448.0]},"stairs:slab_silver_sandstone_block":{"crafts":[498.0],"description":"\u001b(T@stairs)Silver Sandstone Block Slab\u001bE","groups":{"cracky":2.0,"slab":1.0},"type":"node","usages":[426.0]},"stairs:slab_silver_sandstone_brick":{"crafts":[495.0],"description":"\u001b(T@stairs)Silver Sandstone Brick Slab\u001bE","groups":{"cracky":2.0,"slab":1.0},"type":"node","usages":[236.0]},"stairs:slab_snowblock":{"crafts":[143.0],"description":"\u001b(T@stairs)Snow Block Slab\u001bE","groups":{"cools_lava":1.0,"crumbly":3.0,"slab":1.0,"snowy":1.0},"type":"node","usages":[331.0]},"stairs:slab_steelblock":{"crafts":[483.0],"description":"\u001b(T@stairs)Steel Block Slab\u001bE","groups":{"cracky":1.0,"level":2.0,"slab":1.0},"type":"node","usages":[463.0]},"stairs:slab_stone":{"crafts":[372.0],"description":"\u001b(T@stairs)Stone Slab\u001bE","groups":{"cracky":3.0,"slab":1.0},"type":"node","usages":[377.0]},"stairs:slab_stone_block":{"crafts":[490.0],"description":"\u001b(T@stairs)Stone Block Slab\u001bE","groups":{"cracky":2.0,"slab":1.0},"type":"node","usages":[173.0]},"stairs:slab_stonebrick":{"crafts":[206.0],"description":"\u001b(T@stairs)Stone Brick Slab\u001bE","groups":{"cracky":2.0,"slab":1.0},"type":"node","usages":[182.0]},"stairs:slab_straw":{"crafts":[217.0],"description":"\u001b(T@farming)Straw Slab\u001bE","groups":{"flammable":4.0,"slab":1.0,"snappy":3.0},"type":"node","usages":[252.0]},"stairs:slab_tinblock":{"crafts":[271.0],"description":"\u001b(T@stairs)Tin Block Slab\u001bE","groups":{"cracky":1.0,"level":2.0,"slab":1.0},"type":"node","usages":[362.0]},"stairs:slab_wood":{"crafts":[456.0],"description":"\u001b(T@stairs)Wooden Slab\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"slab":1.0},"type":"node","usages":[110.0]},"stairs:stair_acacia_wood":{"crafts":[444.0],"description":"\u001b(T@stairs)Acacia Wood Stair\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[303.0]},"stairs:stair_aspen_wood":{"crafts":[383.0],"description":"\u001b(T@stairs)Aspen Wood Stair\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[22.0,458.0]},"stairs:stair_brick":{"crafts":[341.0],"description":"\u001b(T@stairs)Brick Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node","usages":[323.0]},"stairs:stair_bronzeblock":{"crafts":[451.0],"description":"\u001b(T@stairs)Bronze Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node","usages":[441.0]},"stairs:stair_cobble":{"crafts":[210.0],"description":"\u001b(T@stairs)Cobblestone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node","usages":[291.0]},"stairs:stair_copperblock":{"crafts":[505.0],"description":"\u001b(T@stairs)Copper Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node","usages":[433.0]},"stairs:stair_desert_cobble":{"crafts":[223.0],"description":"\u001b(T@stairs)Desert Cobblestone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node","usages":[205.0]},"stairs:stair_desert_sandstone":{"crafts":[169.0],"description":"\u001b(T@stairs)Desert Sandstone Stair\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"stair":1.0},"type":"node","usages":[123.0]},"stairs:stair_desert_sandstone_block":{"crafts":[352.0],"description":"\u001b(T@stairs)Desert Sandstone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node","usages":[283.0]},"stairs:stair_desert_sandstone_brick":{"crafts":[203.0],"description":"\u001b(T@stairs)Desert Sandstone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node","usages":[165.0]},"stairs:stair_desert_stone":{"crafts":[102.0],"description":"\u001b(T@stairs)Desert Stone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node","usages":[408.0]},"stairs:stair_desert_stone_block":{"crafts":[429.0],"description":"\u001b(T@stairs)Desert Stone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node","usages":[344.0]},"stairs:stair_desert_stonebrick":{"crafts":[136.0],"description":"\u001b(T@stairs)Desert Stone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node","usages":[417.0]},"stairs:stair_glass":{"crafts":[420.0],"description":"\u001b(T@stairs)Glass Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node","usages":[516.0]},"stairs:stair_goldblock":{"crafts":[423.0],"description":"\u001b(T@stairs)Gold Block Stair\u001bE","groups":{"cracky":1.0,"stair":1.0},"type":"node","usages":[188.0]},"stairs:stair_ice":{"crafts":[534.0],"description":"\u001b(T@stairs)Ice Stair\u001bE","groups":{"cools_lava":1.0,"cracky":3.0,"slippery":3.0,"stair":1.0},"type":"node","usages":[152.0]},"stairs:stair_inner_acacia_wood":{"crafts":[468.0],"description":"\u001b(T@stairs)Inner Acacia Wood Stair\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[25.0]},"stairs:stair_inner_aspen_wood":{"crafts":[373.0],"description":"\u001b(T@stairs)Inner Aspen Wood Stair\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[21.0]},"stairs:stair_inner_brick":{"crafts":[209.0],"description":"\u001b(T@stairs)Inner Brick Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_inner_bronzeblock":{"crafts":[539.0],"description":"\u001b(T@stairs)Inner Bronze Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_cobble":{"crafts":[401.0],"description":"\u001b(T@stairs)Inner Cobblestone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_inner_copperblock":{"crafts":[507.0],"description":"\u001b(T@stairs)Inner Copper Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_desert_cobble":{"crafts":[546.0],"description":"\u001b(T@stairs)Inner Desert Cobblestone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_inner_desert_sandstone":{"crafts":[487.0],"description":"\u001b(T@stairs)Inner Desert Sandstone Stair\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"stair":1.0},"type":"node"},"stairs:stair_inner_desert_sandstone_block":{"crafts":[365.0],"description":"\u001b(T@stairs)Inner Desert Sandstone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_desert_sandstone_brick":{"crafts":[488.0],"description":"\u001b(T@stairs)Inner Desert Sandstone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_desert_stone":{"crafts":[157.0],"description":"\u001b(T@stairs)Inner Desert Stone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_inner_desert_stone_block":{"crafts":[254.0],"description":"\u001b(T@stairs)Inner Desert Stone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_desert_stonebrick":{"crafts":[480.0],"description":"\u001b(T@stairs)Inner Desert Stone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_glass":{"crafts":[147.0],"description":"\u001b(T@stairs)Inner Glass Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_inner_goldblock":{"crafts":[422.0],"description":"\u001b(T@stairs)Inner Gold Block Stair\u001bE","groups":{"cracky":1.0,"stair":1.0},"type":"node"},"stairs:stair_inner_ice":{"crafts":[255.0],"description":"\u001b(T@stairs)Inner Ice Stair\u001bE","groups":{"cools_lava":1.0,"cracky":3.0,"slippery":3.0,"stair":1.0},"type":"node"},"stairs:stair_inner_junglewood":{"crafts":[181.0],"description":"\u001b(T@stairs)Inner Jungle Wood Stair\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[33.0]},"stairs:stair_inner_mossycobble":{"crafts":[314.0],"description":"\u001b(T@stairs)Inner Mossy Cobblestone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_inner_obsidian":{"crafts":[159.0],"description":"\u001b(T@stairs)Inner Obsidian Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_obsidian_block":{"crafts":[330.0],"description":"\u001b(T@stairs)Inner Obsidian Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_obsidian_glass":{"crafts":[247.0],"description":"\u001b(T@stairs)Inner Obsidian Glass Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_inner_obsidianbrick":{"crafts":[106.0],"description":"\u001b(T@stairs)Inner Obsidian Brick Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_pine_wood":{"crafts":[437.0],"description":"\u001b(T@stairs)Inner Pine Wood Stair\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[29.0]},"stairs:stair_inner_sandstone":{"crafts":[297.0],"description":"\u001b(T@stairs)Inner Sandstone Stair\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"stair":1.0},"type":"node"},"stairs:stair_inner_sandstone_block":{"crafts":[301.0],"description":"\u001b(T@stairs)Inner Sandstone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_sandstonebrick":{"crafts":[272.0],"description":"\u001b(T@stairs)Inner Sandstone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_silver_sandstone":{"crafts":[208.0],"description":"\u001b(T@stairs)Inner Silver Sandstone Stair\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"stair":1.0},"type":"node"},"stairs:stair_inner_silver_sandstone_block":{"crafts":[445.0],"description":"\u001b(T@stairs)Inner Silver Sandstone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_silver_sandstone_brick":{"crafts":[199.0],"description":"\u001b(T@stairs)Inner Silver Sandstone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_snowblock":{"crafts":[104.0],"description":"\u001b(T@stairs)Inner Snow Block Stair\u001bE","groups":{"cools_lava":1.0,"crumbly":3.0,"snowy":1.0,"stair":1.0},"type":"node"},"stairs:stair_inner_steelblock":{"crafts":[501.0],"description":"\u001b(T@stairs)Inner Steel Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_stone":{"crafts":[215.0],"description":"\u001b(T@stairs)Inner Stone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_inner_stone_block":{"crafts":[376.0],"description":"\u001b(T@stairs)Inner Stone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_stonebrick":{"crafts":[307.0],"description":"\u001b(T@stairs)Inner Stone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_straw":{"crafts":[485.0],"description":"\u001b(T@farming)Inner Straw Stair\u001bE","groups":{"flammable":4.0,"snappy":3.0,"stair":1.0},"type":"node"},"stairs:stair_inner_tinblock":{"crafts":[504.0],"description":"\u001b(T@stairs)Inner Tin Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_inner_wood":{"crafts":[430.0],"description":"\u001b(T@stairs)Inner Wooden Stair\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[37.0]},"stairs:stair_junglewood":{"crafts":[478.0],"description":"\u001b(T@stairs)Jungle Wood Stair\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[287.0]},"stairs:stair_mossycobble":{"crafts":[233.0],"description":"\u001b(T@stairs)Mossy Cobblestone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node","usages":[467.0]},"stairs:stair_obsidian":{"crafts":[153.0],"description":"\u001b(T@stairs)Obsidian Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node","usages":[474.0]},"stairs:stair_obsidian_block":{"crafts":[298.0],"description":"\u001b(T@stairs)Obsidian Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node","usages":[461.0]},"stairs:stair_obsidian_glass":{"crafts":[224.0],"description":"\u001b(T@stairs)Obsidian Glass Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node","usages":[191.0]},"stairs:stair_obsidianbrick":{"crafts":[105.0],"description":"\u001b(T@stairs)Obsidian Brick Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node","usages":[249.0]},"stairs:stair_outer_acacia_wood":{"crafts":[155.0],"description":"\u001b(T@stairs)Outer Acacia Wood Stair\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[24.0]},"stairs:stair_outer_aspen_wood":{"crafts":[527.0],"description":"\u001b(T@stairs)Outer Aspen Wood Stair\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[20.0]},"stairs:stair_outer_brick":{"crafts":[499.0],"description":"\u001b(T@stairs)Outer Brick Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_outer_bronzeblock":{"crafts":[260.0],"description":"\u001b(T@stairs)Outer Bronze Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_cobble":{"crafts":[300.0],"description":"\u001b(T@stairs)Outer Cobblestone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_outer_copperblock":{"crafts":[508.0],"description":"\u001b(T@stairs)Outer Copper Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_desert_cobble":{"crafts":[109.0],"description":"\u001b(T@stairs)Outer Desert Cobblestone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_outer_desert_sandstone":{"crafts":[486.0],"description":"\u001b(T@stairs)Outer Desert Sandstone Stair\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"stair":1.0},"type":"node"},"stairs:stair_outer_desert_sandstone_block":{"crafts":[489.0],"description":"\u001b(T@stairs)Outer Desert Sandstone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_desert_sandstone_brick":{"crafts":[244.0],"description":"\u001b(T@stairs)Outer Desert Sandstone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_desert_stone":{"crafts":[471.0],"description":"\u001b(T@stairs)Outer Desert Stone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_outer_desert_stone_block":{"crafts":[482.0],"description":"\u001b(T@stairs)Outer Desert Stone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_desert_stonebrick":{"crafts":[481.0],"description":"\u001b(T@stairs)Outer Desert Stone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_glass":{"crafts":[107.0],"description":"\u001b(T@stairs)Outer Glass Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_outer_goldblock":{"crafts":[256.0],"description":"\u001b(T@stairs)Outer Gold Block Stair\u001bE","groups":{"cracky":1.0,"stair":1.0},"type":"node"},"stairs:stair_outer_ice":{"crafts":[528.0],"description":"\u001b(T@stairs)Outer Ice Stair\u001bE","groups":{"cools_lava":1.0,"cracky":3.0,"slippery":3.0,"stair":1.0},"type":"node"},"stairs:stair_outer_junglewood":{"crafts":[337.0],"description":"\u001b(T@stairs)Outer Jungle Wood Stair\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[32.0]},"stairs:stair_outer_mossycobble":{"crafts":[216.0],"description":"\u001b(T@stairs)Outer Mossy Cobblestone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_outer_obsidian":{"crafts":[163.0],"description":"\u001b(T@stairs)Outer Obsidian Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_obsidian_block":{"crafts":[311.0],"description":"\u001b(T@stairs)Outer Obsidian Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_obsidian_glass":{"crafts":[103.0],"description":"\u001b(T@stairs)Outer Obsidian Glass Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_outer_obsidianbrick":{"crafts":[506.0],"description":"\u001b(T@stairs)Outer Obsidian Brick Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_pine_wood":{"crafts":[162.0],"description":"\u001b(T@stairs)Outer Pine Wood Stair\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[28.0]},"stairs:stair_outer_sandstone":{"crafts":[519.0],"description":"\u001b(T@stairs)Outer Sandstone Stair\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"stair":1.0},"type":"node"},"stairs:stair_outer_sandstone_block":{"crafts":[439.0],"description":"\u001b(T@stairs)Outer Sandstone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_sandstonebrick":{"crafts":[228.0],"description":"\u001b(T@stairs)Outer Sandstone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_silver_sandstone":{"crafts":[207.0],"description":"\u001b(T@stairs)Outer Silver Sandstone Stair\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"stair":1.0},"type":"node"},"stairs:stair_outer_silver_sandstone_block":{"crafts":[497.0],"description":"\u001b(T@stairs)Outer Silver Sandstone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_silver_sandstone_brick":{"crafts":[494.0],"description":"\u001b(T@stairs)Outer Silver Sandstone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_snowblock":{"crafts":[446.0],"description":"\u001b(T@stairs)Outer Snow Block Stair\u001bE","groups":{"cools_lava":1.0,"crumbly":3.0,"snowy":1.0,"stair":1.0},"type":"node"},"stairs:stair_outer_steelblock":{"crafts":[535.0],"description":"\u001b(T@stairs)Outer Steel Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_stone":{"crafts":[502.0],"description":"\u001b(T@stairs)Outer Stone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node"},"stairs:stair_outer_stone_block":{"crafts":[452.0],"description":"\u001b(T@stairs)Outer Stone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_stonebrick":{"crafts":[525.0],"description":"\u001b(T@stairs)Outer Stone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_straw":{"crafts":[219.0],"description":"\u001b(T@farming)Outer Straw Stair\u001bE","groups":{"flammable":4.0,"snappy":3.0,"stair":1.0},"type":"node"},"stairs:stair_outer_tinblock":{"crafts":[309.0],"description":"\u001b(T@stairs)Outer Tin Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node"},"stairs:stair_outer_wood":{"crafts":[146.0],"description":"\u001b(T@stairs)Outer Wooden Stair\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[36.0]},"stairs:stair_pine_wood":{"crafts":[339.0],"description":"\u001b(T@stairs)Pine Wood Stair\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[196.0]},"stairs:stair_sandstone":{"crafts":[523.0],"description":"\u001b(T@stairs)Sandstone Stair\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"stair":1.0},"type":"node","usages":[389.0]},"stairs:stair_sandstone_block":{"crafts":[366.0],"description":"\u001b(T@stairs)Sandstone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node","usages":[126.0]},"stairs:stair_sandstonebrick":{"crafts":[262.0],"description":"\u001b(T@stairs)Sandstone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node","usages":[413.0]},"stairs:stair_silver_sandstone":{"crafts":[160.0],"description":"\u001b(T@stairs)Silver Sandstone Stair\u001bE","groups":{"cracky":3.0,"crumbly":1.0,"stair":1.0},"type":"node","usages":[449.0]},"stairs:stair_silver_sandstone_block":{"crafts":[496.0],"description":"\u001b(T@stairs)Silver Sandstone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node","usages":[427.0]},"stairs:stair_silver_sandstone_brick":{"crafts":[397.0],"description":"\u001b(T@stairs)Silver Sandstone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node","usages":[237.0]},"stairs:stair_snowblock":{"crafts":[381.0],"description":"\u001b(T@stairs)Snow Block Stair\u001bE","groups":{"cools_lava":1.0,"crumbly":3.0,"snowy":1.0,"stair":1.0},"type":"node","usages":[332.0]},"stairs:stair_steelblock":{"crafts":[269.0],"description":"\u001b(T@stairs)Steel Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node","usages":[464.0]},"stairs:stair_stone":{"crafts":[276.0],"description":"\u001b(T@stairs)Stone Stair\u001bE","groups":{"cracky":3.0,"stair":1.0},"type":"node","usages":[378.0]},"stairs:stair_stone_block":{"crafts":[530.0],"description":"\u001b(T@stairs)Stone Block Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node","usages":[174.0]},"stairs:stair_stonebrick":{"crafts":[179.0],"description":"\u001b(T@stairs)Stone Brick Stair\u001bE","groups":{"cracky":2.0,"stair":1.0},"type":"node","usages":[183.0]},"stairs:stair_straw":{"crafts":[144.0],"description":"\u001b(T@farming)Straw Stair\u001bE","groups":{"flammable":4.0,"snappy":3.0,"stair":1.0},"type":"node","usages":[253.0]},"stairs:stair_tinblock":{"crafts":[232.0],"description":"\u001b(T@stairs)Tin Block Stair\u001bE","groups":{"cracky":1.0,"level":2.0,"stair":1.0},"type":"node","usages":[363.0]},"stairs:stair_wood":{"crafts":[403.0],"description":"\u001b(T@stairs)Wooden Stair\u001bE","groups":{"choppy":2.0,"flammable":2.0,"oddly_breakable_by_hand":2.0,"stair":1.0},"type":"node","usages":[111.0]},"tnt:boom":{"description":"","groups":{"dig_immediate":3.0},"type":"node"},"tnt:gunpowder":{"crafts":[156.0],"description":"\u001b(T@tnt)Gun Powder\u001bE","groups":{"attached_node":1.0,"connect_to_raillike":1.0,"dig_immediate":2.0,"flammable":5.0},"type":"node","usages":[522.0]},"tnt:gunpowder_burning":{"description":"","groups":{"attached_node":1.0,"connect_to_raillike":1.0,"dig_immediate":2.0},"type":"node"},"tnt:tnt":{"crafts":[342.0],"description":"\u001b(T@tnt)TNT\u001bE","groups":{"dig_immediate":2.0,"flammable":5.0,"mesecon":2.0,"tnt":1.0},"type":"node"},"tnt:tnt_burning":{"description":"","groups":{"falling_node":1.0},"type":"node"},"tnt:tnt_stick":{"crafts":[522.0],"description":"\u001b(T@tnt)TNT Stick\u001bE","groups":{"flammable":5.0},"type":"craft","usages":[342.0]},"unknown":{"description":"Unknown Item","groups":{"not_in_creative_inventory":1.0},"type":"none"},"vessels:drinking_glass":{"crafts":[358.0],"description":"\u001b(T@vessels)Empty Drinking Glass\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"vessel":1.0},"type":"node","usages":[138.0]},"vessels:glass_bottle":{"crafts":[400.0],"description":"\u001b(T@vessels)Empty Glass Bottle\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"vessel":1.0},"type":"node","usages":[139.0,411.0]},"vessels:glass_fragments":{"crafts":[138.0,139.0],"description":"\u001b(T@vessels)Glass Fragments\u001bE","groups":null,"type":"craft","usages":[514.0]},"vessels:shelf":{"crafts":[524.0],"description":"\u001b(T@vessels)Vessels Shelf\u001bE","groups":{"choppy":3.0,"flammable":3.0,"oddly_breakable_by_hand":2.0},"type":"node","usages":[18.0]},"vessels:steel_bottle":{"crafts":[117.0],"description":"\u001b(T@vessels)Empty Heavy Steel Bottle\u001bE","groups":{"attached_node":1.0,"dig_immediate":3.0,"vessel":1.0},"type":"node","usages":[315.0]},"walls:cobble":{"crafts":[299.0],"description":"\u001b(T@walls)Cobblestone Wall\u001bE","groups":{"cracky":3.0,"stone":2.0,"wall":1.0},"type":"node"},"walls:desertcobble":{"crafts":[176.0],"description":"\u001b(T@walls)Desert Cobblestone Wall\u001bE","groups":{"cracky":3.0,"stone":2.0,"wall":1.0},"type":"node"},"walls:mossycobble":{"crafts":[161.0],"description":"\u001b(T@walls)Mossy Cobblestone Wall\u001bE","groups":{"cracky":3.0,"stone":2.0,"wall":1.0},"type":"node"},"wool:black":{"crafts":[394.0],"description":"\u001b(T@wool)Black Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:blue":{"crafts":[289.0],"description":"\u001b(T@wool)Blue Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:brown":{"crafts":[543.0],"description":"\u001b(T@wool)Brown Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:cyan":{"crafts":[538.0],"description":"\u001b(T@wool)Cyan Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:dark_green":{"crafts":[374.0],"description":"\u001b(T@wool)Dark Green Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:dark_grey":{"crafts":[424.0],"description":"\u001b(T@wool)Dark Grey Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:green":{"crafts":[375.0],"description":"\u001b(T@wool)Green Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:grey":{"crafts":[158.0],"description":"\u001b(T@wool)Grey Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:magenta":{"crafts":[171.0],"description":"\u001b(T@wool)Magenta Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:orange":{"crafts":[270.0],"description":"\u001b(T@wool)Orange Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:pink":{"crafts":[544.0],"description":"\u001b(T@wool)Pink Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:red":{"crafts":[133.0],"description":"\u001b(T@wool)Red Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:violet":{"crafts":[154.0],"description":"\u001b(T@wool)Violet Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"wool:white":{"crafts":[476.0,477.0],"description":"\u001b(T@wool)White Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node","usages":[369.0]},"wool:yellow":{"crafts":[354.0],"description":"\u001b(T@wool)Yellow Wool\u001bE","groups":{"choppy":2.0,"flammable":3.0,"oddly_breakable_by_hand":3.0,"snappy":2.0,"wool":1.0},"type":"node"},"xpanes:bar":{"description":"\u001b(T@xpanes)Steel Bars\u001bE","groups":{"cracky":2.0,"not_in_creative_inventory":1.0,"pane":1.0},"type":"node"},"xpanes:bar_flat":{"crafts":[180.0],"description":"\u001b(T@xpanes)Steel Bars\u001bE","groups":{"cracky":2.0,"pane":1.0},"type":"node","usages":[310.0,531.0]},"xpanes:door_steel_bar":{"crafts":[531.0],"description":"\u001b(T@xpanes)Steel Bar Door\u001bE","groups":{"cracky":1.0,"level":2.0},"type":"craft"},"xpanes:door_steel_bar_b":{"aliases":{"xpanes:door_steel_bar_a":true},"description":"\u001b(T@xpanes)Steel Bar Door\u001bE","groups":{"cracky":1.0,"door":1.0,"level":2.0,"not_in_creative_inventory":1.0},"type":"node"},"xpanes:obsidian_pane":{"description":"\u001b(T@xpanes)Obsidian Glass Pane\u001bE","groups":{"cracky":3.0,"not_in_creative_inventory":1.0,"pane":1.0,"snappy":2.0},"type":"node"},"xpanes:obsidian_pane_flat":{"crafts":[245.0],"description":"\u001b(T@xpanes)Obsidian Glass Pane\u001bE","groups":{"cracky":3.0,"pane":1.0,"snappy":2.0},"type":"node"},"xpanes:pane":{"description":"\u001b(T@xpanes)Glass Pane\u001bE","groups":{"cracky":3.0,"not_in_creative_inventory":1.0,"oddly_breakable_by_hand":3.0,"pane":1.0,"snappy":2.0},"type":"node"},"xpanes:pane_flat":{"crafts":[443.0],"description":"\u001b(T@xpanes)Glass Pane\u001bE","groups":{"cracky":3.0,"oddly_breakable_by_hand":3.0,"pane":1.0,"snappy":2.0},"type":"node"},"xpanes:trapdoor_steel_bar":{"crafts":[310.0],"description":"\u001b(T@xpanes)Steel Bar Trapdoor\u001bE","groups":{"cracky":1.0,"door":1.0,"level":2.0},"type":"node"},"xpanes:trapdoor_steel_bar_open":{"description":"\u001b(T@xpanes)Steel Bar Trapdoor\u001bE","groups":{"cracky":1.0,"door":1.0,"level":2.0,"not_in_creative_inventory":1.0},"type":"node"}}} \ No newline at end of file diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..24af037 --- /dev/null +++ b/mod.conf @@ -0,0 +1,3 @@ +name=online_craftguide +title=Online Craftguide +description=Generates a static craftguide website \ No newline at end of file diff --git a/node_modules/bootstrap-icons/LICENSE.md b/node_modules/bootstrap-icons/LICENSE.md new file mode 100644 index 0000000..6635da7 --- /dev/null +++ b/node_modules/bootstrap-icons/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2019 The Bootstrap Authors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/bootstrap-icons/README.md b/node_modules/bootstrap-icons/README.md new file mode 100644 index 0000000..37ad465 --- /dev/null +++ b/node_modules/bootstrap-icons/README.md @@ -0,0 +1,81 @@ +

+ + Bootstrap logo + +

+ +

Bootstrap Icons

+ +

+ Official open source SVG icon library for Bootstrap. +
+ Explore Bootstrap Icons » +
+
+ Bootstrap + · + Themes + · + Blog +

+ +## 670+ icons + +![Bootstrap Icons full set](https://user-images.githubusercontent.com/98681/82475151-e95e8a80-9a80-11ea-8e35-923ac6fa557b.png) + +[Also available in Figma.](https://www.figma.com/file/XDj1VewxEtXzkDDMAvWx2W/Bootstrap-Icons-v1.0.0-alpha4) + +## Install + +Bootstrap Icons are packaged up and published to npm. We only include the processed SVGs in this package—it's up to you and your team to implement. [Read our docs](https://icons.getbootstrap.com/) at for usage instructions. + +```shell +npm i bootstrap-icons --save +``` + +## Development + +[![Build Status](https://github.com/twbs/icons/workflows/Tests/badge.svg)](https://github.com/twbs/icons/actions?workflow=Tests) + +Clone the repo, install dependencies, and start the Hugo server locally. + +```shell +git clone https://github.com/twbs/icons/ +cd icons +npm i +npm start +``` + +Then open `http://localhost:4000` in your browser. + +### npm scripts + +Here are some key scripts you'll use during development. Be sure to look to our `package.json` for a complete list of scripts. + +| Script | Description | +| --- | --- | +| `start` | Alias for running `docs-serve` | +| `docs-serve` | Starts a local Hugo server | +| `pages` | Generates permalink pages for each icon with template Markdown | +| `icons` | Processes and optimizes SVGs in `icons` directory | + +## Adding SVGs + +Once a new SVG icon has been added to the `icons` directory, you'll need to optimize them. An npm script is used to: + +1. Optimize our SVGs with SVGO. +2. Modify the SVGs source HTML, removing all attributes before setting new attributes and values in our preferred order. + +Use `npm run icons` to run the script, run `npm run pages` to build permalink pages, complete those pages, and, finally, commit the results in a new branch for updating. + +## Publishing + +Documentation is published automatically when a new Git tag is published. See our GitHub Actions and `package.json` for more information. + +## License + +MIT + +## Author + +[@mdo](https://github.com/mdo) diff --git a/node_modules/bootstrap-icons/icons/alarm-fill.svg b/node_modules/bootstrap-icons/icons/alarm-fill.svg new file mode 100644 index 0000000..1654907 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/alarm-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/alarm.svg b/node_modules/bootstrap-icons/icons/alarm.svg new file mode 100644 index 0000000..d89a458 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/alarm.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/alt.svg b/node_modules/bootstrap-icons/icons/alt.svg new file mode 100644 index 0000000..485c160 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/alt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/app-indicator.svg b/node_modules/bootstrap-icons/icons/app-indicator.svg new file mode 100644 index 0000000..da568cd --- /dev/null +++ b/node_modules/bootstrap-icons/icons/app-indicator.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/app.svg b/node_modules/bootstrap-icons/icons/app.svg new file mode 100644 index 0000000..a39608f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/app.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/archive-fill.svg b/node_modules/bootstrap-icons/icons/archive-fill.svg new file mode 100644 index 0000000..32a664f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/archive-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/archive.svg b/node_modules/bootstrap-icons/icons/archive.svg new file mode 100644 index 0000000..ce7b1e6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/archive.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-90deg-down.svg b/node_modules/bootstrap-icons/icons/arrow-90deg-down.svg new file mode 100644 index 0000000..8efaf49 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-90deg-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-90deg-left.svg b/node_modules/bootstrap-icons/icons/arrow-90deg-left.svg new file mode 100644 index 0000000..23f4002 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-90deg-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-90deg-right.svg b/node_modules/bootstrap-icons/icons/arrow-90deg-right.svg new file mode 100644 index 0000000..195c83b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-90deg-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-90deg-up.svg b/node_modules/bootstrap-icons/icons/arrow-90deg-up.svg new file mode 100644 index 0000000..199264c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-90deg-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-bar-down.svg b/node_modules/bootstrap-icons/icons/arrow-bar-down.svg new file mode 100644 index 0000000..f7ecb98 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-bar-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-bar-left.svg b/node_modules/bootstrap-icons/icons/arrow-bar-left.svg new file mode 100644 index 0000000..c31b90d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-bar-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-bar-right.svg b/node_modules/bootstrap-icons/icons/arrow-bar-right.svg new file mode 100644 index 0000000..1c9988e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-bar-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-bar-up.svg b/node_modules/bootstrap-icons/icons/arrow-bar-up.svg new file mode 100644 index 0000000..1eb373b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-bar-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-clockwise.svg b/node_modules/bootstrap-icons/icons/arrow-clockwise.svg new file mode 100644 index 0000000..03245cc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-clockwise.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-counterclockwise.svg b/node_modules/bootstrap-icons/icons/arrow-counterclockwise.svg new file mode 100644 index 0000000..72cf965 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-counterclockwise.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-circle-fill.svg b/node_modules/bootstrap-icons/icons/arrow-down-circle-fill.svg new file mode 100644 index 0000000..a943fda --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-circle.svg b/node_modules/bootstrap-icons/icons/arrow-down-circle.svg new file mode 100644 index 0000000..7ca727c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-circle.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-left-circle-fill.svg b/node_modules/bootstrap-icons/icons/arrow-down-left-circle-fill.svg new file mode 100644 index 0000000..d33a859 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-left-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-left-circle.svg b/node_modules/bootstrap-icons/icons/arrow-down-left-circle.svg new file mode 100644 index 0000000..e10c2a7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-left-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-left-square-fill.svg b/node_modules/bootstrap-icons/icons/arrow-down-left-square-fill.svg new file mode 100644 index 0000000..5852ade --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-left-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-left-square.svg b/node_modules/bootstrap-icons/icons/arrow-down-left-square.svg new file mode 100644 index 0000000..55e50b5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-left-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-left.svg b/node_modules/bootstrap-icons/icons/arrow-down-left.svg new file mode 100644 index 0000000..a79ebfc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-right-circle-fill.svg b/node_modules/bootstrap-icons/icons/arrow-down-right-circle-fill.svg new file mode 100644 index 0000000..2a7249c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-right-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-right-circle.svg b/node_modules/bootstrap-icons/icons/arrow-down-right-circle.svg new file mode 100644 index 0000000..4d600f2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-right-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-right-square-fill.svg b/node_modules/bootstrap-icons/icons/arrow-down-right-square-fill.svg new file mode 100644 index 0000000..eaf4da1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-right-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-right-square.svg b/node_modules/bootstrap-icons/icons/arrow-down-right-square.svg new file mode 100644 index 0000000..086e186 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-right-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-right.svg b/node_modules/bootstrap-icons/icons/arrow-down-right.svg new file mode 100644 index 0000000..0289605 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-short.svg b/node_modules/bootstrap-icons/icons/arrow-down-short.svg new file mode 100644 index 0000000..a94eceb --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-short.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-square-fill.svg b/node_modules/bootstrap-icons/icons/arrow-down-square-fill.svg new file mode 100644 index 0000000..21b16f8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-square.svg b/node_modules/bootstrap-icons/icons/arrow-down-square.svg new file mode 100644 index 0000000..1150b71 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-square.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down-up.svg b/node_modules/bootstrap-icons/icons/arrow-down-up.svg new file mode 100644 index 0000000..e4d8f59 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-down.svg b/node_modules/bootstrap-icons/icons/arrow-down.svg new file mode 100644 index 0000000..d65c085 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-left-circle-fill.svg b/node_modules/bootstrap-icons/icons/arrow-left-circle-fill.svg new file mode 100644 index 0000000..bbc5081 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-left-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-left-circle.svg b/node_modules/bootstrap-icons/icons/arrow-left-circle.svg new file mode 100644 index 0000000..4a7fee3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-left-circle.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-left-right.svg b/node_modules/bootstrap-icons/icons/arrow-left-right.svg new file mode 100644 index 0000000..9354aab --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-left-right.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-left-short.svg b/node_modules/bootstrap-icons/icons/arrow-left-short.svg new file mode 100644 index 0000000..85e4664 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-left-short.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-left-square-fill.svg b/node_modules/bootstrap-icons/icons/arrow-left-square-fill.svg new file mode 100644 index 0000000..fb333ab --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-left-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-left-square.svg b/node_modules/bootstrap-icons/icons/arrow-left-square.svg new file mode 100644 index 0000000..dfa4962 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-left-square.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-left.svg b/node_modules/bootstrap-icons/icons/arrow-left.svg new file mode 100644 index 0000000..444b05a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-repeat.svg b/node_modules/bootstrap-icons/icons/arrow-repeat.svg new file mode 100644 index 0000000..1884a27 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-repeat.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-return-left.svg b/node_modules/bootstrap-icons/icons/arrow-return-left.svg new file mode 100644 index 0000000..ffe5296 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-return-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-return-right.svg b/node_modules/bootstrap-icons/icons/arrow-return-right.svg new file mode 100644 index 0000000..37db885 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-return-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-right-circle-fill.svg b/node_modules/bootstrap-icons/icons/arrow-right-circle-fill.svg new file mode 100644 index 0000000..60b6051 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-right-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-right-circle.svg b/node_modules/bootstrap-icons/icons/arrow-right-circle.svg new file mode 100644 index 0000000..9063e6e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-right-circle.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-right-short.svg b/node_modules/bootstrap-icons/icons/arrow-right-short.svg new file mode 100644 index 0000000..df2a0ec --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-right-short.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-right-square-fill.svg b/node_modules/bootstrap-icons/icons/arrow-right-square-fill.svg new file mode 100644 index 0000000..4a65cad --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-right-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-right-square.svg b/node_modules/bootstrap-icons/icons/arrow-right-square.svg new file mode 100644 index 0000000..da002a6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-right-square.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-right.svg b/node_modules/bootstrap-icons/icons/arrow-right.svg new file mode 100644 index 0000000..5f2a5f7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-circle-fill.svg b/node_modules/bootstrap-icons/icons/arrow-up-circle-fill.svg new file mode 100644 index 0000000..38299b8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-circle.svg b/node_modules/bootstrap-icons/icons/arrow-up-circle.svg new file mode 100644 index 0000000..5f3e78c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-circle.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-left-circle-fill.svg b/node_modules/bootstrap-icons/icons/arrow-up-left-circle-fill.svg new file mode 100644 index 0000000..dcb5a02 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-left-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-left-circle.svg b/node_modules/bootstrap-icons/icons/arrow-up-left-circle.svg new file mode 100644 index 0000000..4ed1b09 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-left-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-left-square-fill.svg b/node_modules/bootstrap-icons/icons/arrow-up-left-square-fill.svg new file mode 100644 index 0000000..5d1efab --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-left-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-left-square.svg b/node_modules/bootstrap-icons/icons/arrow-up-left-square.svg new file mode 100644 index 0000000..5d2dead --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-left-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-left.svg b/node_modules/bootstrap-icons/icons/arrow-up-left.svg new file mode 100644 index 0000000..e7a7ea3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-right-circle-fill.svg b/node_modules/bootstrap-icons/icons/arrow-up-right-circle-fill.svg new file mode 100644 index 0000000..54fc82e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-right-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-right-circle.svg b/node_modules/bootstrap-icons/icons/arrow-up-right-circle.svg new file mode 100644 index 0000000..477f8ab --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-right-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-right-square-fill.svg b/node_modules/bootstrap-icons/icons/arrow-up-right-square-fill.svg new file mode 100644 index 0000000..f47da12 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-right-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-right-square.svg b/node_modules/bootstrap-icons/icons/arrow-up-right-square.svg new file mode 100644 index 0000000..c4a577a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-right-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-right.svg b/node_modules/bootstrap-icons/icons/arrow-up-right.svg new file mode 100644 index 0000000..8b1e9e8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-short.svg b/node_modules/bootstrap-icons/icons/arrow-up-short.svg new file mode 100644 index 0000000..0fbc672 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-short.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-square-fill.svg b/node_modules/bootstrap-icons/icons/arrow-up-square-fill.svg new file mode 100644 index 0000000..2148908 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up-square.svg b/node_modules/bootstrap-icons/icons/arrow-up-square.svg new file mode 100644 index 0000000..639d1f8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up-square.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrow-up.svg b/node_modules/bootstrap-icons/icons/arrow-up.svg new file mode 100644 index 0000000..ed3036a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrows-angle-contract.svg b/node_modules/bootstrap-icons/icons/arrows-angle-contract.svg new file mode 100644 index 0000000..387d400 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrows-angle-contract.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrows-angle-expand.svg b/node_modules/bootstrap-icons/icons/arrows-angle-expand.svg new file mode 100644 index 0000000..5a44258 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrows-angle-expand.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrows-collapse.svg b/node_modules/bootstrap-icons/icons/arrows-collapse.svg new file mode 100644 index 0000000..c523bcd --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrows-collapse.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrows-expand.svg b/node_modules/bootstrap-icons/icons/arrows-expand.svg new file mode 100644 index 0000000..b62e4ec --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrows-expand.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrows-fullscreen.svg b/node_modules/bootstrap-icons/icons/arrows-fullscreen.svg new file mode 100644 index 0000000..d0bc641 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrows-fullscreen.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/arrows-move.svg b/node_modules/bootstrap-icons/icons/arrows-move.svg new file mode 100644 index 0000000..1bd7464 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/arrows-move.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/aspect-ratio-fill.svg b/node_modules/bootstrap-icons/icons/aspect-ratio-fill.svg new file mode 100644 index 0000000..b37fbe5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/aspect-ratio-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/aspect-ratio.svg b/node_modules/bootstrap-icons/icons/aspect-ratio.svg new file mode 100644 index 0000000..a6e6f24 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/aspect-ratio.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/asterisk.svg b/node_modules/bootstrap-icons/icons/asterisk.svg new file mode 100644 index 0000000..178fd17 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/asterisk.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/at.svg b/node_modules/bootstrap-icons/icons/at.svg new file mode 100644 index 0000000..2033f5b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/at.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/award-fill.svg b/node_modules/bootstrap-icons/icons/award-fill.svg new file mode 100644 index 0000000..5bb4d14 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/award-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/award.svg b/node_modules/bootstrap-icons/icons/award.svg new file mode 100644 index 0000000..2ded3f7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/award.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/backspace-fill.svg b/node_modules/bootstrap-icons/icons/backspace-fill.svg new file mode 100644 index 0000000..abae528 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/backspace-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/backspace-reverse-fill.svg b/node_modules/bootstrap-icons/icons/backspace-reverse-fill.svg new file mode 100644 index 0000000..4b70964 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/backspace-reverse-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/backspace-reverse.svg b/node_modules/bootstrap-icons/icons/backspace-reverse.svg new file mode 100644 index 0000000..5b90326 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/backspace-reverse.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/backspace.svg b/node_modules/bootstrap-icons/icons/backspace.svg new file mode 100644 index 0000000..6b0e7d2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/backspace.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bag-check.svg b/node_modules/bootstrap-icons/icons/bag-check.svg new file mode 100644 index 0000000..d0b08ae --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bag-check.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bag-dash.svg b/node_modules/bootstrap-icons/icons/bag-dash.svg new file mode 100644 index 0000000..f09b7d4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bag-dash.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bag-fill.svg b/node_modules/bootstrap-icons/icons/bag-fill.svg new file mode 100644 index 0000000..ce0e7b9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bag-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bag-plus.svg b/node_modules/bootstrap-icons/icons/bag-plus.svg new file mode 100644 index 0000000..b32ddd0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bag-plus.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bag.svg b/node_modules/bootstrap-icons/icons/bag.svg new file mode 100644 index 0000000..c903867 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bar-chart-fill.svg b/node_modules/bootstrap-icons/icons/bar-chart-fill.svg new file mode 100644 index 0000000..22ad287 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bar-chart-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bar-chart.svg b/node_modules/bootstrap-icons/icons/bar-chart.svg new file mode 100644 index 0000000..1eaecc6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bar-chart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/basket-fill.svg b/node_modules/bootstrap-icons/icons/basket-fill.svg new file mode 100644 index 0000000..36c3601 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/basket-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/basket.svg b/node_modules/bootstrap-icons/icons/basket.svg new file mode 100644 index 0000000..70f0568 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/basket.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/basket2-fill.svg b/node_modules/bootstrap-icons/icons/basket2-fill.svg new file mode 100644 index 0000000..1f98a00 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/basket2-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/basket2.svg b/node_modules/bootstrap-icons/icons/basket2.svg new file mode 100644 index 0000000..1d226c4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/basket2.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/basket3-fill.svg b/node_modules/bootstrap-icons/icons/basket3-fill.svg new file mode 100644 index 0000000..63b887c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/basket3-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/basket3.svg b/node_modules/bootstrap-icons/icons/basket3.svg new file mode 100644 index 0000000..e700662 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/basket3.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/battery-charging.svg b/node_modules/bootstrap-icons/icons/battery-charging.svg new file mode 100644 index 0000000..cf8ae01 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/battery-charging.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/battery-full.svg b/node_modules/bootstrap-icons/icons/battery-full.svg new file mode 100644 index 0000000..6d343d6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/battery-full.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/battery-half.svg b/node_modules/bootstrap-icons/icons/battery-half.svg new file mode 100644 index 0000000..f6c8b68 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/battery-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/battery.svg b/node_modules/bootstrap-icons/icons/battery.svg new file mode 100644 index 0000000..eca0681 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/battery.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bell-fill.svg b/node_modules/bootstrap-icons/icons/bell-fill.svg new file mode 100644 index 0000000..255c909 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bell-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bell.svg b/node_modules/bootstrap-icons/icons/bell.svg new file mode 100644 index 0000000..5ac1eaa --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bell.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/blockquote-left.svg b/node_modules/bootstrap-icons/icons/blockquote-left.svg new file mode 100644 index 0000000..0417738 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/blockquote-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/blockquote-right.svg b/node_modules/bootstrap-icons/icons/blockquote-right.svg new file mode 100644 index 0000000..6870f49 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/blockquote-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/book-half.svg b/node_modules/bootstrap-icons/icons/book-half.svg new file mode 100644 index 0000000..2c95ae7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/book-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/book.svg b/node_modules/bootstrap-icons/icons/book.svg new file mode 100644 index 0000000..e9d1e98 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/book.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bookmark-check.svg b/node_modules/bootstrap-icons/icons/bookmark-check.svg new file mode 100644 index 0000000..2285913 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bookmark-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bookmark-dash.svg b/node_modules/bootstrap-icons/icons/bookmark-dash.svg new file mode 100644 index 0000000..2ed2eb4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bookmark-dash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bookmark-fill.svg b/node_modules/bootstrap-icons/icons/bookmark-fill.svg new file mode 100644 index 0000000..aeb47c4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bookmark-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bookmark-plus.svg b/node_modules/bootstrap-icons/icons/bookmark-plus.svg new file mode 100644 index 0000000..c756cf3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bookmark-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bookmark.svg b/node_modules/bootstrap-icons/icons/bookmark.svg new file mode 100644 index 0000000..f20ad99 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bookmark.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bookmarks-fill.svg b/node_modules/bootstrap-icons/icons/bookmarks-fill.svg new file mode 100644 index 0000000..29522dd --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bookmarks-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bookmarks.svg b/node_modules/bootstrap-icons/icons/bookmarks.svg new file mode 100644 index 0000000..91b48b5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bookmarks.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bootstrap-fill.svg b/node_modules/bootstrap-icons/icons/bootstrap-fill.svg new file mode 100644 index 0000000..bb5e24a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bootstrap-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bootstrap-reboot.svg b/node_modules/bootstrap-icons/icons/bootstrap-reboot.svg new file mode 100644 index 0000000..e489afa --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bootstrap-reboot.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bootstrap.svg b/node_modules/bootstrap-icons/icons/bootstrap.svg new file mode 100644 index 0000000..a7037e9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bootstrap.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bounding-box-circles.svg b/node_modules/bootstrap-icons/icons/bounding-box-circles.svg new file mode 100644 index 0000000..b21c7d2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bounding-box-circles.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bounding-box.svg b/node_modules/bootstrap-icons/icons/bounding-box.svg new file mode 100644 index 0000000..dfaccea --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bounding-box.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-down-left.svg b/node_modules/bootstrap-icons/icons/box-arrow-down-left.svg new file mode 100644 index 0000000..37c23a9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-down-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-down-right.svg b/node_modules/bootstrap-icons/icons/box-arrow-down-right.svg new file mode 100644 index 0000000..625a02b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-down-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-down.svg b/node_modules/bootstrap-icons/icons/box-arrow-down.svg new file mode 100644 index 0000000..2308023 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-down.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-in-down-left.svg b/node_modules/bootstrap-icons/icons/box-arrow-in-down-left.svg new file mode 100644 index 0000000..1ef405c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-in-down-left.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-in-down-right.svg b/node_modules/bootstrap-icons/icons/box-arrow-in-down-right.svg new file mode 100644 index 0000000..6b2ce16 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-in-down-right.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-in-down.svg b/node_modules/bootstrap-icons/icons/box-arrow-in-down.svg new file mode 100644 index 0000000..9061b17 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-in-down.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-in-left.svg b/node_modules/bootstrap-icons/icons/box-arrow-in-left.svg new file mode 100644 index 0000000..c7d43af --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-in-left.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-in-right.svg b/node_modules/bootstrap-icons/icons/box-arrow-in-right.svg new file mode 100644 index 0000000..40dfbdf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-in-right.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-in-up-left.svg b/node_modules/bootstrap-icons/icons/box-arrow-in-up-left.svg new file mode 100644 index 0000000..ca94dc5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-in-up-left.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-in-up-right.svg b/node_modules/bootstrap-icons/icons/box-arrow-in-up-right.svg new file mode 100644 index 0000000..d072339 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-in-up-right.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-in-up.svg b/node_modules/bootstrap-icons/icons/box-arrow-in-up.svg new file mode 100644 index 0000000..b1aa4fc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-in-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-left.svg b/node_modules/bootstrap-icons/icons/box-arrow-left.svg new file mode 100644 index 0000000..37b8f51 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-left.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-right.svg b/node_modules/bootstrap-icons/icons/box-arrow-right.svg new file mode 100644 index 0000000..95269df --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-right.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-up-left.svg b/node_modules/bootstrap-icons/icons/box-arrow-up-left.svg new file mode 100644 index 0000000..e3165c4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-up-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-up-right.svg b/node_modules/bootstrap-icons/icons/box-arrow-up-right.svg new file mode 100644 index 0000000..91830ce --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-up-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-arrow-up.svg b/node_modules/bootstrap-icons/icons/box-arrow-up.svg new file mode 100644 index 0000000..7352712 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-arrow-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box-seam.svg b/node_modules/bootstrap-icons/icons/box-seam.svg new file mode 100644 index 0000000..db444c2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box-seam.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/box.svg b/node_modules/bootstrap-icons/icons/box.svg new file mode 100644 index 0000000..f7d2d62 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/box.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/braces.svg b/node_modules/bootstrap-icons/icons/braces.svg new file mode 100644 index 0000000..6cd3710 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/braces.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/briefcase-fill.svg b/node_modules/bootstrap-icons/icons/briefcase-fill.svg new file mode 100644 index 0000000..57ebef6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/briefcase-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/briefcase.svg b/node_modules/bootstrap-icons/icons/briefcase.svg new file mode 100644 index 0000000..0b00988 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/briefcase.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/brightness-alt-high-fill.svg b/node_modules/bootstrap-icons/icons/brightness-alt-high-fill.svg new file mode 100644 index 0000000..2c7296e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/brightness-alt-high-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/brightness-alt-high.svg b/node_modules/bootstrap-icons/icons/brightness-alt-high.svg new file mode 100644 index 0000000..f333a1c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/brightness-alt-high.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/brightness-alt-low-fill.svg b/node_modules/bootstrap-icons/icons/brightness-alt-low-fill.svg new file mode 100644 index 0000000..eb4822f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/brightness-alt-low-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/brightness-alt-low.svg b/node_modules/bootstrap-icons/icons/brightness-alt-low.svg new file mode 100644 index 0000000..9da1296 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/brightness-alt-low.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/brightness-high-fill.svg b/node_modules/bootstrap-icons/icons/brightness-high-fill.svg new file mode 100644 index 0000000..248a6c1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/brightness-high-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/brightness-high.svg b/node_modules/bootstrap-icons/icons/brightness-high.svg new file mode 100644 index 0000000..e964419 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/brightness-high.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/brightness-low-fill.svg b/node_modules/bootstrap-icons/icons/brightness-low-fill.svg new file mode 100644 index 0000000..54c3002 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/brightness-low-fill.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/brightness-low.svg b/node_modules/bootstrap-icons/icons/brightness-low.svg new file mode 100644 index 0000000..8ef56a4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/brightness-low.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/brush.svg b/node_modules/bootstrap-icons/icons/brush.svg new file mode 100644 index 0000000..3a8777d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/brush.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bucket-fill.svg b/node_modules/bootstrap-icons/icons/bucket-fill.svg new file mode 100644 index 0000000..53668ff --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bucket-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bucket.svg b/node_modules/bootstrap-icons/icons/bucket.svg new file mode 100644 index 0000000..98ac813 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bucket.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/building.svg b/node_modules/bootstrap-icons/icons/building.svg new file mode 100644 index 0000000..48dff58 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/building.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/bullseye.svg b/node_modules/bootstrap-icons/icons/bullseye.svg new file mode 100644 index 0000000..36ec585 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/bullseye.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-check-fill.svg b/node_modules/bootstrap-icons/icons/calendar-check-fill.svg new file mode 100644 index 0000000..43149e6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-check.svg b/node_modules/bootstrap-icons/icons/calendar-check.svg new file mode 100644 index 0000000..b586e5c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-check.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-date-fill.svg b/node_modules/bootstrap-icons/icons/calendar-date-fill.svg new file mode 100644 index 0000000..09c17fc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-date-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-date.svg b/node_modules/bootstrap-icons/icons/calendar-date.svg new file mode 100644 index 0000000..8803a71 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-date.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-day-fill.svg b/node_modules/bootstrap-icons/icons/calendar-day-fill.svg new file mode 100644 index 0000000..57c06a6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-day-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-day.svg b/node_modules/bootstrap-icons/icons/calendar-day.svg new file mode 100644 index 0000000..916808b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-day.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-fill.svg b/node_modules/bootstrap-icons/icons/calendar-fill.svg new file mode 100644 index 0000000..b9fa266 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-minus-fill.svg b/node_modules/bootstrap-icons/icons/calendar-minus-fill.svg new file mode 100644 index 0000000..811e518 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-minus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-minus.svg b/node_modules/bootstrap-icons/icons/calendar-minus.svg new file mode 100644 index 0000000..a955013 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-minus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-month-fill.svg b/node_modules/bootstrap-icons/icons/calendar-month-fill.svg new file mode 100644 index 0000000..5265c42 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-month-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-month.svg b/node_modules/bootstrap-icons/icons/calendar-month.svg new file mode 100644 index 0000000..0b355bc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-month.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-plus-fill.svg b/node_modules/bootstrap-icons/icons/calendar-plus-fill.svg new file mode 100644 index 0000000..8b1fe2b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar-plus.svg b/node_modules/bootstrap-icons/icons/calendar-plus.svg new file mode 100644 index 0000000..fb2eb07 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar-plus.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar.svg b/node_modules/bootstrap-icons/icons/calendar.svg new file mode 100644 index 0000000..1992291 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-check-fill.svg b/node_modules/bootstrap-icons/icons/calendar2-check-fill.svg new file mode 100644 index 0000000..40452c0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-check.svg b/node_modules/bootstrap-icons/icons/calendar2-check.svg new file mode 100644 index 0000000..9b8092d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-check.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-date-fill.svg b/node_modules/bootstrap-icons/icons/calendar2-date-fill.svg new file mode 100644 index 0000000..9e7df4c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-date-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-date.svg b/node_modules/bootstrap-icons/icons/calendar2-date.svg new file mode 100644 index 0000000..f7030e1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-date.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-day-fill.svg b/node_modules/bootstrap-icons/icons/calendar2-day-fill.svg new file mode 100644 index 0000000..2dad0db --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-day-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-day.svg b/node_modules/bootstrap-icons/icons/calendar2-day.svg new file mode 100644 index 0000000..dce5507 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-day.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-fill.svg b/node_modules/bootstrap-icons/icons/calendar2-fill.svg new file mode 100644 index 0000000..8671b11 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-minus-fill.svg b/node_modules/bootstrap-icons/icons/calendar2-minus-fill.svg new file mode 100644 index 0000000..05a024d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-minus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-minus.svg b/node_modules/bootstrap-icons/icons/calendar2-minus.svg new file mode 100644 index 0000000..d859e54 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-minus.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-month-fill.svg b/node_modules/bootstrap-icons/icons/calendar2-month-fill.svg new file mode 100644 index 0000000..efce7dc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-month-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-month.svg b/node_modules/bootstrap-icons/icons/calendar2-month.svg new file mode 100644 index 0000000..dcbf106 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-month.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-plus-fill.svg b/node_modules/bootstrap-icons/icons/calendar2-plus-fill.svg new file mode 100644 index 0000000..60c3ccf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2-plus.svg b/node_modules/bootstrap-icons/icons/calendar2-plus.svg new file mode 100644 index 0000000..92b8a22 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2-plus.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar2.svg b/node_modules/bootstrap-icons/icons/calendar2.svg new file mode 100644 index 0000000..dffdd08 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar2.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar3-fill.svg b/node_modules/bootstrap-icons/icons/calendar3-fill.svg new file mode 100644 index 0000000..750ae87 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar3-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar3.svg b/node_modules/bootstrap-icons/icons/calendar3.svg new file mode 100644 index 0000000..67fa87a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar3.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/calendar4.svg b/node_modules/bootstrap-icons/icons/calendar4.svg new file mode 100644 index 0000000..8acc849 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/calendar4.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/camera-video-fill.svg b/node_modules/bootstrap-icons/icons/camera-video-fill.svg new file mode 100644 index 0000000..f98ca5e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/camera-video-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/camera-video-off-fill.svg b/node_modules/bootstrap-icons/icons/camera-video-off-fill.svg new file mode 100644 index 0000000..76b1f16 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/camera-video-off-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/camera-video-off.svg b/node_modules/bootstrap-icons/icons/camera-video-off.svg new file mode 100644 index 0000000..7326e73 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/camera-video-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/camera-video.svg b/node_modules/bootstrap-icons/icons/camera-video.svg new file mode 100644 index 0000000..803ddb1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/camera-video.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/camera.svg b/node_modules/bootstrap-icons/icons/camera.svg new file mode 100644 index 0000000..f96e6ba --- /dev/null +++ b/node_modules/bootstrap-icons/icons/camera.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/capslock-fill.svg b/node_modules/bootstrap-icons/icons/capslock-fill.svg new file mode 100644 index 0000000..7eef8f3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/capslock-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/capslock.svg b/node_modules/bootstrap-icons/icons/capslock.svg new file mode 100644 index 0000000..c304b1f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/capslock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/card-checklist.svg b/node_modules/bootstrap-icons/icons/card-checklist.svg new file mode 100644 index 0000000..b5b3fba --- /dev/null +++ b/node_modules/bootstrap-icons/icons/card-checklist.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/card-heading.svg b/node_modules/bootstrap-icons/icons/card-heading.svg new file mode 100644 index 0000000..82c9da6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/card-heading.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/card-image.svg b/node_modules/bootstrap-icons/icons/card-image.svg new file mode 100644 index 0000000..5284c3e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/card-image.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/card-list.svg b/node_modules/bootstrap-icons/icons/card-list.svg new file mode 100644 index 0000000..5ec338f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/card-list.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/card-text.svg b/node_modules/bootstrap-icons/icons/card-text.svg new file mode 100644 index 0000000..b0628ef --- /dev/null +++ b/node_modules/bootstrap-icons/icons/card-text.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-down-fill.svg b/node_modules/bootstrap-icons/icons/caret-down-fill.svg new file mode 100644 index 0000000..466c98c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-down-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-down-square-fill.svg b/node_modules/bootstrap-icons/icons/caret-down-square-fill.svg new file mode 100644 index 0000000..f332f1f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-down-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-down-square.svg b/node_modules/bootstrap-icons/icons/caret-down-square.svg new file mode 100644 index 0000000..b0fce23 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-down-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-down.svg b/node_modules/bootstrap-icons/icons/caret-down.svg new file mode 100644 index 0000000..fd81931 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-left-fill.svg b/node_modules/bootstrap-icons/icons/caret-left-fill.svg new file mode 100644 index 0000000..c58b1d1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-left-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-left-square-fill.svg b/node_modules/bootstrap-icons/icons/caret-left-square-fill.svg new file mode 100644 index 0000000..5e80d01 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-left-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-left-square.svg b/node_modules/bootstrap-icons/icons/caret-left-square.svg new file mode 100644 index 0000000..5bb9333 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-left-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-left.svg b/node_modules/bootstrap-icons/icons/caret-left.svg new file mode 100644 index 0000000..bd3a214 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-right-fill.svg b/node_modules/bootstrap-icons/icons/caret-right-fill.svg new file mode 100644 index 0000000..27eb068 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-right-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-right-square-fill.svg b/node_modules/bootstrap-icons/icons/caret-right-square-fill.svg new file mode 100644 index 0000000..05ce438 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-right-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-right-square.svg b/node_modules/bootstrap-icons/icons/caret-right-square.svg new file mode 100644 index 0000000..a221393 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-right-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-right.svg b/node_modules/bootstrap-icons/icons/caret-right.svg new file mode 100644 index 0000000..e1c1faf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-up-fill.svg b/node_modules/bootstrap-icons/icons/caret-up-fill.svg new file mode 100644 index 0000000..2352902 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-up-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-up-square-fill.svg b/node_modules/bootstrap-icons/icons/caret-up-square-fill.svg new file mode 100644 index 0000000..ab6adf1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-up-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-up-square.svg b/node_modules/bootstrap-icons/icons/caret-up-square.svg new file mode 100644 index 0000000..de3f183 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-up-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/caret-up.svg b/node_modules/bootstrap-icons/icons/caret-up.svg new file mode 100644 index 0000000..376daf4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/caret-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cart-check.svg b/node_modules/bootstrap-icons/icons/cart-check.svg new file mode 100644 index 0000000..a451276 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cart-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cart-dash.svg b/node_modules/bootstrap-icons/icons/cart-dash.svg new file mode 100644 index 0000000..afcebb6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cart-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cart-fill.svg b/node_modules/bootstrap-icons/icons/cart-fill.svg new file mode 100644 index 0000000..8c237e0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cart-plus.svg b/node_modules/bootstrap-icons/icons/cart-plus.svg new file mode 100644 index 0000000..9befb2f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cart-plus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cart.svg b/node_modules/bootstrap-icons/icons/cart.svg new file mode 100644 index 0000000..05deaa5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cart2.svg b/node_modules/bootstrap-icons/icons/cart2.svg new file mode 100644 index 0000000..167745b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cart2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cart3.svg b/node_modules/bootstrap-icons/icons/cart3.svg new file mode 100644 index 0000000..3ca36d5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cart3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cart4.svg b/node_modules/bootstrap-icons/icons/cart4.svg new file mode 100644 index 0000000..2a2fe73 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cart4.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-dots-fill.svg b/node_modules/bootstrap-icons/icons/chat-dots-fill.svg new file mode 100644 index 0000000..b5f6138 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-dots-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-dots.svg b/node_modules/bootstrap-icons/icons/chat-dots.svg new file mode 100644 index 0000000..649d376 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-dots.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-fill.svg b/node_modules/bootstrap-icons/icons/chat-fill.svg new file mode 100644 index 0000000..a03667f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-quote-fill.svg b/node_modules/bootstrap-icons/icons/chat-quote-fill.svg new file mode 100644 index 0000000..ddf5a3a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-quote-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-quote.svg b/node_modules/bootstrap-icons/icons/chat-quote.svg new file mode 100644 index 0000000..6cf8d3e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-quote.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-square-dots-fill.svg b/node_modules/bootstrap-icons/icons/chat-square-dots-fill.svg new file mode 100644 index 0000000..ab6e586 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-square-dots-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-square-dots.svg b/node_modules/bootstrap-icons/icons/chat-square-dots.svg new file mode 100644 index 0000000..f284272 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-square-dots.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-square-fill.svg b/node_modules/bootstrap-icons/icons/chat-square-fill.svg new file mode 100644 index 0000000..da0551e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-square-quote-fill.svg b/node_modules/bootstrap-icons/icons/chat-square-quote-fill.svg new file mode 100644 index 0000000..eb4b702 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-square-quote-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-square-quote.svg b/node_modules/bootstrap-icons/icons/chat-square-quote.svg new file mode 100644 index 0000000..ca7f31c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-square-quote.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat-square.svg b/node_modules/bootstrap-icons/icons/chat-square.svg new file mode 100644 index 0000000..1b64dd1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chat.svg b/node_modules/bootstrap-icons/icons/chat.svg new file mode 100644 index 0000000..94adcf5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chat.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/check-all.svg b/node_modules/bootstrap-icons/icons/check-all.svg new file mode 100644 index 0000000..2f8b401 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/check-all.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/check-circle-fill.svg b/node_modules/bootstrap-icons/icons/check-circle-fill.svg new file mode 100644 index 0000000..cf3d635 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/check-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/check-circle.svg b/node_modules/bootstrap-icons/icons/check-circle.svg new file mode 100644 index 0000000..265ff25 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/check-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/check-square-fill.svg b/node_modules/bootstrap-icons/icons/check-square-fill.svg new file mode 100644 index 0000000..40a01b9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/check-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/check-square.svg b/node_modules/bootstrap-icons/icons/check-square.svg new file mode 100644 index 0000000..44467e1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/check-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/check.svg b/node_modules/bootstrap-icons/icons/check.svg new file mode 100644 index 0000000..2c4cea9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/check.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/check2-all.svg b/node_modules/bootstrap-icons/icons/check2-all.svg new file mode 100644 index 0000000..e4004c6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/check2-all.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/check2-circle.svg b/node_modules/bootstrap-icons/icons/check2-circle.svg new file mode 100644 index 0000000..7d751d5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/check2-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/check2-square.svg b/node_modules/bootstrap-icons/icons/check2-square.svg new file mode 100644 index 0000000..7ba8fcc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/check2-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/check2.svg b/node_modules/bootstrap-icons/icons/check2.svg new file mode 100644 index 0000000..ecb793c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/check2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-bar-contract.svg b/node_modules/bootstrap-icons/icons/chevron-bar-contract.svg new file mode 100644 index 0000000..7593ae7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-bar-contract.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-bar-down.svg b/node_modules/bootstrap-icons/icons/chevron-bar-down.svg new file mode 100644 index 0000000..04434ec --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-bar-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-bar-expand.svg b/node_modules/bootstrap-icons/icons/chevron-bar-expand.svg new file mode 100644 index 0000000..22567fd --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-bar-expand.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-bar-left.svg b/node_modules/bootstrap-icons/icons/chevron-bar-left.svg new file mode 100644 index 0000000..a513d7f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-bar-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-bar-right.svg b/node_modules/bootstrap-icons/icons/chevron-bar-right.svg new file mode 100644 index 0000000..41f6d0a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-bar-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-bar-up.svg b/node_modules/bootstrap-icons/icons/chevron-bar-up.svg new file mode 100644 index 0000000..9bfd279 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-bar-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-compact-down.svg b/node_modules/bootstrap-icons/icons/chevron-compact-down.svg new file mode 100644 index 0000000..a73e383 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-compact-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-compact-left.svg b/node_modules/bootstrap-icons/icons/chevron-compact-left.svg new file mode 100644 index 0000000..f1a8518 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-compact-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-compact-right.svg b/node_modules/bootstrap-icons/icons/chevron-compact-right.svg new file mode 100644 index 0000000..4bd0b2d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-compact-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-compact-up.svg b/node_modules/bootstrap-icons/icons/chevron-compact-up.svg new file mode 100644 index 0000000..7599a76 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-compact-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-contract.svg b/node_modules/bootstrap-icons/icons/chevron-contract.svg new file mode 100644 index 0000000..338a0c8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-contract.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-double-down.svg b/node_modules/bootstrap-icons/icons/chevron-double-down.svg new file mode 100644 index 0000000..004d6b6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-double-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-double-left.svg b/node_modules/bootstrap-icons/icons/chevron-double-left.svg new file mode 100644 index 0000000..5cc4026 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-double-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-double-right.svg b/node_modules/bootstrap-icons/icons/chevron-double-right.svg new file mode 100644 index 0000000..7359c96 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-double-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-double-up.svg b/node_modules/bootstrap-icons/icons/chevron-double-up.svg new file mode 100644 index 0000000..a3543e8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-double-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-down.svg b/node_modules/bootstrap-icons/icons/chevron-down.svg new file mode 100644 index 0000000..c627d28 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-expand.svg b/node_modules/bootstrap-icons/icons/chevron-expand.svg new file mode 100644 index 0000000..1f2e701 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-expand.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-left.svg b/node_modules/bootstrap-icons/icons/chevron-left.svg new file mode 100644 index 0000000..442a50e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-right.svg b/node_modules/bootstrap-icons/icons/chevron-right.svg new file mode 100644 index 0000000..3489af0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/chevron-up.svg b/node_modules/bootstrap-icons/icons/chevron-up.svg new file mode 100644 index 0000000..aac3652 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/chevron-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/circle-fill.svg b/node_modules/bootstrap-icons/icons/circle-fill.svg new file mode 100644 index 0000000..64d438e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/circle-half.svg b/node_modules/bootstrap-icons/icons/circle-half.svg new file mode 100644 index 0000000..1dce5b5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/circle-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/circle-square.svg b/node_modules/bootstrap-icons/icons/circle-square.svg new file mode 100644 index 0000000..13edb3b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/circle-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/circle.svg b/node_modules/bootstrap-icons/icons/circle.svg new file mode 100644 index 0000000..29be392 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/clipboard-data.svg b/node_modules/bootstrap-icons/icons/clipboard-data.svg new file mode 100644 index 0000000..2760267 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/clipboard-data.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/clipboard.svg b/node_modules/bootstrap-icons/icons/clipboard.svg new file mode 100644 index 0000000..0be3111 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/clipboard.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/clock-fill.svg b/node_modules/bootstrap-icons/icons/clock-fill.svg new file mode 100644 index 0000000..fdc6b92 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/clock-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/clock-history.svg b/node_modules/bootstrap-icons/icons/clock-history.svg new file mode 100644 index 0000000..3c8eb27 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/clock-history.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/clock.svg b/node_modules/bootstrap-icons/icons/clock.svg new file mode 100644 index 0000000..e3cf517 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/clock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cloud-download.svg b/node_modules/bootstrap-icons/icons/cloud-download.svg new file mode 100644 index 0000000..062e3be --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cloud-download.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cloud-fill.svg b/node_modules/bootstrap-icons/icons/cloud-fill.svg new file mode 100644 index 0000000..0b6567d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cloud-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cloud-slash-fill.svg b/node_modules/bootstrap-icons/icons/cloud-slash-fill.svg new file mode 100644 index 0000000..cee626d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cloud-slash-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cloud-slash.svg b/node_modules/bootstrap-icons/icons/cloud-slash.svg new file mode 100644 index 0000000..0dfaa1a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cloud-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cloud-upload.svg b/node_modules/bootstrap-icons/icons/cloud-upload.svg new file mode 100644 index 0000000..a645863 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cloud-upload.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cloud.svg b/node_modules/bootstrap-icons/icons/cloud.svg new file mode 100644 index 0000000..e094baf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cloud.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/code-slash.svg b/node_modules/bootstrap-icons/icons/code-slash.svg new file mode 100644 index 0000000..2fc78a9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/code-slash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/code.svg b/node_modules/bootstrap-icons/icons/code.svg new file mode 100644 index 0000000..b6e4661 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/code.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/collection-fill.svg b/node_modules/bootstrap-icons/icons/collection-fill.svg new file mode 100644 index 0000000..f6c4ae7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/collection-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/collection-play-fill.svg b/node_modules/bootstrap-icons/icons/collection-play-fill.svg new file mode 100644 index 0000000..925ea41 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/collection-play-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/collection-play.svg b/node_modules/bootstrap-icons/icons/collection-play.svg new file mode 100644 index 0000000..305f95f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/collection-play.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/collection.svg b/node_modules/bootstrap-icons/icons/collection.svg new file mode 100644 index 0000000..1fa4f8a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/collection.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/columns-gap.svg b/node_modules/bootstrap-icons/icons/columns-gap.svg new file mode 100644 index 0000000..ba13497 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/columns-gap.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/columns.svg b/node_modules/bootstrap-icons/icons/columns.svg new file mode 100644 index 0000000..66d89d4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/columns.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/command.svg b/node_modules/bootstrap-icons/icons/command.svg new file mode 100644 index 0000000..ebc6a0e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/command.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/compass.svg b/node_modules/bootstrap-icons/icons/compass.svg new file mode 100644 index 0000000..cf52cc6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/compass.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cone-striped.svg b/node_modules/bootstrap-icons/icons/cone-striped.svg new file mode 100644 index 0000000..8daea1b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cone-striped.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cone.svg b/node_modules/bootstrap-icons/icons/cone.svg new file mode 100644 index 0000000..6965414 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cone.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/controller.svg b/node_modules/bootstrap-icons/icons/controller.svg new file mode 100644 index 0000000..83f6a81 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/controller.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/credit-card.svg b/node_modules/bootstrap-icons/icons/credit-card.svg new file mode 100644 index 0000000..26ae494 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/credit-card.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/crop.svg b/node_modules/bootstrap-icons/icons/crop.svg new file mode 100644 index 0000000..62a5887 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/crop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cup.svg b/node_modules/bootstrap-icons/icons/cup.svg new file mode 100644 index 0000000..80294d1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cup.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cursor-fill.svg b/node_modules/bootstrap-icons/icons/cursor-fill.svg new file mode 100644 index 0000000..16e768b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cursor-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cursor-text.svg b/node_modules/bootstrap-icons/icons/cursor-text.svg new file mode 100644 index 0000000..e68a52c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cursor-text.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/cursor.svg b/node_modules/bootstrap-icons/icons/cursor.svg new file mode 100644 index 0000000..4b62a49 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/cursor.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/dash-circle-fill.svg b/node_modules/bootstrap-icons/icons/dash-circle-fill.svg new file mode 100644 index 0000000..9f2d6dc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/dash-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/dash-circle.svg b/node_modules/bootstrap-icons/icons/dash-circle.svg new file mode 100644 index 0000000..68f98ca --- /dev/null +++ b/node_modules/bootstrap-icons/icons/dash-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/dash-square-fill.svg b/node_modules/bootstrap-icons/icons/dash-square-fill.svg new file mode 100644 index 0000000..f85b215 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/dash-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/dash-square.svg b/node_modules/bootstrap-icons/icons/dash-square.svg new file mode 100644 index 0000000..855268c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/dash-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/dash.svg b/node_modules/bootstrap-icons/icons/dash.svg new file mode 100644 index 0000000..5ed59d2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/dash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/diamond-fill.svg b/node_modules/bootstrap-icons/icons/diamond-fill.svg new file mode 100644 index 0000000..12a2de3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/diamond-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/diamond-half.svg b/node_modules/bootstrap-icons/icons/diamond-half.svg new file mode 100644 index 0000000..8925405 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/diamond-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/diamond.svg b/node_modules/bootstrap-icons/icons/diamond.svg new file mode 100644 index 0000000..e0fc899 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/diamond.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/display-fill.svg b/node_modules/bootstrap-icons/icons/display-fill.svg new file mode 100644 index 0000000..fd26f24 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/display-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/display.svg b/node_modules/bootstrap-icons/icons/display.svg new file mode 100644 index 0000000..ec33cb1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/display.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/door-closed-fill.svg b/node_modules/bootstrap-icons/icons/door-closed-fill.svg new file mode 100644 index 0000000..bca5ed4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/door-closed-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/door-closed.svg b/node_modules/bootstrap-icons/icons/door-closed.svg new file mode 100644 index 0000000..30e5237 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/door-closed.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/dot.svg b/node_modules/bootstrap-icons/icons/dot.svg new file mode 100644 index 0000000..8935fda --- /dev/null +++ b/node_modules/bootstrap-icons/icons/dot.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/download.svg b/node_modules/bootstrap-icons/icons/download.svg new file mode 100644 index 0000000..6bcc8aa --- /dev/null +++ b/node_modules/bootstrap-icons/icons/download.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/droplet-fill.svg b/node_modules/bootstrap-icons/icons/droplet-fill.svg new file mode 100644 index 0000000..79afd19 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/droplet-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/droplet-half.svg b/node_modules/bootstrap-icons/icons/droplet-half.svg new file mode 100644 index 0000000..92c72f0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/droplet-half.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/droplet.svg b/node_modules/bootstrap-icons/icons/droplet.svg new file mode 100644 index 0000000..91813fa --- /dev/null +++ b/node_modules/bootstrap-icons/icons/droplet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/egg-fill.svg b/node_modules/bootstrap-icons/icons/egg-fill.svg new file mode 100644 index 0000000..2dd0f83 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/egg-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/egg-fried.svg b/node_modules/bootstrap-icons/icons/egg-fried.svg new file mode 100644 index 0000000..4cc06a9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/egg-fried.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/egg.svg b/node_modules/bootstrap-icons/icons/egg.svg new file mode 100644 index 0000000..0ae66b8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/egg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/eject-fill.svg b/node_modules/bootstrap-icons/icons/eject-fill.svg new file mode 100644 index 0000000..e4b112a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/eject-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/eject.svg b/node_modules/bootstrap-icons/icons/eject.svg new file mode 100644 index 0000000..1229d6b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/eject.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/emoji-angry.svg b/node_modules/bootstrap-icons/icons/emoji-angry.svg new file mode 100644 index 0000000..ecd036d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/emoji-angry.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/emoji-dizzy.svg b/node_modules/bootstrap-icons/icons/emoji-dizzy.svg new file mode 100644 index 0000000..e42aa7e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/emoji-dizzy.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/emoji-frown.svg b/node_modules/bootstrap-icons/icons/emoji-frown.svg new file mode 100644 index 0000000..51cf2f4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/emoji-frown.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/emoji-laughing.svg b/node_modules/bootstrap-icons/icons/emoji-laughing.svg new file mode 100644 index 0000000..c30c992 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/emoji-laughing.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/emoji-neutral.svg b/node_modules/bootstrap-icons/icons/emoji-neutral.svg new file mode 100644 index 0000000..727574f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/emoji-neutral.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/emoji-smile-upside-down.svg b/node_modules/bootstrap-icons/icons/emoji-smile-upside-down.svg new file mode 100644 index 0000000..78d4dd1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/emoji-smile-upside-down.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/emoji-smile.svg b/node_modules/bootstrap-icons/icons/emoji-smile.svg new file mode 100644 index 0000000..52f5cbe --- /dev/null +++ b/node_modules/bootstrap-icons/icons/emoji-smile.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/emoji-sunglasses.svg b/node_modules/bootstrap-icons/icons/emoji-sunglasses.svg new file mode 100644 index 0000000..bf538b5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/emoji-sunglasses.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/envelope-fill.svg b/node_modules/bootstrap-icons/icons/envelope-fill.svg new file mode 100644 index 0000000..1fbd04b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/envelope-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/envelope-open-fill.svg b/node_modules/bootstrap-icons/icons/envelope-open-fill.svg new file mode 100644 index 0000000..1c85185 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/envelope-open-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/envelope-open.svg b/node_modules/bootstrap-icons/icons/envelope-open.svg new file mode 100644 index 0000000..c8c5060 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/envelope-open.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/envelope.svg b/node_modules/bootstrap-icons/icons/envelope.svg new file mode 100644 index 0000000..bdd23e7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/envelope.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation-circle-fill.svg b/node_modules/bootstrap-icons/icons/exclamation-circle-fill.svg new file mode 100644 index 0000000..1a03943 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation-circle.svg b/node_modules/bootstrap-icons/icons/exclamation-circle.svg new file mode 100644 index 0000000..df4ee2f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation-diamond-fill.svg b/node_modules/bootstrap-icons/icons/exclamation-diamond-fill.svg new file mode 100644 index 0000000..7c797db --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation-diamond-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation-diamond.svg b/node_modules/bootstrap-icons/icons/exclamation-diamond.svg new file mode 100644 index 0000000..5714bba --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation-diamond.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation-octagon-fill.svg b/node_modules/bootstrap-icons/icons/exclamation-octagon-fill.svg new file mode 100644 index 0000000..e8b1164 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation-octagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation-octagon.svg b/node_modules/bootstrap-icons/icons/exclamation-octagon.svg new file mode 100644 index 0000000..53d708f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation-octagon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation-square-fill.svg b/node_modules/bootstrap-icons/icons/exclamation-square-fill.svg new file mode 100644 index 0000000..088b9d0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation-square.svg b/node_modules/bootstrap-icons/icons/exclamation-square.svg new file mode 100644 index 0000000..6ad98e1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation-triangle-fill.svg b/node_modules/bootstrap-icons/icons/exclamation-triangle-fill.svg new file mode 100644 index 0000000..3223d15 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation-triangle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation-triangle.svg b/node_modules/bootstrap-icons/icons/exclamation-triangle.svg new file mode 100644 index 0000000..ee170b7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation-triangle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclamation.svg b/node_modules/bootstrap-icons/icons/exclamation.svg new file mode 100644 index 0000000..39a394e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclamation.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/exclude.svg b/node_modules/bootstrap-icons/icons/exclude.svg new file mode 100644 index 0000000..b7a7460 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/exclude.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/eye-fill.svg b/node_modules/bootstrap-icons/icons/eye-fill.svg new file mode 100644 index 0000000..f5c6eed --- /dev/null +++ b/node_modules/bootstrap-icons/icons/eye-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/eye-slash-fill.svg b/node_modules/bootstrap-icons/icons/eye-slash-fill.svg new file mode 100644 index 0000000..4f039eb --- /dev/null +++ b/node_modules/bootstrap-icons/icons/eye-slash-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/eye-slash.svg b/node_modules/bootstrap-icons/icons/eye-slash.svg new file mode 100644 index 0000000..eadc1ee --- /dev/null +++ b/node_modules/bootstrap-icons/icons/eye-slash.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/eye.svg b/node_modules/bootstrap-icons/icons/eye.svg new file mode 100644 index 0000000..26a80f4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/eye.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-arrow-down.svg b/node_modules/bootstrap-icons/icons/file-arrow-down.svg new file mode 100644 index 0000000..17a34ee --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-arrow-down.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-arrow-up.svg b/node_modules/bootstrap-icons/icons/file-arrow-up.svg new file mode 100644 index 0000000..9dc1edc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-arrow-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-break.svg b/node_modules/bootstrap-icons/icons/file-break.svg new file mode 100644 index 0000000..026860f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-break.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-check.svg b/node_modules/bootstrap-icons/icons/file-check.svg new file mode 100644 index 0000000..f0f5e38 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-code.svg b/node_modules/bootstrap-icons/icons/file-code.svg new file mode 100644 index 0000000..13c0b64 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-code.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-diff.svg b/node_modules/bootstrap-icons/icons/file-diff.svg new file mode 100644 index 0000000..e2b2aa5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-diff.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-arrow-down.svg b/node_modules/bootstrap-icons/icons/file-earmark-arrow-down.svg new file mode 100644 index 0000000..7e8d196 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-arrow-down.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-arrow-up.svg b/node_modules/bootstrap-icons/icons/file-earmark-arrow-up.svg new file mode 100644 index 0000000..1729b52 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-arrow-up.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-break.svg b/node_modules/bootstrap-icons/icons/file-earmark-break.svg new file mode 100644 index 0000000..c125a5d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-break.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-check.svg b/node_modules/bootstrap-icons/icons/file-earmark-check.svg new file mode 100644 index 0000000..fb05aea --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-code.svg b/node_modules/bootstrap-icons/icons/file-earmark-code.svg new file mode 100644 index 0000000..804e74d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-code.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-diff.svg b/node_modules/bootstrap-icons/icons/file-earmark-diff.svg new file mode 100644 index 0000000..b2d9923 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-diff.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-minus.svg b/node_modules/bootstrap-icons/icons/file-earmark-minus.svg new file mode 100644 index 0000000..4876aab --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-plus.svg b/node_modules/bootstrap-icons/icons/file-earmark-plus.svg new file mode 100644 index 0000000..6970022 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-plus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-ruled.svg b/node_modules/bootstrap-icons/icons/file-earmark-ruled.svg new file mode 100644 index 0000000..0b72624 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-ruled.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-spreadsheet.svg b/node_modules/bootstrap-icons/icons/file-earmark-spreadsheet.svg new file mode 100644 index 0000000..8cd190f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-spreadsheet.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-text.svg b/node_modules/bootstrap-icons/icons/file-earmark-text.svg new file mode 100644 index 0000000..9b5f269 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-text.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark-zip.svg b/node_modules/bootstrap-icons/icons/file-earmark-zip.svg new file mode 100644 index 0000000..7c4a3c4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark-zip.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-earmark.svg b/node_modules/bootstrap-icons/icons/file-earmark.svg new file mode 100644 index 0000000..536ac8a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-earmark.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-minus.svg b/node_modules/bootstrap-icons/icons/file-minus.svg new file mode 100644 index 0000000..f8d06c0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-plus.svg b/node_modules/bootstrap-icons/icons/file-plus.svg new file mode 100644 index 0000000..67b74c8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-plus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-post.svg b/node_modules/bootstrap-icons/icons/file-post.svg new file mode 100644 index 0000000..615864b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-post.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-richtext.svg b/node_modules/bootstrap-icons/icons/file-richtext.svg new file mode 100644 index 0000000..2aa1ae0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-richtext.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-ruled.svg b/node_modules/bootstrap-icons/icons/file-ruled.svg new file mode 100644 index 0000000..61295f7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-ruled.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-spreadsheet.svg b/node_modules/bootstrap-icons/icons/file-spreadsheet.svg new file mode 100644 index 0000000..b343ff6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-spreadsheet.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-text.svg b/node_modules/bootstrap-icons/icons/file-text.svg new file mode 100644 index 0000000..0ba54e5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-text.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file-zip.svg b/node_modules/bootstrap-icons/icons/file-zip.svg new file mode 100644 index 0000000..fd99d2c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file-zip.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/file.svg b/node_modules/bootstrap-icons/icons/file.svg new file mode 100644 index 0000000..29acb82 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/file.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/files-alt.svg b/node_modules/bootstrap-icons/icons/files-alt.svg new file mode 100644 index 0000000..ff5135d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/files-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/files.svg b/node_modules/bootstrap-icons/icons/files.svg new file mode 100644 index 0000000..f613a25 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/files.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/film.svg b/node_modules/bootstrap-icons/icons/film.svg new file mode 100644 index 0000000..bf640d7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/film.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/filter-left.svg b/node_modules/bootstrap-icons/icons/filter-left.svg new file mode 100644 index 0000000..fe70d36 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/filter-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/filter-right.svg b/node_modules/bootstrap-icons/icons/filter-right.svg new file mode 100644 index 0000000..709618f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/filter-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/filter.svg b/node_modules/bootstrap-icons/icons/filter.svg new file mode 100644 index 0000000..bd296ea --- /dev/null +++ b/node_modules/bootstrap-icons/icons/filter.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/flag-fill.svg b/node_modules/bootstrap-icons/icons/flag-fill.svg new file mode 100644 index 0000000..8550580 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/flag-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/flag.svg b/node_modules/bootstrap-icons/icons/flag.svg new file mode 100644 index 0000000..7c7d9c6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/flag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/folder-check.svg b/node_modules/bootstrap-icons/icons/folder-check.svg new file mode 100644 index 0000000..d58f823 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/folder-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/folder-fill.svg b/node_modules/bootstrap-icons/icons/folder-fill.svg new file mode 100644 index 0000000..843a311 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/folder-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/folder-minus.svg b/node_modules/bootstrap-icons/icons/folder-minus.svg new file mode 100644 index 0000000..c6ec9cf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/folder-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/folder-plus.svg b/node_modules/bootstrap-icons/icons/folder-plus.svg new file mode 100644 index 0000000..b3d181a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/folder-plus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/folder-symlink-fill.svg b/node_modules/bootstrap-icons/icons/folder-symlink-fill.svg new file mode 100644 index 0000000..c3666cd --- /dev/null +++ b/node_modules/bootstrap-icons/icons/folder-symlink-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/folder-symlink.svg b/node_modules/bootstrap-icons/icons/folder-symlink.svg new file mode 100644 index 0000000..98fa7db --- /dev/null +++ b/node_modules/bootstrap-icons/icons/folder-symlink.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/folder.svg b/node_modules/bootstrap-icons/icons/folder.svg new file mode 100644 index 0000000..60f4f6b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/folder.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/fonts.svg b/node_modules/bootstrap-icons/icons/fonts.svg new file mode 100644 index 0000000..43177e0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/fonts.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/forward-fill.svg b/node_modules/bootstrap-icons/icons/forward-fill.svg new file mode 100644 index 0000000..f5069c2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/forward-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/forward.svg b/node_modules/bootstrap-icons/icons/forward.svg new file mode 100644 index 0000000..da9930a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/forward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/fullscreen-exit.svg b/node_modules/bootstrap-icons/icons/fullscreen-exit.svg new file mode 100644 index 0000000..0299926 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/fullscreen-exit.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/fullscreen.svg b/node_modules/bootstrap-icons/icons/fullscreen.svg new file mode 100644 index 0000000..2bbb066 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/fullscreen.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/funnel-fill.svg b/node_modules/bootstrap-icons/icons/funnel-fill.svg new file mode 100644 index 0000000..ca67ebc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/funnel-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/funnel.svg b/node_modules/bootstrap-icons/icons/funnel.svg new file mode 100644 index 0000000..6a5274d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/funnel.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/gear-fill.svg b/node_modules/bootstrap-icons/icons/gear-fill.svg new file mode 100644 index 0000000..6a0b029 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/gear-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/gear-wide-connected.svg b/node_modules/bootstrap-icons/icons/gear-wide-connected.svg new file mode 100644 index 0000000..d717985 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/gear-wide-connected.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/gear-wide.svg b/node_modules/bootstrap-icons/icons/gear-wide.svg new file mode 100644 index 0000000..3c981cf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/gear-wide.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/gear.svg b/node_modules/bootstrap-icons/icons/gear.svg new file mode 100644 index 0000000..838bb17 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/gear.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/gem.svg b/node_modules/bootstrap-icons/icons/gem.svg new file mode 100644 index 0000000..a7238ad --- /dev/null +++ b/node_modules/bootstrap-icons/icons/gem.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/geo-alt.svg b/node_modules/bootstrap-icons/icons/geo-alt.svg new file mode 100644 index 0000000..17395b2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/geo-alt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/geo.svg b/node_modules/bootstrap-icons/icons/geo.svg new file mode 100644 index 0000000..f6883e4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/geo.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/gift-fill.svg b/node_modules/bootstrap-icons/icons/gift-fill.svg new file mode 100644 index 0000000..d4d1ffa --- /dev/null +++ b/node_modules/bootstrap-icons/icons/gift-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/gift.svg b/node_modules/bootstrap-icons/icons/gift.svg new file mode 100644 index 0000000..6657f5b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/gift.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/graph-down.svg b/node_modules/bootstrap-icons/icons/graph-down.svg new file mode 100644 index 0000000..ebd8493 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/graph-down.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/graph-up.svg b/node_modules/bootstrap-icons/icons/graph-up.svg new file mode 100644 index 0000000..588d47b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/graph-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grid-1x2-fill.svg b/node_modules/bootstrap-icons/icons/grid-1x2-fill.svg new file mode 100644 index 0000000..fb52e78 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grid-1x2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grid-1x2.svg b/node_modules/bootstrap-icons/icons/grid-1x2.svg new file mode 100644 index 0000000..8d5dc72 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grid-1x2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grid-3x2-gap-fill.svg b/node_modules/bootstrap-icons/icons/grid-3x2-gap-fill.svg new file mode 100644 index 0000000..cc7da84 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grid-3x2-gap-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grid-3x2-gap.svg b/node_modules/bootstrap-icons/icons/grid-3x2-gap.svg new file mode 100644 index 0000000..68cf9d6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grid-3x2-gap.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grid-3x2.svg b/node_modules/bootstrap-icons/icons/grid-3x2.svg new file mode 100644 index 0000000..1c3086d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grid-3x2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grid-3x3-gap-fill.svg b/node_modules/bootstrap-icons/icons/grid-3x3-gap-fill.svg new file mode 100644 index 0000000..5ce44b7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grid-3x3-gap-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grid-3x3-gap.svg b/node_modules/bootstrap-icons/icons/grid-3x3-gap.svg new file mode 100644 index 0000000..27b1270 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grid-3x3-gap.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grid-3x3.svg b/node_modules/bootstrap-icons/icons/grid-3x3.svg new file mode 100644 index 0000000..69c4e28 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grid-3x3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grid-fill.svg b/node_modules/bootstrap-icons/icons/grid-fill.svg new file mode 100644 index 0000000..8b3c083 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grid-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grid.svg b/node_modules/bootstrap-icons/icons/grid.svg new file mode 100644 index 0000000..1c106cd --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grid.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grip-horizontal.svg b/node_modules/bootstrap-icons/icons/grip-horizontal.svg new file mode 100644 index 0000000..5439000 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grip-horizontal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/grip-vertical.svg b/node_modules/bootstrap-icons/icons/grip-vertical.svg new file mode 100644 index 0000000..80674c5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/grip-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/hammer.svg b/node_modules/bootstrap-icons/icons/hammer.svg new file mode 100644 index 0000000..8651cf3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/hammer.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/hand-index-thumb.svg b/node_modules/bootstrap-icons/icons/hand-index-thumb.svg new file mode 100644 index 0000000..f3041fe --- /dev/null +++ b/node_modules/bootstrap-icons/icons/hand-index-thumb.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/hand-index.svg b/node_modules/bootstrap-icons/icons/hand-index.svg new file mode 100644 index 0000000..9ddd027 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/hand-index.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/hand-thumbs-down.svg b/node_modules/bootstrap-icons/icons/hand-thumbs-down.svg new file mode 100644 index 0000000..ac6ae29 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/hand-thumbs-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/hand-thumbs-up.svg b/node_modules/bootstrap-icons/icons/hand-thumbs-up.svg new file mode 100644 index 0000000..a9c8df9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/hand-thumbs-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/handbag-fill.svg b/node_modules/bootstrap-icons/icons/handbag-fill.svg new file mode 100644 index 0000000..74e3c33 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/handbag-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/handbag.svg b/node_modules/bootstrap-icons/icons/handbag.svg new file mode 100644 index 0000000..5d2fec2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/handbag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/hash.svg b/node_modules/bootstrap-icons/icons/hash.svg new file mode 100644 index 0000000..aee4d30 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/hash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/headphones.svg b/node_modules/bootstrap-icons/icons/headphones.svg new file mode 100644 index 0000000..8bc56e8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/headphones.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/heart-fill.svg b/node_modules/bootstrap-icons/icons/heart-fill.svg new file mode 100644 index 0000000..0d373ea --- /dev/null +++ b/node_modules/bootstrap-icons/icons/heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/heart-half.svg b/node_modules/bootstrap-icons/icons/heart-half.svg new file mode 100644 index 0000000..30b884d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/heart-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/heart.svg b/node_modules/bootstrap-icons/icons/heart.svg new file mode 100644 index 0000000..a61332f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/hexagon-fill.svg b/node_modules/bootstrap-icons/icons/hexagon-fill.svg new file mode 100644 index 0000000..7a5d017 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/hexagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/hexagon-half.svg b/node_modules/bootstrap-icons/icons/hexagon-half.svg new file mode 100644 index 0000000..05be1dd --- /dev/null +++ b/node_modules/bootstrap-icons/icons/hexagon-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/hexagon.svg b/node_modules/bootstrap-icons/icons/hexagon.svg new file mode 100644 index 0000000..71727c9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/hexagon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/house-door-fill.svg b/node_modules/bootstrap-icons/icons/house-door-fill.svg new file mode 100644 index 0000000..089cd40 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/house-door-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/house-door.svg b/node_modules/bootstrap-icons/icons/house-door.svg new file mode 100644 index 0000000..be19809 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/house-door.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/house-fill.svg b/node_modules/bootstrap-icons/icons/house-fill.svg new file mode 100644 index 0000000..b8eba6f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/house-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/house.svg b/node_modules/bootstrap-icons/icons/house.svg new file mode 100644 index 0000000..419f8e4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/house.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/hr.svg b/node_modules/bootstrap-icons/icons/hr.svg new file mode 100644 index 0000000..654cdd0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/hr.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/image-alt.svg b/node_modules/bootstrap-icons/icons/image-alt.svg new file mode 100644 index 0000000..922356b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/image-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/image-fill.svg b/node_modules/bootstrap-icons/icons/image-fill.svg new file mode 100644 index 0000000..7c5a962 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/image-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/image.svg b/node_modules/bootstrap-icons/icons/image.svg new file mode 100644 index 0000000..7c7c089 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/image.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/images.svg b/node_modules/bootstrap-icons/icons/images.svg new file mode 100644 index 0000000..f0cc995 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/images.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/inbox-fill.svg b/node_modules/bootstrap-icons/icons/inbox-fill.svg new file mode 100644 index 0000000..3566c4b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/inbox-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/inbox.svg b/node_modules/bootstrap-icons/icons/inbox.svg new file mode 100644 index 0000000..005cd7f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/inbox.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/inboxes-fill.svg b/node_modules/bootstrap-icons/icons/inboxes-fill.svg new file mode 100644 index 0000000..d507794 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/inboxes-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/inboxes.svg b/node_modules/bootstrap-icons/icons/inboxes.svg new file mode 100644 index 0000000..dc3ae0d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/inboxes.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/info-circle-fill.svg b/node_modules/bootstrap-icons/icons/info-circle-fill.svg new file mode 100644 index 0000000..2a16615 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/info-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/info-circle.svg b/node_modules/bootstrap-icons/icons/info-circle.svg new file mode 100644 index 0000000..b0c7a49 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/info-circle.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/info-square-fill.svg b/node_modules/bootstrap-icons/icons/info-square-fill.svg new file mode 100644 index 0000000..7386aa7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/info-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/info-square.svg b/node_modules/bootstrap-icons/icons/info-square.svg new file mode 100644 index 0000000..6eda839 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/info-square.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/info.svg b/node_modules/bootstrap-icons/icons/info.svg new file mode 100644 index 0000000..2bebd27 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/info.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/intersect.svg b/node_modules/bootstrap-icons/icons/intersect.svg new file mode 100644 index 0000000..568b3e6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/intersect.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/justify-left.svg b/node_modules/bootstrap-icons/icons/justify-left.svg new file mode 100644 index 0000000..ce4b7b5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/justify-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/justify-right.svg b/node_modules/bootstrap-icons/icons/justify-right.svg new file mode 100644 index 0000000..134d5eb --- /dev/null +++ b/node_modules/bootstrap-icons/icons/justify-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/justify.svg b/node_modules/bootstrap-icons/icons/justify.svg new file mode 100644 index 0000000..32ec099 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/justify.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/kanban-fill.svg b/node_modules/bootstrap-icons/icons/kanban-fill.svg new file mode 100644 index 0000000..9b41493 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/kanban-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/kanban.svg b/node_modules/bootstrap-icons/icons/kanban.svg new file mode 100644 index 0000000..9009d85 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/kanban.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/laptop.svg b/node_modules/bootstrap-icons/icons/laptop.svg new file mode 100644 index 0000000..53c079f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/laptop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layers-fill.svg b/node_modules/bootstrap-icons/icons/layers-fill.svg new file mode 100644 index 0000000..6df71f3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layers-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layers-half.svg b/node_modules/bootstrap-icons/icons/layers-half.svg new file mode 100644 index 0000000..cdb2e4b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layers-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layers.svg b/node_modules/bootstrap-icons/icons/layers.svg new file mode 100644 index 0000000..a1e69dc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layers.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-sidebar-inset-reverse.svg b/node_modules/bootstrap-icons/icons/layout-sidebar-inset-reverse.svg new file mode 100644 index 0000000..958c500 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-sidebar-inset-reverse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-sidebar-inset.svg b/node_modules/bootstrap-icons/icons/layout-sidebar-inset.svg new file mode 100644 index 0000000..e19718a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-sidebar-inset.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-sidebar-reverse.svg b/node_modules/bootstrap-icons/icons/layout-sidebar-reverse.svg new file mode 100644 index 0000000..90c6adb --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-sidebar-reverse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-sidebar.svg b/node_modules/bootstrap-icons/icons/layout-sidebar.svg new file mode 100644 index 0000000..05e2253 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-sidebar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-split.svg b/node_modules/bootstrap-icons/icons/layout-split.svg new file mode 100644 index 0000000..fe0aad4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-split.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-text-sidebar-reverse.svg b/node_modules/bootstrap-icons/icons/layout-text-sidebar-reverse.svg new file mode 100644 index 0000000..c4b14d0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-text-sidebar-reverse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-text-sidebar.svg b/node_modules/bootstrap-icons/icons/layout-text-sidebar.svg new file mode 100644 index 0000000..a51275e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-text-sidebar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-text-window-reverse.svg b/node_modules/bootstrap-icons/icons/layout-text-window-reverse.svg new file mode 100644 index 0000000..91c20f3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-text-window-reverse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-text-window.svg b/node_modules/bootstrap-icons/icons/layout-text-window.svg new file mode 100644 index 0000000..9a464f4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-text-window.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-three-columns.svg b/node_modules/bootstrap-icons/icons/layout-three-columns.svg new file mode 100644 index 0000000..4ef2225 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-three-columns.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/layout-wtf.svg b/node_modules/bootstrap-icons/icons/layout-wtf.svg new file mode 100644 index 0000000..0fbae98 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/layout-wtf.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/life-preserver.svg b/node_modules/bootstrap-icons/icons/life-preserver.svg new file mode 100644 index 0000000..b051eaa --- /dev/null +++ b/node_modules/bootstrap-icons/icons/life-preserver.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/lightning-fill.svg b/node_modules/bootstrap-icons/icons/lightning-fill.svg new file mode 100644 index 0000000..3eec779 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/lightning-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/lightning.svg b/node_modules/bootstrap-icons/icons/lightning.svg new file mode 100644 index 0000000..9a683d7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/lightning.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/link-45deg.svg b/node_modules/bootstrap-icons/icons/link-45deg.svg new file mode 100644 index 0000000..b584709 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/link-45deg.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/link.svg b/node_modules/bootstrap-icons/icons/link.svg new file mode 100644 index 0000000..7044398 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/link.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/list-check.svg b/node_modules/bootstrap-icons/icons/list-check.svg new file mode 100644 index 0000000..d645f7c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/list-check.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/list-nested.svg b/node_modules/bootstrap-icons/icons/list-nested.svg new file mode 100644 index 0000000..b695125 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/list-nested.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/list-ol.svg b/node_modules/bootstrap-icons/icons/list-ol.svg new file mode 100644 index 0000000..4a8df96 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/list-ol.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/list-task.svg b/node_modules/bootstrap-icons/icons/list-task.svg new file mode 100644 index 0000000..1957757 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/list-task.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/list-ul.svg b/node_modules/bootstrap-icons/icons/list-ul.svg new file mode 100644 index 0000000..46c3e3d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/list-ul.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/list.svg b/node_modules/bootstrap-icons/icons/list.svg new file mode 100644 index 0000000..6ae1b3b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/list.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/lock-fill.svg b/node_modules/bootstrap-icons/icons/lock-fill.svg new file mode 100644 index 0000000..3f11916 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/lock-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/lock.svg b/node_modules/bootstrap-icons/icons/lock.svg new file mode 100644 index 0000000..8796531 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/lock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/map.svg b/node_modules/bootstrap-icons/icons/map.svg new file mode 100644 index 0000000..d9ad88e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/map.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/mic-fill.svg b/node_modules/bootstrap-icons/icons/mic-fill.svg new file mode 100644 index 0000000..f04f127 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/mic-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/mic-mute-fill.svg b/node_modules/bootstrap-icons/icons/mic-mute-fill.svg new file mode 100644 index 0000000..8277a0e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/mic-mute-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/mic-mute.svg b/node_modules/bootstrap-icons/icons/mic-mute.svg new file mode 100644 index 0000000..aedb9dc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/mic-mute.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/mic.svg b/node_modules/bootstrap-icons/icons/mic.svg new file mode 100644 index 0000000..cdc52aa --- /dev/null +++ b/node_modules/bootstrap-icons/icons/mic.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/minecart-loaded.svg b/node_modules/bootstrap-icons/icons/minecart-loaded.svg new file mode 100644 index 0000000..cd20443 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/minecart-loaded.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/minecart.svg b/node_modules/bootstrap-icons/icons/minecart.svg new file mode 100644 index 0000000..5d40200 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/minecart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/moon.svg b/node_modules/bootstrap-icons/icons/moon.svg new file mode 100644 index 0000000..4bf82be --- /dev/null +++ b/node_modules/bootstrap-icons/icons/moon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/music-note-beamed.svg b/node_modules/bootstrap-icons/icons/music-note-beamed.svg new file mode 100644 index 0000000..8403137 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/music-note-beamed.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/music-note-list.svg b/node_modules/bootstrap-icons/icons/music-note-list.svg new file mode 100644 index 0000000..4e5a2b3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/music-note-list.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/music-note.svg b/node_modules/bootstrap-icons/icons/music-note.svg new file mode 100644 index 0000000..3f78db0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/music-note.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/music-player-fill.svg b/node_modules/bootstrap-icons/icons/music-player-fill.svg new file mode 100644 index 0000000..cbeb97a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/music-player-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/music-player.svg b/node_modules/bootstrap-icons/icons/music-player.svg new file mode 100644 index 0000000..d479c95 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/music-player.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/newspaper.svg b/node_modules/bootstrap-icons/icons/newspaper.svg new file mode 100644 index 0000000..f5b8dcc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/newspaper.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/octagon-fill.svg b/node_modules/bootstrap-icons/icons/octagon-fill.svg new file mode 100644 index 0000000..c9b4dad --- /dev/null +++ b/node_modules/bootstrap-icons/icons/octagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/octagon-half.svg b/node_modules/bootstrap-icons/icons/octagon-half.svg new file mode 100644 index 0000000..026d0ca --- /dev/null +++ b/node_modules/bootstrap-icons/icons/octagon-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/octagon.svg b/node_modules/bootstrap-icons/icons/octagon.svg new file mode 100644 index 0000000..48ebf30 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/octagon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/option.svg b/node_modules/bootstrap-icons/icons/option.svg new file mode 100644 index 0000000..04d12d8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/option.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/outlet.svg b/node_modules/bootstrap-icons/icons/outlet.svg new file mode 100644 index 0000000..777940d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/outlet.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/paperclip.svg b/node_modules/bootstrap-icons/icons/paperclip.svg new file mode 100644 index 0000000..a8dfb19 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/paperclip.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pause-fill.svg b/node_modules/bootstrap-icons/icons/pause-fill.svg new file mode 100644 index 0000000..43d8e5e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pause-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pause.svg b/node_modules/bootstrap-icons/icons/pause.svg new file mode 100644 index 0000000..ec7ffff --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pause.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pen.svg b/node_modules/bootstrap-icons/icons/pen.svg new file mode 100644 index 0000000..b4e09f6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pen.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pencil-square.svg b/node_modules/bootstrap-icons/icons/pencil-square.svg new file mode 100644 index 0000000..1fa28b2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pencil-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pencil.svg b/node_modules/bootstrap-icons/icons/pencil.svg new file mode 100644 index 0000000..b8e9b86 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pencil.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pentagon-fill.svg b/node_modules/bootstrap-icons/icons/pentagon-fill.svg new file mode 100644 index 0000000..0a609be --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pentagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pentagon-half.svg b/node_modules/bootstrap-icons/icons/pentagon-half.svg new file mode 100644 index 0000000..f2d4e2e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pentagon-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pentagon.svg b/node_modules/bootstrap-icons/icons/pentagon.svg new file mode 100644 index 0000000..17b55b6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pentagon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/people-fill.svg b/node_modules/bootstrap-icons/icons/people-fill.svg new file mode 100644 index 0000000..ddf7d13 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/people-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/people.svg b/node_modules/bootstrap-icons/icons/people.svg new file mode 100644 index 0000000..04f7c23 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/people.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-bounding-box.svg b/node_modules/bootstrap-icons/icons/person-bounding-box.svg new file mode 100644 index 0000000..79b5194 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-bounding-box.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-check-fill.svg b/node_modules/bootstrap-icons/icons/person-check-fill.svg new file mode 100644 index 0000000..a1c402c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-check.svg b/node_modules/bootstrap-icons/icons/person-check.svg new file mode 100644 index 0000000..43dfc83 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-check.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-circle.svg b/node_modules/bootstrap-icons/icons/person-circle.svg new file mode 100644 index 0000000..44aa5be --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-circle.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-dash-fill.svg b/node_modules/bootstrap-icons/icons/person-dash-fill.svg new file mode 100644 index 0000000..2517d6c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-dash-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-dash.svg b/node_modules/bootstrap-icons/icons/person-dash.svg new file mode 100644 index 0000000..14a6c07 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-dash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-fill.svg b/node_modules/bootstrap-icons/icons/person-fill.svg new file mode 100644 index 0000000..f063776 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-lines-fill.svg b/node_modules/bootstrap-icons/icons/person-lines-fill.svg new file mode 100644 index 0000000..4a4b9b7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-lines-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-plus-fill.svg b/node_modules/bootstrap-icons/icons/person-plus-fill.svg new file mode 100644 index 0000000..69be8b8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-plus-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-plus.svg b/node_modules/bootstrap-icons/icons/person-plus.svg new file mode 100644 index 0000000..f74cf42 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person-square.svg b/node_modules/bootstrap-icons/icons/person-square.svg new file mode 100644 index 0000000..692eef4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/person.svg b/node_modules/bootstrap-icons/icons/person.svg new file mode 100644 index 0000000..d27e63b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/person.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/phone-landscape.svg b/node_modules/bootstrap-icons/icons/phone-landscape.svg new file mode 100644 index 0000000..8a48168 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/phone-landscape.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/phone.svg b/node_modules/bootstrap-icons/icons/phone.svg new file mode 100644 index 0000000..6bce599 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/phone.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pie-chart-fill.svg b/node_modules/bootstrap-icons/icons/pie-chart-fill.svg new file mode 100644 index 0000000..301b101 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pie-chart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pie-chart.svg b/node_modules/bootstrap-icons/icons/pie-chart.svg new file mode 100644 index 0000000..6da878a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pie-chart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pip-fill.svg b/node_modules/bootstrap-icons/icons/pip-fill.svg new file mode 100644 index 0000000..515fc3a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pip-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/pip.svg b/node_modules/bootstrap-icons/icons/pip.svg new file mode 100644 index 0000000..c5577de --- /dev/null +++ b/node_modules/bootstrap-icons/icons/pip.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/play-fill.svg b/node_modules/bootstrap-icons/icons/play-fill.svg new file mode 100644 index 0000000..52321ab --- /dev/null +++ b/node_modules/bootstrap-icons/icons/play-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/play.svg b/node_modules/bootstrap-icons/icons/play.svg new file mode 100644 index 0000000..9c423e0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/play.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/plug.svg b/node_modules/bootstrap-icons/icons/plug.svg new file mode 100644 index 0000000..af4917d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/plug.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/plus-circle-fill.svg b/node_modules/bootstrap-icons/icons/plus-circle-fill.svg new file mode 100644 index 0000000..7beff4b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/plus-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/plus-circle.svg b/node_modules/bootstrap-icons/icons/plus-circle.svg new file mode 100644 index 0000000..cba40d8 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/plus-circle.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/plus-square-fill.svg b/node_modules/bootstrap-icons/icons/plus-square-fill.svg new file mode 100644 index 0000000..c2428f9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/plus-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/plus-square.svg b/node_modules/bootstrap-icons/icons/plus-square.svg new file mode 100644 index 0000000..e8147b2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/plus-square.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/plus.svg b/node_modules/bootstrap-icons/icons/plus.svg new file mode 100644 index 0000000..6d08caf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/power.svg b/node_modules/bootstrap-icons/icons/power.svg new file mode 100644 index 0000000..9d1b235 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/power.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/puzzle-fill.svg b/node_modules/bootstrap-icons/icons/puzzle-fill.svg new file mode 100644 index 0000000..ad4ad01 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/puzzle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/puzzle.svg b/node_modules/bootstrap-icons/icons/puzzle.svg new file mode 100644 index 0000000..6cb3d18 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/puzzle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/question-circle-fill.svg b/node_modules/bootstrap-icons/icons/question-circle-fill.svg new file mode 100644 index 0000000..b36e375 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/question-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/question-circle.svg b/node_modules/bootstrap-icons/icons/question-circle.svg new file mode 100644 index 0000000..1394f3c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/question-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/question-diamond-fill.svg b/node_modules/bootstrap-icons/icons/question-diamond-fill.svg new file mode 100644 index 0000000..53be09f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/question-diamond-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/question-diamond.svg b/node_modules/bootstrap-icons/icons/question-diamond.svg new file mode 100644 index 0000000..01667f1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/question-diamond.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/question-octagon-fill.svg b/node_modules/bootstrap-icons/icons/question-octagon-fill.svg new file mode 100644 index 0000000..c7c8861 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/question-octagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/question-octagon.svg b/node_modules/bootstrap-icons/icons/question-octagon.svg new file mode 100644 index 0000000..5298d0d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/question-octagon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/question-square-fill.svg b/node_modules/bootstrap-icons/icons/question-square-fill.svg new file mode 100644 index 0000000..20a7cbf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/question-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/question-square.svg b/node_modules/bootstrap-icons/icons/question-square.svg new file mode 100644 index 0000000..fbe726e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/question-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/question.svg b/node_modules/bootstrap-icons/icons/question.svg new file mode 100644 index 0000000..c14d18f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/question.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/receipt-cutoff.svg b/node_modules/bootstrap-icons/icons/receipt-cutoff.svg new file mode 100644 index 0000000..8a9bcea --- /dev/null +++ b/node_modules/bootstrap-icons/icons/receipt-cutoff.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/receipt.svg b/node_modules/bootstrap-icons/icons/receipt.svg new file mode 100644 index 0000000..6b71450 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/receipt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/reply-all-fill.svg b/node_modules/bootstrap-icons/icons/reply-all-fill.svg new file mode 100644 index 0000000..2eacf44 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/reply-all-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/reply-all.svg b/node_modules/bootstrap-icons/icons/reply-all.svg new file mode 100644 index 0000000..eb05de2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/reply-all.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/reply-fill.svg b/node_modules/bootstrap-icons/icons/reply-fill.svg new file mode 100644 index 0000000..0b53030 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/reply-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/reply.svg b/node_modules/bootstrap-icons/icons/reply.svg new file mode 100644 index 0000000..959ca98 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/reply.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/screwdriver.svg b/node_modules/bootstrap-icons/icons/screwdriver.svg new file mode 100644 index 0000000..60ea1ca --- /dev/null +++ b/node_modules/bootstrap-icons/icons/screwdriver.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/search.svg b/node_modules/bootstrap-icons/icons/search.svg new file mode 100644 index 0000000..5e33816 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/search.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/server.svg b/node_modules/bootstrap-icons/icons/server.svg new file mode 100644 index 0000000..c0ad439 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/server.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shield-fill.svg b/node_modules/bootstrap-icons/icons/shield-fill.svg new file mode 100644 index 0000000..8f517e3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shield-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shield-lock-fill.svg b/node_modules/bootstrap-icons/icons/shield-lock-fill.svg new file mode 100644 index 0000000..13160e9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shield-lock-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shield-lock.svg b/node_modules/bootstrap-icons/icons/shield-lock.svg new file mode 100644 index 0000000..cc7833e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shield-lock.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shield-shaded.svg b/node_modules/bootstrap-icons/icons/shield-shaded.svg new file mode 100644 index 0000000..42966eb --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shield-shaded.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shield-slash-fill.svg b/node_modules/bootstrap-icons/icons/shield-slash-fill.svg new file mode 100644 index 0000000..1f7e1cf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shield-slash-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shield-slash.svg b/node_modules/bootstrap-icons/icons/shield-slash.svg new file mode 100644 index 0000000..f622612 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shield-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shield.svg b/node_modules/bootstrap-icons/icons/shield.svg new file mode 100644 index 0000000..dbe155b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shield.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shift-fill.svg b/node_modules/bootstrap-icons/icons/shift-fill.svg new file mode 100644 index 0000000..ecc41db --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shift-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shift.svg b/node_modules/bootstrap-icons/icons/shift.svg new file mode 100644 index 0000000..3f9f6e7 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shift.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shop-window.svg b/node_modules/bootstrap-icons/icons/shop-window.svg new file mode 100644 index 0000000..50d83be --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shop-window.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shop.svg b/node_modules/bootstrap-icons/icons/shop.svg new file mode 100644 index 0000000..c8b44ae --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shop.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/shuffle.svg b/node_modules/bootstrap-icons/icons/shuffle.svg new file mode 100644 index 0000000..dd9b29f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/shuffle.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/skip-backward-fill.svg b/node_modules/bootstrap-icons/icons/skip-backward-fill.svg new file mode 100644 index 0000000..ae95db4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/skip-backward-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/skip-backward.svg b/node_modules/bootstrap-icons/icons/skip-backward.svg new file mode 100644 index 0000000..1db3d0c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/skip-backward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/skip-end-fill.svg b/node_modules/bootstrap-icons/icons/skip-end-fill.svg new file mode 100644 index 0000000..67fa309 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/skip-end-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/skip-end.svg b/node_modules/bootstrap-icons/icons/skip-end.svg new file mode 100644 index 0000000..abc9d4f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/skip-end.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/skip-forward-fill.svg b/node_modules/bootstrap-icons/icons/skip-forward-fill.svg new file mode 100644 index 0000000..361738d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/skip-forward-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/skip-forward.svg b/node_modules/bootstrap-icons/icons/skip-forward.svg new file mode 100644 index 0000000..64bf0d6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/skip-forward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/skip-start-fill.svg b/node_modules/bootstrap-icons/icons/skip-start-fill.svg new file mode 100644 index 0000000..a79c014 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/skip-start-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/skip-start.svg b/node_modules/bootstrap-icons/icons/skip-start.svg new file mode 100644 index 0000000..621bfc2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/skip-start.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/slash-circle-fill.svg b/node_modules/bootstrap-icons/icons/slash-circle-fill.svg new file mode 100644 index 0000000..195559b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/slash-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/slash-circle.svg b/node_modules/bootstrap-icons/icons/slash-circle.svg new file mode 100644 index 0000000..3df2189 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/slash-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/slash-square-fill.svg b/node_modules/bootstrap-icons/icons/slash-square-fill.svg new file mode 100644 index 0000000..9cfb1f1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/slash-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/slash-square.svg b/node_modules/bootstrap-icons/icons/slash-square.svg new file mode 100644 index 0000000..b066e6c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/slash-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/slash.svg b/node_modules/bootstrap-icons/icons/slash.svg new file mode 100644 index 0000000..eb03fb5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/slash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/sliders.svg b/node_modules/bootstrap-icons/icons/sliders.svg new file mode 100644 index 0000000..a991069 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/sliders.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/soundwave.svg b/node_modules/bootstrap-icons/icons/soundwave.svg new file mode 100644 index 0000000..21fd9d0 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/soundwave.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/speaker.svg b/node_modules/bootstrap-icons/icons/speaker.svg new file mode 100644 index 0000000..8e6afc5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/speaker.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/square-fill.svg b/node_modules/bootstrap-icons/icons/square-fill.svg new file mode 100644 index 0000000..d04fc18 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/square-half.svg b/node_modules/bootstrap-icons/icons/square-half.svg new file mode 100644 index 0000000..1d9b76b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/square-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/square.svg b/node_modules/bootstrap-icons/icons/square.svg new file mode 100644 index 0000000..e9f89f3 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/star-fill.svg b/node_modules/bootstrap-icons/icons/star-fill.svg new file mode 100644 index 0000000..4bebff6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/star-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/star-half.svg b/node_modules/bootstrap-icons/icons/star-half.svg new file mode 100644 index 0000000..7d34d2e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/star-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/star.svg b/node_modules/bootstrap-icons/icons/star.svg new file mode 100644 index 0000000..a382461 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/star.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/stop-fill.svg b/node_modules/bootstrap-icons/icons/stop-fill.svg new file mode 100644 index 0000000..3e1160e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/stop-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/stop.svg b/node_modules/bootstrap-icons/icons/stop.svg new file mode 100644 index 0000000..0221c87 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/stop.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/stopwatch-fill.svg b/node_modules/bootstrap-icons/icons/stopwatch-fill.svg new file mode 100644 index 0000000..d8424cc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/stopwatch-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/stopwatch.svg b/node_modules/bootstrap-icons/icons/stopwatch.svg new file mode 100644 index 0000000..4ec8ed6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/stopwatch.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/subtract.svg b/node_modules/bootstrap-icons/icons/subtract.svg new file mode 100644 index 0000000..8cf743f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/subtract.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/sun.svg b/node_modules/bootstrap-icons/icons/sun.svg new file mode 100644 index 0000000..ee62430 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/sun.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/table.svg b/node_modules/bootstrap-icons/icons/table.svg new file mode 100644 index 0000000..392a47c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/table.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/tablet-landscape.svg b/node_modules/bootstrap-icons/icons/tablet-landscape.svg new file mode 100644 index 0000000..e99d239 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/tablet-landscape.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/tablet.svg b/node_modules/bootstrap-icons/icons/tablet.svg new file mode 100644 index 0000000..2537bda --- /dev/null +++ b/node_modules/bootstrap-icons/icons/tablet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/tag-fill.svg b/node_modules/bootstrap-icons/icons/tag-fill.svg new file mode 100644 index 0000000..4e45dc2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/tag-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/tag.svg b/node_modules/bootstrap-icons/icons/tag.svg new file mode 100644 index 0000000..88fd8ef --- /dev/null +++ b/node_modules/bootstrap-icons/icons/tag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/terminal-fill.svg b/node_modules/bootstrap-icons/icons/terminal-fill.svg new file mode 100644 index 0000000..8aedcae --- /dev/null +++ b/node_modules/bootstrap-icons/icons/terminal-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/terminal.svg b/node_modules/bootstrap-icons/icons/terminal.svg new file mode 100644 index 0000000..3a2b75d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/terminal.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/text-center.svg b/node_modules/bootstrap-icons/icons/text-center.svg new file mode 100644 index 0000000..e1d5048 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/text-center.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/text-indent-left.svg b/node_modules/bootstrap-icons/icons/text-indent-left.svg new file mode 100644 index 0000000..291ac73 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/text-indent-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/text-indent-right.svg b/node_modules/bootstrap-icons/icons/text-indent-right.svg new file mode 100644 index 0000000..2f1a29d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/text-indent-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/text-left.svg b/node_modules/bootstrap-icons/icons/text-left.svg new file mode 100644 index 0000000..840507d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/text-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/text-right.svg b/node_modules/bootstrap-icons/icons/text-right.svg new file mode 100644 index 0000000..8a40407 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/text-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/textarea-t.svg b/node_modules/bootstrap-icons/icons/textarea-t.svg new file mode 100644 index 0000000..bae5dc1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/textarea-t.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/textarea.svg b/node_modules/bootstrap-icons/icons/textarea.svg new file mode 100644 index 0000000..be81e49 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/textarea.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/three-dots-vertical.svg b/node_modules/bootstrap-icons/icons/three-dots-vertical.svg new file mode 100644 index 0000000..011f183 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/three-dots-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/three-dots.svg b/node_modules/bootstrap-icons/icons/three-dots.svg new file mode 100644 index 0000000..adcb358 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/three-dots.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/toggle-off.svg b/node_modules/bootstrap-icons/icons/toggle-off.svg new file mode 100644 index 0000000..f5853ed --- /dev/null +++ b/node_modules/bootstrap-icons/icons/toggle-off.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/toggle-on.svg b/node_modules/bootstrap-icons/icons/toggle-on.svg new file mode 100644 index 0000000..c8d421f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/toggle-on.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/toggles.svg b/node_modules/bootstrap-icons/icons/toggles.svg new file mode 100644 index 0000000..79a7944 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/toggles.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/tools.svg b/node_modules/bootstrap-icons/icons/tools.svg new file mode 100644 index 0000000..e36e806 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/tools.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/trash-fill.svg b/node_modules/bootstrap-icons/icons/trash-fill.svg new file mode 100644 index 0000000..ba8fbac --- /dev/null +++ b/node_modules/bootstrap-icons/icons/trash-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/trash.svg b/node_modules/bootstrap-icons/icons/trash.svg new file mode 100644 index 0000000..b27ae87 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/trash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/trash2-fill.svg b/node_modules/bootstrap-icons/icons/trash2-fill.svg new file mode 100644 index 0000000..f3519cc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/trash2-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/trash2.svg b/node_modules/bootstrap-icons/icons/trash2.svg new file mode 100644 index 0000000..a1dbb0f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/trash2.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/triangle-fill.svg b/node_modules/bootstrap-icons/icons/triangle-fill.svg new file mode 100644 index 0000000..58cb932 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/triangle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/triangle-half.svg b/node_modules/bootstrap-icons/icons/triangle-half.svg new file mode 100644 index 0000000..99dbb0c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/triangle-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/triangle.svg b/node_modules/bootstrap-icons/icons/triangle.svg new file mode 100644 index 0000000..bf92a2d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/triangle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/trophy.svg b/node_modules/bootstrap-icons/icons/trophy.svg new file mode 100644 index 0000000..85db32d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/trophy.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/truck-flatbed.svg b/node_modules/bootstrap-icons/icons/truck-flatbed.svg new file mode 100644 index 0000000..f37fa4f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/truck-flatbed.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/truck.svg b/node_modules/bootstrap-icons/icons/truck.svg new file mode 100644 index 0000000..106786c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/truck.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/tv-fill.svg b/node_modules/bootstrap-icons/icons/tv-fill.svg new file mode 100644 index 0000000..fe1c2cc --- /dev/null +++ b/node_modules/bootstrap-icons/icons/tv-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/tv.svg b/node_modules/bootstrap-icons/icons/tv.svg new file mode 100644 index 0000000..d317898 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/tv.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/type-bold.svg b/node_modules/bootstrap-icons/icons/type-bold.svg new file mode 100644 index 0000000..8a33adf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/type-bold.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/type-h1.svg b/node_modules/bootstrap-icons/icons/type-h1.svg new file mode 100644 index 0000000..694c503 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/type-h1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/type-h2.svg b/node_modules/bootstrap-icons/icons/type-h2.svg new file mode 100644 index 0000000..7837598 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/type-h2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/type-h3.svg b/node_modules/bootstrap-icons/icons/type-h3.svg new file mode 100644 index 0000000..f4f3754 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/type-h3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/type-italic.svg b/node_modules/bootstrap-icons/icons/type-italic.svg new file mode 100644 index 0000000..c5c3b50 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/type-italic.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/type-strikethrough.svg b/node_modules/bootstrap-icons/icons/type-strikethrough.svg new file mode 100644 index 0000000..f2bb159 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/type-strikethrough.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/type-underline.svg b/node_modules/bootstrap-icons/icons/type-underline.svg new file mode 100644 index 0000000..8292c9b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/type-underline.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/type.svg b/node_modules/bootstrap-icons/icons/type.svg new file mode 100644 index 0000000..22aafb4 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/type.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/union.svg b/node_modules/bootstrap-icons/icons/union.svg new file mode 100644 index 0000000..421f45f --- /dev/null +++ b/node_modules/bootstrap-icons/icons/union.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/unlock-fill.svg b/node_modules/bootstrap-icons/icons/unlock-fill.svg new file mode 100644 index 0000000..d465e56 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/unlock-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/unlock.svg b/node_modules/bootstrap-icons/icons/unlock.svg new file mode 100644 index 0000000..0c76643 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/unlock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/upc-scan.svg b/node_modules/bootstrap-icons/icons/upc-scan.svg new file mode 100644 index 0000000..eb9e33b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/upc-scan.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/upc.svg b/node_modules/bootstrap-icons/icons/upc.svg new file mode 100644 index 0000000..7aa2e29 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/upc.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/upload.svg b/node_modules/bootstrap-icons/icons/upload.svg new file mode 100644 index 0000000..c3a5ea1 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/upload.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/view-list.svg b/node_modules/bootstrap-icons/icons/view-list.svg new file mode 100644 index 0000000..6547008 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/view-list.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/view-stacked.svg b/node_modules/bootstrap-icons/icons/view-stacked.svg new file mode 100644 index 0000000..1540e95 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/view-stacked.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/volume-down-fill.svg b/node_modules/bootstrap-icons/icons/volume-down-fill.svg new file mode 100644 index 0000000..adf3744 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/volume-down-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/volume-down.svg b/node_modules/bootstrap-icons/icons/volume-down.svg new file mode 100644 index 0000000..6be6373 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/volume-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/volume-mute-fill.svg b/node_modules/bootstrap-icons/icons/volume-mute-fill.svg new file mode 100644 index 0000000..43d5852 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/volume-mute-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/volume-mute.svg b/node_modules/bootstrap-icons/icons/volume-mute.svg new file mode 100644 index 0000000..b97d1bf --- /dev/null +++ b/node_modules/bootstrap-icons/icons/volume-mute.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/volume-off-fill.svg b/node_modules/bootstrap-icons/icons/volume-off-fill.svg new file mode 100644 index 0000000..db8c0dd --- /dev/null +++ b/node_modules/bootstrap-icons/icons/volume-off-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/volume-off.svg b/node_modules/bootstrap-icons/icons/volume-off.svg new file mode 100644 index 0000000..67c0a74 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/volume-off.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/volume-up-fill.svg b/node_modules/bootstrap-icons/icons/volume-up-fill.svg new file mode 100644 index 0000000..11491e2 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/volume-up-fill.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/volume-up.svg b/node_modules/bootstrap-icons/icons/volume-up.svg new file mode 100644 index 0000000..079929e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/volume-up.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/vr.svg b/node_modules/bootstrap-icons/icons/vr.svg new file mode 100644 index 0000000..971393b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/vr.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/wallet.svg b/node_modules/bootstrap-icons/icons/wallet.svg new file mode 100644 index 0000000..425f0a5 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/wallet.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/wallet2.svg b/node_modules/bootstrap-icons/icons/wallet2.svg new file mode 100644 index 0000000..44d234c --- /dev/null +++ b/node_modules/bootstrap-icons/icons/wallet2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/watch.svg b/node_modules/bootstrap-icons/icons/watch.svg new file mode 100644 index 0000000..1fcca0b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/watch.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/wifi.svg b/node_modules/bootstrap-icons/icons/wifi.svg new file mode 100644 index 0000000..94212db --- /dev/null +++ b/node_modules/bootstrap-icons/icons/wifi.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/window.svg b/node_modules/bootstrap-icons/icons/window.svg new file mode 100644 index 0000000..4e7446a --- /dev/null +++ b/node_modules/bootstrap-icons/icons/window.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/wrench.svg b/node_modules/bootstrap-icons/icons/wrench.svg new file mode 100644 index 0000000..3c32d9e --- /dev/null +++ b/node_modules/bootstrap-icons/icons/wrench.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/x-circle-fill.svg b/node_modules/bootstrap-icons/icons/x-circle-fill.svg new file mode 100644 index 0000000..a7e75c9 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/x-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/x-circle.svg b/node_modules/bootstrap-icons/icons/x-circle.svg new file mode 100644 index 0000000..046066d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/x-circle.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/x-diamond-fill.svg b/node_modules/bootstrap-icons/icons/x-diamond-fill.svg new file mode 100644 index 0000000..907ee39 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/x-diamond-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/x-diamond.svg b/node_modules/bootstrap-icons/icons/x-diamond.svg new file mode 100644 index 0000000..c222924 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/x-diamond.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/x-octagon-fill.svg b/node_modules/bootstrap-icons/icons/x-octagon-fill.svg new file mode 100644 index 0000000..12eca87 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/x-octagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/x-octagon.svg b/node_modules/bootstrap-icons/icons/x-octagon.svg new file mode 100644 index 0000000..8a1d1d6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/x-octagon.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/x-square-fill.svg b/node_modules/bootstrap-icons/icons/x-square-fill.svg new file mode 100644 index 0000000..9aa003b --- /dev/null +++ b/node_modules/bootstrap-icons/icons/x-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/x-square.svg b/node_modules/bootstrap-icons/icons/x-square.svg new file mode 100644 index 0000000..b0a083d --- /dev/null +++ b/node_modules/bootstrap-icons/icons/x-square.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/icons/x.svg b/node_modules/bootstrap-icons/icons/x.svg new file mode 100644 index 0000000..8e3e9b6 --- /dev/null +++ b/node_modules/bootstrap-icons/icons/x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/node_modules/bootstrap-icons/package.json b/node_modules/bootstrap-icons/package.json new file mode 100644 index 0000000..3a0f920 --- /dev/null +++ b/node_modules/bootstrap-icons/package.json @@ -0,0 +1,91 @@ +{ + "_from": "bootstrap-icons@^1.0.0-alpha4", + "_id": "bootstrap-icons@1.0.0-alpha4", + "_inBundle": false, + "_integrity": "sha512-UcpSUPsvUiW7ueBQfXZSgknJv/rj060dglhWIRPjkLjUWa32jMWqsLXO8tXY2od4Ew6cuh0BJ3f8VOhQPVY4mA==", + "_location": "/bootstrap-icons", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "bootstrap-icons@^1.0.0-alpha4", + "name": "bootstrap-icons", + "escapedName": "bootstrap-icons", + "rawSpec": "^1.0.0-alpha4", + "saveSpec": null, + "fetchSpec": "^1.0.0-alpha4" + }, + "_requiredBy": [ + "#USER", + "/" + ], + "_resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.0.0-alpha4.tgz", + "_shasum": "b3eb7ca170696892bce19bf085601d4157831d4e", + "_spec": "bootstrap-icons@^1.0.0-alpha4", + "_where": "/home/lars/.minetest/mods/online_craftguide", + "author": { + "name": "mdo" + }, + "bugs": { + "url": "https://github.com/twbs/icons/issues" + }, + "bundleDependencies": false, + "dependencies": {}, + "deprecated": false, + "description": "Official open source SVG icon library for Bootstrap", + "devDependencies": { + "autoprefixer": "^9.8.0", + "chalk": "^4.0.0", + "cheerio": "^1.0.0-rc.3", + "cross-env": "^7.0.2", + "eslint": "^7.0.0", + "find-unused-sass-variables": "^2.0.0", + "hugo-bin": "^0.59.0", + "js-yaml": "^3.13.1", + "linkinator": "^2.1.1", + "npm-run-all": "^4.1.5", + "postcss-cli": "^7.1.1", + "shx": "^0.3.2", + "stylelint": "^13.4.1", + "stylelint-config-twbs-bootstrap": "^2.0.2", + "svgo": "^1.3.2", + "vnu-jar": "20.3.16" + }, + "engines": { + "node": ">=10" + }, + "files": [ + "icons/*.svg" + ], + "homepage": "https://icons.getbootstrap.com/", + "hugo-bin": { + "buildTags": "extended" + }, + "keywords": [ + "bootstrap", + "icons" + ], + "license": "MIT", + "name": "bootstrap-icons", + "repository": { + "type": "git", + "url": "git+https://github.com/twbs/icons.git" + }, + "scripts": { + "docs-build": "hugo --cleanDestinationDir", + "docs-serve": "hugo server --port 4000 --disableFastRender", + "icons": "node build/build-svgs.js", + "icons-zip": "cross-env-shell \"shx rm -rf bootstrap-icons-$npm_package_version && shx cp -r icons/ bootstrap-icons-$npm_package_version && zip -r9 bootstrap-icons-$npm_package_version.zip bootstrap-icons-$npm_package_version && shx rm -rf bootstrap-icons-$npm_package_version\"", + "netlify": "npm-run-all icons docs-build", + "pages": "node build/build-pages.js", + "publish": "npm-run-all icons docs-build icons-zip", + "start": "npm run docs-serve", + "test": "npm-run-all docs-build --parallel test:*", + "test:eslint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives .", + "test:fusv": "fusv docs/assets/scss/", + "test:linkinator": "linkinator _site --recurse --silent --skip \"^(?!http://localhost)\"", + "test:stylelint": "stylelint docs/assets/scss/ --cache --cache-location node_modules/.cache/.stylelintcache", + "test:vnu": "node build/vnu-jar.js" + }, + "version": "1.0.0-alpha4" +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..2860b5c --- /dev/null +++ b/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "mt_online_craftguide", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "bootstrap-icons": { + "version": "1.0.0-alpha4", + "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.0.0-alpha4.tgz", + "integrity": "sha512-UcpSUPsvUiW7ueBQfXZSgknJv/rj060dglhWIRPjkLjUWa32jMWqsLXO8tXY2od4Ew6cuh0BJ3f8VOhQPVY4mA==" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..a6772ba --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "online_craftguide", + "version": "1.0.0", + "description": "Minetest Online Craftguide", + "repository": { + "type": "git", + "url": "git+https://github.com/appgurueu/online_craftguide.git" + }, + "keywords": [ + "minetest", + "mod", + "craftguide", + "online" + ], + "author": "appguru", + "bugs": { + "url": "https://github.com/appgurueu/online_craftguide/issues" + }, + "homepage": "https://github.com/appgurueu/online_craftguide", + "dependencies": { + "bootstrap-icons": "^1.0.0-alpha4" + } +}