gitextract_f2qo_zll/ ├── .github/ │ └── workflows/ │ └── go.yml ├── LICENSE ├── commands/ │ ├── commands.go │ ├── debug.go │ ├── gc.go │ ├── mem.go │ ├── tick.go │ └── time.go ├── go.mod ├── go.sum ├── main.go ├── properties/ │ ├── decode.go │ ├── encode.go │ └── properties.go ├── protocol/ │ ├── nbt/ │ │ ├── decoder.go │ │ ├── encoder.go │ │ ├── qnbt/ │ │ │ ├── abi.go │ │ │ ├── buffer.go │ │ │ ├── decode.go │ │ │ ├── list.go │ │ │ ├── malloc.go │ │ │ ├── map.go │ │ │ ├── primitive.go │ │ │ ├── qnbt.go │ │ │ └── struct.go │ │ └── staticReader.go │ ├── net/ │ │ ├── authentication.go │ │ ├── cfb8/ │ │ │ └── cfb8.go │ │ ├── config.go │ │ ├── conn.go │ │ ├── encryption.go │ │ ├── io/ │ │ │ ├── buffers/ │ │ │ │ └── buffers.go │ │ │ ├── compress/ │ │ │ │ ├── compress.go │ │ │ │ ├── lz4.go │ │ │ │ └── zlib.go │ │ │ └── encoding/ │ │ │ ├── encoding.go │ │ │ ├── reader.go │ │ │ └── writer.go │ │ ├── listener.go │ │ ├── metadata/ │ │ │ ├── metadata.go │ │ │ └── new.go │ │ ├── packet/ │ │ │ ├── configuration/ │ │ │ │ ├── clientInfo.go │ │ │ │ ├── cookie.go │ │ │ │ ├── disconnect.go │ │ │ │ ├── finish.go │ │ │ │ ├── keepAlive.go │ │ │ │ ├── ping.go │ │ │ │ ├── plugin.go │ │ │ │ ├── registryData.go │ │ │ │ └── resetChat.go │ │ │ ├── handshake/ │ │ │ │ └── handshake.go │ │ │ ├── login/ │ │ │ │ ├── cookie.go │ │ │ │ ├── disconnect.go │ │ │ │ ├── encryption.go │ │ │ │ ├── loginStart.go │ │ │ │ ├── loginSuccess.go │ │ │ │ ├── plugin.go │ │ │ │ └── setCompression.go │ │ │ ├── packet.go │ │ │ ├── play/ │ │ │ │ ├── acknowledgeBlockChange.go │ │ │ │ ├── blockAction.go │ │ │ │ ├── blockEntityData.go │ │ │ │ ├── blockUpdate.go │ │ │ │ ├── bundleDelimiter.go │ │ │ │ ├── changeDifficulty.go │ │ │ │ ├── chatCommand.go │ │ │ │ ├── chatMessage.go │ │ │ │ ├── chunkBatch.go │ │ │ │ ├── chunkData.go │ │ │ │ ├── clickContainer.go │ │ │ │ ├── clientInfo.go │ │ │ │ ├── closeContainer.go │ │ │ │ ├── commands.go │ │ │ │ ├── confirmTeleport.go │ │ │ │ ├── damageEvent.go │ │ │ │ ├── deleteMessage.go │ │ │ │ ├── disconnect.go │ │ │ │ ├── disguisedChatMessage.go │ │ │ │ ├── entityAnimation.go │ │ │ │ ├── entityEvent.go │ │ │ │ ├── entitySoundEffect.go │ │ │ │ ├── gameEvent.go │ │ │ │ ├── hurtAnimation.go │ │ │ │ ├── interact.go │ │ │ │ ├── keepAlive.go │ │ │ │ ├── login.go │ │ │ │ ├── openScreen.go │ │ │ │ ├── playerAbilitiesCB.go │ │ │ │ ├── playerAbilitiesSB.go │ │ │ │ ├── playerChatMessage.go │ │ │ │ ├── playerCommand.go │ │ │ │ ├── playerInfoRemove.go │ │ │ │ ├── playerInfoUpdate.go │ │ │ │ ├── playerSession.go │ │ │ │ ├── plugin.go │ │ │ │ ├── removeEntities.go │ │ │ │ ├── serverData.go │ │ │ │ ├── serverLinks.go │ │ │ │ ├── setCenterChunk.go │ │ │ │ ├── setContainerContent.go │ │ │ │ ├── setCreativeModeSlot.go │ │ │ │ ├── setDefaultSpawnPosition.go │ │ │ │ ├── setEntityMetadata.go │ │ │ │ ├── setEntityVelocity.go │ │ │ │ ├── setHeadRotation.go │ │ │ │ ├── setHeldItemCB.go │ │ │ │ ├── setHeldItemSB.go │ │ │ │ ├── setPlayerOnGround.go │ │ │ │ ├── setPlayerPosition.go │ │ │ │ ├── setPlayerPositionAndRotation.go │ │ │ │ ├── setPlayerRotation.go │ │ │ │ ├── setTickingState.go │ │ │ │ ├── signedChatCommand.go │ │ │ │ ├── soundEffect.go │ │ │ │ ├── spawnEntity.go │ │ │ │ ├── stepTick.go │ │ │ │ ├── swingArm.go │ │ │ │ ├── synchronizePlayerPosition.go │ │ │ │ ├── systemChatMessage.go │ │ │ │ ├── updateEntityPosition.go │ │ │ │ ├── updateEntityPositionAndRotation.go │ │ │ │ ├── updateEntityRotation.go │ │ │ │ ├── updateRecipeBook.go │ │ │ │ ├── updateSectionBlocks.go │ │ │ │ ├── updateTags.go │ │ │ │ ├── updateTime.go │ │ │ │ └── useItemOn.go │ │ │ └── status/ │ │ │ ├── ping.go │ │ │ └── status.go │ │ ├── pool.go │ │ ├── registry/ │ │ │ ├── embed.go │ │ │ └── registry.go │ │ ├── slot/ │ │ │ ├── comp_dec.go │ │ │ └── slot.go │ │ └── tags/ │ │ └── tags.go │ └── text/ │ ├── builder.go │ ├── color.go │ └── text.go ├── readme.md ├── server/ │ ├── command/ │ │ ├── builder.go │ │ ├── command.go │ │ ├── graph.go │ │ └── manager.go │ ├── container/ │ │ └── container.go │ ├── entity/ │ │ ├── entity.go │ │ └── levelEntity.go │ ├── player/ │ │ ├── chunks.go │ │ ├── conn.go │ │ ├── handler_chat_command.go │ │ ├── player.go │ │ ├── playerlist.go │ │ └── state/ │ │ ├── list/ │ │ │ └── playerlist.go │ │ ├── playerEntity.go │ │ └── playerEntityManager.go │ ├── plugin.go │ ├── registry/ │ │ ├── activity.go │ │ ├── armor_material.go │ │ ├── attribute.go │ │ ├── block.go │ │ ├── block_entity_type.go │ │ ├── block_predicate_type.go │ │ ├── block_type.go │ │ ├── cat_variant.go │ │ ├── chunk_status.go │ │ ├── command_argument_type.go │ │ ├── creative_mode_tab.go │ │ ├── custom_stat.go │ │ ├── data_component_type.go │ │ ├── decorated_pot_pattern.go │ │ ├── enchantment_effect_component_type.go │ │ ├── enchantment_entity_effect_type.go │ │ ├── enchantment_level_based_value_type.go │ │ ├── enchantment_location_based_effect_type.go │ │ ├── enchantment_provider_type.go │ │ ├── enchantment_value_effect_type.go │ │ ├── entity_sub_predicate_type.go │ │ ├── entity_type.go │ │ ├── float_provider_type.go │ │ ├── fluid.go │ │ ├── frog_variant.go │ │ ├── game_event.go │ │ ├── height_provider_type.go │ │ ├── instrument.go │ │ ├── int_provider_type.go │ │ ├── item.go │ │ ├── item_sub_predicate_type.go │ │ ├── loot_condition_type.go │ │ ├── loot_function_type.go │ │ ├── loot_nbt_provider_type.go │ │ ├── loot_number_provider_type.go │ │ ├── loot_pool_entry_type.go │ │ ├── loot_score_provider_type.go │ │ ├── map_decoration_type.go │ │ ├── memory_module_type.go │ │ ├── menu.go │ │ ├── mob_effect.go │ │ ├── number_format_type.go │ │ ├── particle_type.go │ │ ├── point_of_interest_type.go │ │ ├── pos_rule_test.go │ │ ├── position_source_type.go │ │ ├── potion.go │ │ ├── recipe_serializer.go │ │ ├── recipe_type.go │ │ ├── registry.go │ │ ├── rule_block_entity_modifier.go │ │ ├── rule_test.go │ │ ├── schedule.go │ │ ├── sensor_type.go │ │ ├── sound_event.go │ │ ├── stat_type.go │ │ ├── trigger_type.go │ │ ├── villager_profession.go │ │ ├── villager_type.go │ │ ├── worldgen_biome_source.go │ │ ├── worldgen_block_state_provider_type.go │ │ ├── worldgen_carver.go │ │ ├── worldgen_chunk_generator.go │ │ ├── worldgen_density_function_type.go │ │ ├── worldgen_feature.go │ │ ├── worldgen_feature_size_type.go │ │ ├── worldgen_foliage_placer_type.go │ │ ├── worldgen_material_condition.go │ │ ├── worldgen_material_rule.go │ │ ├── worldgen_placement_modifier_type.go │ │ ├── worldgen_pool_alias_binding.go │ │ ├── worldgen_root_placer_type.go │ │ ├── worldgen_structure_piece.go │ │ ├── worldgen_structure_placement.go │ │ ├── worldgen_structure_pool_element.go │ │ ├── worldgen_structure_processor.go │ │ ├── worldgen_structure_type.go │ │ ├── worldgen_tree_decorator_type.go │ │ └── worldgen_trunk_placer_type.go │ ├── server.go │ ├── tick/ │ │ └── tick.go │ └── world/ │ ├── block/ │ │ ├── 0block.go │ │ ├── acaciaButton.go │ │ ├── acaciaDoor.go │ │ ├── acaciaFence.go │ │ ├── acaciaFenceGate.go │ │ ├── acaciaHangingSign.go │ │ ├── acaciaLeaves.go │ │ ├── acaciaLog.go │ │ ├── acaciaPlanks.go │ │ ├── acaciaPressurePlate.go │ │ ├── acaciaSapling.go │ │ ├── acaciaSign.go │ │ ├── acaciaSlab.go │ │ ├── acaciaStairs.go │ │ ├── acaciaTrapdoor.go │ │ ├── acaciaWallHangingSign.go │ │ ├── acaciaWallSign.go │ │ ├── acaciaWood.go │ │ ├── activatorRail.go │ │ ├── air.go │ │ ├── allium.go │ │ ├── amethystBlock.go │ │ ├── amethystCluster.go │ │ ├── ancientDebris.go │ │ ├── andesite.go │ │ ├── andesiteSlab.go │ │ ├── andesiteStairs.go │ │ ├── andesiteWall.go │ │ ├── anvil.go │ │ ├── attachedMelonStem.go │ │ ├── attachedPumpkinStem.go │ │ ├── azalea.go │ │ ├── azaleaLeaves.go │ │ ├── azureBluet.go │ │ ├── bamboo.go │ │ ├── bambooBlock.go │ │ ├── bambooButton.go │ │ ├── bambooDoor.go │ │ ├── bambooFence.go │ │ ├── bambooFenceGate.go │ │ ├── bambooHangingSign.go │ │ ├── bambooMosaic.go │ │ ├── bambooMosaicSlab.go │ │ ├── bambooMosaicStairs.go │ │ ├── bambooPlanks.go │ │ ├── bambooPressurePlate.go │ │ ├── bambooSapling.go │ │ ├── bambooSign.go │ │ ├── bambooSlab.go │ │ ├── bambooStairs.go │ │ ├── bambooTrapdoor.go │ │ ├── bambooWallHangingSign.go │ │ ├── bambooWallSign.go │ │ ├── barrel.go │ │ ├── barrier.go │ │ ├── basalt.go │ │ ├── beacon.go │ │ ├── bedrock.go │ │ ├── beeNest.go │ │ ├── beehive.go │ │ ├── beetroots.go │ │ ├── bell.go │ │ ├── bigDripleaf.go │ │ ├── bigDripleafStem.go │ │ ├── birchButton.go │ │ ├── birchDoor.go │ │ ├── birchFence.go │ │ ├── birchFenceGate.go │ │ ├── birchHangingSign.go │ │ ├── birchLeaves.go │ │ ├── birchLog.go │ │ ├── birchPlanks.go │ │ ├── birchPressurePlate.go │ │ ├── birchSapling.go │ │ ├── birchSign.go │ │ ├── birchSlab.go │ │ ├── birchStairs.go │ │ ├── birchTrapdoor.go │ │ ├── birchWallHangingSign.go │ │ ├── birchWallSign.go │ │ ├── birchWood.go │ │ ├── blackBanner.go │ │ ├── blackBed.go │ │ ├── blackCandle.go │ │ ├── blackCandleCake.go │ │ ├── blackCarpet.go │ │ ├── blackConcrete.go │ │ ├── blackConcretePowder.go │ │ ├── blackGlazedTerracotta.go │ │ ├── blackShulkerBox.go │ │ ├── blackStainedGlass.go │ │ ├── blackStainedGlassPane.go │ │ ├── blackTerracotta.go │ │ ├── blackWallBanner.go │ │ ├── blackWool.go │ │ ├── blackstone.go │ │ ├── blackstoneSlab.go │ │ ├── blackstoneStairs.go │ │ ├── blackstoneWall.go │ │ ├── blastFurnace.go │ │ ├── blueBanner.go │ │ ├── blueBed.go │ │ ├── blueCandle.go │ │ ├── blueCandleCake.go │ │ ├── blueCarpet.go │ │ ├── blueConcrete.go │ │ ├── blueConcretePowder.go │ │ ├── blueGlazedTerracotta.go │ │ ├── blueIce.go │ │ ├── blueOrchid.go │ │ ├── blueShulkerBox.go │ │ ├── blueStainedGlass.go │ │ ├── blueStainedGlassPane.go │ │ ├── blueTerracotta.go │ │ ├── blueWallBanner.go │ │ ├── blueWool.go │ │ ├── boneBlock.go │ │ ├── bookshelf.go │ │ ├── brainCoral.go │ │ ├── brainCoralBlock.go │ │ ├── brainCoralFan.go │ │ ├── brainCoralWallFan.go │ │ ├── brewingStand.go │ │ ├── brickSlab.go │ │ ├── brickStairs.go │ │ ├── brickWall.go │ │ ├── bricks.go │ │ ├── brownBanner.go │ │ ├── brownBed.go │ │ ├── brownCandle.go │ │ ├── brownCandleCake.go │ │ ├── brownCarpet.go │ │ ├── brownConcrete.go │ │ ├── brownConcretePowder.go │ │ ├── brownGlazedTerracotta.go │ │ ├── brownMushroom.go │ │ ├── brownMushroomBlock.go │ │ ├── brownShulkerBox.go │ │ ├── brownStainedGlass.go │ │ ├── brownStainedGlassPane.go │ │ ├── brownTerracotta.go │ │ ├── brownWallBanner.go │ │ ├── brownWool.go │ │ ├── bubbleColumn.go │ │ ├── bubbleCoral.go │ │ ├── bubbleCoralBlock.go │ │ ├── bubbleCoralFan.go │ │ ├── bubbleCoralWallFan.go │ │ ├── buddingAmethyst.go │ │ ├── cactus.go │ │ ├── cake.go │ │ ├── calcite.go │ │ ├── calibratedSculkSensor.go │ │ ├── campfire.go │ │ ├── candle.go │ │ ├── candleCake.go │ │ ├── carrots.go │ │ ├── cartographyTable.go │ │ ├── carvedPumpkin.go │ │ ├── cauldron.go │ │ ├── caveAir.go │ │ ├── caveVines.go │ │ ├── caveVinesPlant.go │ │ ├── chain.go │ │ ├── chainCommandBlock.go │ │ ├── cherryButton.go │ │ ├── cherryDoor.go │ │ ├── cherryFence.go │ │ ├── cherryFenceGate.go │ │ ├── cherryHangingSign.go │ │ ├── cherryLeaves.go │ │ ├── cherryLog.go │ │ ├── cherryPlanks.go │ │ ├── cherryPressurePlate.go │ │ ├── cherrySapling.go │ │ ├── cherrySign.go │ │ ├── cherrySlab.go │ │ ├── cherryStairs.go │ │ ├── cherryTrapdoor.go │ │ ├── cherryWallHangingSign.go │ │ ├── cherryWallSign.go │ │ ├── cherryWood.go │ │ ├── chest.go │ │ ├── chippedAnvil.go │ │ ├── chiseledBookshelf.go │ │ ├── chiseledCopper.go │ │ ├── chiseledDeepslate.go │ │ ├── chiseledNetherBricks.go │ │ ├── chiseledPolishedBlackstone.go │ │ ├── chiseledQuartzBlock.go │ │ ├── chiseledRedSandstone.go │ │ ├── chiseledSandstone.go │ │ ├── chiseledStoneBricks.go │ │ ├── chiseledTuff.go │ │ ├── chiseledTuffBricks.go │ │ ├── chorusFlower.go │ │ ├── chorusPlant.go │ │ ├── clay.go │ │ ├── coalBlock.go │ │ ├── coalOre.go │ │ ├── coarseDirt.go │ │ ├── cobbledDeepslate.go │ │ ├── cobbledDeepslateSlab.go │ │ ├── cobbledDeepslateStairs.go │ │ ├── cobbledDeepslateWall.go │ │ ├── cobblestone.go │ │ ├── cobblestoneSlab.go │ │ ├── cobblestoneStairs.go │ │ ├── cobblestoneWall.go │ │ ├── cobweb.go │ │ ├── cocoa.go │ │ ├── commandBlock.go │ │ ├── comparator.go │ │ ├── composter.go │ │ ├── conduit.go │ │ ├── copperBlock.go │ │ ├── copperBulb.go │ │ ├── copperDoor.go │ │ ├── copperGrate.go │ │ ├── copperOre.go │ │ ├── copperTrapdoor.go │ │ ├── cornflower.go │ │ ├── crackedDeepslateBricks.go │ │ ├── crackedDeepslateTiles.go │ │ ├── crackedNetherBricks.go │ │ ├── crackedPolishedBlackstoneBricks.go │ │ ├── crackedStoneBricks.go │ │ ├── crafter.go │ │ ├── craftingTable.go │ │ ├── creeperHead.go │ │ ├── creeperWallHead.go │ │ ├── crimsonButton.go │ │ ├── crimsonDoor.go │ │ ├── crimsonFence.go │ │ ├── crimsonFenceGate.go │ │ ├── crimsonFungus.go │ │ ├── crimsonHangingSign.go │ │ ├── crimsonHyphae.go │ │ ├── crimsonNylium.go │ │ ├── crimsonPlanks.go │ │ ├── crimsonPressurePlate.go │ │ ├── crimsonRoots.go │ │ ├── crimsonSign.go │ │ ├── crimsonSlab.go │ │ ├── crimsonStairs.go │ │ ├── crimsonStem.go │ │ ├── crimsonTrapdoor.go │ │ ├── crimsonWallHangingSign.go │ │ ├── crimsonWallSign.go │ │ ├── cryingObsidian.go │ │ ├── cutCopper.go │ │ ├── cutCopperSlab.go │ │ ├── cutCopperStairs.go │ │ ├── cutRedSandstone.go │ │ ├── cutRedSandstoneSlab.go │ │ ├── cutSandstone.go │ │ ├── cutSandstoneSlab.go │ │ ├── cyanBanner.go │ │ ├── cyanBed.go │ │ ├── cyanCandle.go │ │ ├── cyanCandleCake.go │ │ ├── cyanCarpet.go │ │ ├── cyanConcrete.go │ │ ├── cyanConcretePowder.go │ │ ├── cyanGlazedTerracotta.go │ │ ├── cyanShulkerBox.go │ │ ├── cyanStainedGlass.go │ │ ├── cyanStainedGlassPane.go │ │ ├── cyanTerracotta.go │ │ ├── cyanWallBanner.go │ │ ├── cyanWool.go │ │ ├── damagedAnvil.go │ │ ├── dandelion.go │ │ ├── darkOakButton.go │ │ ├── darkOakDoor.go │ │ ├── darkOakFence.go │ │ ├── darkOakFenceGate.go │ │ ├── darkOakHangingSign.go │ │ ├── darkOakLeaves.go │ │ ├── darkOakLog.go │ │ ├── darkOakPlanks.go │ │ ├── darkOakPressurePlate.go │ │ ├── darkOakSapling.go │ │ ├── darkOakSign.go │ │ ├── darkOakSlab.go │ │ ├── darkOakStairs.go │ │ ├── darkOakTrapdoor.go │ │ ├── darkOakWallHangingSign.go │ │ ├── darkOakWallSign.go │ │ ├── darkOakWood.go │ │ ├── darkPrismarine.go │ │ ├── darkPrismarineSlab.go │ │ ├── darkPrismarineStairs.go │ │ ├── daylightDetector.go │ │ ├── deadBrainCoral.go │ │ ├── deadBrainCoralBlock.go │ │ ├── deadBrainCoralFan.go │ │ ├── deadBrainCoralWallFan.go │ │ ├── deadBubbleCoral.go │ │ ├── deadBubbleCoralBlock.go │ │ ├── deadBubbleCoralFan.go │ │ ├── deadBubbleCoralWallFan.go │ │ ├── deadBush.go │ │ ├── deadFireCoral.go │ │ ├── deadFireCoralBlock.go │ │ ├── deadFireCoralFan.go │ │ ├── deadFireCoralWallFan.go │ │ ├── deadHornCoral.go │ │ ├── deadHornCoralBlock.go │ │ ├── deadHornCoralFan.go │ │ ├── deadHornCoralWallFan.go │ │ ├── deadTubeCoral.go │ │ ├── deadTubeCoralBlock.go │ │ ├── deadTubeCoralFan.go │ │ ├── deadTubeCoralWallFan.go │ │ ├── decoratedPot.go │ │ ├── deepslate.go │ │ ├── deepslateBrickSlab.go │ │ ├── deepslateBrickStairs.go │ │ ├── deepslateBrickWall.go │ │ ├── deepslateBricks.go │ │ ├── deepslateCoalOre.go │ │ ├── deepslateCopperOre.go │ │ ├── deepslateDiamondOre.go │ │ ├── deepslateEmeraldOre.go │ │ ├── deepslateGoldOre.go │ │ ├── deepslateIronOre.go │ │ ├── deepslateLapisOre.go │ │ ├── deepslateRedstoneOre.go │ │ ├── deepslateTileSlab.go │ │ ├── deepslateTileStairs.go │ │ ├── deepslateTileWall.go │ │ ├── deepslateTiles.go │ │ ├── detectorRail.go │ │ ├── diamondBlock.go │ │ ├── diamondOre.go │ │ ├── diorite.go │ │ ├── dioriteSlab.go │ │ ├── dioriteStairs.go │ │ ├── dioriteWall.go │ │ ├── dirt.go │ │ ├── dirtPath.go │ │ ├── dispenser.go │ │ ├── dragonEgg.go │ │ ├── dragonHead.go │ │ ├── dragonWallHead.go │ │ ├── driedKelpBlock.go │ │ ├── dripstoneBlock.go │ │ ├── dropper.go │ │ ├── emeraldBlock.go │ │ ├── emeraldOre.go │ │ ├── enchantingTable.go │ │ ├── endGateway.go │ │ ├── endPortal.go │ │ ├── endPortalFrame.go │ │ ├── endRod.go │ │ ├── endStone.go │ │ ├── endStoneBrickSlab.go │ │ ├── endStoneBrickStairs.go │ │ ├── endStoneBrickWall.go │ │ ├── endStoneBricks.go │ │ ├── enderChest.go │ │ ├── exposedChiseledCopper.go │ │ ├── exposedCopper.go │ │ ├── exposedCopperBulb.go │ │ ├── exposedCopperDoor.go │ │ ├── exposedCopperGrate.go │ │ ├── exposedCopperTrapdoor.go │ │ ├── exposedCutCopper.go │ │ ├── exposedCutCopperSlab.go │ │ ├── exposedCutCopperStairs.go │ │ ├── farmland.go │ │ ├── fern.go │ │ ├── fire.go │ │ ├── fireCoral.go │ │ ├── fireCoralBlock.go │ │ ├── fireCoralFan.go │ │ ├── fireCoralWallFan.go │ │ ├── fletchingTable.go │ │ ├── flowerPot.go │ │ ├── floweringAzalea.go │ │ ├── floweringAzaleaLeaves.go │ │ ├── frogspawn.go │ │ ├── frostedIce.go │ │ ├── furnace.go │ │ ├── gildedBlackstone.go │ │ ├── glass.go │ │ ├── glassPane.go │ │ ├── glowLichen.go │ │ ├── glowstone.go │ │ ├── goldBlock.go │ │ ├── goldOre.go │ │ ├── granite.go │ │ ├── graniteSlab.go │ │ ├── graniteStairs.go │ │ ├── graniteWall.go │ │ ├── grassBlock.go │ │ ├── gravel.go │ │ ├── grayBanner.go │ │ ├── grayBed.go │ │ ├── grayCandle.go │ │ ├── grayCandleCake.go │ │ ├── grayCarpet.go │ │ ├── grayConcrete.go │ │ ├── grayConcretePowder.go │ │ ├── grayGlazedTerracotta.go │ │ ├── grayShulkerBox.go │ │ ├── grayStainedGlass.go │ │ ├── grayStainedGlassPane.go │ │ ├── grayTerracotta.go │ │ ├── grayWallBanner.go │ │ ├── grayWool.go │ │ ├── greenBanner.go │ │ ├── greenBed.go │ │ ├── greenCandle.go │ │ ├── greenCandleCake.go │ │ ├── greenCarpet.go │ │ ├── greenConcrete.go │ │ ├── greenConcretePowder.go │ │ ├── greenGlazedTerracotta.go │ │ ├── greenShulkerBox.go │ │ ├── greenStainedGlass.go │ │ ├── greenStainedGlassPane.go │ │ ├── greenTerracotta.go │ │ ├── greenWallBanner.go │ │ ├── greenWool.go │ │ ├── grindstone.go │ │ ├── hangingRoots.go │ │ ├── hayBlock.go │ │ ├── heavyCore.go │ │ ├── heavyWeightedPressurePlate.go │ │ ├── honeyBlock.go │ │ ├── honeycombBlock.go │ │ ├── hopper.go │ │ ├── hornCoral.go │ │ ├── hornCoralBlock.go │ │ ├── hornCoralFan.go │ │ ├── hornCoralWallFan.go │ │ ├── ice.go │ │ ├── infestedChiseledStoneBricks.go │ │ ├── infestedCobblestone.go │ │ ├── infestedCrackedStoneBricks.go │ │ ├── infestedDeepslate.go │ │ ├── infestedMossyStoneBricks.go │ │ ├── infestedStone.go │ │ ├── infestedStoneBricks.go │ │ ├── ironBars.go │ │ ├── ironBlock.go │ │ ├── ironDoor.go │ │ ├── ironOre.go │ │ ├── ironTrapdoor.go │ │ ├── jackOLantern.go │ │ ├── jigsaw.go │ │ ├── jukebox.go │ │ ├── jungleButton.go │ │ ├── jungleDoor.go │ │ ├── jungleFence.go │ │ ├── jungleFenceGate.go │ │ ├── jungleHangingSign.go │ │ ├── jungleLeaves.go │ │ ├── jungleLog.go │ │ ├── junglePlanks.go │ │ ├── junglePressurePlate.go │ │ ├── jungleSapling.go │ │ ├── jungleSign.go │ │ ├── jungleSlab.go │ │ ├── jungleStairs.go │ │ ├── jungleTrapdoor.go │ │ ├── jungleWallHangingSign.go │ │ ├── jungleWallSign.go │ │ ├── jungleWood.go │ │ ├── kelp.go │ │ ├── kelpPlant.go │ │ ├── ladder.go │ │ ├── lantern.go │ │ ├── lapisBlock.go │ │ ├── lapisOre.go │ │ ├── largeAmethystBud.go │ │ ├── largeFern.go │ │ ├── lava.go │ │ ├── lavaCauldron.go │ │ ├── lectern.go │ │ ├── lever.go │ │ ├── light.go │ │ ├── lightBlueBanner.go │ │ ├── lightBlueBed.go │ │ ├── lightBlueCandle.go │ │ ├── lightBlueCandleCake.go │ │ ├── lightBlueCarpet.go │ │ ├── lightBlueConcrete.go │ │ ├── lightBlueConcretePowder.go │ │ ├── lightBlueGlazedTerracotta.go │ │ ├── lightBlueShulkerBox.go │ │ ├── lightBlueStainedGlass.go │ │ ├── lightBlueStainedGlassPane.go │ │ ├── lightBlueTerracotta.go │ │ ├── lightBlueWallBanner.go │ │ ├── lightBlueWool.go │ │ ├── lightGrayBanner.go │ │ ├── lightGrayBed.go │ │ ├── lightGrayCandle.go │ │ ├── lightGrayCandleCake.go │ │ ├── lightGrayCarpet.go │ │ ├── lightGrayConcrete.go │ │ ├── lightGrayConcretePowder.go │ │ ├── lightGrayGlazedTerracotta.go │ │ ├── lightGrayShulkerBox.go │ │ ├── lightGrayStainedGlass.go │ │ ├── lightGrayStainedGlassPane.go │ │ ├── lightGrayTerracotta.go │ │ ├── lightGrayWallBanner.go │ │ ├── lightGrayWool.go │ │ ├── lightWeightedPressurePlate.go │ │ ├── lightningRod.go │ │ ├── lilac.go │ │ ├── lilyOfTheValley.go │ │ ├── lilyPad.go │ │ ├── limeBanner.go │ │ ├── limeBed.go │ │ ├── limeCandle.go │ │ ├── limeCandleCake.go │ │ ├── limeCarpet.go │ │ ├── limeConcrete.go │ │ ├── limeConcretePowder.go │ │ ├── limeGlazedTerracotta.go │ │ ├── limeShulkerBox.go │ │ ├── limeStainedGlass.go │ │ ├── limeStainedGlassPane.go │ │ ├── limeTerracotta.go │ │ ├── limeWallBanner.go │ │ ├── limeWool.go │ │ ├── lodestone.go │ │ ├── loom.go │ │ ├── magentaBanner.go │ │ ├── magentaBed.go │ │ ├── magentaCandle.go │ │ ├── magentaCandleCake.go │ │ ├── magentaCarpet.go │ │ ├── magentaConcrete.go │ │ ├── magentaConcretePowder.go │ │ ├── magentaGlazedTerracotta.go │ │ ├── magentaShulkerBox.go │ │ ├── magentaStainedGlass.go │ │ ├── magentaStainedGlassPane.go │ │ ├── magentaTerracotta.go │ │ ├── magentaWallBanner.go │ │ ├── magentaWool.go │ │ ├── magmaBlock.go │ │ ├── mangroveButton.go │ │ ├── mangroveDoor.go │ │ ├── mangroveFence.go │ │ ├── mangroveFenceGate.go │ │ ├── mangroveHangingSign.go │ │ ├── mangroveLeaves.go │ │ ├── mangroveLog.go │ │ ├── mangrovePlanks.go │ │ ├── mangrovePressurePlate.go │ │ ├── mangrovePropagule.go │ │ ├── mangroveRoots.go │ │ ├── mangroveSign.go │ │ ├── mangroveSlab.go │ │ ├── mangroveStairs.go │ │ ├── mangroveTrapdoor.go │ │ ├── mangroveWallHangingSign.go │ │ ├── mangroveWallSign.go │ │ ├── mangroveWood.go │ │ ├── mediumAmethystBud.go │ │ ├── melon.go │ │ ├── melonStem.go │ │ ├── mossBlock.go │ │ ├── mossCarpet.go │ │ ├── mossyCobblestone.go │ │ ├── mossyCobblestoneSlab.go │ │ ├── mossyCobblestoneStairs.go │ │ ├── mossyCobblestoneWall.go │ │ ├── mossyStoneBrickSlab.go │ │ ├── mossyStoneBrickStairs.go │ │ ├── mossyStoneBrickWall.go │ │ ├── mossyStoneBricks.go │ │ ├── movingPiston.go │ │ ├── mud.go │ │ ├── mudBrickSlab.go │ │ ├── mudBrickStairs.go │ │ ├── mudBrickWall.go │ │ ├── mudBricks.go │ │ ├── muddyMangroveRoots.go │ │ ├── mushroomStem.go │ │ ├── mycelium.go │ │ ├── netherBrickFence.go │ │ ├── netherBrickSlab.go │ │ ├── netherBrickStairs.go │ │ ├── netherBrickWall.go │ │ ├── netherBricks.go │ │ ├── netherGoldOre.go │ │ ├── netherPortal.go │ │ ├── netherQuartzOre.go │ │ ├── netherSprouts.go │ │ ├── netherWart.go │ │ ├── netherWartBlock.go │ │ ├── netheriteBlock.go │ │ ├── netherrack.go │ │ ├── noteBlock.go │ │ ├── oakButton.go │ │ ├── oakDoor.go │ │ ├── oakFence.go │ │ ├── oakFenceGate.go │ │ ├── oakHangingSign.go │ │ ├── oakLeaves.go │ │ ├── oakLog.go │ │ ├── oakPlanks.go │ │ ├── oakPressurePlate.go │ │ ├── oakSapling.go │ │ ├── oakSign.go │ │ ├── oakSlab.go │ │ ├── oakStairs.go │ │ ├── oakTrapdoor.go │ │ ├── oakWallHangingSign.go │ │ ├── oakWallSign.go │ │ ├── oakWood.go │ │ ├── observer.go │ │ ├── obsidian.go │ │ ├── ochreFroglight.go │ │ ├── orangeBanner.go │ │ ├── orangeBed.go │ │ ├── orangeCandle.go │ │ ├── orangeCandleCake.go │ │ ├── orangeCarpet.go │ │ ├── orangeConcrete.go │ │ ├── orangeConcretePowder.go │ │ ├── orangeGlazedTerracotta.go │ │ ├── orangeShulkerBox.go │ │ ├── orangeStainedGlass.go │ │ ├── orangeStainedGlassPane.go │ │ ├── orangeTerracotta.go │ │ ├── orangeTulip.go │ │ ├── orangeWallBanner.go │ │ ├── orangeWool.go │ │ ├── oxeyeDaisy.go │ │ ├── oxidizedChiseledCopper.go │ │ ├── oxidizedCopper.go │ │ ├── oxidizedCopperBulb.go │ │ ├── oxidizedCopperDoor.go │ │ ├── oxidizedCopperGrate.go │ │ ├── oxidizedCopperTrapdoor.go │ │ ├── oxidizedCutCopper.go │ │ ├── oxidizedCutCopperSlab.go │ │ ├── oxidizedCutCopperStairs.go │ │ ├── packedIce.go │ │ ├── packedMud.go │ │ ├── pearlescentFroglight.go │ │ ├── peony.go │ │ ├── petrifiedOakSlab.go │ │ ├── piglinHead.go │ │ ├── piglinWallHead.go │ │ ├── pinkBanner.go │ │ ├── pinkBed.go │ │ ├── pinkCandle.go │ │ ├── pinkCandleCake.go │ │ ├── pinkCarpet.go │ │ ├── pinkConcrete.go │ │ ├── pinkConcretePowder.go │ │ ├── pinkGlazedTerracotta.go │ │ ├── pinkPetals.go │ │ ├── pinkShulkerBox.go │ │ ├── pinkStainedGlass.go │ │ ├── pinkStainedGlassPane.go │ │ ├── pinkTerracotta.go │ │ ├── pinkTulip.go │ │ ├── pinkWallBanner.go │ │ ├── pinkWool.go │ │ ├── piston.go │ │ ├── pistonHead.go │ │ ├── pitcherCrop.go │ │ ├── pitcherPlant.go │ │ ├── playerHead.go │ │ ├── playerWallHead.go │ │ ├── podzol.go │ │ ├── pointedDripstone.go │ │ ├── polishedAndesite.go │ │ ├── polishedAndesiteSlab.go │ │ ├── polishedAndesiteStairs.go │ │ ├── polishedBasalt.go │ │ ├── polishedBlackstone.go │ │ ├── polishedBlackstoneBrickSlab.go │ │ ├── polishedBlackstoneBrickStairs.go │ │ ├── polishedBlackstoneBrickWall.go │ │ ├── polishedBlackstoneBricks.go │ │ ├── polishedBlackstoneButton.go │ │ ├── polishedBlackstonePressurePlate.go │ │ ├── polishedBlackstoneSlab.go │ │ ├── polishedBlackstoneStairs.go │ │ ├── polishedBlackstoneWall.go │ │ ├── polishedDeepslate.go │ │ ├── polishedDeepslateSlab.go │ │ ├── polishedDeepslateStairs.go │ │ ├── polishedDeepslateWall.go │ │ ├── polishedDiorite.go │ │ ├── polishedDioriteSlab.go │ │ ├── polishedDioriteStairs.go │ │ ├── polishedGranite.go │ │ ├── polishedGraniteSlab.go │ │ ├── polishedGraniteStairs.go │ │ ├── polishedTuff.go │ │ ├── polishedTuffSlab.go │ │ ├── polishedTuffStairs.go │ │ ├── polishedTuffWall.go │ │ ├── poppy.go │ │ ├── pos/ │ │ │ └── pos.go │ │ ├── potatoes.go │ │ ├── pottedAcaciaSapling.go │ │ ├── pottedAllium.go │ │ ├── pottedAzaleaBush.go │ │ ├── pottedAzureBluet.go │ │ ├── pottedBamboo.go │ │ ├── pottedBirchSapling.go │ │ ├── pottedBlueOrchid.go │ │ ├── pottedBrownMushroom.go │ │ ├── pottedCactus.go │ │ ├── pottedCherrySapling.go │ │ ├── pottedCornflower.go │ │ ├── pottedCrimsonFungus.go │ │ ├── pottedCrimsonRoots.go │ │ ├── pottedDandelion.go │ │ ├── pottedDarkOakSapling.go │ │ ├── pottedDeadBush.go │ │ ├── pottedFern.go │ │ ├── pottedFloweringAzaleaBush.go │ │ ├── pottedJungleSapling.go │ │ ├── pottedLilyOfTheValley.go │ │ ├── pottedMangrovePropagule.go │ │ ├── pottedOakSapling.go │ │ ├── pottedOrangeTulip.go │ │ ├── pottedOxeyeDaisy.go │ │ ├── pottedPinkTulip.go │ │ ├── pottedPoppy.go │ │ ├── pottedRedMushroom.go │ │ ├── pottedRedTulip.go │ │ ├── pottedSpruceSapling.go │ │ ├── pottedTorchflower.go │ │ ├── pottedWarpedFungus.go │ │ ├── pottedWarpedRoots.go │ │ ├── pottedWhiteTulip.go │ │ ├── pottedWitherRose.go │ │ ├── powderSnow.go │ │ ├── powderSnowCauldron.go │ │ ├── poweredRail.go │ │ ├── prismarine.go │ │ ├── prismarineBrickSlab.go │ │ ├── prismarineBrickStairs.go │ │ ├── prismarineBricks.go │ │ ├── prismarineSlab.go │ │ ├── prismarineStairs.go │ │ ├── prismarineWall.go │ │ ├── pumpkin.go │ │ ├── pumpkinStem.go │ │ ├── purpleBanner.go │ │ ├── purpleBed.go │ │ ├── purpleCandle.go │ │ ├── purpleCandleCake.go │ │ ├── purpleCarpet.go │ │ ├── purpleConcrete.go │ │ ├── purpleConcretePowder.go │ │ ├── purpleGlazedTerracotta.go │ │ ├── purpleShulkerBox.go │ │ ├── purpleStainedGlass.go │ │ ├── purpleStainedGlassPane.go │ │ ├── purpleTerracotta.go │ │ ├── purpleWallBanner.go │ │ ├── purpleWool.go │ │ ├── purpurBlock.go │ │ ├── purpurPillar.go │ │ ├── purpurSlab.go │ │ ├── purpurStairs.go │ │ ├── quartzBlock.go │ │ ├── quartzBricks.go │ │ ├── quartzPillar.go │ │ ├── quartzSlab.go │ │ ├── quartzStairs.go │ │ ├── rail.go │ │ ├── rawCopperBlock.go │ │ ├── rawGoldBlock.go │ │ ├── rawIronBlock.go │ │ ├── redBanner.go │ │ ├── redBed.go │ │ ├── redCandle.go │ │ ├── redCandleCake.go │ │ ├── redCarpet.go │ │ ├── redConcrete.go │ │ ├── redConcretePowder.go │ │ ├── redGlazedTerracotta.go │ │ ├── redMushroom.go │ │ ├── redMushroomBlock.go │ │ ├── redNetherBrickSlab.go │ │ ├── redNetherBrickStairs.go │ │ ├── redNetherBrickWall.go │ │ ├── redNetherBricks.go │ │ ├── redSand.go │ │ ├── redSandstone.go │ │ ├── redSandstoneSlab.go │ │ ├── redSandstoneStairs.go │ │ ├── redSandstoneWall.go │ │ ├── redShulkerBox.go │ │ ├── redStainedGlass.go │ │ ├── redStainedGlassPane.go │ │ ├── redTerracotta.go │ │ ├── redTulip.go │ │ ├── redWallBanner.go │ │ ├── redWool.go │ │ ├── redstoneBlock.go │ │ ├── redstoneLamp.go │ │ ├── redstoneOre.go │ │ ├── redstoneTorch.go │ │ ├── redstoneWallTorch.go │ │ ├── redstoneWire.go │ │ ├── reinforcedDeepslate.go │ │ ├── repeater.go │ │ ├── repeatingCommandBlock.go │ │ ├── respawnAnchor.go │ │ ├── rootedDirt.go │ │ ├── roseBush.go │ │ ├── sand.go │ │ ├── sandstone.go │ │ ├── sandstoneSlab.go │ │ ├── sandstoneStairs.go │ │ ├── sandstoneWall.go │ │ ├── scaffolding.go │ │ ├── sculk.go │ │ ├── sculkCatalyst.go │ │ ├── sculkSensor.go │ │ ├── sculkShrieker.go │ │ ├── sculkVein.go │ │ ├── seaLantern.go │ │ ├── seaPickle.go │ │ ├── seagrass.go │ │ ├── shortGrass.go │ │ ├── shroomlight.go │ │ ├── shulkerBox.go │ │ ├── skeletonSkull.go │ │ ├── skeletonWallSkull.go │ │ ├── slimeBlock.go │ │ ├── smallAmethystBud.go │ │ ├── smallDripleaf.go │ │ ├── smithingTable.go │ │ ├── smoker.go │ │ ├── smoothBasalt.go │ │ ├── smoothQuartz.go │ │ ├── smoothQuartzSlab.go │ │ ├── smoothQuartzStairs.go │ │ ├── smoothRedSandstone.go │ │ ├── smoothRedSandstoneSlab.go │ │ ├── smoothRedSandstoneStairs.go │ │ ├── smoothSandstone.go │ │ ├── smoothSandstoneSlab.go │ │ ├── smoothSandstoneStairs.go │ │ ├── smoothStone.go │ │ ├── smoothStoneSlab.go │ │ ├── snifferEgg.go │ │ ├── snow.go │ │ ├── snowBlock.go │ │ ├── soulCampfire.go │ │ ├── soulFire.go │ │ ├── soulLantern.go │ │ ├── soulSand.go │ │ ├── soulSoil.go │ │ ├── soulTorch.go │ │ ├── soulWallTorch.go │ │ ├── spawner.go │ │ ├── sponge.go │ │ ├── sporeBlossom.go │ │ ├── spruceButton.go │ │ ├── spruceDoor.go │ │ ├── spruceFence.go │ │ ├── spruceFenceGate.go │ │ ├── spruceHangingSign.go │ │ ├── spruceLeaves.go │ │ ├── spruceLog.go │ │ ├── sprucePlanks.go │ │ ├── sprucePressurePlate.go │ │ ├── spruceSapling.go │ │ ├── spruceSign.go │ │ ├── spruceSlab.go │ │ ├── spruceStairs.go │ │ ├── spruceTrapdoor.go │ │ ├── spruceWallHangingSign.go │ │ ├── spruceWallSign.go │ │ ├── spruceWood.go │ │ ├── stickyPiston.go │ │ ├── stone.go │ │ ├── stoneBrickSlab.go │ │ ├── stoneBrickStairs.go │ │ ├── stoneBrickWall.go │ │ ├── stoneBricks.go │ │ ├── stoneButton.go │ │ ├── stonePressurePlate.go │ │ ├── stoneSlab.go │ │ ├── stoneStairs.go │ │ ├── stonecutter.go │ │ ├── strippedAcaciaLog.go │ │ ├── strippedAcaciaWood.go │ │ ├── strippedBambooBlock.go │ │ ├── strippedBirchLog.go │ │ ├── strippedBirchWood.go │ │ ├── strippedCherryLog.go │ │ ├── strippedCherryWood.go │ │ ├── strippedCrimsonHyphae.go │ │ ├── strippedCrimsonStem.go │ │ ├── strippedDarkOakLog.go │ │ ├── strippedDarkOakWood.go │ │ ├── strippedJungleLog.go │ │ ├── strippedJungleWood.go │ │ ├── strippedMangroveLog.go │ │ ├── strippedMangroveWood.go │ │ ├── strippedOakLog.go │ │ ├── strippedOakWood.go │ │ ├── strippedSpruceLog.go │ │ ├── strippedSpruceWood.go │ │ ├── strippedWarpedHyphae.go │ │ ├── strippedWarpedStem.go │ │ ├── structureBlock.go │ │ ├── structureVoid.go │ │ ├── sugarCane.go │ │ ├── sunflower.go │ │ ├── suspiciousGravel.go │ │ ├── suspiciousSand.go │ │ ├── sweetBerryBush.go │ │ ├── tallGrass.go │ │ ├── tallSeagrass.go │ │ ├── target.go │ │ ├── terracotta.go │ │ ├── tintedGlass.go │ │ ├── tnt.go │ │ ├── torch.go │ │ ├── torchflower.go │ │ ├── torchflowerCrop.go │ │ ├── trappedChest.go │ │ ├── trialSpawner.go │ │ ├── tripwire.go │ │ ├── tripwireHook.go │ │ ├── tubeCoral.go │ │ ├── tubeCoralBlock.go │ │ ├── tubeCoralFan.go │ │ ├── tubeCoralWallFan.go │ │ ├── tuff.go │ │ ├── tuffBrickSlab.go │ │ ├── tuffBrickStairs.go │ │ ├── tuffBrickWall.go │ │ ├── tuffBricks.go │ │ ├── tuffSlab.go │ │ ├── tuffStairs.go │ │ ├── tuffWall.go │ │ ├── turtleEgg.go │ │ ├── twistingVines.go │ │ ├── twistingVinesPlant.go │ │ ├── vault.go │ │ ├── verdantFroglight.go │ │ ├── vine.go │ │ ├── voidAir.go │ │ ├── wallTorch.go │ │ ├── warpedButton.go │ │ ├── warpedDoor.go │ │ ├── warpedFence.go │ │ ├── warpedFenceGate.go │ │ ├── warpedFungus.go │ │ ├── warpedHangingSign.go │ │ ├── warpedHyphae.go │ │ ├── warpedNylium.go │ │ ├── warpedPlanks.go │ │ ├── warpedPressurePlate.go │ │ ├── warpedRoots.go │ │ ├── warpedSign.go │ │ ├── warpedSlab.go │ │ ├── warpedStairs.go │ │ ├── warpedStem.go │ │ ├── warpedTrapdoor.go │ │ ├── warpedWallHangingSign.go │ │ ├── warpedWallSign.go │ │ ├── warpedWartBlock.go │ │ ├── water.go │ │ ├── waterCauldron.go │ │ ├── waxedChiseledCopper.go │ │ ├── waxedCopperBlock.go │ │ ├── waxedCopperBulb.go │ │ ├── waxedCopperDoor.go │ │ ├── waxedCopperGrate.go │ │ ├── waxedCopperTrapdoor.go │ │ ├── waxedCutCopper.go │ │ ├── waxedCutCopperSlab.go │ │ ├── waxedCutCopperStairs.go │ │ ├── waxedExposedChiseledCopper.go │ │ ├── waxedExposedCopper.go │ │ ├── waxedExposedCopperBulb.go │ │ ├── waxedExposedCopperDoor.go │ │ ├── waxedExposedCopperGrate.go │ │ ├── waxedExposedCopperTrapdoor.go │ │ ├── waxedExposedCutCopper.go │ │ ├── waxedExposedCutCopperSlab.go │ │ ├── waxedExposedCutCopperStairs.go │ │ ├── waxedOxidizedChiseledCopper.go │ │ ├── waxedOxidizedCopper.go │ │ ├── waxedOxidizedCopperBulb.go │ │ ├── waxedOxidizedCopperDoor.go │ │ ├── waxedOxidizedCopperGrate.go │ │ ├── waxedOxidizedCopperTrapdoor.go │ │ ├── waxedOxidizedCutCopper.go │ │ ├── waxedOxidizedCutCopperSlab.go │ │ ├── waxedOxidizedCutCopperStairs.go │ │ ├── waxedWeatheredChiseledCopper.go │ │ ├── waxedWeatheredCopper.go │ │ ├── waxedWeatheredCopperBulb.go │ │ ├── waxedWeatheredCopperDoor.go │ │ ├── waxedWeatheredCopperGrate.go │ │ ├── waxedWeatheredCopperTrapdoor.go │ │ ├── waxedWeatheredCutCopper.go │ │ ├── waxedWeatheredCutCopperSlab.go │ │ ├── waxedWeatheredCutCopperStairs.go │ │ ├── weatheredChiseledCopper.go │ │ ├── weatheredCopper.go │ │ ├── weatheredCopperBulb.go │ │ ├── weatheredCopperDoor.go │ │ ├── weatheredCopperGrate.go │ │ ├── weatheredCopperTrapdoor.go │ │ ├── weatheredCutCopper.go │ │ ├── weatheredCutCopperSlab.go │ │ ├── weatheredCutCopperStairs.go │ │ ├── weepingVines.go │ │ ├── weepingVinesPlant.go │ │ ├── wetSponge.go │ │ ├── wheat.go │ │ ├── whiteBanner.go │ │ ├── whiteBed.go │ │ ├── whiteCandle.go │ │ ├── whiteCandleCake.go │ │ ├── whiteCarpet.go │ │ ├── whiteConcrete.go │ │ ├── whiteConcretePowder.go │ │ ├── whiteGlazedTerracotta.go │ │ ├── whiteShulkerBox.go │ │ ├── whiteStainedGlass.go │ │ ├── whiteStainedGlassPane.go │ │ ├── whiteTerracotta.go │ │ ├── whiteTulip.go │ │ ├── whiteWallBanner.go │ │ ├── whiteWool.go │ │ ├── witherRose.go │ │ ├── witherSkeletonSkull.go │ │ ├── witherSkeletonWallSkull.go │ │ ├── yellowBanner.go │ │ ├── yellowBed.go │ │ ├── yellowCandle.go │ │ ├── yellowCandleCake.go │ │ ├── yellowCarpet.go │ │ ├── yellowConcrete.go │ │ ├── yellowConcretePowder.go │ │ ├── yellowGlazedTerracotta.go │ │ ├── yellowShulkerBox.go │ │ ├── yellowStainedGlass.go │ │ ├── yellowStainedGlassPane.go │ │ ├── yellowTerracotta.go │ │ ├── yellowWallBanner.go │ │ ├── yellowWool.go │ │ ├── zombieHead.go │ │ └── zombieWallHead.go │ ├── chunk/ │ │ ├── anvil.go │ │ ├── chunk.go │ │ ├── encode.go │ │ ├── heightmaps/ │ │ │ └── heightmaps.go │ │ └── section/ │ │ ├── block.go │ │ ├── blockRegister.go │ │ ├── data/ │ │ │ └── blocks.nbt │ │ └── section.go │ ├── dimension/ │ │ ├── dimension.go │ │ ├── manager.go │ │ ├── tick.go │ │ └── window/ │ │ └── window.go │ ├── level/ │ │ ├── entity.go │ │ ├── item/ │ │ │ ├── attribute_modifiers.go │ │ │ ├── banner_patterns.go │ │ │ ├── bees.go │ │ │ ├── bucket_entity_data.go │ │ │ ├── can_do.go │ │ │ ├── container_loot.go │ │ │ ├── creative_slot_lock.go │ │ │ ├── enchantments.go │ │ │ ├── entity_data.go │ │ │ ├── fire_resistant.go │ │ │ ├── firework_explosion.go │ │ │ ├── fireworks.go │ │ │ ├── food.go │ │ │ ├── hide_additional_tooltip.go │ │ │ ├── hide_tooltip.go │ │ │ ├── intangible_projectile.go │ │ │ ├── item.go │ │ │ ├── items.go │ │ │ ├── jukebox_playable.go │ │ │ ├── lodestone_tracker.go │ │ │ ├── map_post_processing.go │ │ │ ├── stored_enchantments.go │ │ │ ├── susipicious_stew_effects.go │ │ │ ├── tool.go │ │ │ ├── trim.go │ │ │ ├── unbreakable.go │ │ │ ├── writable_book_content.go │ │ │ └── written_book_content.go │ │ ├── level.go │ │ ├── playerdata.go │ │ ├── region/ │ │ │ ├── anvil.go │ │ │ ├── region_dec.go │ │ │ └── region_enc.go │ │ ├── seed/ │ │ │ └── seed.go │ │ └── uuid/ │ │ └── uuid.go │ ├── terrain/ │ │ ├── superflat.go │ │ └── terrain.go │ └── world.go └── util/ ├── atomic/ │ ├── atomic.go │ └── slice.go ├── console/ │ └── console.go ├── log/ │ └── log.go ├── mapequal.go ├── rot.go └── unit.go