diff --git a/.gitignore b/.gitignore index 22222fc39..1317d0286 100644 --- a/.gitignore +++ b/.gitignore @@ -1,25 +1,28 @@ # eclipse -eclipse -bin -*.launch -.settings -.metadata -.classpath -.project +/eclipse +/bin +/*.launch +/.settings +/.metadata +/.classpath +/.project # idea -out -*.ipr -*.iws -*.iml -.idea +/out +/*.ipr +/*.iws +/*.iml +/.idea # gradle -build -.gradle +/build +/.gradle + +# vscode +/.vscode # other -run +/run # CurseForge configuration /curseforge.properties diff --git a/README.md b/README.md index 0ebb0c7e6..166759fd7 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,9 @@ If you want to make some changes to the mod, follow this guide: * Click **Add Standard VM**; in the JRE home, navigate to the directory where the JDK is installed, then click finish and select it. 10. Code! +## Contributing animations +Weapon animations in NTM are stored in JSON files, which are used alongside OBJ models to produce high quality animations with reasonable filesizes. Import/Export Blender addons are available for versions 2.79, 3.2, and 4.0 in `tools`, and they should function reasonably well in newer versions as well. See the comments in the header of the export scripts for usage instructions. + ## Compatibility notice NTM has certain behaviors intended to fix vanilla code or to increase compatibility in certain cases where it otherwise would not be possible. These behaviors have the potential of not playing well with other mods, and while no such cases are currently known, here's a list of them. diff --git a/changelog b/changelog index 954da9f28..5c2fa570a 100644 --- a/changelog +++ b/changelog @@ -1,16 +1,25 @@ ## Changed -* The ambient radiation generator's functionality and recipe have been disabled as it is being deprecated -* The pyrolysis oven is now compatible with overdrive upgrades -* Steel walls and corners no longer use TESRs for rendering, making them more performant at large scale and fixing any oddities regarding their rendering -* Steel walls and corners can now be rotated using the screwdriver (right click for clockwise, shift click for counter-clockwise) -* Steel walls and corners now use new textures as well as slightly cleaner models -* Steel corner bounding boxes now closely match their model +* Updated russian and chinese localization +* The fine soot recipe in the pyrolysis oven now only needs 4 tar +* Overdrive upgrades now use hard plastic/fullerite instead of lithium crystals +* Machines now only send their sync packets once a second instead of once per tick if the values haven't changed, reducing network traffic by a considerable amount +* Tom's explosion no longer causes any block updates on the millions of blocks it deletes which hopefully fixes a majority of the lag caused by the crater +* Overdrive upgrades now increase power usage in pyrolysis ovens (equivalent to 2 speed upgrades per level) +* Due to the increased maximum demand with overdrives + speed upgrades, the energy buffer for the pyrolysis oven has been increased tenfold +* Updated basalt textures +* Scaffold blocks can now be placed horizontally +* Updated the shredder's textures +* The strand caster will now cast its remaining buffer after 10 seconds of inactivity, even if the buffer is not full enough for a batch of 9 +* The soldering station now has a toggle for the "refuse to do recipes with no fluid if fluid is present" behavior +* Recipes using the ore dictionary "oreThorium232" are now also generated for "oreThorium" ## Fixed -* Fixed crash caused by the pyrolysis oven on servers - * Due this type of issue happening constantly, the GUI provider system no longer uses any client-only code -* Fixed small black bar rendering under the arrow box of NEI universal handlers when using the NH NEI fork -* Fixed desh screwdrivers not being usable for picking locks -* Possibly fixed an issue caused by MouseTweaks (in combination with other mods) duplicating click input (I can't replicate the issue so I can at best guess) -* Fixed pyrolysis ovens not being able to operate due to the output buffer being full, despite the buffer being a different type -* Fixed a vanilla bug in the standard block renderer causing boxduct bends to have incorrect UV on the -Z and +X sides \ No newline at end of file +* The conveyor grabber should no longer skip over items when used in long lines +* Fixed a potential crash regarding crucibles +* Fixed compatibility with EndlessIDs, biome changes should no longer crash the game +* Fixed GL state leak caused by fluid tanks, causing some tile entities to be rendered without face culling +* Fixed a bug where using too many PWR heatsinks would cause an overflow, making the heat capacity negative +* Fixed landmines generating into the floor on superflat worlds +* All NTM type explosions are no longer affected by difficulty setting, preventing them from dealing damage in peaceful mode + * There are a few instances of vanilla explosions still being used, those will be phased out in the future +* Fixed tutorial presentations triggering when hitting F1 not just in the inventory but also when looking at the block in question \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 4509b36fe..0517f3c81 100644 --- a/gradle.properties +++ b/gradle.properties @@ -20,6 +20,15 @@ credits=HbMinecraft,\ \ Pashtet (russian localization),\ \ Bismarck (chinese localization),\ \ Creeper-banner (chinese localization),\ + \ 5467864 (chinese localization),\ + \ eeeeee0a (chinese localization),\ + \ hz0909adc (chinese localization),\ + \ LSKLW (chinese localization),\ + \ R-Kaenbyou (chinese localization),\ + \ scp-000000000 (chinese localization),\ + \ UnnameTokiko (chinese localization),\ + \ Herobrine 457985 (chinese localization),\ + \ xxwinhere (chinese localization),\ \ Maksymisio (polish localization)\ \ el3ctro4ndre (italian localization),\ \ Pu-238 (Tom impact effects),\ @@ -39,6 +48,7 @@ credits=HbMinecraft,\ \ Voxelstice (OpenComputers integration, turbine spinup),\ \ BallOfEnergy1 (OpenComputers integration),\ \ sdddddf80 (recipe configs, chinese localization, custom machine holograms),\ + \ Abel1502 (optimization, crate upgrade recipes, strand caster improvements),\ \ SuperCraftAlex (tooltips)\ \ Ice-Arrow (research reactor tweaks),\ \ 245tt (anvil GUI improvements),\ diff --git a/ntm-animator.blend b/ntm-animator.blend deleted file mode 100644 index 252086d27..000000000 Binary files a/ntm-animator.blend and /dev/null differ diff --git a/src/main/java/com/hbm/blocks/ModBlocks.java b/src/main/java/com/hbm/blocks/ModBlocks.java index de8842189..028fb0f0f 100644 --- a/src/main/java/com/hbm/blocks/ModBlocks.java +++ b/src/main/java/com/hbm/blocks/ModBlocks.java @@ -1,3469 +1,3490 @@ -package com.hbm.blocks; - -import com.hbm.blocks.BlockEnums.*; -import com.hbm.blocks.bomb.*; -import com.hbm.blocks.fluid.*; -import com.hbm.blocks.gas.*; -import com.hbm.blocks.generic.*; -import com.hbm.blocks.generic.BlockHazard.ExtDisplayEffect; -import com.hbm.blocks.generic.BlockMotherOfAllOres.ItemRandomOreBlock; -import com.hbm.blocks.machine.*; -import com.hbm.blocks.machine.pile.*; -import com.hbm.blocks.machine.rbmk.*; -import com.hbm.blocks.network.*; -import com.hbm.blocks.rail.*; -import com.hbm.blocks.test.*; -import com.hbm.blocks.turret.*; -import com.hbm.items.block.*; -import com.hbm.items.bomb.ItemPrototypeBlock; -import com.hbm.items.special.ItemOreBlock; -import com.hbm.lib.ModDamageSource; -import com.hbm.lib.RefStrings; -import com.hbm.main.MainRegistry; -import com.hbm.tileentity.DoorDecl; -import com.hbm.tileentity.machine.storage.TileEntityFileCabinet; -import cpw.mods.fml.common.registry.GameRegistry; -import net.minecraft.block.Block; -import net.minecraft.block.BlockFalling; -import net.minecraft.block.material.MapColor; -import net.minecraft.block.material.Material; -import net.minecraft.block.material.MaterialLiquid; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.item.ItemBlock; -import net.minecraftforge.fluids.Fluid; -import net.minecraftforge.fluids.FluidRegistry; - -public class ModBlocks { - - public static void mainRegistry() - { - initializeBlock(); - registerBlock(); - } - - public static Block event_tester; - public static Block obj_tester; - public static Block test_core; - public static Block test_charge; - public static Block structure_anchor; - - public static Block ore_uranium; - public static Block ore_uranium_scorched; - public static Block ore_titanium; - public static Block ore_sulfur; - public static Block ore_thorium; - public static Block ore_niter; - public static Block ore_copper; - public static Block ore_tungsten; - public static Block ore_aluminium; - public static Block ore_fluorite; - public static Block ore_lead; - public static Block ore_schrabidium; - public static Block ore_beryllium; - public static Block ore_australium; - public static Block ore_rare; - public static Block ore_cobalt; - public static Block ore_cinnebar; - public static Block ore_coltan; - public static Block ore_alexandrite; - - public static Block ore_random; - public static Block ore_bedrock; - public static Block ore_volcano; - - public static Block ore_nether_coal; - public static Block ore_nether_smoldering; - public static Block ore_nether_uranium; - public static Block ore_nether_uranium_scorched; - public static Block ore_nether_plutonium; - public static Block ore_nether_tungsten; - public static Block ore_nether_sulfur; - public static Block ore_nether_fire; - public static Block ore_nether_cobalt; - public static Block ore_nether_schrabidium; - - public static Block ore_meteor; - - public static Block stone_gneiss; - public static Block ore_gneiss_iron; - public static Block ore_gneiss_gold; - public static Block ore_gneiss_uranium; - public static Block ore_gneiss_uranium_scorched; - public static Block ore_gneiss_copper; - public static Block ore_gneiss_asbestos; - public static Block ore_gneiss_lithium; - public static Block ore_gneiss_schrabidium; - public static Block ore_gneiss_rare; - public static Block ore_gneiss_gas; - - public static Block gneiss_brick; - public static Block gneiss_tile; - public static Block gneiss_chiseled; - - public static Block stone_depth; - public static Block ore_depth_cinnebar; - public static Block ore_depth_zirconium; - public static Block ore_depth_borax; - public static Block cluster_depth_iron; - public static Block cluster_depth_titanium; - public static Block cluster_depth_tungsten; - - public static Block stone_keyhole; - - public static Block stone_depth_nether; - public static Block ore_depth_nether_neodymium; - - public static Block stone_porous; - public static Block stone_resource; - public static Block stalagmite; - public static Block stalactite; - public static Block stone_biome; - - public static Block depth_brick; - public static Block depth_tiles; - public static Block depth_nether_brick; - public static Block depth_nether_tiles; - public static Block depth_dnt; - - public static Block basalt; - public static Block ore_basalt; - public static Block basalt_smooth; - public static Block basalt_brick; - public static Block basalt_polished; - public static Block basalt_tiles; - - public static Block cluster_iron; - public static Block cluster_titanium; - public static Block cluster_aluminium; - public static Block cluster_copper; - - public static Block ore_oil; - public static Block ore_oil_empty; - public static Block ore_oil_sand; - public static Block ore_bedrock_oil; - public static Block ore_lignite; - public static Block ore_asbestos; - public static Block ore_coal_oil; - public static Block ore_coal_oil_burning; - - public static Block ore_tikite; - - public static Block block_thorium; - public static Block block_thorium_fuel; - public static Block block_uranium; - public static Block block_u233; - public static Block block_u235; - public static Block block_u238; - public static Block block_uranium_fuel; - public static Block block_neptunium; - public static Block block_polonium; - public static Block block_mox_fuel; - public static Block block_plutonium; - public static Block block_pu238; - public static Block block_pu239; - public static Block block_pu240; - public static Block block_pu_mix; - public static Block block_plutonium_fuel; - public static Block block_titanium; - public static Block block_sulfur; - public static Block block_niter; - public static Block block_copper; - public static Block block_red_copper; - public static Block block_tungsten; - public static Block block_aluminium; - public static Block block_fluorite; - public static Block block_steel; - public static Block block_tcalloy; - public static Block block_cdalloy; - public static Block block_lead; - public static Block block_bismuth; - public static Block block_cadmium; - public static Block block_coltan; - public static Block block_tantalium; - public static Block block_niobium; - public static Block block_trinitite; - public static Block block_waste; - public static Block block_waste_painted; - public static Block block_waste_vitrified; - public static Block ancient_scrap; - public static Block block_corium; - public static Block block_corium_cobble; - public static Block block_scrap; - public static Block block_electrical_scrap; - public static Block block_beryllium; - public static Block block_schraranium; - public static Block block_schrabidium; - public static Block block_schrabidate; - public static Block block_solinium; - public static Block block_schrabidium_fuel; - public static Block block_euphemium; - public static Block block_schrabidium_cluster; - public static Block block_euphemium_cluster; - public static Block block_dineutronium; - public static Block block_advanced_alloy; - public static Block block_magnetized_tungsten; - public static Block block_combine_steel; - public static Block block_desh; - public static Block block_dura_steel; - public static Block block_starmetal; - public static Block block_polymer; - public static Block block_bakelite; - public static Block block_rubber; - public static Block block_yellowcake; - public static Block block_insulator; - public static Block block_fiberglass; - public static Block block_asbestos; - public static Block block_cobalt; - public static Block block_lithium; - public static Block block_zirconium; - public static Block block_white_phosphorus; - public static Block block_red_phosphorus; - public static Block block_fallout; - public static Block block_foam; - public static Block block_coke; - public static Block block_graphite; - public static Block block_graphite_drilled; - public static Block block_graphite_fuel; - public static Block block_graphite_plutonium; - public static Block block_graphite_rod; - public static Block block_graphite_source; - public static Block block_graphite_lithium; - public static Block block_graphite_tritium; - public static Block block_graphite_detector; - public static Block block_boron; - public static Block block_lanthanium; - public static Block block_ra226; - public static Block block_actinium; - public static Block block_tritium; - public static Block block_semtex; - public static Block block_c4; - public static Block block_smore; - public static Block block_slag; - - public static Block block_australium; - public static Block block_weidanium; - public static Block block_reiium; - public static Block block_unobtainium; - public static Block block_daffergon; - public static Block block_verticium; - - public static Block block_cap; - - public static Block deco_titanium; - public static Block deco_red_copper; - public static Block deco_tungsten; - public static Block deco_aluminium; - public static Block deco_steel; - public static Block deco_lead; - public static Block deco_beryllium; - public static Block deco_asbestos; - public static Block deco_rbmk; - public static Block deco_rbmk_smooth; - - public static Block deco_emitter; - public static Block part_emitter; - public static Block deco_loot; - public static Block pedestal; - public static Block bobblehead; - public static Block snowglobe; - public static Block plushie; - - public static Block gravel_obsidian; - public static Block gravel_diamond; - public static Block asphalt; - public static Block asphalt_light; - - public static Block reinforced_brick; - public static Block reinforced_ducrete; - public static Block reinforced_glass; - public static Block reinforced_glass_pane; - public static Block reinforced_light; - public static Block reinforced_sand; - public static Block reinforced_lamp_off; - public static Block reinforced_lamp_on; - public static Block reinforced_laminate; - public static Block reinforced_laminate_pane; - - public static Block lamp_tritium_green_off; - public static Block lamp_tritium_green_on; - public static Block lamp_tritium_blue_off; - public static Block lamp_tritium_blue_on; - - public static Block lamp_demon; - - public static Block lantern; - public static Block lantern_behemoth; - - public static Block spotlight_incandescent; - public static Block spotlight_incandescent_off; - public static Block spotlight_fluoro; - public static Block spotlight_fluoro_off; - public static Block spotlight_halogen; - public static Block spotlight_halogen_off; - public static Block spotlight_beam; - public static Block floodlight; - public static Block floodlight_beam; - - public static Block reinforced_stone; - public static Block concrete_smooth; - public static Block concrete_colored; - public static Block concrete_colored_ext; - public static Block concrete; - public static Block concrete_asbestos; - public static Block concrete_super; - public static Block concrete_super_broken; - public static Block ducrete_smooth; - public static Block ducrete; - public static Block concrete_pillar; - public static Block brick_concrete; - public static Block brick_concrete_mossy; - public static Block brick_concrete_cracked; - public static Block brick_concrete_broken; - public static Block brick_concrete_marked; - public static Block brick_ducrete; - public static Block brick_obsidian; - public static Block brick_light; - public static Block brick_compound; - public static Block brick_asbestos; - public static Block brick_fire; - - public static Block concrete_slab; - public static Block concrete_double_slab; - public static Block concrete_brick_slab; - public static Block concrete_brick_double_slab; - public static Block brick_slab; - public static Block brick_double_slab; - - public static Block concrete_smooth_stairs; - public static Block concrete_stairs; - public static Block concrete_asbestos_stairs; - public static Block ducrete_smooth_stairs; - public static Block ducrete_stairs; - public static Block brick_concrete_stairs; - public static Block brick_concrete_mossy_stairs; - public static Block brick_concrete_cracked_stairs; - public static Block brick_concrete_broken_stairs; - public static Block brick_ducrete_stairs; - public static Block reinforced_stone_stairs; - public static Block reinforced_brick_stairs; - public static Block brick_obsidian_stairs; - public static Block brick_light_stairs; - public static Block brick_compound_stairs; - public static Block brick_asbestos_stairs; - public static Block brick_fire_stairs; - public static Block asphalt_stairs; - - public static Block cmb_brick; - public static Block cmb_brick_reinforced; - - public static Block vinyl_tile; - - public static Block tile_lab; - public static Block tile_lab_cracked; - public static Block tile_lab_broken; - - public static Block block_meteor; - public static Block block_meteor_cobble; - public static Block block_meteor_broken; - public static Block block_meteor_molten; - public static Block block_meteor_treasure; - public static Block meteor_polished; - public static Block meteor_brick; - public static Block meteor_brick_mossy; - public static Block meteor_brick_cracked; - public static Block meteor_brick_chiseled; - public static Block meteor_pillar; - public static Block meteor_spawner; - public static Block meteor_battery; - - public static Block moon_turf; - - public static Block brick_jungle; - public static Block brick_jungle_cracked; - public static Block brick_jungle_fragile; - public static Block brick_jungle_lava; - public static Block brick_jungle_ooze; - public static Block brick_jungle_mystic; - public static Block brick_jungle_trap; - public static Block brick_jungle_glyph; - public static Block brick_jungle_circle; - - public static Block brick_red; - - public static Block deco_computer; - public static Block deco_crt; - public static Block deco_toaster; - - public static Block filing_cabinet; - - public static Block tape_recorder; - public static Block steel_poles; - public static Block pole_top; - public static Block pole_satellite_receiver; - public static Block steel_wall; - public static Block steel_corner; - public static Block steel_roof; - public static Block steel_beam; - public static Block steel_scaffold; - public static Block steel_grate; - public static Block steel_grate_wide; - public static Block scaffold_dynamic; - - public static Block deco_pipe; - public static Block deco_pipe_rusted; - public static Block deco_pipe_green; - public static Block deco_pipe_green_rusted; - public static Block deco_pipe_red; - public static Block deco_pipe_marked; - public static Block deco_pipe_rim; - public static Block deco_pipe_rim_rusted; - public static Block deco_pipe_rim_green; - public static Block deco_pipe_rim_green_rusted; - public static Block deco_pipe_rim_red; - public static Block deco_pipe_rim_marked; - public static Block deco_pipe_framed; - public static Block deco_pipe_framed_rusted; - public static Block deco_pipe_framed_green; - public static Block deco_pipe_framed_green_rusted; - public static Block deco_pipe_framed_red; - public static Block deco_pipe_framed_marked; - public static Block deco_pipe_quad; - public static Block deco_pipe_quad_rusted; - public static Block deco_pipe_quad_green; - public static Block deco_pipe_quad_green_rusted; - public static Block deco_pipe_quad_red; - public static Block deco_pipe_quad_marked; - - public static Block broadcaster_pc; - public static Block geiger; - public static Block hev_battery; - - public static Block fence_metal; - - public static Block sand_boron; - public static Block sand_lead; - public static Block sand_uranium; - public static Block sand_polonium; - public static Block sand_quartz; - public static Block ash_digamma; - public static Block glass_boron; - public static Block glass_lead; - public static Block glass_uranium; - public static Block glass_trinitite; - public static Block glass_polonium; - public static Block glass_ash; - public static Block glass_quartz; - - public static Block mush; - public static Block mush_block; - public static Block mush_block_stem; - - public static Block glyphid_base; - public static Block glyphid_spawner; - - public static Block plant_flower; - public static Block plant_tall; - public static Block plant_dead; - public static Block reeds; - - public static Block waste_earth; - public static Block waste_mycelium; - public static Block waste_trinitite; - public static Block waste_trinitite_red; - public static Block waste_log; - public static Block waste_leaves; - public static Block waste_planks; - public static Block frozen_dirt; - public static Block frozen_grass; - public static Block frozen_log; - public static Block frozen_planks; - public static Block dirt_dead; - public static Block dirt_oily; - public static Block sand_dirty; - public static Block sand_dirty_red; - public static Block stone_cracked; - public static Block burning_earth; - public static Block tektite; - public static Block ore_tektite_osmiridium; - public static Block impact_dirt; - - public static Block fallout; - public static Block foam_layer; - public static Block sand_boron_layer; - public static Block leaves_layer; - public static Block oil_spill; - - public static Block sellafield_slaked; - public static Block sellafield_bedrock; - public static Block sellafield; - public static Block ore_sellafield_diamond; - public static Block ore_sellafield_emerald; - public static Block ore_sellafield_uranium_scorched; - public static Block ore_sellafield_schrabidium; - public static Block ore_sellafield_radgem; - - public static Block geysir_water; - public static Block geysir_chlorine; - public static Block geysir_vapor; - public static Block geysir_nether; - - public static Block flame_war; - public static Block float_bomb; - public static Block therm_endo; - public static Block therm_exo; - public static Block emp_bomb; - public static Block det_cord; - public static Block det_charge; - public static Block det_nuke; - public static Block det_miner; - public static Block red_barrel; - public static Block pink_barrel; - public static Block yellow_barrel; - public static Block vitrified_barrel; - public static Block lox_barrel; - public static Block taint_barrel; - public static Block crashed_balefire; - public static Block fireworks; - public static Block dynamite; - public static Block tnt; - public static Block semtex; - public static Block c4; - public static Block fissure_bomb; - - public static Block charge_dynamite; - public static Block charge_miner; - public static Block charge_c4; - public static Block charge_semtex; - - public static Block mine_ap; - public static Block mine_he; - public static Block mine_shrap; - public static Block mine_fat; - - public static Block crate; - public static Block crate_weapon; - public static Block crate_lead; - public static Block crate_metal; - public static Block crate_red; - public static Block crate_can; - public static Block crate_ammo; - public static Block crate_jungle; - - public static Block boxcar; - public static Block boat; - - public static Block seal_frame; - public static Block seal_controller; - public static Block seal_hatch; - - public static Block vault_door; - public static Block blast_door; - public static Block sliding_blast_door; - public static Block fire_door; - public static Block transition_seal; - public static Block silo_hatch; - public static Block silo_hatch_large; - - // 1.12.2 Doors - public static Block secure_access_door; - public static Block large_vehicle_door; - public static Block qe_containment; - public static Block qe_sliding_door; - public static Block round_airlock_door; - public static Block sliding_seal_door; - public static Block water_door; - - public static Block door_metal; - public static Block door_office; - public static Block door_bunker; - public static Block door_red; - - public static Block barbed_wire; - public static Block barbed_wire_fire; - public static Block barbed_wire_poison; - public static Block barbed_wire_acid; - public static Block barbed_wire_wither; - public static Block barbed_wire_ultradeath; - public static Block spikes; - - public static Block charger; - - public static Block tesla; - - public static Block sat_mapper; - public static Block sat_scanner; - public static Block sat_radar; - public static Block sat_laser; - public static Block sat_foeq; - public static Block sat_resonator; - - public static Block sat_dock; - - public static Block soyuz_capsule; - - public static Block crate_iron; - public static Block crate_steel; - public static Block crate_desh; - public static Block crate_tungsten; - public static Block crate_template; - public static Block safe; - public static Block mass_storage; - - public static Block nuke_gadget; - public static Block nuke_boy; - public static Block nuke_man; - public static Block nuke_mike; - public static Block nuke_tsar; - public static Block nuke_fleija; - public static Block nuke_prototype; - public static Block nuke_custom; - public static Block nuke_solinium; - public static Block nuke_n2; - public static Block nuke_fstbmb; - public static Block bomb_multi; - - public static Block pump_steam; - public static Block pump_electric; - - public static Block heater_firebox; - public static Block heater_oven; - public static Block heater_oilburner; - public static Block heater_electric; - public static Block heater_heatex; - public static Block machine_ashpit; - - public static Block furnace_iron; - public static Block furnace_steel; - public static Block furnace_combination; - public static Block machine_stirling; - public static Block machine_stirling_steel; - public static Block machine_stirling_creative; - public static Block machine_sawmill; - public static Block machine_crucible; - public static Block machine_boiler; - public static Block machine_industrial_boiler; - - public static Block foundry_mold; - public static Block foundry_basin; - public static Block foundry_channel; - public static Block foundry_tank; - public static Block foundry_outlet; - public static Block machine_strand_caster; - public static Block foundry_slagtap; - public static Block slag; - - public static Block machine_difurnace_off; - public static Block machine_difurnace_on; - public static Block machine_difurnace_extension; - public static Block machine_difurnace_rtg_off; - public static Block machine_difurnace_rtg_on; - //public static final int guiID_test_difurnace = 1; historical - - public static Block machine_centrifuge; - public static Block machine_gascent; - - public static Block machine_fel; - public static Block machine_silex; - - public static Block machine_crystallizer; - - public static Block machine_uf6_tank; - - public static Block machine_puf6_tank; - - public static Block machine_reactor_breeding; - - public static Block machine_furnace_brick_off; - public static Block machine_furnace_brick_on; - public static Block machine_nuke_furnace_off; - public static Block machine_nuke_furnace_on; - public static Block machine_rtg_furnace_off; - public static Block machine_rtg_furnace_on; - - public static Block machine_industrial_generator; - - public static Block machine_cyclotron; - public static Block machine_exposure_chamber; - - public static Block hadron_plating; - public static Block hadron_plating_blue; - public static Block hadron_plating_black; - public static Block hadron_plating_yellow; - public static Block hadron_plating_striped; - public static Block hadron_plating_voltz; - public static Block hadron_plating_glass; - public static Block hadron_coil_alloy; - public static Block hadron_coil_gold; - public static Block hadron_coil_neodymium; - public static Block hadron_coil_magtung; - public static Block hadron_coil_schrabidium; - public static Block hadron_coil_schrabidate; - public static Block hadron_coil_starmetal; - public static Block hadron_coil_chlorophyte; - public static Block hadron_coil_mese; - public static Block hadron_power; - public static Block hadron_power_10m; - public static Block hadron_power_100m; - public static Block hadron_power_1g; - public static Block hadron_power_10g; - public static Block hadron_diode; - public static Block hadron_analysis; - public static Block hadron_analysis_glass; - public static Block hadron_access; - public static Block hadron_core; - public static Block hadron_cooler; - - public static Block machine_electric_furnace_off; - public static Block machine_electric_furnace_on; - - public static Block machine_microwave; - - public static Block machine_arc_furnace_off; - public static Block machine_arc_furnace_on; - - //public static Block machine_deuterium; - - public static Block machine_battery_potato; - public static Block machine_battery; - public static Block machine_lithium_battery; - public static Block machine_schrabidium_battery; - public static Block machine_dineutronium_battery; - public static Block machine_fensu; - public static final int guiID_machine_fensu = 99; - - public static Block capacitor_bus; - public static Block capacitor_copper; - public static Block capacitor_gold; - public static Block capacitor_niobium; - public static Block capacitor_tantalium; - public static Block capacitor_schrabidate; - - public static Block machine_wood_burner; - - public static Block red_wire_coated; - public static Block red_cable; - public static Block red_cable_classic; - public static Block red_cable_paintable; - public static Block red_cable_gauge; - public static Block red_connector; - public static Block red_pylon; - public static Block red_pylon_medium_wood; - public static Block red_pylon_medium_wood_transformer; - public static Block red_pylon_medium_steel; - public static Block red_pylon_medium_steel_transformer; - public static Block red_pylon_large; - public static Block substation; - public static Block cable_switch; - public static Block cable_detector; - public static Block cable_diode; - public static Block machine_detector; - public static Block fluid_duct_neo; - public static Block fluid_duct_box; - public static Block fluid_duct_paintable; - public static Block fluid_duct_gauge; - public static Block fluid_duct_exhaust; - public static Block fluid_valve; - public static Block fluid_switch; - public static Block machine_drain; - public static Block radio_torch_sender; - public static Block radio_torch_receiver; - public static Block radio_torch_counter; - public static Block radio_torch_logic; - public static Block radio_telex; - - public static Block conveyor; - public static Block conveyor_express; - //public static Block conveyor_classic; - public static Block conveyor_double; - public static Block conveyor_triple; - public static Block conveyor_chute; - public static Block conveyor_lift; - public static Block crane_extractor; - public static Block crane_inserter; - public static Block crane_grabber; - public static Block crane_router; - public static Block crane_boxer; - public static Block crane_unboxer; - public static Block crane_splitter; - public static Block crane_partitioner; - - public static Block drone_waypoint; - public static Block drone_crate; - public static Block drone_waypoint_request; - public static Block drone_dock; - public static Block drone_crate_provider; - public static Block drone_crate_requester; - - public static Block fan; - - public static Block piston_inserter; - - public static Block chain; - - public static Block ladder_sturdy; - public static Block ladder_iron; - public static Block ladder_gold; - public static Block ladder_aluminium; - public static Block ladder_copper; - public static Block ladder_titanium; - public static Block ladder_lead; - public static Block ladder_cobalt; - public static Block ladder_steel; - public static Block ladder_tungsten; - - public static Block barrel_plastic; - public static Block barrel_corroded; - public static Block barrel_iron; - public static Block barrel_steel; - public static Block barrel_tcalloy; - public static Block barrel_antimatter; - - public static Block machine_transformer; - public static Block machine_transformer_20; - public static Block machine_transformer_dnt; - public static Block machine_transformer_dnt_20; - - public static Block bomb_multi_large; - public static final int guiID_bomb_multi_large = 18; - - public static Block machine_solar_boiler; - public static final int guiID_solar_boiler = 18; - public static Block solar_mirror; - - public static Block struct_launcher; - public static Block struct_scaffold; - public static Block struct_launcher_core; - public static Block struct_launcher_core_large; - public static Block struct_soyuz_core; - public static Block struct_iter_core; - public static Block struct_plasma_core; - public static Block struct_watz_core; - public static Block struct_icf_core; - - public static Block factory_titanium_hull; - @Deprecated public static Block factory_titanium_furnace; - @Deprecated public static Block factory_titanium_conductor; - - public static Block factory_advanced_hull; - @Deprecated public static Block factory_advanced_furnace; - @Deprecated public static Block factory_advanced_conductor; - - public static Block cm_block; - public static Block cm_sheet; - public static Block cm_engine; - public static Block cm_tank; - public static Block cm_circuit; - public static Block cm_port; - public static Block cm_flux; - public static Block cm_heat; - public static Block custom_machine; - public static Block cm_anchor; - - public static Block pwr_fuel; - public static Block pwr_control; - public static Block pwr_channel; - public static Block pwr_heatex; - public static Block pwr_heatsink; - public static Block pwr_neutron_source; - public static Block pwr_reflector; - public static Block pwr_casing; - public static Block pwr_port; - public static Block pwr_controller; - public static Block pwr_block; - - public static Block fusion_conductor; - public static Block fusion_center; - public static Block fusion_motor; - public static Block fusion_heater; - public static Block fusion_hatch; - public static Block plasma; - - public static Block iter; - public static Block plasma_heater; - - public static Block machine_icf_press; - public static Block icf_component; - public static Block icf; - public static Block icf_controller; - public static Block icf_laser_component; - public static Block icf_block; - - public static Block watz; - public static Block watz_pump; - - public static Block watz_element; - public static Block watz_cooler; - public static Block watz_end; - - public static Block balefire; - public static Block fire_digamma; - public static Block digamma_matter; - - public static Block dfc_emitter; - public static Block dfc_injector; - public static Block dfc_receiver; - public static Block dfc_stabilizer; - public static Block dfc_core; - - public static Block machine_converter_he_rf; - public static Block machine_converter_rf_he; - - public static Block machine_schrabidium_transmutator; - - public static Block machine_diesel; - public static Block machine_combustion_engine; - - public static Block machine_shredder; - - public static Block machine_teleporter; - public static Block teleanchor; - public static Block field_disturber; - - public static Block machine_rtg_grey; - public static Block machine_amgen; - public static Block machine_geo; - public static Block machine_minirtg; - public static Block machine_powerrtg; - public static Block machine_radiolysis; - public static Block machine_hephaestus; - - public static Block machine_well; - public static Block oil_pipe; - public static Block machine_pumpjack; - public static Block machine_fracking_tower; - - public static Block machine_flare; - public static Block chimney_brick; - public static Block chimney_industrial; - - public static Block machine_refinery; - public static Block machine_vacuum_distill; - public static Block machine_fraction_tower; - public static Block fraction_spacer; - public static Block machine_catalytic_cracker; - public static Block machine_catalytic_reformer; - public static Block machine_hydrotreater; - public static Block machine_coker; - public static Block machine_pyrooven; - - public static Block machine_boiler_off; - - public static Block machine_steam_engine; - public static Block machine_turbine; - public static Block machine_large_turbine; - - public static Block machine_deuterium_extractor; - public static Block machine_deuterium_tower; - - public static Block machine_liquefactor; - public static Block machine_solidifier; - public static Block machine_compressor; - - public static Block machine_chungus; - public static Block machine_condenser; - public static Block machine_tower_small; - public static Block machine_tower_large; - public static Block machine_condenser_powered; - - public static Block machine_electrolyser; - - public static Block machine_excavator; - public static Block machine_ore_slopper; - public static Block machine_autosaw; - - public static Block machine_mining_laser; - public static Block barricade; // a sand bag that drops nothing, for automated walling purposes - - public static Block machine_assembler; - public static Block machine_assemfac; - public static Block machine_arc_welder; - public static Block machine_soldering_station; - public static Block machine_arc_furnace; - - public static Block machine_chemplant; - public static Block machine_chemfac; - public static Block machine_mixer; - - public static Block machine_fluidtank; - public static Block machine_bat9000; - public static Block machine_orbus; - - public static Block launch_pad; - public static Block launch_pad_rusted; - public static Block launch_pad_large; - - public static Block machine_missile_assembly; - - public static Block compact_launcher; - public static Block launch_table; - - public static Block soyuz_launcher; - - public static Block machine_radar; - public static Block machine_radar_large; - public static Block radar_screen; - - public static Block machine_turbofan; - public static Block machine_turbinegas; - public static Block machine_lpw2; - - public static Block press_preheater; - public static Block machine_press; - public static Block machine_epress; - public static Block machine_conveyor_press; - - public static Block machine_siren; - - public static Block machine_radgen; - - public static Block machine_satlinker; - public static Block machine_keyforge; - - public static Block machine_armor_table; - - public static Block reactor_research; - public static Block reactor_zirnox; - public static Block zirnox_destroyed; - - public static Block machine_controller; - - public static Block machine_spp_bottom; - public static Block machine_spp_top; - - public static Block radiobox; - public static Block radiorec; - - public static Block machine_forcefield; - - public static Block machine_waste_drum; - public static Block machine_storage_drum; - - public static Block machine_autocrafter; - public static Block machine_funnel; - - public static Block anvil_iron; - public static Block anvil_lead; - public static Block anvil_steel; - public static Block anvil_desh; - public static Block anvil_saturnite; - public static Block anvil_ferrouranium; - public static Block anvil_bismuth_bronze; - public static Block anvil_arsenic_bronze; - public static Block anvil_schrabidate; - public static Block anvil_dnt; - public static Block anvil_osmiridium; - public static Block anvil_murky; - - public static Block turret_chekhov; - public static Block turret_friendly; - public static Block turret_jeremy; - public static Block turret_tauon; - public static Block turret_richard; - public static Block turret_howard; - public static Block turret_howard_damaged; - public static Block turret_maxwell; - public static Block turret_fritz; - public static Block turret_arty; - public static Block turret_himars; - public static Block turret_sentry; - public static Block turret_sentry_damaged; - - public static Block rbmk_rod; - public static Block rbmk_rod_mod; - public static Block rbmk_rod_reasim; - public static Block rbmk_rod_reasim_mod; - public static Block rbmk_control; - public static Block rbmk_control_mod; - public static Block rbmk_control_auto; - public static Block rbmk_blank; - public static Block rbmk_boiler; - public static Block rbmk_reflector; - public static Block rbmk_absorber; - public static Block rbmk_moderator; - public static Block rbmk_outgasser; - public static Block rbmk_storage; - public static Block rbmk_cooler; - public static Block rbmk_heater; - public static Block rbmk_console; - public static Block rbmk_crane_console; - public static Block rbmk_loader; - public static Block rbmk_steam_inlet; - public static Block rbmk_steam_outlet; - public static Block pribris; - public static Block pribris_burning; - public static Block pribris_radiating; - public static Block pribris_digamma; - - public static Block book_guide; - - public static Block rail_wood; - public static Block rail_narrow; - public static Block rail_highspeed; - public static Block rail_booster; - - public static Block rail_narrow_straight; - public static Block rail_narrow_curve; - public static Block rail_large_straight; - public static Block rail_large_straight_short; - public static Block rail_large_curve; - public static Block rail_large_curve_7; - public static Block rail_large_curve_9; - public static Block rail_large_ramp; - public static Block rail_large_buffer; - public static Block rail_large_switch; - public static Block rail_large_switch_flipped; - - public static Block statue_elb; - public static Block statue_elb_g; - public static Block statue_elb_w; - public static Block statue_elb_f; - - public static Block cheater_virus; - public static Block cheater_virus_seed; - public static Block crystal_virus; - public static Block crystal_hardened; - public static Block crystal_pulsar; - public static Block taint; - - public static Block vent_chlorine; - public static Block vent_cloud; - public static Block vent_pink_cloud; - public static Block vent_chlorine_seal; - public static Block chlorine_gas; - - public static Block gas_radon; - public static Block gas_radon_dense; - public static Block gas_radon_tomb; - public static Block gas_meltdown; - public static Block gas_monoxide; - public static Block gas_asbestos; - public static Block gas_coal; - public static Block gas_flammable; - public static Block gas_explosive; - public static Block vacuum; - - public static Block absorber; - public static Block absorber_red; - public static Block absorber_green; - public static Block absorber_pink; - public static Block decon; - public static Block transission_hatch; - - public static Block mud_block; - public static Fluid mud_fluid; - public static final Material fluidmud = (new MaterialLiquid(MapColor.adobeColor)); - - public static Block acid_block; - public static Fluid acid_fluid; - public static final Material fluidacid = (new MaterialLiquid(MapColor.purpleColor)); - - public static Block toxic_block; - public static Fluid toxic_fluid; - public static final Material fluidtoxic = (new MaterialLiquid(MapColor.greenColor)); - - public static Block schrabidic_block; - public static Fluid schrabidic_fluid; - public static final Material fluidschrabidic = (new MaterialLiquid(MapColor.cyanColor)); - - public static Block corium_block; - public static Fluid corium_fluid; - public static final Material fluidcorium = (new MaterialLiquid(MapColor.brownColor) { - - @Override - public boolean blocksMovement() { - return true; - } - - @Override - public Material setImmovableMobility() { //override access modifier - return super.setImmovableMobility(); - } - - }.setImmovableMobility()); - - public static Block volcanic_lava_block; - public static Fluid volcanic_lava_fluid; - public static Block rad_lava_block; - public static Fluid rad_lava_fluid; - - public static Block sulfuric_acid_block; - public static Fluid sulfuric_acid_fluid; - - public static Block concrete_liquid; - - public static Block volcano_core; - public static Block volcano_rad_core; - - public static Block dummy_block_vault; - public static Block dummy_block_blast; - public static Block dummy_block_uf6; - public static Block dummy_block_puf6; - public static Block dummy_plate_compact_launcher; - public static Block dummy_port_compact_launcher; - public static Block dummy_plate_launch_table; - public static Block dummy_port_launch_table; - public static Block dummy_plate_cargo; - - public static Block ntm_dirt; - - public static Block pink_log; - public static Block pink_planks; - public static Block pink_slab; - public static Block pink_double_slab; - public static Block pink_stairs; - - public static Material materialGas = new MaterialGas(); - - private static void initializeBlock() { - - event_tester = new TestEventTester(Material.iron).setBlockName("event_tester").setCreativeTab(null).setHardness(2.5F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":event_tester"); - obj_tester = new TestObjTester(Material.iron).setBlockName("obj_tester").setCreativeTab(null).setHardness(2.5F).setResistance(10.0F); - test_core = new TestCore(Material.iron).setBlockName("test_core").setCreativeTab(null).setHardness(2.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":test_core"); - test_charge = new TestCharge(Material.iron).setBlockName("test_charge").setCreativeTab(null).setHardness(2.5F).setResistance(10.0F); - structure_anchor = new BlockGeneric(Material.iron).setBlockName("structure_anchor").setCreativeTab(null).setHardness(2.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":structure_anchor"); - - ore_uranium = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_uranium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_uranium"); - ore_uranium_scorched = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_uranium_scorched").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_uranium_scorched"); - ore_titanium = new BlockGeneric(Material.rock).setBlockName("ore_titanium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_titanium"); - ore_sulfur = new BlockOre(Material.rock).setBlockName("ore_sulfur").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_sulfur"); - ore_thorium = new BlockGeneric(Material.rock).setBlockName("ore_thorium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_thorium"); - - ore_niter = new BlockOre(Material.rock).setBlockName("ore_niter").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_niter"); - ore_copper = new BlockGeneric(Material.rock).setBlockName("ore_copper").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_copper"); - ore_tungsten = new BlockGeneric(Material.rock).setBlockName("ore_tungsten").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_tungsten"); - ore_aluminium = new BlockGeneric(Material.rock).setBlockName("ore_aluminium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_aluminium"); - ore_fluorite = new BlockOre(Material.rock).setBlockName("ore_fluorite").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_fluorite"); - ore_lead = new BlockGeneric(Material.rock).setBlockName("ore_lead").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_lead"); - ore_schrabidium = new BlockOre(Material.rock, 0.1F, 0.5F).setBlockName("ore_schrabidium").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":ore_schrabidium"); - ore_beryllium = new BlockGeneric(Material.rock).setBlockName("ore_beryllium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":ore_beryllium"); - ore_lignite = new BlockOre(Material.rock).setBlockName("ore_lignite").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":ore_lignite"); - ore_asbestos = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_asbestos").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":ore_asbestos"); - ore_coal_oil = new BlockCoalOil(Material.rock).setBlockName("ore_coal_oil").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":ore_coal_oil"); - ore_coal_oil_burning = new BlockCoalBurning(Material.rock).setBlockName("ore_coal_oil_burning").setCreativeTab(MainRegistry.blockTab).setLightLevel(10F/15F).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":ore_coal_oil_burning"); - - cluster_iron = new BlockCluster(Material.rock).setBlockName("cluster_iron").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":cluster_iron"); - cluster_titanium = new BlockCluster(Material.rock).setBlockName("cluster_titanium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":cluster_titanium"); - cluster_aluminium = new BlockCluster(Material.rock).setBlockName("cluster_aluminium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":cluster_aluminium"); - cluster_copper = new BlockCluster(Material.rock).setBlockName("cluster_copper").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":cluster_copper"); - - ore_nether_coal = new BlockNetherCoal(Material.rock, false, 5, true).setBlockName("ore_nether_coal").setCreativeTab(MainRegistry.blockTab).setLightLevel(10F/15F).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_coal"); - ore_nether_smoldering = new BlockSmolder(Material.rock).setBlockName("ore_nether_smoldering").setCreativeTab(MainRegistry.blockTab).setLightLevel(1F).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_smoldering"); - ore_nether_uranium = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_nether_uranium").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_uranium"); - ore_nether_uranium_scorched = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_nether_uranium_scorched").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_uranium_scorched"); - ore_nether_plutonium = new BlockGeneric(Material.rock).setBlockName("ore_nether_plutonium").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_plutonium"); - ore_nether_tungsten = new BlockGeneric(Material.rock).setBlockName("ore_nether_tungsten").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_tungsten"); - ore_nether_sulfur = new BlockOre(Material.rock).setBlockName("ore_nether_sulfur").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_sulfur"); - ore_nether_fire = new BlockOre(Material.rock).setBlockName("ore_nether_fire").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_fire"); - ore_nether_cobalt = new BlockOre(Material.rock).setBlockName("ore_nether_cobalt").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_cobalt"); - ore_nether_schrabidium = new BlockGeneric(Material.rock).setBlockName("ore_nether_schrabidium").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_schrabidium"); - - ore_meteor = new BlockMeteorOre().setBlockName("ore_meteor").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F); - - stone_gneiss = new BlockGeneric(Material.rock).setBlockName("stone_gneiss").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":stone_gneiss_var"); - ore_gneiss_iron = new BlockOre(Material.rock).setBlockName("ore_gneiss_iron").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_iron"); - ore_gneiss_gold = new BlockOre(Material.rock).setBlockName("ore_gneiss_gold").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_gold"); - ore_gneiss_uranium = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_gneiss_uranium").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_uranium"); - ore_gneiss_uranium_scorched = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_gneiss_uranium_scorched").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_uranium_scorched"); - ore_gneiss_copper = new BlockOre(Material.rock).setBlockName("ore_gneiss_copper").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_copper"); - ore_gneiss_asbestos = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_gneiss_asbestos").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_asbestos"); - ore_gneiss_lithium = new BlockOre(Material.rock).setBlockName("ore_gneiss_lithium").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_lithium"); - ore_gneiss_schrabidium = new BlockOre(Material.rock).setBlockName("ore_gneiss_schrabidium").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_schrabidium"); - ore_gneiss_rare = new BlockOre(Material.rock).setBlockName("ore_gneiss_rare").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_rare"); - ore_gneiss_gas = new BlockOre(Material.rock).setBlockName("ore_gneiss_gas").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_gas"); - - gneiss_brick = new BlockGeneric(Material.rock).setBlockName("gneiss_brick").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":gneiss_brick"); - gneiss_tile = new BlockGeneric(Material.rock).setBlockName("gneiss_tile").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":gneiss_tile"); - gneiss_chiseled = new BlockPillar(Material.rock, RefStrings.MODID + ":gneiss_tile").setBlockName("gneiss_chiseled").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":gneiss_chiseled"); - - stone_depth = new BlockDepth().setBlockName("stone_depth").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":stone_depth"); - ore_depth_cinnebar = new BlockDepthOre().setBlockName("ore_depth_cinnebar").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ore_depth_cinnebar"); - ore_depth_zirconium = new BlockDepthOre().setBlockName("ore_depth_zirconium").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ore_depth_zirconium"); - ore_depth_borax = new BlockDepthOre().setBlockName("ore_depth_borax").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ore_depth_borax"); - cluster_depth_iron = new BlockDepthOre().setBlockName("cluster_depth_iron").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":cluster_depth_iron"); - cluster_depth_titanium = new BlockDepthOre().setBlockName("cluster_depth_titanium").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":cluster_depth_titanium"); - cluster_depth_tungsten = new BlockDepthOre().setBlockName("cluster_depth_tungsten").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":cluster_depth_tungsten"); - ore_alexandrite = new BlockDepthOre().setBlockName("ore_alexandrite").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ore_alexandrite"); - - stone_keyhole = new BlockKeyhole().setBlockName("stone_keyhole").setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":stone_keyhole"); - - ore_random = new BlockMotherOfAllOres().setBlockName("ore_random").setCreativeTab(MainRegistry.blockTab); - ore_bedrock = new BlockBedrockOreTE().setBlockName("ore_bedrock").setCreativeTab(null); - ore_volcano = new BlockFissure().setBlockName("ore_volcano").setLightLevel(1F).setCreativeTab(MainRegistry.blockTab); - - depth_brick = new BlockDepth().setBlockName("depth_brick").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":depth_brick"); - depth_tiles = new BlockDepth().setBlockName("depth_tiles").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":depth_tiles"); - depth_nether_brick = new BlockDepth().setBlockName("depth_nether_brick").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":depth_nether_brick"); - depth_nether_tiles = new BlockDepth().setBlockName("depth_nether_tiles").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":depth_nether_tiles"); - depth_dnt = new BlockDepth().setBlockName("depth_dnt").setCreativeTab(MainRegistry.blockTab).setResistance(60000.0F).setBlockTextureName(RefStrings.MODID + ":depth_dnt"); - - stone_depth_nether = new BlockDepth().setBlockName("stone_depth_nether").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":stone_depth_nether"); - ore_depth_nether_neodymium = new BlockDepthOre().setBlockName("ore_depth_nether_neodymium").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ore_depth_nether_neodymium"); - - stone_porous = new BlockPorous().setBlockName("stone_porous").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":stone_porous"); - stone_resource = new BlockResourceStone().setBlockName("stone_resource").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F); - stalagmite = new BlockStalagmite().setBlockName("stalagmite").setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.0F); - stalactite = new BlockStalagmite().setBlockName("stalactite").setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.0F); - stone_biome = new BlockBiomeStone().setBlockName("stone_biome").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F); - - basalt = new BlockGeneric(Material.rock).setBlockName("basalt").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":basalt"); - ore_basalt = new BlockOreBasalt().setBlockName("ore_basalt").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_basalt"); - basalt_smooth = new BlockGeneric(Material.rock).setBlockName("basalt_smooth").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":basalt_smooth"); - basalt_brick = new BlockGeneric(Material.rock).setBlockName("basalt_brick").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":basalt_brick"); - basalt_polished = new BlockGeneric(Material.rock).setBlockName("basalt_polished").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":basalt_polished"); - basalt_tiles = new BlockGeneric(Material.rock).setBlockName("basalt_tiles").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":basalt_tiles"); - - ore_australium = new BlockGeneric(Material.rock).setBlockName("ore_australium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_australium"); - ore_rare = new BlockOre(Material.rock).setBlockName("ore_rare").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_rare"); - ore_cobalt = new BlockOre(Material.rock).setBlockName("ore_cobalt").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_cobalt"); - ore_cinnebar = new BlockOre(Material.rock).setBlockName("ore_cinnebar").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_cinnebar"); - ore_coltan = new BlockOre(Material.rock).setBlockName("ore_coltan").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_coltan"); - - ore_oil = new BlockOre(Material.rock).setBlockName("ore_oil").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_oil"); - ore_oil_empty = new BlockGeneric(Material.rock).setBlockName("ore_oil_empty").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_oil_empty"); - ore_oil_sand = new BlockFalling(Material.sand).setBlockName("ore_oil_sand").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeSand).setHardness(0.5F).setResistance(1.0F).setBlockTextureName(RefStrings.MODID + ":ore_oil_sand_alt"); - ore_bedrock_oil = new BlockGeneric(Material.rock).noMobSpawn().setBlockName("ore_bedrock_oil").setCreativeTab(MainRegistry.blockTab).setBlockUnbreakable().setResistance(1_000_000).setBlockTextureName(RefStrings.MODID + ":ore_bedrock_oil"); - - ore_tikite = new BlockDragonProof(Material.rock).setBlockName("ore_tikite").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_tikite_alt"); - - block_uranium = new BlockHazard().makeBeaconable().setBlockName("block_uranium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_uranium"); - block_u233 = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_u233").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_u233"); - block_u235 = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_u235").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_u235"); - block_u238 = new BlockHazard().makeBeaconable().setBlockName("block_u238").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_u238"); - block_uranium_fuel = new BlockHazard().makeBeaconable().setBlockName("block_uranium_fuel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_uranium_fuel"); - block_thorium = new BlockHazard().makeBeaconable().setBlockName("block_thorium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_thorium"); - block_thorium_fuel = new BlockHazard().makeBeaconable().setBlockName("block_thorium_fuel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_thorium_fuel"); - block_neptunium = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_neptunium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":block_neptunium"); - block_polonium = new BlockHotHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_polonium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_polonium"); - block_mox_fuel = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_mox_fuel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_mox_fuel"); - block_plutonium = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_plutonium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_plutonium"); - block_pu238 = new BlockHotHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_pu238").setCreativeTab(MainRegistry.blockTab).setLightLevel(5F/15F).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_pu238"); - block_pu239 = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_pu239").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_pu239"); - block_pu240 = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_pu240").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_pu240"); - block_pu_mix = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_pu_mix").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_pu_mix"); - block_plutonium_fuel = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_plutonium_fuel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_plutonium_fuel"); - block_titanium = new BlockBeaconable(Material.iron).setBlockName("block_titanium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_titanium"); - block_sulfur = new BlockBeaconable(Material.iron).setBlockName("block_sulfur").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_sulfur"); - block_niter = new BlockBeaconable(Material.iron).setBlockName("block_niter").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_niter"); - block_copper = new BlockBeaconable(Material.iron).setBlockName("block_copper").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":block_copper"); - block_red_copper = new BlockBeaconable(Material.iron).setBlockName("block_red_copper").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(25.0F).setBlockTextureName(RefStrings.MODID + ":block_red_copper"); - block_tungsten = new BlockBeaconable(Material.iron).setBlockName("block_tungsten").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":block_tungsten"); - block_aluminium = new BlockBeaconable(Material.iron).setBlockName("block_aluminium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":block_aluminium"); - block_fluorite = new BlockBeaconable(Material.iron).setBlockName("block_fluorite").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_fluorite"); - block_steel = new BlockBeaconable(Material.iron).setBlockName("block_steel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); - block_tcalloy = new BlockBeaconable(Material.iron).setBlockName("block_tcalloy").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(70.0F).setBlockTextureName(RefStrings.MODID + ":block_tcalloy"); - block_cdalloy = new BlockBeaconable(Material.iron).setBlockName("block_cdalloy").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(70.0F).setBlockTextureName(RefStrings.MODID + ":block_cdalloy"); - block_lead = new BlockBeaconable(Material.iron).setBlockName("block_lead").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_lead"); - block_bismuth = new BlockBeaconable(Material.iron).setBlockName("block_bismuth").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(90.0F).setBlockTextureName(RefStrings.MODID + ":block_bismuth"); - block_cadmium = new BlockBeaconable(Material.iron).setBlockName("block_cadmium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(90.0F).setBlockTextureName(RefStrings.MODID + ":block_cadmium"); - block_coltan = new BlockBeaconable(Material.iron).setBlockName("block_coltan").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_coltan"); - block_tantalium = new BlockBeaconable(Material.iron).setBlockName("block_tantalium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_tantalium"); - block_niobium = new BlockBeaconable(Material.iron).setBlockName("block_niobium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F); - block_trinitite = new BlockHazard().makeBeaconable().setBlockName("block_trinitite").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_trinitite"); - block_waste = new BlockNuclearWaste().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_waste").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_waste"); - block_waste_painted = new BlockNuclearWaste().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_waste_painted").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_waste_painted"); - block_waste_vitrified = new BlockNuclearWaste().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_waste_vitrified").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_waste_vitrified"); - ancient_scrap = new BlockOutgas(Material.iron, true, 1, true, true).setBlockName("ancient_scrap").setCreativeTab(MainRegistry.blockTab).setHardness(100.0F).setResistance(6000.0F).setBlockTextureName(RefStrings.MODID + ":ancient_scrap"); - block_corium = new BlockHazard(Material.iron).setBlockName("block_corium").setCreativeTab(MainRegistry.blockTab).setHardness(100.0F).setResistance(6000.0F).setBlockTextureName(RefStrings.MODID + ":block_corium"); - block_corium_cobble = new BlockOutgas(Material.iron, true, 1, true, true).setBlockName("block_corium_cobble").setCreativeTab(MainRegistry.blockTab).setHardness(100.0F).setResistance(6000.0F).setBlockTextureName(RefStrings.MODID + ":block_corium_cobble"); - block_scrap = new BlockFalling(Material.sand).setBlockName("block_scrap").setCreativeTab(MainRegistry.blockTab).setHardness(2.5F).setResistance(5.0F).setStepSound(Block.soundTypeGravel).setBlockTextureName(RefStrings.MODID + ":block_scrap"); - block_electrical_scrap = new BlockFalling(Material.iron).setBlockName("block_electrical_scrap").setCreativeTab(MainRegistry.blockTab).setHardness(2.5F).setResistance(5.0F).setStepSound(Block.soundTypeMetal).setBlockTextureName(RefStrings.MODID + ":electrical_scrap_alt2"); - block_beryllium = new BlockBeaconable(Material.iron).setBlockName("block_beryllium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":block_beryllium"); - block_schraranium = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.SCHRAB).setBlockName("block_schraranium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(250.0F).setBlockTextureName(RefStrings.MODID + ":block_schraranium"); - block_schrabidium = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.SCHRAB).setBlockName("block_schrabidium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_schrabidium"); - block_schrabidate = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.SCHRAB).setBlockName("block_schrabidate").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_schrabidate"); - block_solinium = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.SCHRAB).setBlockName("block_solinium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_solinium"); - block_schrabidium_fuel = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.SCHRAB).setBlockName("block_schrabidium_fuel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_schrabidium_fuel"); - block_euphemium = new BlockBeaconable(Material.iron).setBlockName("block_euphemium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(60000.0F).setBlockTextureName(RefStrings.MODID + ":block_euphemium"); - block_dineutronium = new BlockBeaconable(Material.iron).setBlockName("block_dineutronium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(60000.0F).setBlockTextureName(RefStrings.MODID + ":block_dineutronium"); - block_schrabidium_cluster = new BlockRotatablePillar(Material.rock, RefStrings.MODID + ":block_schrabidium_cluster_top").setBlockName("block_schrabidium_cluster").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(60000.0F).setBlockTextureName(RefStrings.MODID + ":block_schrabidium_cluster_side"); - block_euphemium_cluster = new BlockRotatablePillar(Material.rock, RefStrings.MODID + ":block_euphemium_cluster_top").setBlockName("block_euphemium_cluster").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(60000.0F).setBlockTextureName(RefStrings.MODID + ":block_euphemium_cluster_side"); - block_advanced_alloy = new BlockBeaconable(Material.iron).setBlockName("block_advanced_alloy").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":block_advanced_alloy"); - block_magnetized_tungsten = new BlockBeaconable(Material.iron).setBlockName("block_magnetized_tungsten").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(75.0F).setBlockTextureName(RefStrings.MODID + ":block_magnetized_tungsten"); - block_combine_steel = new BlockBeaconable(Material.iron).setBlockName("block_combine_steel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_combine_steel"); - block_desh = new BlockBeaconable(Material.iron).setBlockName("block_desh").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(300.0F).setBlockTextureName(RefStrings.MODID + ":block_desh"); - block_dura_steel = new BlockBeaconable(Material.iron).setBlockName("block_dura_steel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":block_dura_steel"); - block_starmetal = new BlockBeaconable(Material.iron).setBlockName("block_starmetal").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(400.0F).setBlockTextureName(RefStrings.MODID + ":block_starmetal"); - block_polymer = new BlockBeaconable(Material.rock).setBlockName("block_polymer").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypePiston).setHardness(3.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_polymer"); - block_bakelite = new BlockBeaconable(Material.rock).setBlockName("block_bakelite").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypePiston).setHardness(3.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":block_bakelite"); - block_rubber = new BlockBeaconable(Material.rock).setBlockName("block_rubber").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypePiston).setHardness(3.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":block_rubber"); - block_yellowcake = new BlockHazardFalling().makeBeaconable().setBlockName("block_yellowcake").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeSand).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_yellowcake"); - block_insulator = new BlockRotatablePillar(Material.cloth, RefStrings.MODID + ":block_insulator_top").setBlockName("block_insulator").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeCloth).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_insulator_side"); - block_fiberglass = new BlockRotatablePillar(Material.cloth, RefStrings.MODID + ":block_fiberglass_top").setBlockName("block_fiberglass").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeCloth).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":block_fiberglass_side"); - block_asbestos = new BlockOutgas(Material.cloth, true, 5, true).setBlockName("block_asbestos").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeCloth).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":block_asbestos"); - block_cobalt = new BlockBeaconable(Material.iron).setBlockName("block_cobalt").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_cobalt"); - block_lithium = new BlockLithium(Material.iron).setBlockName("block_lithium").setStepSound(Block.soundTypeMetal).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_lithium"); - block_zirconium = new BlockBeaconable(Material.iron).setBlockName("block_zirconium").setStepSound(Block.soundTypeMetal).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(30.0F).setBlockTextureName(RefStrings.MODID + ":block_zirconium"); - block_white_phosphorus = new BlockHazard(Material.rock).makeBeaconable().setBlockName("block_white_phosphorus").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_white_phosphorus"); - block_red_phosphorus = new BlockHazardFalling().makeBeaconable().setStepSound(Block.soundTypeSand).setBlockName("block_red_phosphorus").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_red_phosphorus"); - block_fallout = new BlockHazardFalling().setStepSound(Block.soundTypeGravel).setBlockName("block_fallout").setCreativeTab(MainRegistry.blockTab).setHardness(0.2F).setBlockTextureName(RefStrings.MODID + ":ash"); - block_foam = new BlockGeneric(Material.craftedSnow).setBlockName("block_foam").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeSnow).setHardness(0.5F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":foam"); - block_coke = new BlockCoke().setBlockName("block_coke").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F); - block_graphite = new BlockGraphite(Material.iron, 30, 5).setBlockName("block_graphite").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F); - block_graphite_drilled = new BlockGraphiteDrilled().setBlockName("block_graphite_drilled"); - block_graphite_fuel = new BlockGraphiteFuel().setBlockName("block_graphite_fuel"); - block_graphite_plutonium = new BlockGraphiteSource().setBlockName("block_graphite_plutonium"); - block_graphite_rod = new BlockGraphiteRod().setBlockName("block_graphite_rod").setBlockTextureName(RefStrings.MODID + ":block_graphite_rod_in"); - block_graphite_source = new BlockGraphiteSource().setBlockName("block_graphite_source"); - block_graphite_lithium = new BlockGraphiteBreedingFuel().setBlockName("block_graphite_lithium"); - block_graphite_tritium = new BlockGraphiteBreedingProduct().setBlockName("block_graphite_tritium"); - block_graphite_detector = new BlockGraphiteNeutronDetector().setBlockName("block_graphite_detector"); - block_boron = new BlockBeaconable(Material.iron).setBlockName("block_boron").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_boron"); - block_lanthanium = new BlockBeaconable(Material.iron).setBlockName("block_lanthanium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_lanthanium"); - block_ra226 = new BlockHazard().makeBeaconable().setBlockName("block_ra226").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_ra226"); - block_actinium = new BlockHazard().makeBeaconable().setBlockName("block_actinium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_actinium"); - block_tritium = new BlockRotatablePillar(Material.glass, RefStrings.MODID + ":block_tritium_top").setBlockName("block_tritium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGlass).setHardness(3.0F).setResistance(2.0F).setBlockTextureName(RefStrings.MODID + ":block_tritium_side"); - block_semtex = new BlockPlasticExplosive(Material.tnt).setBlockName("block_semtex").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(2.0F).setBlockTextureName(RefStrings.MODID + ":block_semtex"); - block_c4 = new BlockPlasticExplosive(Material.tnt).setBlockName("block_c4").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(2.0F).setBlockTextureName(RefStrings.MODID + ":block_c4"); - block_smore = new BlockPillar(Material.rock, RefStrings.MODID + ":block_smore_top").setBlockName("block_smore").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_smore_side"); - block_slag = new BlockSlag(Material.rock).setBlockName("block_slag").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeStone).setHardness(2.0F).setBlockTextureName(RefStrings.MODID + ":block_slag"); - - block_australium = new BlockBeaconable(Material.iron).setBlockName("block_australium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_australium"); - block_weidanium = new BlockBeaconable(Material.iron).setBlockName("block_weidanium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_weidanium"); - block_reiium = new BlockBeaconable(Material.iron).setBlockName("block_reiium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_reiium"); - block_unobtainium = new BlockBeaconable(Material.iron).setBlockName("block_unobtainium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_unobtainium"); - block_daffergon = new BlockBeaconable(Material.iron).setBlockName("block_daffergon").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_daffergon"); - block_verticium = new BlockBeaconable(Material.iron).setBlockName("block_verticium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_verticium"); - - block_cap = new BlockCap().setBlockName("block_cap").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F); - - deco_titanium = new BlockOre(Material.iron).noFortune().setBlockName("deco_titanium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_titanium"); - deco_red_copper = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_red_copper").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_red_copper"); - deco_tungsten = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_tungsten").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_tungsten"); - deco_aluminium = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_aluminium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_aluminium"); - deco_steel = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_steel").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_steel"); - deco_lead = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_lead").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_lead"); - deco_beryllium = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_beryllium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_beryllium"); - deco_asbestos = new BlockOutgas(Material.cloth, true, 5, true).noFortune().setBlockName("deco_asbestos").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_asbestos"); - deco_rbmk = new BlockGeneric(Material.iron).setBlockName("deco_rbmk").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(100.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_side"); - deco_rbmk_smooth = new BlockGeneric(Material.iron).setBlockName("deco_rbmk_smooth").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(100.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_top"); - - deco_emitter = new BlockEmitter().setBlockName("deco_emitter").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":emitter"); - part_emitter = new PartEmitter().setBlockName("part_emitter").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":part_top"); - deco_loot = new BlockLoot().setBlockName("deco_loot").setCreativeTab(null).setHardness(0.0F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); - pedestal = new BlockPedestal().setBlockName("pedestal").setCreativeTab(null).setHardness(2.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":pedestal_top"); - bobblehead = new BlockBobble().setBlockName("bobblehead").setCreativeTab(MainRegistry.blockTab).setHardness(0.0F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); - snowglobe = new BlockSnowglobe().setBlockName("snowglobe").setCreativeTab(MainRegistry.blockTab).setHardness(0.0F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":glass_boron"); - plushie = new BlockPlushie().setBlockName("plushie").setStepSound(Block.soundTypeCloth).setResistance(50_0000.0F).setCreativeTab(MainRegistry.blockTab).setHardness(0.0F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":block_fiberglass_side"); - - gravel_obsidian = new BlockFalling(Material.iron).setBlockName("gravel_obsidian").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGravel).setHardness(5.0F).setResistance(240.0F).setBlockTextureName(RefStrings.MODID + ":gravel_obsidian"); - gravel_diamond = new BlockFalling(Material.sand).setBlockName("gravel_diamond").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGravel).setHardness(0.6F).setBlockTextureName(RefStrings.MODID + ":gravel_diamond"); - asphalt = new BlockSpeedy(Material.rock, 1.5).setBlockName("asphalt").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(120.0F).setBlockTextureName(RefStrings.MODID + ":asphalt"); - asphalt_light = new BlockSpeedy(Material.rock, 1.5).setBlockName("asphalt_light").setCreativeTab(MainRegistry.blockTab).setLightLevel(1F).setHardness(15.0F).setResistance(120.0F).setBlockTextureName(RefStrings.MODID + ":asphalt_light"); - - reinforced_brick = new BlockGeneric(Material.rock).setBlockName("reinforced_brick").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(300.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_brick"); - reinforced_glass = new BlockNTMGlassCT(0, RefStrings.MODID + ":reinforced_glass", Material.rock).setBlockName("reinforced_glass").setCreativeTab(MainRegistry.blockTab).setLightOpacity(0).setHardness(2.0F).setResistance(25.0F); - reinforced_glass_pane = new BlockNTMGlassPane(0, RefStrings.MODID + ":reinforced_glass_pane", RefStrings.MODID + ":reinforced_glass_pane_edge", Material.rock, false).setBlockName("reinforced_glass_pane").setCreativeTab(MainRegistry.blockTab).setLightOpacity(1).setHardness(2.0F).setResistance(25.0F); - reinforced_light = new BlockGeneric(Material.rock).setBlockName("reinforced_light").setCreativeTab(MainRegistry.blockTab).setLightLevel(1.0F).setHardness(15.0F).setResistance(80.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_light"); - reinforced_sand = new BlockGeneric(Material.rock).setBlockName("reinforced_sand").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(40.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_sand"); - reinforced_lamp_off = new ReinforcedLamp(Material.rock, false).setBlockName("reinforced_lamp_off").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(80.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_lamp_off"); - reinforced_lamp_on = new ReinforcedLamp(Material.rock, true).setBlockName("reinforced_lamp_on").setHardness(15.0F).setResistance(80.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_lamp_on"); - reinforced_laminate = new BlockNTMGlassCT(1, RefStrings.MODID + ":reinforced_laminate", Material.rock, true).setBlockName("reinforced_laminate").setCreativeTab(MainRegistry.blockTab).setLightOpacity(0).setHardness(15.0F).setResistance(300.0F); - reinforced_laminate_pane = new BlockNTMGlassPane(1, RefStrings.MODID + ":reinforced_laminate_pane", RefStrings.MODID + ":reinforced_laminate_pane_edge", Material.rock, true).setBlockName("reinforced_laminate_pane").setCreativeTab(MainRegistry.blockTab).setLightOpacity(1).setHardness(15.0F).setResistance(300.0F); - - lamp_tritium_green_off = new TritiumLamp(Material.redstoneLight, false).setBlockName("lamp_tritium_green_off").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":lamp_tritium_green_off"); - lamp_tritium_green_on = new TritiumLamp(Material.redstoneLight, true).setBlockName("lamp_tritium_green_on").setStepSound(Block.soundTypeGlass).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":lamp_tritium_green_on"); - lamp_tritium_blue_off = new TritiumLamp(Material.redstoneLight, false).setBlockName("lamp_tritium_blue_off").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":lamp_tritium_blue_off"); - lamp_tritium_blue_on = new TritiumLamp(Material.redstoneLight, true).setBlockName("lamp_tritium_blue_on").setStepSound(Block.soundTypeGlass).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":lamp_tritium_blue_on"); - - lamp_demon = new DemonLamp().setBlockName("lamp_demon").setStepSound(Block.soundTypeMetal).setCreativeTab(MainRegistry.blockTab).setLightLevel(1F).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":lamp_demon"); - lantern = new BlockLantern().setBlockName("lantern").setStepSound(Block.soundTypeMetal).setCreativeTab(MainRegistry.blockTab).setLightLevel(1F).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); - lantern_behemoth = new BlockLanternBehemoth().setBlockName("lantern_behemoth").setStepSound(Block.soundTypeMetal).setCreativeTab(null).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":block_rust"); - - spotlight_incandescent = new Spotlight(Material.iron, 2, LightType.INCANDESCENT, true).setBlockName("spotlight_incandescent").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":cage_lamp"); - spotlight_incandescent_off = new Spotlight(Material.iron, 2, LightType.INCANDESCENT, false).setBlockName("spotlight_incandescent_off").setBlockTextureName(RefStrings.MODID + ":cage_lamp_off"); - spotlight_fluoro = new SpotlightModular(Material.iron, 8, LightType.FLUORESCENT, true).setBlockName("spotlight_fluoro").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":fluorescent_lamp"); - spotlight_fluoro_off = new SpotlightModular(Material.iron, 8, LightType.FLUORESCENT, false).setBlockName("spotlight_fluoro_off").setBlockTextureName(RefStrings.MODID + ":fluorescent_lamp_off"); - spotlight_halogen = new Spotlight(Material.iron, 32, LightType.HALOGEN, true).setBlockName("spotlight_halogen").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":flood_lamp"); - spotlight_halogen_off = new Spotlight(Material.iron, 32, LightType.HALOGEN, false).setBlockName("spotlight_halogen_off").setBlockTextureName(RefStrings.MODID + ":flood_lamp_off"); - spotlight_beam = new SpotlightBeam().setBlockName("spotlight_beam"); - floodlight = new Floodlight(Material.iron).setBlockName("floodlight").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - floodlight_beam = new FloodlightBeam().setBlockName("floodlight_beam"); - - reinforced_stone = new BlockGeneric(Material.rock).setBlockName("reinforced_stone").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(100.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_stone"); - concrete_smooth = new BlockRadResistant(Material.rock).setBlockName("concrete_smooth").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(140.0F).setBlockTextureName(RefStrings.MODID + ":concrete"); - concrete_colored = new BlockConcreteColored(Material.rock).setBlockName("concrete_colored").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(140.0F).setBlockTextureName(RefStrings.MODID + ":concrete"); - concrete_colored_ext = new BlockConcreteColoredExt(Material.rock).setBlockName("concrete_colored_ext").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(140.0F).setBlockTextureName(RefStrings.MODID + ":concrete_colored_ext"); - concrete = new BlockGeneric(Material.rock).setBlockName("concrete").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(140.0F).setBlockTextureName(RefStrings.MODID + ":concrete_tile"); - concrete_asbestos = new BlockGeneric(Material.rock).setBlockName("concrete_asbestos").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(150.0F).setBlockTextureName(RefStrings.MODID + ":concrete_asbestos"); - concrete_super = new BlockUberConcrete().setBlockName("concrete_super").setCreativeTab(MainRegistry.blockTab).setHardness(150.0F).setResistance(1000.0F); - concrete_super_broken = new BlockFalling(Material.rock).setBlockName("concrete_super_broken").setCreativeTab(MainRegistry.blockTab).setHardness(10.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":concrete_super_broken"); - concrete_pillar = new BlockRotatablePillar(Material.rock, RefStrings.MODID + ":concrete_pillar_top").setBlockName("concrete_pillar").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(180.0F).setBlockTextureName(RefStrings.MODID + ":concrete_pillar_side"); - brick_concrete = new BlockGeneric(Material.rock).setBlockName("brick_concrete").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(160.0F).setBlockTextureName(RefStrings.MODID + ":brick_concrete"); - brick_concrete_mossy = new BlockGeneric(Material.rock).setBlockName("brick_concrete_mossy").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(160.0F).setBlockTextureName(RefStrings.MODID + ":brick_concrete_mossy"); - brick_concrete_cracked = new BlockGeneric(Material.rock).setBlockName("brick_concrete_cracked").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":brick_concrete_cracked"); - brick_concrete_broken = new BlockGeneric(Material.rock).setBlockName("brick_concrete_broken").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(45.0F).setBlockTextureName(RefStrings.MODID + ":brick_concrete_broken"); - brick_concrete_marked = new BlockWriting(Material.rock, RefStrings.MODID + ":brick_concrete").setBlockName("brick_concrete_marked").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(160.0F).setBlockTextureName(RefStrings.MODID + ":brick_concrete_marked"); - brick_obsidian = new BlockGeneric(Material.rock).setBlockName("brick_obsidian").setCreativeTab(MainRegistry.blockTab).setLightOpacity(15).setHardness(15.0F).setResistance(120.0F).setBlockTextureName(RefStrings.MODID + ":brick_obsidian"); - brick_light = new BlockGeneric(Material.rock).setBlockName("brick_light").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":brick_light"); - brick_compound = new BlockGeneric(Material.rock).setBlockName("brick_compound").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(400.0F).setBlockTextureName(RefStrings.MODID + ":brick_compound"); - cmb_brick = new BlockGeneric(Material.rock).setBlockName("cmb_brick").setCreativeTab(MainRegistry.blockTab).setHardness(25.0F).setResistance(5000.0F).setBlockTextureName(RefStrings.MODID + ":cmb_brick"); - cmb_brick_reinforced = new BlockGeneric(Material.rock).setBlockName("cmb_brick_reinforced").setCreativeTab(MainRegistry.blockTab).setHardness(25.0F).setResistance(50000.0F).setBlockTextureName(RefStrings.MODID + ":cmb_brick_reinforced"); - brick_asbestos = new BlockOutgas(Material.rock, true, 5, true).setBlockName("brick_asbestos").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(1000.0F).setBlockTextureName(RefStrings.MODID + ":brick_asbestos"); - brick_fire = new BlockGeneric(Material.rock).setBlockName("brick_fire").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(35.0F).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - - ducrete_smooth = new BlockGeneric(Material.rock).setBlockName("ducrete_smooth").setCreativeTab(MainRegistry.blockTab).setHardness(20.0F).setResistance(500.0F).setBlockTextureName(RefStrings.MODID + ":ducrete"); - ducrete = new BlockGeneric(Material.rock).setBlockName("ducrete").setCreativeTab(MainRegistry.blockTab).setHardness(20.0F).setResistance(500.0F).setBlockTextureName(RefStrings.MODID + ":ducrete_tile"); - brick_ducrete = new BlockGeneric(Material.rock).setBlockName("brick_ducrete").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(750.0F).setBlockTextureName(RefStrings.MODID + ":brick_ducrete"); - reinforced_ducrete = new BlockGeneric(Material.rock).setBlockName("reinforced_ducrete").setCreativeTab(MainRegistry.blockTab).setHardness(20.0F).setResistance(1000.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_ducrete"); - - concrete_slab = new BlockMultiSlab(null, Material.rock, concrete_smooth, concrete, concrete_asbestos, ducrete_smooth, ducrete, asphalt).setBlockName("concrete_slab").setCreativeTab(MainRegistry.blockTab); - concrete_double_slab = new BlockMultiSlab(concrete_slab, Material.rock, concrete_smooth, concrete, concrete_asbestos, ducrete_smooth, ducrete, asphalt).setBlockName("concrete_double_slab").setCreativeTab(MainRegistry.blockTab); - concrete_brick_slab = new BlockMultiSlab(null, Material.rock, brick_concrete, brick_concrete_mossy, brick_concrete_cracked, brick_concrete_broken, brick_ducrete).setBlockName("concrete_brick_slab").setCreativeTab(MainRegistry.blockTab); - concrete_brick_double_slab = new BlockMultiSlab(concrete_brick_slab, Material.rock, brick_concrete, brick_concrete_mossy, brick_concrete_cracked, brick_concrete_broken, brick_ducrete).setBlockName("concrete_brick_double_slab").setCreativeTab(MainRegistry.blockTab); - brick_slab = new BlockMultiSlab(null, Material.rock, reinforced_stone, reinforced_brick, brick_obsidian, brick_light, brick_compound, brick_asbestos, brick_fire).setBlockName("brick_slab").setCreativeTab(MainRegistry.blockTab); - brick_double_slab = new BlockMultiSlab(brick_slab, Material.rock, reinforced_stone, reinforced_brick, brick_obsidian, brick_light, brick_compound, brick_asbestos, brick_fire).setBlockName("brick_double_slab").setCreativeTab(MainRegistry.blockTab); - - concrete_smooth_stairs = new BlockGenericStairs(concrete_smooth, 0).setBlockName("concrete_smooth_stairs").setCreativeTab(MainRegistry.blockTab); - concrete_stairs = new BlockGenericStairs(concrete, 0).setBlockName("concrete_stairs").setCreativeTab(MainRegistry.blockTab); - concrete_asbestos_stairs = new BlockGenericStairs(concrete_asbestos, 0).setBlockName("concrete_asbestos_stairs").setCreativeTab(MainRegistry.blockTab); - ducrete_smooth_stairs = new BlockGenericStairs(ducrete_smooth, 0).setBlockName("ducrete_smooth_stairs").setCreativeTab(MainRegistry.blockTab); - ducrete_stairs = new BlockGenericStairs(ducrete, 0).setBlockName("ducrete_stairs").setCreativeTab(MainRegistry.blockTab); - brick_concrete_stairs = new BlockGenericStairs(brick_concrete, 0).setBlockName("brick_concrete_stairs").setCreativeTab(MainRegistry.blockTab); - brick_concrete_mossy_stairs = new BlockGenericStairs(brick_concrete_mossy, 0).setBlockName("brick_concrete_mossy_stairs").setCreativeTab(MainRegistry.blockTab); - brick_concrete_cracked_stairs = new BlockGenericStairs(brick_concrete_cracked, 0).setBlockName("brick_concrete_cracked_stairs").setCreativeTab(MainRegistry.blockTab); - brick_concrete_broken_stairs = new BlockGenericStairs(brick_concrete_broken, 0).setBlockName("brick_concrete_broken_stairs").setCreativeTab(MainRegistry.blockTab); - brick_ducrete_stairs = new BlockGenericStairs(brick_ducrete, 0).setBlockName("brick_ducrete_stairs").setCreativeTab(MainRegistry.blockTab); - reinforced_stone_stairs = new BlockGenericStairs(reinforced_stone, 0).setBlockName("reinforced_stone_stairs").setCreativeTab(MainRegistry.blockTab); - reinforced_brick_stairs = new BlockGenericStairs(reinforced_brick, 0).setBlockName("reinforced_brick_stairs").setCreativeTab(MainRegistry.blockTab); - brick_obsidian_stairs = new BlockGenericStairs(brick_obsidian, 0).setBlockName("brick_obsidian_stairs").setCreativeTab(MainRegistry.blockTab); - brick_light_stairs = new BlockGenericStairs(brick_light, 0).setBlockName("brick_light_stairs").setCreativeTab(MainRegistry.blockTab); - brick_compound_stairs = new BlockGenericStairs(brick_compound, 0).setBlockName("brick_compound_stairs").setCreativeTab(MainRegistry.blockTab); - brick_asbestos_stairs = new BlockGenericStairs(brick_asbestos, 0).setBlockName("brick_asbestos_stairs").setCreativeTab(MainRegistry.blockTab); - brick_fire_stairs = new BlockGenericStairs(brick_fire, 0).setBlockName("brick_fire_stairs").setCreativeTab(MainRegistry.blockTab); - asphalt_stairs = new BlockSpeedyStairs(asphalt, 0, 1.5).setBlockName("asphalt_stairs").setCreativeTab(MainRegistry.blockTab); - - vinyl_tile = new BlockEnumMulti(Material.rock, TileType.class, true, true).setBlockName("vinyl_tile").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(10.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":vinyl_tile"); - - tile_lab = new BlockOutgas(Material.rock, false, 5, true).setBlockName("tile_lab").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(1.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":tile_lab"); - tile_lab_cracked = new BlockOutgas(Material.rock, false, 5, true).setBlockName("tile_lab_cracked").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(1.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":tile_lab_cracked"); - tile_lab_broken = new BlockOutgas(Material.rock, true, 5, true).setBlockName("tile_lab_broken").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(1.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":tile_lab_broken"); - - block_meteor = new BlockOre(Material.rock).noFortune().setBlockName("block_meteor").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor"); - block_meteor_cobble = new BlockOre(Material.rock).noFortune().setBlockName("block_meteor_cobble").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_cobble"); - block_meteor_broken = new BlockOre(Material.rock).noFortune().setBlockName("block_meteor_broken").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_crushed"); - block_meteor_molten = new BlockOre(Material.rock, true).noFortune().setBlockName("block_meteor_molten").setLightLevel(0.75F).setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_cobble_molten"); - block_meteor_treasure = new BlockMeteoriteTreasure(Material.rock).setBlockName("block_meteor_treasure").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_treasure"); - meteor_polished = new BlockGeneric(Material.rock).setBlockName("meteor_polished").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_polished"); - meteor_brick = new BlockGeneric(Material.rock).setBlockName("meteor_brick").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_brick"); - meteor_brick_mossy = new BlockGeneric(Material.rock).setBlockName("meteor_brick_mossy").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_brick_mossy"); - meteor_brick_cracked = new BlockGeneric(Material.rock).setBlockName("meteor_brick_cracked").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_brick_cracked"); - meteor_brick_chiseled = new BlockGeneric(Material.rock).setBlockName("meteor_brick_chiseled").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_brick_chiseled"); - meteor_pillar = new BlockRotatablePillar(Material.rock, RefStrings.MODID + ":meteor_pillar_top").setBlockName("meteor_pillar").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_pillar"); - meteor_spawner = new BlockCybercrab(Material.rock).setBlockName("meteor_spawner").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F); - meteor_battery = new BlockPillar(Material.rock, RefStrings.MODID + ":meteor_power").setBlockName("meteor_battery").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_spawner_side"); - moon_turf = new BlockFalling(Material.sand).setBlockName("moon_turf").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":moon_turf"); - - brick_jungle = new BlockGeneric(Material.rock).setBlockName("brick_jungle").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":brick_jungle"); - brick_jungle_cracked = new BlockGeneric(Material.rock).setBlockName("brick_jungle_cracked").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_cracked"); - brick_jungle_fragile = new FragileBrick(Material.rock).setBlockName("brick_jungle_fragile").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_fragile"); - brick_jungle_lava = new BlockGeneric(Material.rock).setBlockName("brick_jungle_lava").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setLightLevel(5F/15F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_lava"); - brick_jungle_ooze = new BlockOre(Material.rock).setBlockName("brick_jungle_ooze").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setLightLevel(5F/15F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_ooze"); - brick_jungle_mystic = new BlockOre(Material.rock).setBlockName("brick_jungle_mystic").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setLightLevel(5F/15F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_mystic"); - brick_jungle_trap = new TrappedBrick(Material.rock).setBlockName("brick_jungle_trap").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_trap"); - brick_jungle_glyph = new BlockGlyph(Material.rock).setBlockName("brick_jungle_glyph").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F); - brick_jungle_circle = new BlockBallsSpawner(Material.rock).setBlockName("brick_jungle_circle").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_circle"); - - brick_red = new BlockRedBrick(Material.rock).setBlockName("brick_red").setResistance(10_000); - - deco_computer = new BlockDecoModel(Material.iron, DecoComputerEnum.class, true, false).setBlockBoundsTo(.160749F, 0F, 0F, .839251F, .867849F, .622184F).setBlockName("deco_computer").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_computer"); - deco_crt = new BlockDecoCRT(Material.iron).setBlockName("deco_crt").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); - deco_toaster = new BlockDecoToaster(Material.iron).setBlockName("deco_toaster").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); - filing_cabinet = new BlockDecoContainer(Material.iron, DecoCabinetEnum.class, true, false, TileEntityFileCabinet.class).setBlockBoundsTo(.1875F, 0F, 0F, .8125F, 1F, .75F).setBlockName("filing_cabinet").setCreativeTab(MainRegistry.blockTab).setHardness(10.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - tape_recorder = new DecoTapeRecorder(Material.iron).setBlockName("tape_recorder").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":deco_tape_recorder"); - steel_poles = new DecoSteelPoles(Material.iron).setBlockName("steel_poles").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":steel_beam"); - pole_top = new DecoPoleTop(Material.iron).setBlockName("pole_top").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":deco_pole_top"); - pole_satellite_receiver = new DecoPoleSatelliteReceiver(Material.iron).setBlockName("pole_satellite_receiver").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":deco_satellite_receiver"); - steel_wall = new DecoBlock(Material.iron).setBlockName("steel_wall").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":steel_wall"); - steel_corner = new DecoBlock(Material.iron).setBlockName("steel_corner").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":steel_wall"); - steel_roof = new DecoBlock(Material.iron).setBlockName("steel_roof").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":steel_roof"); - steel_beam = new DecoBlock(Material.iron).setBlockName("steel_beam").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":steel_beam"); - steel_scaffold = new BlockScaffold().setBlockName("steel_scaffold").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":deco_steel_orig"); - steel_grate = new BlockGrate(Material.iron).setBlockName("steel_grate").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F); - steel_grate_wide = new BlockGrate(Material.iron).setBlockName("steel_grate_wide").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F); - scaffold_dynamic = new BlockScaffoldDynamic().setBlockName("scaffold_dynamic").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - deco_pipe = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side", 0).setBlockName("deco_pipe").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top"); - deco_pipe_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_rusty", 0).setBlockName("deco_pipe_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_rusty"); - deco_pipe_green = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green", 0).setBlockName("deco_pipe_green").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green"); - deco_pipe_green_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green_rusty", 0).setBlockName("deco_pipe_green_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green_rusty"); - deco_pipe_red = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_red", 0).setBlockName("deco_pipe_red").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_red"); - deco_pipe_marked = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_marked", 0).setBlockName("deco_pipe_marked").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_marked"); - deco_pipe_rim = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side", 1).setBlockName("deco_pipe_rim").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top"); - deco_pipe_rim_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_rusty", 1).setBlockName("deco_pipe_rim_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_rusty"); - deco_pipe_rim_green = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green", 1).setBlockName("deco_pipe_rim_green").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green"); - deco_pipe_rim_green_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green_rusty", 1).setBlockName("deco_pipe_rim_green_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green_rusty"); - deco_pipe_rim_red = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_red", 1).setBlockName("deco_pipe_rim_red").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_red"); - deco_pipe_rim_marked = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_marked", 1).setBlockName("deco_pipe_rim_marked").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_marked"); - deco_pipe_framed = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side", 3).setBlockName("deco_pipe_framed").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top"); - deco_pipe_framed_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_rusty", 3).setBlockName("deco_pipe_framed_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_rusty"); - deco_pipe_framed_green = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green", 3).setBlockName("deco_pipe_framed_green").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green"); - deco_pipe_framed_green_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green_rusty", 3).setBlockName("deco_pipe_framed_green_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green_rusty"); - deco_pipe_framed_red = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_red", 3).setBlockName("deco_pipe_framed_red").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_red"); - deco_pipe_framed_marked = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_marked", 3).setBlockName("deco_pipe_framed_marked").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_marked"); - deco_pipe_quad = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side", 2).setBlockName("deco_pipe_quad").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top"); - deco_pipe_quad_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_rusty", 2).setBlockName("deco_pipe_quad_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_rusty"); - deco_pipe_quad_green = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green", 2).setBlockName("deco_pipe_quad_green").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green"); - deco_pipe_quad_green_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green_rusty", 2).setBlockName("deco_pipe_quad_green_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green_rusty"); - deco_pipe_quad_red = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_red", 2).setBlockName("deco_pipe_quad_red").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_red"); - deco_pipe_quad_marked = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_marked", 2).setBlockName("deco_pipe_quad_marked").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_marked"); - - broadcaster_pc = new PinkCloudBroadcaster(Material.iron).setBlockName("broadcaster_pc").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":broadcaster_pc"); - geiger = new GeigerCounter(Material.iron).setBlockName("geiger").setCreativeTab(MainRegistry.machineTab).setHardness(15.0F).setResistance(0.25F).setBlockTextureName(RefStrings.MODID + ":geiger"); - hev_battery = new HEVBattery(Material.iron).setBlockName("hev_battery").setCreativeTab(MainRegistry.machineTab).setLightLevel(10F/15F).setHardness(0.5F).setResistance(0.25F).setBlockTextureName(RefStrings.MODID + ":hev_battery"); - - fence_metal = new BlockMetalFence(Material.iron).setBlockName("fence_metal").setCreativeTab(MainRegistry.machineTab).setHardness(15.0F).setResistance(0.25F).setBlockTextureName(RefStrings.MODID + ":fence_metal"); - - ash_digamma = new BlockAshes(Material.sand).setBlockName("ash_digamma").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setResistance(150.0F).setBlockTextureName(RefStrings.MODID + ":ash_digamma"); - sand_boron = new BlockFalling(Material.sand).setBlockName("sand_boron").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_boron"); - sand_lead = new BlockFalling(Material.sand).setBlockName("sand_lead").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_lead"); - sand_uranium = new BlockFalling(Material.sand).setBlockName("sand_uranium").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_uranium"); - sand_polonium = new BlockFalling(Material.sand).setBlockName("sand_polonium").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_polonium"); - sand_quartz = new BlockFalling(Material.sand).setBlockName("sand_quartz").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_quartz"); - glass_boron = new BlockNTMGlassCT(0, RefStrings.MODID + ":glass_boron", Material.glass).setBlockName("glass_boron").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(0.3F); - glass_lead = new BlockNTMGlassCT(0, RefStrings.MODID + ":glass_lead", Material.glass).setBlockName("glass_lead").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(0.3F); - glass_uranium = new BlockNTMGlassCT(1, RefStrings.MODID + ":glass_uranium", Material.glass).setBlockName("glass_uranium").setLightLevel(5F/15F).setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(0.3F); - glass_trinitite = new BlockNTMGlassCT(1, RefStrings.MODID + ":glass_trinitite", Material.glass).setBlockName("glass_trinitite").setLightLevel(5F/15F).setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(0.3F); - glass_polonium = new BlockNTMGlassCT(1, RefStrings.MODID + ":glass_polonium", Material.glass).setBlockName("glass_polonium").setLightLevel(5F/15F).setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(0.3F); - glass_ash = new BlockNTMGlassCT(1, RefStrings.MODID + ":glass_ash", Material.glass).setBlockName("glass_ash").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(3F); - glass_quartz = new BlockNTMGlassCT(0, RefStrings.MODID + ":glass_quartz", Material.packedIce, true).setBlockName("glass_quartz").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGlass).setHardness(1.0F).setResistance(40.0F).setBlockTextureName(RefStrings.MODID + "glass_quartz"); - - mush = new BlockMush(Material.plants).setBlockName("mush").setCreativeTab(MainRegistry.blockTab).setLightLevel(0.5F).setStepSound(Block.soundTypeGrass).setBlockTextureName(RefStrings.MODID + ":mush"); - mush_block = new BlockMushHuge(Material.plants).setBlockName("mush_block").setLightLevel(1.0F).setStepSound(Block.soundTypeGrass).setHardness(0.2F).setBlockTextureName(RefStrings.MODID + ":mush_block_skin"); - mush_block_stem = new BlockMushHuge(Material.plants).setBlockName("mush_block_stem").setLightLevel(1.0F).setStepSound(Block.soundTypeGrass).setHardness(0.2F).setBlockTextureName(RefStrings.MODID + ":mush_block_stem"); - glyphid_base = new BlockGlyphid(Material.coral).setBlockName("glyphid_base").setStepSound(Block.soundTypeCloth).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":glyphid_base"); - glyphid_spawner = new BlockGlyphidSpawner(Material.coral).setBlockName("glyphid_spawner").setStepSound(Block.soundTypeCloth).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":glyphid_eggs_alt"); - - plant_flower = new BlockNTMFlower().setBlockName("plant_flower").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGrass).setHardness(0.0F); - plant_tall = new BlockTallPlant().setBlockName("plant_tall").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGrass).setHardness(0.0F); - plant_dead = new BlockDeadPlant().setBlockName("plant_dead").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGrass).setHardness(0.0F); - reeds = new BlockReeds().setBlockName("plant_reeds").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGrass).setHardness(0.0F); - - waste_earth = new WasteEarth(Material.ground, true).setBlockName("waste_earth").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.blockTab).setHardness(0.6F).setBlockTextureName(RefStrings.MODID + ":waste_earth"); - waste_mycelium = new WasteEarth(Material.ground, true).setBlockName("waste_mycelium").setStepSound(Block.soundTypeGrass).setLightLevel(1F).setCreativeTab(MainRegistry.blockTab).setHardness(0.6F).setBlockTextureName(RefStrings.MODID + ":waste_mycelium_side"); - waste_trinitite = new BlockOre(Material.sand).noFortune().setBlockName("waste_trinitite").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":waste_trinitite"); - waste_trinitite_red = new BlockOre(Material.sand).noFortune().setBlockName("waste_trinitite_red").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":waste_trinitite_red"); - waste_log = new WasteLog(Material.wood).setBlockName("waste_log").setStepSound(Block.soundTypeWood).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(2.5F); - waste_leaves = new WasteLeaves(Material.leaves).setBlockName("waste_leaves").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setBlockTextureName(RefStrings.MODID + ":waste_leaves"); - waste_planks = new BlockOre(Material.wood).setBlockName("waste_planks").setStepSound(Block.soundTypeWood).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":waste_planks"); - frozen_dirt = new BlockOre(Material.ground).setBlockName("frozen_dirt").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":frozen_dirt"); - frozen_grass = new WasteEarth(Material.ground, false).setBlockName("frozen_grass").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F); - frozen_log = new WasteLog(Material.wood).setBlockName("frozen_log").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F); - frozen_planks = new BlockOre(Material.wood).setBlockName("frozen_planks").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":frozen_planks"); - fallout = new BlockFallout(Material.sand).setBlockName("fallout").setStepSound(Block.soundTypeGravel).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setLightOpacity(0).setBlockTextureName(RefStrings.MODID + ":ash"); - foam_layer = new BlockLayering(Material.snow).setBlockName("foam_layer").setStepSound(Block.soundTypeSnow).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setLightOpacity(0).setBlockTextureName(RefStrings.MODID + ":foam"); - sand_boron_layer = new BlockLayering(Material.sand).setBlockName("sand_boron_layer").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setLightOpacity(0).setBlockTextureName(RefStrings.MODID + ":sand_boron"); - leaves_layer = new BlockLayering(Material.leaves).setBlockName("leaves_layer").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setLightOpacity(0).setBlockTextureName(RefStrings.MODID + ":waste_leaves"); - oil_spill = new BlockLayering(Material.ground).setBlockName("oil_spill").setStepSound(Block.soundTypeSnow).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setLightOpacity(0).setBlockTextureName(RefStrings.MODID + ":oil_spill"); - - burning_earth = new WasteEarth(Material.ground, true).setBlockName("burning_earth").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.blockTab).setHardness(0.6F).setBlockTextureName(RefStrings.MODID + ":burning_earth"); - tektite = new BlockGeneric(Material.sand).setBlockName("tektite").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":tektite"); - ore_tektite_osmiridium = new BlockGeneric(Material.sand).setBlockName("ore_tektite_osmiridium").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":ore_tektite_osmiridium"); - impact_dirt = new BlockDirt(Material.ground, true).setBlockName("impact_dirt").setStepSound(Block.soundTypeGravel).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":waste_earth_bottom"); - dirt_dead = new BlockFalling(Material.ground).setBlockName("dirt_dead").setStepSound(Block.soundTypeGravel).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":dirt_dead"); - dirt_oily = new BlockFalling(Material.ground).setBlockName("dirt_oily").setStepSound(Block.soundTypeGravel).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":dirt_oily"); - sand_dirty = new BlockFalling(Material.sand).setBlockName("sand_dirty").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_dirty"); - sand_dirty_red = new BlockFalling(Material.sand).setBlockName("sand_dirty_red").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_dirty_red"); - stone_cracked = new BlockFalling(Material.rock).setBlockName("stone_cracked").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":stone_cracked"); - - sellafield_slaked = new BlockSellafieldSlaked(Material.rock).setBlockName("sellafield_slaked").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":sellafield_slaked"); - sellafield_bedrock = new BlockSellafieldSlaked(Material.rock).setBlockName("sellafield_bedrock").setBlockUnbreakable().setResistance(6000000.0F).setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sellafield_slaked"); - sellafield = new BlockSellafield(Material.rock).setBlockName("sellafield").setStepSound(Block.soundTypeStone).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":sellafield_0"); - ore_sellafield_diamond = new BlockSellafieldOre(Material.rock).setBlockName("ore_sellafield_diamond").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":ore_overlay_diamond"); - ore_sellafield_emerald = new BlockSellafieldOre(Material.rock).setBlockName("ore_sellafield_emerald").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":ore_overlay_emerald"); - ore_sellafield_uranium_scorched = new BlockSellafieldOre(Material.rock).setBlockName("ore_sellafield_uranium_scorched").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":ore_overlay_uranium_scorched"); - ore_sellafield_schrabidium = new BlockSellafieldOre(Material.rock).setBlockName("ore_sellafield_schrabidium").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":ore_overlay_schrabidium"); - ore_sellafield_radgem = new BlockSellafieldOre(Material.rock).setBlockName("ore_sellafield_radgem").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":ore_overlay_radgem"); - - geysir_water = new BlockGeysir(Material.rock).setBlockName("geysir_water").setStepSound(Block.soundTypeStone).setHardness(5.0F); - geysir_chlorine = new BlockGeysir(Material.rock).setBlockName("geysir_chlorine").setStepSound(Block.soundTypeStone).setHardness(5.0F); - geysir_vapor = new BlockGeysir(Material.rock).setBlockName("geysir_vapor").setStepSound(Block.soundTypeStone).setHardness(5.0F); - geysir_nether = new BlockGeysir(Material.rock).setBlockName("geysir_nether").setLightLevel(1.0F).setStepSound(Block.soundTypeStone).setHardness(2.0F); - - nuke_gadget = new NukeGadget(Material.iron).setBlockName("nuke_gadget").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":theGadget"); - nuke_boy = new NukeBoy(Material.iron).setBlockName("nuke_boy").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":lilBoy"); - nuke_man = new NukeMan(Material.iron).setBlockName("nuke_man").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":fatMan"); - nuke_mike = new NukeMike(Material.iron).setBlockName("nuke_mike").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":ivyMike"); - nuke_tsar = new NukeTsar(Material.iron).setBlockName("nuke_tsar").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":tsarBomba"); - nuke_fleija = new NukeFleija(Material.iron).setBlockName("nuke_fleija").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":fleija"); - nuke_prototype = new NukePrototype(Material.iron).setBlockName("nuke_prototype").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200).setBlockTextureName(RefStrings.MODID + ":prototype"); - nuke_custom = new NukeCustom(Material.iron).setBlockName("nuke_custom").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":custom"); - nuke_solinium = new NukeSolinium(Material.iron).setBlockName("nuke_solinium").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":nuke_solinium"); - nuke_n2 = new NukeN2(Material.iron).setBlockName("nuke_n2").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":nuke_n2"); - nuke_fstbmb = new NukeBalefire(Material.iron).setBlockName("nuke_fstbmb").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":nuke_fstbmb"); - - bomb_multi = new BombMulti(Material.iron).setBlockName("bomb_multi").setCreativeTab(MainRegistry.nukeTab).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":bomb_multi1"); - - flame_war = new BombFlameWar(Material.iron).setBlockName("flame_war").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":flame_war"); - float_bomb = new BombFloat(Material.iron).setBlockName("float_bomb").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F); - therm_endo = new BombThermo(Material.iron).setBlockName("therm_endo").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F); - therm_exo = new BombThermo(Material.iron).setBlockName("therm_exo").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F); - emp_bomb = new BombFloat(Material.iron).setBlockName("emp_bomb").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F); - det_cord = new DetCord(Material.iron).setBlockName("det_cord").setCreativeTab(MainRegistry.nukeTab).setHardness(0.1F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":det_cord"); - det_charge = new ExplosiveCharge(Material.iron).setBlockName("det_charge").setCreativeTab(MainRegistry.nukeTab).setHardness(0.1F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":det_charge"); - det_nuke = new ExplosiveCharge(Material.iron).setBlockName("det_nuke").setCreativeTab(MainRegistry.nukeTab).setHardness(0.1F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":det_nuke"); - det_miner = new DetMiner(Material.iron, RefStrings.MODID + ":det_miner_top").setBlockName("det_miner").setCreativeTab(MainRegistry.nukeTab).setHardness(0.1F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":det_miner_side"); - red_barrel = new RedBarrel(Material.iron, true).setBlockName("red_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_red"); - pink_barrel = new RedBarrel(Material.iron, true).setBlockName("pink_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_pink"); - yellow_barrel = new YellowBarrel(Material.iron).setBlockName("yellow_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_yellow"); - vitrified_barrel = new YellowBarrel(Material.iron).setBlockName("vitrified_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_vitrified"); - lox_barrel = new RedBarrel(Material.iron, false).setBlockName("lox_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_lox"); - taint_barrel = new RedBarrel(Material.iron, false).setBlockName("taint_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_taint"); - crashed_balefire = new BlockCrashedBomb(Material.iron).setBlockName("crashed_bomb").setCreativeTab(MainRegistry.nukeTab).setBlockUnbreakable().setResistance(6000.0F).setBlockTextureName(RefStrings.MODID + ":crashed_balefire"); - fireworks = new BlockFireworks(Material.iron).setBlockName("fireworks").setCreativeTab(MainRegistry.nukeTab).setResistance(5.0F); - charge_dynamite = new BlockChargeDynamite().setBlockName("charge_dynamite").setCreativeTab(MainRegistry.nukeTab).setResistance(1.0F); - charge_miner = new BlockChargeMiner().setBlockName("charge_miner").setCreativeTab(MainRegistry.nukeTab).setResistance(1.0F); - charge_c4 = new BlockChargeC4().setBlockName("charge_c4").setCreativeTab(MainRegistry.nukeTab).setResistance(1.0F); - charge_semtex = new BlockChargeSemtex().setBlockName("charge_semtex").setCreativeTab(MainRegistry.nukeTab).setResistance(1.0F); - mine_ap = new Landmine(Material.iron, 1.5D, 1D).setBlockName("mine_ap").setCreativeTab(MainRegistry.nukeTab).setHardness(1.0F).setBlockTextureName(RefStrings.MODID + ":mine_ap"); - mine_he = new Landmine(Material.iron, 2D, 5D).setBlockName("mine_he").setCreativeTab(MainRegistry.nukeTab).setHardness(1.0F).setBlockTextureName(RefStrings.MODID + ":mine_he"); - mine_shrap = new Landmine(Material.iron, 1.5D, 1D).setBlockName("mine_shrap").setCreativeTab(MainRegistry.nukeTab).setHardness(1.0F).setBlockTextureName(RefStrings.MODID + ":mine_shrap"); - mine_fat = new Landmine(Material.iron, 2.5D, 1D).setBlockName("mine_fat").setCreativeTab(MainRegistry.nukeTab).setHardness(1.0F).setBlockTextureName(RefStrings.MODID + ":mine_fat"); - dynamite = new BlockDynamite().setBlockName("dynamite").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.nukeTab).setHardness(0.0F).setBlockTextureName(RefStrings.MODID + ":dynamite"); - tnt = new BlockTNT().setBlockName("tnt_ntm").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.nukeTab).setHardness(0.0F).setBlockTextureName(RefStrings.MODID + ":tnt"); - semtex = new BlockSemtex().setBlockName("semtex").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.nukeTab).setHardness(0.0F).setBlockTextureName(RefStrings.MODID + ":semtex"); - c4 = new BlockC4().setBlockName("c4").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.nukeTab).setHardness(0.0F).setBlockTextureName(RefStrings.MODID + ":c4"); - fissure_bomb = new BlockFissureBomb().setBlockName("fissure_bomb").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.nukeTab).setHardness(0.0F).setBlockTextureName(RefStrings.MODID + ":fissure_bomb"); - - pump_steam = new MachinePump().setBlockName("pump_steam").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_copper"); - pump_electric = new MachinePump().setBlockName("pump_electric").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - heater_firebox = new HeaterFirebox().setBlockName("heater_firebox").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - heater_oven = new HeaterOven().setBlockName("heater_oven").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - heater_oilburner = new HeaterOilburner().setBlockName("heater_oilburner").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - heater_electric = new HeaterElectric().setBlockName("heater_electric").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - heater_heatex = new HeaterHeatex().setBlockName("heater_heatex").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_ashpit = new MachineAshpit().setBlockName("machine_ashpit").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName("stonebrick"); - - furnace_iron = new FurnaceIron().setBlockName("furnace_iron").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_aluminium"); - furnace_steel = new FurnaceSteel().setBlockName("furnace_steel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - furnace_combination = new FurnaceCombination().setBlockName("furnace_combination").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_light_alt"); - machine_stirling = new MachineStirling().setBlockName("machine_stirling").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_stirling_steel = new MachineStirling().setBlockName("machine_stirling_steel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_stirling_creative = new MachineStirling().setBlockName("machine_stirling_creative").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_sawmill = new MachineSawmill().setBlockName("machine_sawmill").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_strand_caster = new MachineStrandCaster().setBlockName("machine_strand_caster").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - machine_crucible = new MachineCrucible().setBlockName("machine_crucible").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - machine_boiler = new MachineHeatBoiler().setBlockName("machine_boiler").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_copper"); - machine_industrial_boiler = new MachineHeatBoilerIndustrial().setBlockName("machine_industrial_boiler").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - foundry_mold = new FoundryMold().setBlockName("foundry_mold").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - foundry_basin = new FoundryBasin().setBlockName("foundry_basin").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - foundry_channel = new FoundryChannel().setBlockName("foundry_channel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - foundry_tank = new FoundryTank().setBlockName("foundry_tank").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - foundry_outlet = new FoundryOutlet().setBlockName("foundry_outlet").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - foundry_slagtap = new FoundrySlagtap().setBlockName("foundry_slagtap").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - slag = new BlockDynamicSlag().setBlockName("slag").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":slag"); - - machine_difurnace_off = new MachineDiFurnace(false).setBlockName("machine_difurnace_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_difurnace_on = new MachineDiFurnace(true).setBlockName("machine_difurnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); - machine_difurnace_extension = new MachineDiFurnaceExtension().setBlockName("machine_difurnace_extension").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_difurnace_rtg_off = new MachineDiFurnaceRTG(false).setBlockName("machine_difurnace_rtg_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_difurnace_rtg_on = new MachineDiFurnaceRTG(true).setBlockName("machine_difurnace_rtg_on").setHardness(5.0F).setResistance(10.0F).setLightLevel(2.0F).setCreativeTab(null); - - machine_centrifuge = new MachineCentrifuge(Material.iron).setBlockName("machine_centrifuge").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_gascent = new MachineGasCent(Material.iron).setBlockName("machine_gascent").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_fel = new MachineFEL(Material.iron).setBlockName("machine_fel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_silex = new MachineSILEX(Material.iron).setBlockName("machine_silex").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_crystallizer = new MachineCrystallizer(Material.iron).setBlockName("machine_crystallizer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_crystallizer"); - - machine_uf6_tank = new MachineUF6Tank(Material.iron).setBlockName("machine_uf6_tank").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - - machine_puf6_tank = new MachinePuF6Tank(Material.iron).setBlockName("machine_puf6_tank").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - - machine_reactor_breeding = new MachineReactorBreeding(Material.iron).setBlockName("machine_reactor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_reactor"); - - machine_furnace_brick_off = new MachineBrickFurnace(false).setBlockName("machine_furnace_brick_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_furnace_brick_on = new MachineBrickFurnace(true).setBlockName("machine_furnace_brick_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); - machine_nuke_furnace_off = new MachineNukeFurnace(false).setBlockName("machine_nuke_furnace_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_nuke_furnace_on = new MachineNukeFurnace(true).setBlockName("machine_nuke_furnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); - machine_rtg_furnace_off = new MachineRtgFurnace(false).setBlockName("machine_rtg_furnace_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_rtg_furnace_on = new MachineRtgFurnace(true).setBlockName("machine_rtg_furnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); - - machine_industrial_generator = new MachineIGenerator(Material.iron).setBlockName("machine_industrial_generator").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName("gold_block"); - machine_cyclotron = new MachineCyclotron(Material.iron).setBlockName("machine_cyclotron").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":cyclotron"); - machine_exposure_chamber = new MachineExposureChamber(Material.iron).setBlockName("machine_exposure_chamber").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_aluminium"); - machine_radgen = new MachineRadGen(Material.iron).setBlockName("machine_radgen").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_radgen"); - - hadron_plating = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating"); - hadron_plating_blue = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_blue").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_blue"); - hadron_plating_black = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_black").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_black"); - hadron_plating_yellow = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_yellow").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_yellow"); - hadron_plating_striped = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_striped").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_striped"); - hadron_plating_voltz = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_voltz").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_voltz"); - hadron_plating_glass = new BlockNTMGlass(0, RefStrings.MODID + ":hadron_plating_glass", Material.iron, true).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_glass").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_glass"); - hadron_coil_alloy = new BlockHadronCoil(Material.iron, 10).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_alloy").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_alloy"); - hadron_coil_gold = new BlockHadronCoil(Material.iron, 25).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_gold").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_gold"); - hadron_coil_neodymium = new BlockHadronCoil(Material.iron, 50).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_neodymium").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_neodymium"); - hadron_coil_magtung = new BlockHadronCoil(Material.iron, 100).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_magtung").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_magtung"); - hadron_coil_schrabidium = new BlockHadronCoil(Material.iron, 250).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_schrabidium").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_schrabidium"); - hadron_coil_schrabidate = new BlockHadronCoil(Material.iron, 500).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_schrabidate").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_schrabidate"); - hadron_coil_starmetal = new BlockHadronCoil(Material.iron, 1000).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_starmetal").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_starmetal"); - hadron_coil_chlorophyte = new BlockHadronCoil(Material.iron, 2500).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_chlorophyte").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_chlorophyte"); - hadron_coil_mese = new BlockHadronCoil(Material.iron, 10000).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_mese").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_mese"); - hadron_power = new BlockHadronPower(Material.iron, 1000000L).setStepSound(Block.soundTypeMetal).setBlockName("hadron_power").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_power"); - hadron_power_10m = new BlockHadronPower(Material.iron, 10000000L).setStepSound(Block.soundTypeMetal).setBlockName("hadron_power_10m").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_power"); - hadron_power_100m = new BlockHadronPower(Material.iron, 100000000L).setStepSound(Block.soundTypeMetal).setBlockName("hadron_power_100m").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_power"); - hadron_power_1g = new BlockHadronPower(Material.iron, 1000000000L).setStepSound(Block.soundTypeMetal).setBlockName("hadron_power_1g").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_power"); - hadron_power_10g = new BlockHadronPower(Material.iron, 10000000000L).setStepSound(Block.soundTypeMetal).setBlockName("hadron_power_10g").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_power"); - hadron_diode = new BlockHadronDiode(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_diode").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - hadron_analysis = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_analysis").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_analysis"); - hadron_analysis_glass = new BlockNTMGlass(0, RefStrings.MODID + ":hadron_analysis_glass", Material.iron, true).setStepSound(Block.soundTypeMetal).setBlockName("hadron_analysis_glass").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_analysis_glass"); - hadron_access = new BlockHadronAccess(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_access").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_access"); - hadron_core = new BlockHadronCore(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_core").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_core"); - hadron_cooler = new BlockHadronCooler(Material.iron).setBlockName("hadron_cooler").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F); - - machine_electric_furnace_off = new MachineElectricFurnace(false).setBlockName("machine_electric_furnace_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_electric_furnace_on = new MachineElectricFurnace(true).setBlockName("machine_electric_furnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); - machine_arc_furnace_off = new MachineArcFurnace(false).setBlockName("machine_arc_furnace_off").setHardness(5.0F).setResistance(10.0F); - machine_arc_furnace_on = new MachineArcFurnace(true).setBlockName("machine_arc_furnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); - machine_arc_furnace = new MachineArcFurnaceLarge().setBlockName("machine_arc_furnace").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_microwave = new MachineMicrowave(Material.iron).setBlockName("machine_microwave").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_microwave"); - - machine_battery_potato = new MachineBattery(Material.iron, 10_000).setBlockName("machine_battery_potato").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_battery = new MachineBattery(Material.iron, 1_000_000).setBlockName("machine_battery").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_lithium_battery = new MachineBattery(Material.iron, 50_000_000).setBlockName("machine_lithium_battery").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_schrabidium_battery = new MachineBattery(Material.iron, 25_000_000_000L).setBlockName("machine_schrabidium_battery").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_dineutronium_battery = new MachineBattery(Material.iron, 1_000_000_000_000L).setBlockName("machine_dineutronium_battery").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_fensu = new MachineFENSU(Material.iron).setBlockName("machine_fensu").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_fensu"); - - capacitor_bus = new MachineCapacitorBus(Material.iron).setBlockName("capacitor_bus").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - capacitor_copper = new MachineCapacitor(Material.iron, 1_000_000L, "copper").setBlockName("capacitor_copper").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_copper"); - capacitor_gold = new MachineCapacitor(Material.iron, 5_000_000L, "gold").setBlockName("capacitor_gold").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName("gold_block"); - capacitor_niobium = new MachineCapacitor(Material.iron, 25_000_000L, "niobium").setBlockName("capacitor_niobium").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_niobium"); - capacitor_tantalium = new MachineCapacitor(Material.iron, 150_000_000L, "tantalium").setBlockName("capacitor_tantalium").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_tantalium"); - capacitor_schrabidate = new MachineCapacitor(Material.iron, 50_000_000_000L, "schrabidate").setBlockName("capacitor_schrabidate").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_schrabidate"); - - machine_wood_burner = new MachineWoodBurner(Material.iron).setBlockName("machine_wood_burner").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_diesel = new MachineDiesel().setBlockName("machine_diesel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_combustion_engine = new MachineCombustionEngine().setBlockName("machine_combustion_engine").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - machine_shredder = new MachineShredder(Material.iron).setBlockName("machine_shredder").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - - machine_teleporter = new MachineTeleporter(Material.iron).setBlockName("machine_teleporter").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - teleanchor = new MachineTeleanchor().setBlockName("teleanchor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - field_disturber = new MachineFieldDisturber().setBlockName("field_disturber").setHardness(5.0F).setResistance(200.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":field_disturber"); - - machine_rtg_grey = new MachineRTG(Material.iron).setBlockName("machine_rtg_grey").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rtg"); - machine_amgen = new MachineAmgen(Material.iron).setBlockName("machine_amgen").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_geo = new MachineAmgen(Material.iron).setBlockName("machine_geo").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_minirtg = new MachineMiniRTG(Material.iron).setBlockName("machine_minirtg").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rtg_cell"); - machine_powerrtg = new MachineMiniRTG(Material.iron).setBlockName("machine_powerrtg").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rtg_polonium"); - machine_radiolysis = new MachineRadiolysis(Material.iron).setBlockName("machine_radiolysis").setHardness(10.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); - machine_hephaestus = new MachineHephaestus(Material.iron).setBlockName("machine_hephaestus").setHardness(10.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); - - red_wire_coated = new WireCoated(Material.iron).setBlockName("red_wire_coated").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_wire_coated"); - red_cable = new BlockCable(Material.iron).setBlockName("red_cable").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":cable_neo"); - red_cable_classic = new BlockCable(Material.iron).setBlockName("red_cable_classic").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_cable_classic"); - red_cable_paintable = new BlockCablePaintable().setBlockName("red_cable_paintable").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - red_cable_gauge = new BlockCableGauge().setBlockName("red_cable_gauge").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - red_connector = new ConnectorRedWire(Material.iron).setBlockName("red_connector").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_connector"); - red_pylon = new PylonRedWire(Material.iron).setBlockName("red_pylon").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon"); - red_pylon_medium_wood = new PylonMedium(Material.wood).setBlockName("red_pylon_medium_wood").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon"); - red_pylon_medium_wood_transformer = new PylonMedium(Material.wood).setBlockName("red_pylon_medium_wood_transformer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon"); - red_pylon_medium_steel = new PylonMedium(Material.iron).setBlockName("red_pylon_medium_steel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon"); - red_pylon_medium_steel_transformer = new PylonMedium(Material.iron).setBlockName("red_pylon_medium_steel_transformer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon"); - red_pylon_large = new PylonLarge(Material.iron).setBlockName("red_pylon_large").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon_large"); - substation = new Substation(Material.iron).setBlockName("substation").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":substation"); - cable_switch = new CableSwitch(Material.iron).setBlockName("cable_switch").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - cable_detector = new CableDetector(Material.iron).setBlockName("cable_detector").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - cable_diode = new CableDiode(Material.iron).setBlockName("cable_diode").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":cable_diode"); - machine_detector = new PowerDetector(Material.iron).setBlockName("machine_detector").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_detector_off"); - fluid_duct_neo = new FluidDuctStandard(Material.iron).setBlockName("fluid_duct_neo").setStepSound(ModSoundTypes.pipe).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pipe_neo"); - fluid_duct_box = new FluidDuctBox(Material.iron).setBlockName("fluid_duct_box").setStepSound(ModSoundTypes.pipe).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fluid_duct_box"); - fluid_duct_exhaust = new FluidDuctBoxExhaust(Material.iron).setBlockName("fluid_duct_exhaust").setStepSound(ModSoundTypes.pipe).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fluid_duct_box"); - fluid_duct_paintable = new FluidDuctPaintable().setBlockName("fluid_duct_paintable").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - fluid_duct_gauge = new FluidDuctGauge().setBlockName("fluid_duct_gauge").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - fluid_valve = new FluidValve(Material.iron).setBlockName("fluid_valve").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - fluid_switch = new FluidSwitch(Material.iron).setBlockName("fluid_switch").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_drain = new MachineDrain(Material.iron).setBlockName("machine_drain").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":concrete"); - radio_torch_sender = new RadioTorchSender().setBlockName("radio_torch_sender").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - radio_torch_receiver = new RadioTorchReceiver().setBlockName("radio_torch_receiver").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - radio_torch_counter = new RadioTorchCounter().setBlockName("radio_torch_counter").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rtty_counter"); - radio_torch_logic = new RadioTorchLogic().setBlockName("radio_torch_logic").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - radio_telex = new RadioTelex().setBlockName("radio_telex").setHardness(3F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":radio_telex"); - - conveyor = new BlockConveyor().setBlockName("conveyor").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor"); - conveyor_express = new BlockConveyorExpress().setBlockName("conveyor_express").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor_express"); - //conveyor_classic = new BlockConveyorClassic().setBlockName("conveyor_classic").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor"); - conveyor_double = new BlockConveyorDouble().setBlockName("conveyor_double").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor_double"); - conveyor_triple = new BlockConveyorTriple().setBlockName("conveyor_triple").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor_triple"); - conveyor_chute = new BlockConveyorChute().setBlockName("conveyor_chute").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor"); - conveyor_lift = new BlockConveyorLift().setBlockName("conveyor_lift").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor"); - crane_extractor = new CraneExtractor().setBlockName("crane_extractor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - crane_inserter = new CraneInserter().setBlockName("crane_inserter").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - crane_grabber = new CraneGrabber().setBlockName("crane_grabber").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - crane_router = new CraneRouter().setBlockName("crane_router").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - crane_boxer = new CraneBoxer().setBlockName("crane_boxer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - crane_unboxer = new CraneUnboxer().setBlockName("crane_unboxer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - crane_splitter = new CraneSplitter().setBlockName("crane_splitter").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":crane_side"); - crane_partitioner = new CranePartitioner().setBlockName("crane_partitioner").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":crane_partitioner_side"); - fan = new MachineFan().setBlockName("fan").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - piston_inserter = new PistonInserter().setBlockName("piston_inserter").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - drone_waypoint = new DroneWaypoint().setBlockName("drone_waypoint").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":drone_waypoint"); - drone_crate = new DroneCrate().setBlockName("drone_crate").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - drone_waypoint_request = new DroneWaypointRequest().setBlockName("drone_waypoint_request").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":drone_waypoint_request"); - drone_dock = new DroneDock().setBlockName("drone_dock").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":drone_dock"); - drone_crate_provider = new DroneDock().setBlockName("drone_crate_provider").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":drone_crate_provider"); - drone_crate_requester = new DroneDock().setBlockName("drone_crate_requester").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":drone_crate_requester"); - - chain = new BlockChain(Material.iron).setBlockName("dungeon_chain").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":chain"); - - ladder_sturdy = new BlockNTMLadder().setBlockName("ladder_sturdy").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_sturdy"); - ladder_iron = new BlockNTMLadder().setBlockName("ladder_iron").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_iron"); - ladder_gold = new BlockNTMLadder().setBlockName("ladder_gold").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_gold"); - ladder_aluminium = new BlockNTMLadder().setBlockName("ladder_aluminium").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_aluminium"); - ladder_copper = new BlockNTMLadder().setBlockName("ladder_copper").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_copper"); - ladder_titanium = new BlockNTMLadder().setBlockName("ladder_titanium").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_titanium"); - ladder_lead = new BlockNTMLadder().setBlockName("ladder_lead").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_lead"); - ladder_cobalt = new BlockNTMLadder().setBlockName("ladder_cobalt").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_cobalt"); - ladder_steel = new BlockNTMLadder().setBlockName("ladder_steel").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_steel"); - ladder_tungsten = new BlockNTMLadder().setBlockName("ladder_tungsten").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_tungsten"); - - barrel_plastic = new BlockFluidBarrel(Material.iron, 12000).setBlockName("barrel_plastic").setStepSound(Block.soundTypeStone).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_plastic"); - barrel_corroded = new BlockFluidBarrel(Material.iron, 6000).setBlockName("barrel_corroded").setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_corroded"); - barrel_iron = new BlockFluidBarrel(Material.iron, 8000).setBlockName("barrel_iron").setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_iron"); - barrel_steel = new BlockFluidBarrel(Material.iron, 16000).setBlockName("barrel_steel").setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_steel"); - barrel_tcalloy = new BlockFluidBarrel(Material.iron, 24000).setBlockName("barrel_tcalloy").setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_tcalloy"); - barrel_antimatter = new BlockFluidBarrel(Material.iron, 16000).setBlockName("barrel_antimatter").setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_antimatter"); - - machine_transformer = new MachineTransformer(Material.iron, 10000L, 1).setBlockName("machine_transformer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_transformer_iron"); - machine_transformer_dnt = new MachineTransformer(Material.iron, 1000000000000000L, 1).setBlockName("machine_transformer_dnt").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_transformer"); - machine_transformer_20 = new MachineTransformer(Material.iron, 10000L, 20).setBlockName("machine_transformer_20").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_transformer_iron"); - machine_transformer_dnt_20 = new MachineTransformer(Material.iron, 1000000000000000L, 20).setBlockName("machine_transformer_dnt_20").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_transformer"); - - machine_satlinker = new MachineSatLinker(Material.iron).setBlockName("machine_satlinker").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":machine_satlinker_side"); - machine_keyforge = new MachineKeyForge(Material.iron).setBlockName("machine_keyforge").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":machine_keyforge_side"); - machine_armor_table = new BlockArmorTable(Material.iron).setBlockName("machine_armor_table").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab); - - machine_solar_boiler = new MachineSolarBoiler(Material.iron).setBlockName("machine_solar_boiler").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_solar_boiler"); - solar_mirror = new SolarMirror(Material.iron).setBlockName("solar_mirror").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":solar_mirror"); - - struct_launcher = new BlockGeneric(Material.iron).setBlockName("struct_launcher").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":struct_launcher"); - struct_scaffold = new BlockGeneric(Material.iron).setBlockName("struct_scaffold").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":struct_scaffold"); - struct_launcher_core = new BlockStruct(Material.iron).setBlockName("struct_launcher_core").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":struct_launcher_core"); - struct_launcher_core_large = new BlockStruct(Material.iron).setBlockName("struct_launcher_core_large").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":struct_launcher_core_large"); - struct_soyuz_core = new BlockSoyuzStruct(Material.iron).setBlockName("struct_soyuz_core").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":struct_soyuz_core"); - struct_iter_core = new BlockITERStruct(Material.iron).setBlockName("struct_iter_core").setLightLevel(1F).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":struct_iter_core"); - struct_plasma_core = new BlockPlasmaStruct(Material.iron).setBlockName("struct_plasma_core").setLightLevel(1F).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":struct_plasma_core"); - struct_watz_core = new BlockWatzStruct(Material.iron).setBlockName("struct_watz_core").setLightLevel(1F).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":struct_watz_core"); - struct_icf_core = new BlockICFStruct(Material.iron).setBlockName("struct_icf_core").setLightLevel(1F).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":struct_icf_core"); - - factory_titanium_hull = new BlockGeneric(Material.iron).setBlockName("factory_titanium_hull").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_titanium_hull"); - factory_titanium_furnace = new FactoryHatch(Material.iron).setBlockName("factory_titanium_furnace").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_titanium_furnace"); - factory_titanium_conductor = new BlockPillar(Material.iron, RefStrings.MODID + ":factory_titanium_conductor").setBlockName("factory_titanium_conductor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_titanium_hull"); - factory_advanced_hull = new BlockGeneric(Material.iron).setBlockName("factory_advanced_hull").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_advanced_hull"); - factory_advanced_furnace = new FactoryHatch(Material.iron).setBlockName("factory_advanced_furnace").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_advanced_furnace"); - factory_advanced_conductor = new BlockPillar(Material.iron, RefStrings.MODID + ":factory_advanced_conductor").setBlockName("factory_advanced_conductor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_advanced_hull"); - - cm_block = new BlockCM(Material.iron, EnumCMMaterials.class, true, true).setBlockName("cm_block").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_block"); - cm_sheet = new BlockCM(Material.iron, EnumCMMaterials.class, true, true).setBlockName("cm_sheet").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_sheet"); - cm_engine = new BlockCM(Material.iron, EnumCMEngines.class, true, true).setBlockName("cm_engine").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_engine"); - cm_tank = new BlockCMGlass(Material.iron, EnumCMMaterials.class, true, true).setBlockName("cm_tank").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_tank"); - cm_circuit = new BlockCM(Material.iron, EnumCMCircuit.class, true, true).setBlockName("cm_circuit").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_circuit"); - cm_port = new BlockCMPort(Material.iron, EnumCMMaterials.class, true, true).setBlockName("cm_port").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_port"); - cm_flux = new BlockCMFlux(Material.iron, RefStrings.MODID + ":cm_flux_top").setBlockName("cm_flux").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_flux_side"); - cm_heat = new BlockCMHeat(Material.iron, RefStrings.MODID +":cm_heat_top").setBlockName("cm_heat").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_heat_side"); - custom_machine = new BlockCustomMachine().setBlockName("custom_machine").setCreativeTab(MainRegistry.machineTab).setLightLevel(1F).setHardness(5.0F).setResistance(10.0F); - cm_anchor = new BlockCMAnchor().setBlockName("custom_machine_anchor").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F); - - pwr_fuel = new BlockPillarPWR(Material.iron, RefStrings.MODID + ":pwr_fuel_top").setBlockName("pwr_fuel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_fuel_side"); - pwr_control = new BlockPillarPWR(Material.iron, RefStrings.MODID + ":pwr_control_top").setBlockName("pwr_control").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_control_side"); - pwr_channel = new BlockPillarPWR(Material.iron, RefStrings.MODID + ":pwr_channel_top").setBlockName("pwr_channel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_channel_side"); - pwr_heatex = new BlockGenericPWR(Material.iron).setBlockName("pwr_heatex").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_heatex"); - pwr_heatsink = new BlockGenericPWR(Material.iron).setBlockName("pwr_heatsink").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_heatsink"); - pwr_neutron_source = new BlockGenericPWR(Material.iron).setBlockName("pwr_neutron_source").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_neutron_source"); - pwr_reflector = new BlockGenericPWR(Material.iron).setBlockName("pwr_reflector").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_reflector"); - pwr_casing = new BlockGenericPWR(Material.iron).setBlockName("pwr_casing").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_casing"); - pwr_port = new BlockGenericPWR(Material.iron).setBlockName("pwr_port").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_port"); - pwr_controller = new MachinePWRController(Material.iron).setBlockName("pwr_controller").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_casing_blank"); - pwr_block = new BlockPWR(Material.iron).setBlockName("pwr_block").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":pwr_block"); - - fusion_conductor = new BlockToolConversionPillar(Material.iron).addVariant("_welded").setBlockName("fusion_conductor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fusion_conductor"); - fusion_center = new BlockPillar(Material.iron, RefStrings.MODID + ":fusion_center_top_alt").setBlockName("fusion_center").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fusion_center_side_alt"); - fusion_motor = new BlockPillar(Material.iron, RefStrings.MODID + ":fusion_motor_top_alt").setBlockName("fusion_motor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fusion_motor_side_alt"); - fusion_heater = new BlockPillar(Material.iron, RefStrings.MODID + ":fusion_heater_top").setBlockName("fusion_heater").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fusion_heater_side"); - fusion_hatch = new FusionHatch(Material.iron).setBlockName("fusion_hatch").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fusion_hatch"); - plasma = new BlockPlasma(Material.iron).setBlockName("plasma").setHardness(5.0F).setResistance(6000.0F).setLightLevel(1.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":plasma"); - iter = new MachineITER().setBlockName("iter").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":iter"); - plasma_heater = new MachinePlasmaHeater().setBlockName("plasma_heater").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":plasma_heater"); - - machine_icf_press = new MachineICFPress().setBlockName("machine_icf_press").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - icf = new MachineICF().setBlockName("icf").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - icf_component = new BlockICFComponent().setBlockName("icf_component").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":icf_component"); - icf_controller = new MachineICFController().setBlockName("icf_controller").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":icf_casing"); - icf_laser_component = new BlockICFLaserComponent().setBlockName("icf_laser_component").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab); - icf_block = new BlockICF(Material.iron).setBlockName("icf_block").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":icf_block"); - - watz_element = new BlockPillar(Material.iron, RefStrings.MODID + ":watz_element_top").setBlockName("watz_element").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":watz_element_side"); - watz_cooler = new BlockPillar(Material.iron, RefStrings.MODID + ":watz_cooler_top").setBlockName("watz_cooler").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":watz_cooler_side"); - watz_end = new BlockToolConversion(Material.iron).addVariant("_bolted").setBlockName("watz_end").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":watz_casing"); - watz = new Watz().setBlockName("watz").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - watz_pump = new WatzPump().setBlockName("watz_pump").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - balefire = new Balefire().setBlockName("balefire").setHardness(0.0F).setLightLevel(1.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":balefire"); - fire_digamma = new DigammaFlame().setBlockName("fire_digamma").setHardness(0.0F).setResistance(150F).setLightLevel(1.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":fire_digamma"); - digamma_matter = new DigammaMatter().setBlockName("digamma_matter").setBlockUnbreakable().setResistance(18000000).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":digamma_matter"); - - machine_converter_he_rf = new BlockConverterHeRf(Material.iron).setBlockName("machine_converter_he_rf").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_converter_he_rf"); - machine_converter_rf_he = new BlockConverterRfHe(Material.iron).setBlockName("machine_converter_rf_he").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_converter_rf_he"); - - dfc_emitter = new CoreComponent(Material.iron).setBlockName("dfc_emitter").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":dfc_emitter"); - dfc_injector = new CoreComponent(Material.iron).setBlockName("dfc_injector").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":dfc_injector"); - dfc_receiver = new CoreComponent(Material.iron).setBlockName("dfc_receiver").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":dfc_receiver"); - dfc_stabilizer = new CoreComponent(Material.iron).setBlockName("dfc_stabilizer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":dfc_stabilizer"); - dfc_core = new CoreCore(Material.iron).setBlockName("dfc_core").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":dfc_core"); - - seal_frame = new BlockGeneric(Material.iron).setBlockName("seal_frame").setHardness(10.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":seal_frame"); - seal_controller = new BlockSeal(Material.iron).setBlockName("seal_controller").setHardness(10.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab); - seal_hatch = new BlockHatch(Material.iron).setBlockName("seal_hatch").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":seal_hatch_3"); - - vault_door = new VaultDoor(Material.iron).setBlockName("vault_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":vault_door"); - blast_door = new BlastDoor(Material.iron).setBlockName("blast_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":blast_door"); - - sliding_blast_door = new BlockDoorGeneric(Material.iron, DoorDecl.SLIDE_DOOR).setBlockName("sliding_blast_door").setHardness(10.0F).setResistance(750.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":sliding_blast_door"); - fire_door = new BlockDoorGeneric(Material.iron, DoorDecl.FIRE_DOOR).setBlockName("fire_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fire_door"); - transition_seal = new BlockDoorGeneric(Material.iron, DoorDecl.TRANSITION_SEAL).setBlockName("transition_seal").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":transition_seal"); - silo_hatch = new BlockDoorGeneric(Material.iron, DoorDecl.SILO_HATCH).setBlockName("silo_hatch").setHardness(10.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - silo_hatch_large = new BlockDoorGeneric(Material.iron, DoorDecl.SILO_HATCH_LARGE).setBlockName("silo_hatch_large").setHardness(10.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - secure_access_door = new BlockDoorGeneric(Material.iron, DoorDecl.SECURE_ACCESS_DOOR).setBlockName("secure_access_door").setHardness(20.0F).setResistance(2_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - large_vehicle_door = new BlockDoorGeneric(Material.iron, DoorDecl.LARGE_VEHICLE_DOOR).setBlockName("large_vehicle_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - qe_containment = new BlockDoorGeneric(Material.iron, DoorDecl.QE_CONTAINMENT).setBlockName("qe_containment").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - qe_sliding_door = new BlockDoorGeneric(Material.iron, DoorDecl.QE_SLIDING).setBlockName("qe_sliding_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - round_airlock_door = new BlockDoorGeneric(Material.iron, DoorDecl.ROUND_AIRLOCK_DOOR).setBlockName("round_airlock_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - sliding_seal_door = new BlockDoorGeneric(Material.iron, DoorDecl.SLIDING_SEAL_DOOR).setBlockName("sliding_seal_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - water_door = new BlockDoorGeneric(Material.iron, DoorDecl.WATER_DOOR).setBlockName("water_door").setHardness(5.0F).setResistance(50.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - door_metal = new BlockModDoor(Material.iron).setBlockName("door_metal").setHardness(5.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":door_metal"); - door_office = new BlockModDoor(Material.iron).setBlockName("door_office").setHardness(10.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":door_office"); - door_bunker = new BlockModDoor(Material.iron).setBlockName("door_bunker").setHardness(10.0F).setResistance(100.0F).setBlockTextureName(RefStrings.MODID + ":door_bunker"); - door_red = new BlockModDoor(Material.iron).setBlockName("door_red").setHardness(10.0F).setResistance(100.0F).setBlockTextureName(RefStrings.MODID + ":door_red"); - - barbed_wire = new BarbedWire(Material.iron).setBlockName("barbed_wire").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_model"); - barbed_wire_fire = new BarbedWire(Material.iron).setBlockName("barbed_wire_fire").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_fire_model"); - barbed_wire_poison = new BarbedWire(Material.iron).setBlockName("barbed_wire_poison").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_poison_model"); - barbed_wire_acid = new BarbedWire(Material.iron).setBlockName("barbed_wire_acid").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_acid_model"); - barbed_wire_wither = new BarbedWire(Material.iron).setBlockName("barbed_wire_wither").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_wither_model"); - barbed_wire_ultradeath = new BarbedWire(Material.iron).setBlockName("barbed_wire_ultradeath").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_ultradeath_model"); - spikes = new Spikes(Material.iron).setBlockName("spikes").setHardness(2.5F).setResistance(5.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":spikes"); - - charger = new Charger(Material.iron).setBlockName("charger").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - tesla = new MachineTesla(Material.iron).setBlockName("tesla").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":tesla"); - - launch_pad = new LaunchPad(Material.iron).setBlockName("launch_pad").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":launch_pad"); - launch_pad_rusted = new LaunchPadRusted(Material.iron).setBlockName("launch_pad_rusted").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":block_rust"); - launch_pad_large = new LaunchPadLarge(Material.iron).setBlockName("launch_pad_large").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_radar = new MachineRadar(Material.iron).setBlockName("machine_radar").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":machine_radar"); - machine_radar_large = new MachineRadarLarge(Material.iron).setBlockName("machine_radar_large").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - radar_screen = new MachineRadarScreen(Material.iron).setBlockName("radar_screen").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - machine_missile_assembly = new MachineMissileAssembly(Material.iron).setBlockName("machine_missile_assembly").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":machine_missile_assembly"); - compact_launcher = new CompactLauncher(Material.iron).setBlockName("compact_launcher").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":compact_launcher"); - launch_table = new LaunchTable(Material.iron).setBlockName("launch_table").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":launch_table"); - soyuz_launcher = new SoyuzLauncher(Material.iron).setBlockName("soyuz_launcher").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":soyuz_launcher"); - - sat_mapper = new DecoBlock(Material.iron).setBlockName("sat_mapper").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_mapper"); - sat_radar = new DecoBlock(Material.iron).setBlockName("sat_radar").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_radar"); - sat_scanner = new DecoBlock(Material.iron).setBlockName("sat_scanner").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_scanner"); - sat_laser = new DecoBlock(Material.iron).setBlockName("sat_laser").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_laser"); - sat_foeq = new DecoBlock(Material.iron).setBlockName("sat_foeq").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_foeq"); - sat_resonator = new DecoBlock(Material.iron).setBlockName("sat_resonator").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_resonator"); - - sat_dock = new MachineSatDock(Material.iron).setBlockName("sat_dock").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":sat_dock"); - soyuz_capsule = new SoyuzCapsule(Material.iron).setBlockName("soyuz_capsule").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":soyuz_capsule"); - - turret_chekhov = new TurretChekhov(Material.iron).setBlockName("turret_chekhov").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_friendly = new TurretFriendly(Material.iron).setBlockName("turret_friendly").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_jeremy = new TurretJeremy(Material.iron).setBlockName("turret_jeremy").setHardness(5.0F).setResistance(600.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_tauon = new TurretTauon(Material.iron).setBlockName("turret_tauon").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_richard = new TurretRichard(Material.iron).setBlockName("turret_richard").setHardness(5.0F).setResistance(600.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_howard = new TurretHoward(Material.iron).setBlockName("turret_howard").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_howard_damaged = new TurretHowardDamaged(Material.iron).setBlockName("turret_howard_damaged").setHardness(5.0F).setResistance(600.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_rust"); - turret_maxwell = new TurretMaxwell(Material.iron).setBlockName("turret_maxwell").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_fritz = new TurretFritz(Material.iron).setBlockName("turret_fritz").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_arty = new TurretArty(Material.iron).setBlockName("turret_arty").setHardness(5.0F).setResistance(600.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_himars = new TurretHIMARS(Material.iron).setBlockName("turret_himars").setHardness(5.0F).setResistance(600.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_sentry = new TurretSentry().setBlockName("turret_sentry").setHardness(5.0F).setResistance(5.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - turret_sentry_damaged = new TurretSentryDamaged().setBlockName("turret_sentry_damaged").setHardness(5.0F).setResistance(5.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_rust"); - - rbmk_rod = new RBMKRod(false).setBlockName("rbmk_rod").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_element"); - rbmk_rod_mod = new RBMKRod(true).setBlockName("rbmk_rod_mod").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_element_mod"); - rbmk_rod_reasim = new RBMKRodReaSim(false).setBlockName("rbmk_rod_reasim").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_element_reasim"); - rbmk_rod_reasim_mod = new RBMKRodReaSim(true).setBlockName("rbmk_rod_reasim_mod").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_element_reasim_mod"); - rbmk_control = new RBMKControl(false).setBlockName("rbmk_control").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_control"); - rbmk_control_mod = new RBMKControl(true).setBlockName("rbmk_control_mod").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_control_mod"); - rbmk_control_auto = new RBMKControlAuto().setBlockName("rbmk_control_auto").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_control_auto"); - rbmk_blank = new RBMKBlank().setBlockName("rbmk_blank").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_blank"); - rbmk_boiler = new RBMKBoiler().setBlockName("rbmk_boiler").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_boiler"); - rbmk_reflector = new RBMKReflector().setBlockName("rbmk_reflector").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_reflector"); - rbmk_absorber = new RBMKAbsorber().setBlockName("rbmk_absorber").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_absorber"); - rbmk_moderator = new RBMKModerator().setBlockName("rbmk_moderator").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_moderator"); - rbmk_outgasser = new RBMKOutgasser().setBlockName("rbmk_outgasser").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_outgasser"); - rbmk_storage = new RBMKStorage().setBlockName("rbmk_storage").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_storage"); - rbmk_cooler = new RBMKCooler().setBlockName("rbmk_cooler").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_cooler"); - rbmk_heater = new RBMKHeater().setBlockName("rbmk_heater").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_heater"); - rbmk_console = new RBMKConsole().setBlockName("rbmk_console").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_console"); - rbmk_crane_console = new RBMKCraneConsole().setBlockName("rbmk_crane_console").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_crane_console"); - rbmk_loader = new RBMKLoader(Material.iron).setBlockName("rbmk_loader").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":rbmk_loader"); - rbmk_steam_inlet = new RBMKInlet(Material.iron).setBlockName("rbmk_steam_inlet").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":rbmk_steam_inlet"); - rbmk_steam_outlet = new RBMKOutlet(Material.iron).setBlockName("rbmk_steam_outlet").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":rbmk_steam_outlet"); - pribris = new RBMKDebris().setBlockName("pribris").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_debris"); - pribris_burning = new RBMKDebrisBurning().setBlockName("pribris_burning").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_debris_burning"); - pribris_radiating = new RBMKDebrisRadiating().setBlockName("pribris_radiating").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_debris_radiating"); - pribris_digamma = new RBMKDebrisDigamma().setBlockName("pribris_digamma").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_debris_digamma"); - - book_guide = new Guide(Material.iron).setBlockName("book_guide").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.nukeTab); - - rail_wood = new RailGeneric().setMaxSpeed(0.2F).setBlockName("rail_wood").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_wood"); - rail_narrow = new RailGeneric().setBlockName("rail_narrow").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_narrow"); - rail_highspeed = new RailGeneric().setMaxSpeed(1F).setFlexible(false).setBlockName("rail_highspeed").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_highspeed"); - rail_booster = new RailBooster().setBlockName("rail_booster").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_booster"); - rail_narrow_straight = new RailNarrowStraight().setBlockName("rail_narrow_straight").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":rail_narrow_neo"); - rail_narrow_curve = new RailNarrowCurve().setBlockName("rail_narrow_curve").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":rail_narrow_neo"); - rail_large_straight = new RailStandardStraight().setBlockName("rail_large_straight").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); - rail_large_straight_short = new RailStandardStraightShort().setBlockName("rail_large_straight_short").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); - rail_large_curve = new RailStandardCurveBase().setBlockName("rail_large_curve").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); - rail_large_curve_7 = new RailStandardCurveWide7().setBlockName("rail_large_curve_7").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); - rail_large_curve_9 = new RailStandardCurveWide9().setBlockName("rail_large_curve_9").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); - rail_large_ramp = new RailStandardRamp().setBlockName("rail_large_ramp").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); - rail_large_buffer = new RailStandardBuffer().setBlockName("rail_large_buffer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_buffer"); - rail_large_switch = new RailStandardSwitch().setBlockName("rail_large_switch").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); - rail_large_switch_flipped = new RailStandardSwitchFlipped().setBlockName("rail_large_switch_flipped").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); - - crate = new BlockCrate(Material.wood).setBlockName("crate").setStepSound(Block.soundTypeWood).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate"); - crate_weapon = new BlockCrate(Material.wood).setBlockName("crate_weapon").setStepSound(Block.soundTypeWood).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate_weapon"); - crate_lead = new BlockCrate(Material.iron).setBlockName("crate_lead").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate_lead"); - crate_metal = new BlockCrate(Material.iron).setBlockName("crate_metal").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate_metal"); - crate_red = new BlockCrate(Material.iron).setBlockName("crate_red").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":crate_red"); - crate_can = new BlockCanCrate(Material.wood).setBlockName("crate_can").setStepSound(Block.soundTypeWood).setHardness(1.0F).setResistance(2.5F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate_can"); - crate_ammo = new BlockAmmoCrate(Material.iron).setBlockName("crate_ammo").setStepSound(Block.soundTypeMetal).setHardness(1.0F).setResistance(2.5F).setCreativeTab(MainRegistry.consumableTab); - crate_jungle = new BlockJungleCrate(Material.rock).setBlockName("crate_jungle").setStepSound(Block.soundTypeStone).setHardness(1.0F).setResistance(2.5F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate_jungle"); - crate_iron = new BlockStorageCrate(Material.iron).setBlockName("crate_iron").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - crate_steel = new BlockStorageCrate(Material.iron).setBlockName("crate_steel").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - crate_desh = new BlockStorageCrate(Material.iron).setBlockName("crate_desh").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - crate_tungsten = new BlockStorageCrate(Material.iron).setBlockName("crate_tungsten").setStepSound(Block.soundTypeMetal).setHardness(7.5F).setResistance(300.0F).setCreativeTab(MainRegistry.machineTab); - crate_template = new BlockStorageCrate(Material.iron).setBlockName("crate_template").setStepSound(Block.soundTypeMetal).setHardness(7.5F).setResistance(300.0F).setCreativeTab(MainRegistry.machineTab); - safe = new BlockStorageCrate(Material.iron).setBlockName("safe").setStepSound(Block.soundTypeMetal).setHardness(7.5F).setResistance(10000.0F).setCreativeTab(MainRegistry.machineTab); - mass_storage = new BlockMassStorage().setBlockName("mass_storage").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - - boxcar = new DecoBlock(Material.iron).setBlockName("boxcar").setStepSound(Block.soundTypeMetal).setHardness(10.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":boxcar"); - boat = new DecoBlock(Material.iron).setBlockName("boat").setStepSound(Block.soundTypeMetal).setHardness(10.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":boat"); - - machine_well = new MachineOilWell().setBlockName("machine_well").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_well"); - machine_pumpjack = new MachinePumpjack().setBlockName("machine_pumpjack").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_pumpjack"); - machine_fracking_tower = new MachineFrackingTower().setBlockName("machine_fracking_tower").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - oil_pipe = new BlockNoDrop(Material.iron).setBlockName("oil_pipe").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":oil_pipe"); - machine_flare = new MachineGasFlare(Material.iron).setBlockName("machine_flare").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - chimney_brick = new MachineChimneyBrick(Material.iron).setBlockName("chimney_brick").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); - chimney_industrial = new MachineChimneyIndustrial(Material.iron).setBlockName("chimney_industrial").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":concrete_colored_ext.machine"); - machine_refinery = new MachineRefinery(Material.iron).setBlockName("machine_refinery").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_refinery"); - machine_vacuum_distill = new MachineVacuumDistill(Material.iron).setBlockName("machine_vacuum_distill").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_fraction_tower = new MachineFractionTower(Material.iron).setBlockName("machine_fraction_tower").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - fraction_spacer = new FractionSpacer(Material.iron).setBlockName("fraction_spacer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_catalytic_cracker = new MachineCatalyticCracker(Material.iron).setBlockName("machine_catalytic_cracker").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_catalytic_reformer = new MachineCatalyticReformer(Material.iron).setBlockName("machine_catalytic_reformer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_hydrotreater = new MachineHydrotreater(Material.iron).setBlockName("machine_hydrotreater").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_coker = new MachineCoker(Material.iron).setBlockName("machine_coker").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_pyrooven = new MachinePyroOven(Material.iron).setBlockName("machine_pyrooven").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_autosaw = new MachineAutosaw().setBlockName("machine_autosaw").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_excavator = new MachineExcavator().setBlockName("machine_excavator").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_ore_slopper = new MachineOreSlopper().setBlockName("machine_ore_slopper").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_mining_laser = new MachineMiningLaser(Material.iron).setBlockName("machine_mining_laser").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_mining_laser"); - barricade = new BlockNoDrop(Material.sand).setBlockName("barricade").setHardness(1.0F).setResistance(2.5F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":barricade"); - machine_assembler = new MachineAssembler(Material.iron).setBlockName("machine_assembler").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_assembler"); - machine_assemfac = new MachineAssemfac(Material.iron).setBlockName("machine_assemfac").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_arc_welder = new MachineArcWelder(Material.iron).setBlockName("machine_arc_welder").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_soldering_station = new MachineSolderingStation(Material.iron).setBlockName("machine_soldering_station").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_chemplant = new MachineChemplant(Material.iron).setBlockName("machine_chemplant").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_chemfac = new MachineChemfac(Material.iron).setBlockName("machine_chemfac").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_mixer = new MachineMixer(Material.iron).setBlockName("machine_mixer").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_fluidtank = new MachineFluidTank(Material.iron).setBlockName("machine_fluidtank").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_fluidtank"); - machine_bat9000 = new MachineBigAssTank9000(Material.iron).setBlockName("machine_bat9000").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_orbus = new MachineOrbus(Material.iron).setBlockName("machine_orbus").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_turbofan = new MachineTurbofan(Material.iron).setBlockName("machine_turbofan").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_turbofan"); - machine_turbinegas = new MachineTurbineGas(Material.iron).setBlockName("machine_turbinegas").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_lpw2 = new MachineLPW2().setBlockName("machine_lpw2").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - press_preheater = new BlockBase(Material.iron).setBlockName("press_preheater").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":press_preheater"); - machine_press = new MachinePress(Material.iron).setBlockName("machine_press").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_press"); - machine_epress = new MachineEPress(Material.iron).setBlockName("machine_epress").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_epress"); - machine_conveyor_press = new MachineConveyorPress(Material.iron).setBlockName("machine_conveyor_press").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - reactor_research = new ReactorResearch(Material.iron).setBlockName("machine_reactor_small").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_reactor_small"); - reactor_zirnox = new ReactorZirnox(Material.iron).setBlockName("machine_zirnox").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - zirnox_destroyed = new ZirnoxDestroyed(Material.iron).setBlockName("zirnox_destroyed").setHardness(100.0F).setResistance(800.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_controller = new MachineReactorControl(Material.iron).setBlockName("machine_controller").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null); - - machine_boiler_off = new MachineBoiler(false).setBlockName("machine_boiler_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":machine_boiler_off"); - - machine_steam_engine = new MachineSteamEngine().setBlockName("machine_steam_engine").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); - machine_turbine = new MachineTurbine(Material.iron).setBlockName("machine_turbine").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_turbine"); - machine_large_turbine = new MachineLargeTurbine(Material.iron).setBlockName("machine_large_turbine").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_large_turbine"); - machine_chungus = new MachineChungus(Material.iron).setBlockName("machine_chungus").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_chungus"); - machine_condenser = new MachineCondenser(Material.iron).setBlockName("machine_condenser").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":condenser"); - machine_tower_small = new MachineTowerSmall(Material.iron).setBlockName("machine_tower_small").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_concrete"); - machine_tower_large = new MachineTowerLarge(Material.iron).setBlockName("machine_tower_large").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":concrete"); - machine_condenser_powered = new MachineCondenserPowered(Material.iron).setBlockName("machine_condenser_powered").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); - - machine_deuterium_extractor = new MachineDeuteriumExtractor(Material.iron).setBlockName("machine_deuterium_extractor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_deuterium_extractor_side"); - machine_deuterium_tower = new DeuteriumTower(Material.iron).setBlockName("machine_deuterium_tower").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":concrete"); - - machine_liquefactor = new MachineLiquefactor().setBlockName("machine_liquefactor").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); - machine_solidifier = new MachineSolidifier().setBlockName("machine_solidifier").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); - machine_compressor = new MachineCompressor().setBlockName("machine_compressor").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); - - machine_electrolyser = new MachineElectrolyser().setBlockName("machine_electrolyser").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); - - machine_autocrafter = new MachineAutocrafter().setBlockName("machine_autocrafter").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab); - machine_funnel = new MachineFunnel().setBlockName("machine_funnel").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab); - - anvil_iron = new NTMAnvil(Material.iron, NTMAnvil.TIER_IRON).setBlockName("anvil_iron").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_iron"); - anvil_lead = new NTMAnvil(Material.iron, NTMAnvil.TIER_IRON).setBlockName("anvil_lead").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_lead"); - anvil_steel = new NTMAnvil(Material.iron, NTMAnvil.TIER_STEEL).setBlockName("anvil_steel").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_steel"); - anvil_desh = new NTMAnvil(Material.iron, NTMAnvil.TIER_OIL).setBlockName("anvil_desh").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_desh"); - anvil_saturnite = new NTMAnvil(Material.iron, NTMAnvil.TIER_OIL).setBlockName("anvil_saturnite").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_saturnite"); - anvil_ferrouranium = new NTMAnvil(Material.iron, NTMAnvil.TIER_NUCLEAR).setBlockName("anvil_ferrouranium").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_ferrouranium"); - anvil_bismuth_bronze = new NTMAnvil(Material.iron, NTMAnvil.TIER_RBMK).setBlockName("anvil_bismuth_bronze").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_bismuth_bronze"); - anvil_arsenic_bronze = new NTMAnvil(Material.iron, NTMAnvil.TIER_RBMK).setBlockName("anvil_arsenic_bronze").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_arsenic_bronze"); - anvil_schrabidate = new NTMAnvil(Material.iron, NTMAnvil.TIER_FUSION).setBlockName("anvil_schrabidate").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_schrabidate"); - anvil_dnt = new NTMAnvil(Material.iron, NTMAnvil.TIER_PARTICLE).setBlockName("anvil_dnt").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_dnt"); - anvil_osmiridium = new NTMAnvil(Material.iron, NTMAnvil.TIER_GERALD).setBlockName("anvil_osmiridium").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_osmiridium"); - anvil_murky = new NTMAnvil(Material.iron, 1916169).setBlockName("anvil_murky").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_steel"); - - machine_waste_drum = new WasteDrum(Material.iron).setBlockName("machine_waste_drum").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":waste_drum"); - machine_storage_drum = new StorageDrum(Material.iron).setBlockName("machine_storage_drum").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_storage_drum"); - - machine_schrabidium_transmutator = new MachineSchrabidiumTransmutator(Material.iron).setBlockName("machine_schrabidium_transmutator").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab); - - machine_siren = new MachineSiren(Material.iron).setBlockName("machine_siren").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_siren"); - - machine_spp_bottom = new SPPBottom(Material.iron).setBlockName("machine_spp_bottom").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - machine_spp_top = new SPPTop(Material.iron).setBlockName("machine_spp_top").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - - radiobox = new Radiobox(Material.iron).setBlockName("radiobox").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":radiobox"); - radiorec = new RadioRec(Material.iron).setBlockName("radiorec").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":radiorec"); - - machine_forcefield = new MachineForceField(Material.iron).setBlockName("machine_forcefield").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":machine_forcefield"); - - cheater_virus = new CheaterVirus(Material.iron).setBlockName("cheater_virus").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":cheater_virus"); - cheater_virus_seed = new CheaterVirusSeed(Material.iron).setBlockName("cheater_virus_seed").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":cheater_virus_seed"); - crystal_virus = new CrystalVirus(Material.iron).setBlockName("crystal_virus").setHardness(15.0F).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":crystal_virus"); - crystal_hardened = new BlockGeneric(Material.iron).setBlockName("crystal_hardened").setHardness(15.0F).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":crystal_hardened"); - crystal_pulsar = new CrystalPulsar(Material.iron).setBlockName("crystal_pulsar").setHardness(15.0F).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":crystal_pulsar"); - taint = new BlockTaint(Material.iron).setBlockName("taint").setHardness(15.0F).setResistance(10.0F).setCreativeTab(null); - - vent_chlorine = new BlockVent(Material.iron).setBlockName("vent_chlorine").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":vent_chlorine"); - vent_cloud = new BlockVent(Material.iron).setBlockName("vent_cloud").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":vent_cloud"); - vent_pink_cloud = new BlockVent(Material.iron).setBlockName("vent_pink_cloud").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":vent_pink_cloud"); - vent_chlorine_seal = new BlockClorineSeal(Material.iron).setBlockName("vent_chlorine_seal").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); - chlorine_gas = new BlockGasClorine().setBlockName("chlorine_gas").setHardness(0.0F).setResistance(0.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":chlorine_gas"); - - gas_radon = new BlockGasRadon().setBlockName("gas_radon").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_radon"); - gas_radon_dense = new BlockGasRadonDense().setBlockName("gas_radon_dense").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_radon_dense"); - gas_radon_tomb = new BlockGasRadonTomb().setBlockName("gas_radon_tomb").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_radon_tomb"); - gas_meltdown = new BlockGasMeltdown().setBlockName("gas_meltdown").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_meltdown"); - gas_monoxide = new BlockGasMonoxide().setBlockName("gas_monoxide").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_monoxide"); - gas_asbestos = new BlockGasAsbestos().setBlockName("gas_asbestos").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_asbestos"); - gas_coal = new BlockGasCoal().setBlockName("gas_coal").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_coal"); - gas_flammable = new BlockGasFlammable().setBlockName("gas_flammable").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_flammable"); - gas_explosive = new BlockGasExplosive().setBlockName("gas_explosive").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_explosive"); - vacuum = new BlockVacuum().setBlockName("vacuum").setResistance(1000000F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":vacuum"); - - absorber = new BlockAbsorber(Material.iron, 2.5F).setBlockName("absorber").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":absorber"); - absorber_red = new BlockAbsorber(Material.iron, 10F).setBlockName("absorber_red").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":absorber_red"); - absorber_green = new BlockAbsorber(Material.iron, 100F).setBlockName("absorber_green").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":absorber_green"); - absorber_pink = new BlockAbsorber(Material.iron, 10000F).setBlockName("absorber_pink").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":absorber_pink"); - decon = new BlockDecon(Material.iron).setBlockName("decon").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":decon_side"); - transission_hatch = new BlockTransission(Material.iron).setBlockName("transission_hatch").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":transission_hatch"); - - volcano_core = new BlockVolcano().setBlockName("volcano_core").setBlockUnbreakable().setResistance(10000.0F).setCreativeTab(MainRegistry.nukeTab).setBlockTextureName(RefStrings.MODID + ":volcano_core"); - volcano_rad_core = new BlockVolcano().setBlockName("volcano_rad_core").setBlockUnbreakable().setResistance(10000.0F).setCreativeTab(MainRegistry.nukeTab).setBlockTextureName(RefStrings.MODID + ":volcano_rad_core"); - - statue_elb = new DecoBlockAlt(Material.iron).setBlockName("#null").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY); - statue_elb_g = new DecoBlockAlt(Material.iron).setBlockName("#void").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY); - statue_elb_w = new DecoBlockAlt(Material.iron).setBlockName("#ngtv").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY); - statue_elb_f = new DecoBlockAlt(Material.iron).setBlockName("#undef").setHardness(Float.POSITIVE_INFINITY).setLightLevel(1.0F).setResistance(Float.POSITIVE_INFINITY); - - mud_fluid = new MudFluid().setDensity(2500).setViscosity(3000).setLuminosity(5).setTemperature(2773).setUnlocalizedName("mud_fluid"); - FluidRegistry.registerFluid(mud_fluid); - mud_block = new MudBlock(mud_fluid, fluidmud.setReplaceable(), ModDamageSource.mudPoisoning).setBlockName("mud_block").setResistance(500F); - - acid_fluid = new AcidFluid().setDensity(2500).setViscosity(1500).setLuminosity(5).setTemperature(2773).setUnlocalizedName("acid_fluid"); - FluidRegistry.registerFluid(acid_fluid); - acid_block = new AcidBlock(acid_fluid, fluidacid.setReplaceable(), ModDamageSource.acid).setBlockName("acid_block").setResistance(500F); - - toxic_fluid = new ToxicFluid().setDensity(2500).setViscosity(2000).setLuminosity(15).setTemperature(2773).setUnlocalizedName("toxic_fluid"); - FluidRegistry.registerFluid(toxic_fluid); - toxic_block = new ToxicBlock(toxic_fluid, fluidtoxic.setReplaceable(), ModDamageSource.radiation).setBlockName("toxic_block").setResistance(500F); - - schrabidic_fluid = new SchrabidicFluid().setDensity(31200).setViscosity(500).setTemperature(273).setUnlocalizedName("schrabidic_fluid"); - FluidRegistry.registerFluid(schrabidic_fluid); - schrabidic_block = new SchrabidicBlock(schrabidic_fluid, fluidschrabidic.setReplaceable(), ModDamageSource.radiation).setBlockName("schrabidic_block").setResistance(500F); - - corium_fluid = new CoriumFluid().setDensity(600000).setViscosity(12000).setLuminosity(10).setTemperature(1500).setUnlocalizedName("corium_fluid"); - FluidRegistry.registerFluid(corium_fluid); - corium_block = new CoriumFinite(corium_fluid, fluidcorium).setBlockName("corium_block").setResistance(500F); - - volcanic_lava_fluid = new VolcanicFluid().setLuminosity(15).setDensity(3000).setViscosity(3000).setTemperature(1300).setUnlocalizedName("volcanic_lava_fluid"); - FluidRegistry.registerFluid(volcanic_lava_fluid); - volcanic_lava_block = new VolcanicBlock(volcanic_lava_fluid, Material.lava).setBlockName("volcanic_lava_block").setResistance(500F); - - rad_lava_fluid = new RadFluid().setLuminosity(15).setDensity(3000).setViscosity(3000).setTemperature(1300).setUnlocalizedName("rad_lava_fluid"); - FluidRegistry.registerFluid(rad_lava_fluid); - rad_lava_block = new RadBlock(rad_lava_fluid, Material.lava).setBlockName("rad_lava_block").setResistance(500F); - - sulfuric_acid_fluid = new GenericFluid("sulfuric_acid_fluid").setDensity(1840).setViscosity(1000).setTemperature(273); - FluidRegistry.registerFluid(sulfuric_acid_fluid); - sulfuric_acid_block = new GenericFluidBlock(sulfuric_acid_fluid, Material.water, "sulfuric_acid_still", "sulfuric_acid_flowing").setDamage(ModDamageSource.acid, 5F).setBlockName("sulfuric_acid_block").setResistance(500F); - - Fluid liquidConcrete = new GenericFluid("concrete_liquid").setViscosity(2000); - concrete_liquid = new GenericFiniteFluid(liquidConcrete, Material.rock, "concrete_liquid", "concrete_liquid_flowing").setQuantaPerBlock(4).setBlockName("concrete_liquid").setResistance(500F); - - dummy_block_vault = new DummyBlockVault(Material.iron).setBlockName("dummy_block_vault").setHardness(10.0F).setResistance(10000.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); - dummy_block_blast = new DummyBlockBlast(Material.iron).setBlockName("dummy_block_blast").setHardness(10.0F).setResistance(10000.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); - dummy_block_uf6 = new DummyBlockMachine(Material.iron, machine_uf6_tank, false).setBlockName("dummy_block_uf6").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_titanium"); - dummy_block_puf6 = new DummyBlockMachine(Material.iron, machine_puf6_tank, false).setBlockName("dummy_block_puf6").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); - dummy_plate_compact_launcher = new DummyBlockMachine(Material.iron, compact_launcher, false).setBounds(0, 16, 0, 16, 16, 16).setBlockName("dummy_plate_compact_launcher").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); - dummy_port_compact_launcher = new DummyBlockMachine(Material.iron, compact_launcher, true).setBlockName("dummy_port_compact_launcher").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); - dummy_plate_launch_table = new DummyBlockMachine(Material.iron, launch_table, false).setBounds(0, 16, 0, 16, 16, 16).setBlockName("dummy_plate_launch_table").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); - dummy_port_launch_table = new DummyBlockMachine(Material.iron, launch_table, true).setBlockName("dummy_port_launch_table").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); - dummy_plate_cargo = new DummyBlockMachine(Material.iron, sat_dock, false).setBounds(0, 0, 0, 16, 8, 16).setBlockName("dummy_plate_cargo").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); - - ntm_dirt = new BlockNTMDirt().setBlockName("ntm_dirt").setHardness(0.5F).setStepSound(Block.soundTypeGravel).setCreativeTab(null).setBlockTextureName("dirt"); - - pink_log = new BlockPinkLog().setBlockName("pink_log").setHardness(0.5F).setStepSound(Block.soundTypeWood).setCreativeTab(null); - pink_planks = new BlockGeneric(Material.wood).setBlockName("pink_planks").setStepSound(Block.soundTypeWood).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":pink_planks"); - pink_slab = new BlockPinkSlab(false, Material.wood).setBlockName("pink_slab").setStepSound(Block.soundTypeWood).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":pink_planks"); - pink_double_slab = new BlockPinkSlab(true, Material.wood).setBlockName("pink_double_slab").setStepSound(Block.soundTypeWood).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":pink_planks"); - pink_stairs = new BlockGenericStairs(pink_planks, 0).setBlockName("pink_stairs").setStepSound(Block.soundTypeWood).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":pink_planks"); - } - - private static void registerBlock() { - //Test - GameRegistry.registerBlock(event_tester, event_tester.getUnlocalizedName()); - GameRegistry.registerBlock(obj_tester, obj_tester.getUnlocalizedName()); - GameRegistry.registerBlock(test_core, test_core.getUnlocalizedName()); - GameRegistry.registerBlock(test_charge, test_charge.getUnlocalizedName()); - GameRegistry.registerBlock(structure_anchor, structure_anchor.getUnlocalizedName()); - - //Ores - GameRegistry.registerBlock(ore_uranium, ore_uranium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_uranium_scorched, ore_uranium_scorched.getUnlocalizedName()); - GameRegistry.registerBlock(ore_thorium, ore_thorium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_titanium, ore_titanium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_sulfur, ore_sulfur.getUnlocalizedName()); - GameRegistry.registerBlock(ore_niter, ore_niter.getUnlocalizedName()); - GameRegistry.registerBlock(ore_copper, ore_copper.getUnlocalizedName()); - GameRegistry.registerBlock(ore_tungsten, ore_tungsten.getUnlocalizedName()); - GameRegistry.registerBlock(ore_aluminium, ore_aluminium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_fluorite, ore_fluorite.getUnlocalizedName()); - GameRegistry.registerBlock(ore_beryllium, ore_beryllium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_lead, ore_lead.getUnlocalizedName()); - GameRegistry.registerBlock(ore_oil, ItemBlockLore.class, ore_oil.getUnlocalizedName()); - GameRegistry.registerBlock(ore_oil_empty, ore_oil_empty.getUnlocalizedName()); - GameRegistry.registerBlock(ore_oil_sand, ore_oil_sand.getUnlocalizedName()); - GameRegistry.registerBlock(ore_lignite, ore_lignite.getUnlocalizedName()); - GameRegistry.registerBlock(ore_asbestos, ore_asbestos.getUnlocalizedName()); - GameRegistry.registerBlock(ore_schrabidium, ItemBlockLore.class, ore_schrabidium.getUnlocalizedName()); - - //Rare Minerals - GameRegistry.registerBlock(ore_australium, ItemOreBlock.class, ore_australium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_rare, ItemOreBlock.class, ore_rare.getUnlocalizedName()); - GameRegistry.registerBlock(ore_cobalt, ore_cobalt.getUnlocalizedName()); - GameRegistry.registerBlock(ore_cinnebar, ore_cinnebar.getUnlocalizedName()); - GameRegistry.registerBlock(ore_coltan, ore_coltan.getUnlocalizedName()); - - //Stone clusters - GameRegistry.registerBlock(cluster_iron, ItemBlockBase.class, cluster_iron.getUnlocalizedName()); - GameRegistry.registerBlock(cluster_titanium, ItemBlockBase.class, cluster_titanium.getUnlocalizedName()); - GameRegistry.registerBlock(cluster_aluminium, ItemBlockBase.class, cluster_aluminium.getUnlocalizedName()); - GameRegistry.registerBlock(cluster_copper, ItemBlockBase.class, cluster_copper.getUnlocalizedName()); - - //Bedrock ores - GameRegistry.registerBlock(ore_bedrock_oil, ore_bedrock_oil.getUnlocalizedName()); - - //Nice Meme - GameRegistry.registerBlock(ore_coal_oil, ore_coal_oil.getUnlocalizedName()); - GameRegistry.registerBlock(ore_coal_oil_burning, ore_coal_oil_burning.getUnlocalizedName()); - - //Nether Ores - GameRegistry.registerBlock(ore_nether_coal, ore_nether_coal.getUnlocalizedName()); - GameRegistry.registerBlock(ore_nether_smoldering, ore_nether_smoldering.getUnlocalizedName()); - GameRegistry.registerBlock(ore_nether_uranium, ore_nether_uranium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_nether_uranium_scorched, ore_nether_uranium_scorched.getUnlocalizedName()); - GameRegistry.registerBlock(ore_nether_plutonium, ore_nether_plutonium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_nether_tungsten, ore_nether_tungsten.getUnlocalizedName()); - GameRegistry.registerBlock(ore_nether_sulfur, ore_nether_sulfur.getUnlocalizedName()); - GameRegistry.registerBlock(ore_nether_fire, ore_nether_fire.getUnlocalizedName()); - GameRegistry.registerBlock(ore_nether_cobalt, ore_nether_cobalt.getUnlocalizedName()); - GameRegistry.registerBlock(ore_nether_schrabidium, ItemBlockLore.class, ore_nether_schrabidium.getUnlocalizedName()); - - //Meteor Ores - register(ore_meteor); - - //Gneiss Ores - GameRegistry.registerBlock(ore_gneiss_iron, ore_gneiss_iron.getUnlocalizedName()); - GameRegistry.registerBlock(ore_gneiss_gold, ore_gneiss_gold.getUnlocalizedName()); - GameRegistry.registerBlock(ore_gneiss_uranium, ore_gneiss_uranium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_gneiss_uranium_scorched, ore_gneiss_uranium_scorched.getUnlocalizedName()); - GameRegistry.registerBlock(ore_gneiss_copper, ore_gneiss_copper.getUnlocalizedName()); - GameRegistry.registerBlock(ore_gneiss_asbestos, ore_gneiss_asbestos.getUnlocalizedName()); - GameRegistry.registerBlock(ore_gneiss_lithium, ore_gneiss_lithium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_gneiss_schrabidium, ItemBlockLore.class, ore_gneiss_schrabidium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_gneiss_rare, ItemOreBlock.class, ore_gneiss_rare.getUnlocalizedName()); - GameRegistry.registerBlock(ore_gneiss_gas, ore_gneiss_gas.getUnlocalizedName()); - - //Depth ores - GameRegistry.registerBlock(ore_depth_cinnebar, ItemBlockBase.class, ore_depth_cinnebar.getUnlocalizedName()); - GameRegistry.registerBlock(ore_depth_zirconium, ItemBlockBase.class, ore_depth_zirconium.getUnlocalizedName()); - GameRegistry.registerBlock(ore_depth_borax, ItemBlockBase.class, ore_depth_borax.getUnlocalizedName()); - GameRegistry.registerBlock(cluster_depth_iron, ItemBlockBase.class, cluster_depth_iron.getUnlocalizedName()); - GameRegistry.registerBlock(cluster_depth_titanium, ItemBlockBase.class, cluster_depth_titanium.getUnlocalizedName()); - GameRegistry.registerBlock(cluster_depth_tungsten, ItemBlockBase.class, cluster_depth_tungsten.getUnlocalizedName()); - GameRegistry.registerBlock(ore_alexandrite, ItemBlockBase.class, ore_alexandrite.getUnlocalizedName()); - - //Nether depth ores - GameRegistry.registerBlock(ore_depth_nether_neodymium, ItemBlockBase.class, ore_depth_nether_neodymium.getUnlocalizedName()); - - //Basalt ores - register(ore_basalt); - - //End Ores - GameRegistry.registerBlock(ore_tikite, ore_tikite.getUnlocalizedName()); - - //It's a meme you dip - GameRegistry.registerBlock(ore_random, ItemRandomOreBlock.class, ore_random.getUnlocalizedName()); - - //Bedrock ore - register(ore_bedrock); - register(ore_volcano); - - //Secret - register(stone_keyhole); - - //Resource-bearing Stones - register(stone_resource); - register(stalagmite); - register(stalactite); - register(stone_biome); - - //Stone Variants - GameRegistry.registerBlock(stone_porous, stone_porous.getUnlocalizedName()); - GameRegistry.registerBlock(stone_gneiss, stone_gneiss.getUnlocalizedName()); - GameRegistry.registerBlock(gneiss_brick, gneiss_brick.getUnlocalizedName()); - GameRegistry.registerBlock(gneiss_tile, gneiss_tile.getUnlocalizedName()); - GameRegistry.registerBlock(gneiss_chiseled, gneiss_chiseled.getUnlocalizedName()); - GameRegistry.registerBlock(stone_depth, ItemBlockBase.class, stone_depth.getUnlocalizedName()); - GameRegistry.registerBlock(depth_brick, ItemBlockBase.class, depth_brick.getUnlocalizedName()); - GameRegistry.registerBlock(depth_tiles, ItemBlockBase.class, depth_tiles.getUnlocalizedName()); - GameRegistry.registerBlock(stone_depth_nether, ItemBlockBase.class, stone_depth_nether.getUnlocalizedName()); - GameRegistry.registerBlock(depth_nether_brick, ItemBlockBase.class, depth_nether_brick.getUnlocalizedName()); - GameRegistry.registerBlock(depth_nether_tiles, ItemBlockBase.class, depth_nether_tiles.getUnlocalizedName()); - GameRegistry.registerBlock(depth_dnt, ItemBlockBase.class, depth_dnt.getUnlocalizedName()); - GameRegistry.registerBlock(basalt, basalt.getUnlocalizedName()); - GameRegistry.registerBlock(basalt_smooth, basalt_smooth.getUnlocalizedName()); - GameRegistry.registerBlock(basalt_brick, basalt_brick.getUnlocalizedName()); - GameRegistry.registerBlock(basalt_polished, basalt_polished.getUnlocalizedName()); - GameRegistry.registerBlock(basalt_tiles, basalt_tiles.getUnlocalizedName()); - //GameRegistry.registerBlock(stone_deep_cobble, ItemBlockBase.class, stone_deep_cobble.getUnlocalizedName()); - - //Blocks - GameRegistry.registerBlock(block_uranium, block_uranium.getUnlocalizedName()); - GameRegistry.registerBlock(block_u233, block_u233.getUnlocalizedName()); - GameRegistry.registerBlock(block_u235, block_u235.getUnlocalizedName()); - GameRegistry.registerBlock(block_u238, block_u238.getUnlocalizedName()); - GameRegistry.registerBlock(block_uranium_fuel, block_uranium_fuel.getUnlocalizedName()); - GameRegistry.registerBlock(block_neptunium, block_neptunium.getUnlocalizedName()); - GameRegistry.registerBlock(block_polonium, block_polonium.getUnlocalizedName()); - GameRegistry.registerBlock(block_mox_fuel, block_mox_fuel.getUnlocalizedName()); - GameRegistry.registerBlock(block_plutonium, block_plutonium.getUnlocalizedName()); - GameRegistry.registerBlock(block_pu238, block_pu238.getUnlocalizedName()); - GameRegistry.registerBlock(block_pu239, block_pu239.getUnlocalizedName()); - GameRegistry.registerBlock(block_pu240, block_pu240.getUnlocalizedName()); - GameRegistry.registerBlock(block_pu_mix, block_pu_mix.getUnlocalizedName()); - GameRegistry.registerBlock(block_plutonium_fuel, block_plutonium_fuel.getUnlocalizedName()); - GameRegistry.registerBlock(block_thorium, block_thorium.getUnlocalizedName()); - GameRegistry.registerBlock(block_thorium_fuel, block_thorium_fuel.getUnlocalizedName()); - GameRegistry.registerBlock(block_titanium, block_titanium.getUnlocalizedName()); - GameRegistry.registerBlock(block_sulfur, block_sulfur.getUnlocalizedName()); - GameRegistry.registerBlock(block_niter, block_niter.getUnlocalizedName()); - GameRegistry.registerBlock(block_copper, block_copper.getUnlocalizedName()); - GameRegistry.registerBlock(block_red_copper, block_red_copper.getUnlocalizedName()); - GameRegistry.registerBlock(block_advanced_alloy, block_advanced_alloy.getUnlocalizedName()); - GameRegistry.registerBlock(block_tungsten, block_tungsten.getUnlocalizedName()); - GameRegistry.registerBlock(block_aluminium, block_aluminium.getUnlocalizedName()); - GameRegistry.registerBlock(block_fluorite, block_fluorite.getUnlocalizedName()); - GameRegistry.registerBlock(block_beryllium, block_beryllium.getUnlocalizedName()); - GameRegistry.registerBlock(block_cobalt, block_cobalt.getUnlocalizedName()); - GameRegistry.registerBlock(block_steel, block_steel.getUnlocalizedName()); - GameRegistry.registerBlock(block_tcalloy, block_tcalloy.getUnlocalizedName()); - GameRegistry.registerBlock(block_cdalloy, block_cdalloy.getUnlocalizedName()); - GameRegistry.registerBlock(block_lead, block_lead.getUnlocalizedName()); - GameRegistry.registerBlock(block_bismuth, block_bismuth.getUnlocalizedName()); - GameRegistry.registerBlock(block_cadmium, block_cadmium.getUnlocalizedName()); - GameRegistry.registerBlock(block_coltan, block_coltan.getUnlocalizedName()); - GameRegistry.registerBlock(block_tantalium, block_tantalium.getUnlocalizedName()); - GameRegistry.registerBlock(block_niobium, block_niobium.getUnlocalizedName()); - GameRegistry.registerBlock(block_lithium, block_lithium.getUnlocalizedName()); - GameRegistry.registerBlock(block_zirconium, block_zirconium.getUnlocalizedName()); - GameRegistry.registerBlock(block_white_phosphorus, block_white_phosphorus.getUnlocalizedName()); - GameRegistry.registerBlock(block_red_phosphorus, block_red_phosphorus.getUnlocalizedName()); - GameRegistry.registerBlock(block_yellowcake, block_yellowcake.getUnlocalizedName()); - GameRegistry.registerBlock(block_scrap, block_scrap.getUnlocalizedName()); - GameRegistry.registerBlock(block_electrical_scrap, block_electrical_scrap.getUnlocalizedName()); - GameRegistry.registerBlock(block_fallout, block_fallout.getUnlocalizedName()); - GameRegistry.registerBlock(block_foam, block_foam.getUnlocalizedName()); - GameRegistry.registerBlock(block_graphite, block_graphite.getUnlocalizedName()); - register(block_coke); - GameRegistry.registerBlock(block_graphite_drilled, block_graphite_drilled.getUnlocalizedName()); - GameRegistry.registerBlock(block_graphite_fuel, block_graphite_fuel.getUnlocalizedName()); - GameRegistry.registerBlock(block_graphite_rod, block_graphite_rod.getUnlocalizedName()); - GameRegistry.registerBlock(block_graphite_plutonium, block_graphite_plutonium.getUnlocalizedName()); - GameRegistry.registerBlock(block_graphite_source, block_graphite_source.getUnlocalizedName()); - GameRegistry.registerBlock(block_graphite_lithium, block_graphite_lithium.getUnlocalizedName()); - GameRegistry.registerBlock(block_graphite_tritium, block_graphite_tritium.getUnlocalizedName()); - GameRegistry.registerBlock(block_graphite_detector, block_graphite_detector.getUnlocalizedName()); - GameRegistry.registerBlock(block_boron, block_boron.getUnlocalizedName()); - GameRegistry.registerBlock(block_insulator, block_insulator.getUnlocalizedName()); - GameRegistry.registerBlock(block_fiberglass, block_fiberglass.getUnlocalizedName()); - GameRegistry.registerBlock(block_asbestos, block_asbestos.getUnlocalizedName()); - GameRegistry.registerBlock(block_trinitite, block_trinitite.getUnlocalizedName()); - GameRegistry.registerBlock(block_waste, block_waste.getUnlocalizedName()); - GameRegistry.registerBlock(block_waste_painted, block_waste_painted.getUnlocalizedName()); - GameRegistry.registerBlock(block_waste_vitrified, block_waste_vitrified.getUnlocalizedName()); - GameRegistry.registerBlock(ancient_scrap, ancient_scrap.getUnlocalizedName()); - GameRegistry.registerBlock(block_corium, block_corium.getUnlocalizedName()); - GameRegistry.registerBlock(block_corium_cobble, block_corium_cobble.getUnlocalizedName()); - GameRegistry.registerBlock(block_schraranium, ItemBlockBase.class, block_schraranium.getUnlocalizedName()); - GameRegistry.registerBlock(block_schrabidium, ItemBlockBase.class, block_schrabidium.getUnlocalizedName()); - GameRegistry.registerBlock(block_schrabidate, ItemBlockBase.class, block_schrabidate.getUnlocalizedName()); - GameRegistry.registerBlock(block_solinium, ItemBlockBase.class, block_solinium.getUnlocalizedName()); - GameRegistry.registerBlock(block_schrabidium_fuel, ItemBlockBase.class, block_schrabidium_fuel.getUnlocalizedName()); - GameRegistry.registerBlock(block_euphemium, ItemBlockLore.class, block_euphemium.getUnlocalizedName()); - GameRegistry.registerBlock(block_schrabidium_cluster, ItemBlockBase.class, block_schrabidium_cluster.getUnlocalizedName()); - GameRegistry.registerBlock(block_euphemium_cluster, ItemBlockLore.class, block_euphemium_cluster.getUnlocalizedName()); - GameRegistry.registerBlock(block_dineutronium, block_dineutronium.getUnlocalizedName()); - GameRegistry.registerBlock(block_magnetized_tungsten, block_magnetized_tungsten.getUnlocalizedName()); - GameRegistry.registerBlock(block_combine_steel, block_combine_steel.getUnlocalizedName()); - GameRegistry.registerBlock(block_desh, block_desh.getUnlocalizedName()); - GameRegistry.registerBlock(block_dura_steel, block_dura_steel.getUnlocalizedName()); - GameRegistry.registerBlock(block_starmetal, block_starmetal.getUnlocalizedName()); - GameRegistry.registerBlock(block_polymer, block_polymer.getUnlocalizedName()); - GameRegistry.registerBlock(block_bakelite, block_bakelite.getUnlocalizedName()); - GameRegistry.registerBlock(block_rubber, block_rubber.getUnlocalizedName()); - GameRegistry.registerBlock(block_australium, ItemOreBlock.class, block_australium.getUnlocalizedName()); - GameRegistry.registerBlock(block_weidanium, ItemOreBlock.class, block_weidanium.getUnlocalizedName()); - GameRegistry.registerBlock(block_reiium, ItemOreBlock.class, block_reiium.getUnlocalizedName()); - GameRegistry.registerBlock(block_unobtainium, ItemOreBlock.class, block_unobtainium.getUnlocalizedName()); - GameRegistry.registerBlock(block_daffergon, ItemOreBlock.class, block_daffergon.getUnlocalizedName()); - GameRegistry.registerBlock(block_verticium, ItemOreBlock.class, block_verticium.getUnlocalizedName()); - register(block_cap); - GameRegistry.registerBlock(block_lanthanium, block_lanthanium.getUnlocalizedName()); - GameRegistry.registerBlock(block_ra226, block_ra226.getUnlocalizedName()); - GameRegistry.registerBlock(block_actinium, block_actinium.getUnlocalizedName()); - GameRegistry.registerBlock(block_tritium, block_tritium.getUnlocalizedName()); - GameRegistry.registerBlock(block_semtex, block_semtex.getUnlocalizedName()); - GameRegistry.registerBlock(block_c4, block_c4.getUnlocalizedName()); - GameRegistry.registerBlock(block_smore, block_smore.getUnlocalizedName()); - GameRegistry.registerBlock(block_slag, block_slag.getUnlocalizedName()); - - //Deco Blocks - GameRegistry.registerBlock(deco_titanium, deco_titanium.getUnlocalizedName()); - GameRegistry.registerBlock(deco_red_copper, deco_red_copper.getUnlocalizedName()); - GameRegistry.registerBlock(deco_tungsten, deco_tungsten.getUnlocalizedName()); - GameRegistry.registerBlock(deco_aluminium, deco_aluminium.getUnlocalizedName()); - GameRegistry.registerBlock(deco_steel, deco_steel.getUnlocalizedName()); - GameRegistry.registerBlock(deco_lead, deco_lead.getUnlocalizedName()); - GameRegistry.registerBlock(deco_beryllium, deco_beryllium.getUnlocalizedName()); - GameRegistry.registerBlock(deco_asbestos, deco_asbestos.getUnlocalizedName()); - GameRegistry.registerBlock(deco_emitter, ItemBlockBase.class, deco_emitter.getUnlocalizedName()); - GameRegistry.registerBlock(part_emitter, ItemBlockBase.class, part_emitter.getUnlocalizedName()); - GameRegistry.registerBlock(deco_loot, deco_loot.getUnlocalizedName()); - GameRegistry.registerBlock(pedestal, pedestal.getUnlocalizedName()); - GameRegistry.registerBlock(bobblehead, ItemBlockMeta.class, bobblehead.getUnlocalizedName()); - GameRegistry.registerBlock(snowglobe, ItemBlockMeta.class, snowglobe.getUnlocalizedName()); - GameRegistry.registerBlock(plushie, ItemBlockBase.class, plushie.getUnlocalizedName()); - GameRegistry.registerBlock(deco_rbmk, deco_rbmk.getUnlocalizedName()); - GameRegistry.registerBlock(deco_rbmk_smooth, deco_rbmk_smooth.getUnlocalizedName()); - - //Gravel - GameRegistry.registerBlock(gravel_obsidian, ItemBlockBlastInfo.class, gravel_obsidian.getUnlocalizedName()); - GameRegistry.registerBlock(gravel_diamond, ItemBlockLore.class, gravel_diamond.getUnlocalizedName()); - - //Lamps - GameRegistry.registerBlock(lamp_tritium_green_off, lamp_tritium_green_off.getUnlocalizedName()); - GameRegistry.registerBlock(lamp_tritium_green_on, lamp_tritium_green_on.getUnlocalizedName()); - GameRegistry.registerBlock(lamp_tritium_blue_off, lamp_tritium_blue_off.getUnlocalizedName()); - GameRegistry.registerBlock(lamp_tritium_blue_on, lamp_tritium_blue_on.getUnlocalizedName()); - GameRegistry.registerBlock(lamp_demon, lamp_demon.getUnlocalizedName()); - GameRegistry.registerBlock(lantern, lantern.getUnlocalizedName()); - GameRegistry.registerBlock(lantern_behemoth, lantern_behemoth.getUnlocalizedName()); - GameRegistry.registerBlock(spotlight_incandescent, spotlight_incandescent.getUnlocalizedName()); - GameRegistry.registerBlock(spotlight_incandescent_off, spotlight_incandescent_off.getUnlocalizedName()); - GameRegistry.registerBlock(spotlight_fluoro, spotlight_fluoro.getUnlocalizedName()); - GameRegistry.registerBlock(spotlight_fluoro_off, spotlight_fluoro_off.getUnlocalizedName()); - GameRegistry.registerBlock(spotlight_halogen, spotlight_halogen.getUnlocalizedName()); - GameRegistry.registerBlock(spotlight_halogen_off, spotlight_halogen_off.getUnlocalizedName()); - GameRegistry.registerBlock(spotlight_beam, spotlight_beam.getUnlocalizedName()); - register(floodlight); - GameRegistry.registerBlock(floodlight_beam, floodlight_beam.getUnlocalizedName()); - - //Reinforced Blocks - GameRegistry.registerBlock(asphalt, ItemBlockBlastInfo.class, asphalt.getUnlocalizedName()); - GameRegistry.registerBlock(asphalt_light, ItemBlockBlastInfo.class, asphalt_light.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_brick, ItemBlockBlastInfo.class, reinforced_brick.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_glass, ItemBlockBlastInfo.class, reinforced_glass.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_glass_pane, ItemBlockBlastInfo.class, reinforced_glass_pane.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_light, ItemBlockBlastInfo.class, reinforced_light.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_sand, ItemBlockBlastInfo.class, reinforced_sand.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_lamp_off, ItemBlockBlastInfo.class, reinforced_lamp_off.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_lamp_on, ItemBlockBlastInfo.class, reinforced_lamp_on.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_laminate, ItemBlockBlastInfo.class, reinforced_laminate.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_laminate_pane,ItemBlockBlastInfo.class, reinforced_laminate_pane.getUnlocalizedName()); - - //Bricks - GameRegistry.registerBlock(reinforced_stone, ItemBlockBlastInfo.class, reinforced_stone.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_ducrete, ItemBlockBlastInfo.class, reinforced_ducrete.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_smooth, ItemBlockBlastInfo.class, concrete_smooth.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_colored, ItemBlockColoredConcrete.class, concrete_colored.getUnlocalizedName()); - register(concrete_colored_ext); - GameRegistry.registerBlock(concrete, ItemBlockBlastInfo.class, concrete.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_asbestos, ItemBlockBlastInfo.class, concrete_asbestos.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_super, ItemBlockBlastInfo.class, concrete_super.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_super_broken, ItemBlockBlastInfo.class, concrete_super_broken.getUnlocalizedName()); - GameRegistry.registerBlock(ducrete_smooth, ItemBlockBlastInfo.class, ducrete_smooth.getUnlocalizedName()); - GameRegistry.registerBlock(ducrete, ItemBlockBlastInfo.class, ducrete.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_pillar, ItemBlockBlastInfo.class, concrete_pillar.getUnlocalizedName()); - GameRegistry.registerBlock(brick_concrete, ItemBlockBlastInfo.class, brick_concrete.getUnlocalizedName()); - GameRegistry.registerBlock(brick_concrete_mossy, ItemBlockBlastInfo.class, brick_concrete_mossy.getUnlocalizedName()); - GameRegistry.registerBlock(brick_concrete_cracked, ItemBlockBlastInfo.class, brick_concrete_cracked.getUnlocalizedName()); - GameRegistry.registerBlock(brick_concrete_broken, ItemBlockBlastInfo.class, brick_concrete_broken.getUnlocalizedName()); - GameRegistry.registerBlock(brick_concrete_marked, ItemBlockBlastInfo.class, brick_concrete_marked.getUnlocalizedName()); - GameRegistry.registerBlock(brick_ducrete, ItemBlockBlastInfo.class, brick_ducrete.getUnlocalizedName()); - GameRegistry.registerBlock(brick_obsidian, ItemBlockBlastInfo.class, brick_obsidian.getUnlocalizedName()); - GameRegistry.registerBlock(brick_compound, ItemBlockBlastInfo.class, brick_compound.getUnlocalizedName()); - GameRegistry.registerBlock(brick_light, ItemBlockBlastInfo.class, brick_light.getUnlocalizedName()); - GameRegistry.registerBlock(brick_asbestos, brick_asbestos.getUnlocalizedName()); - GameRegistry.registerBlock(brick_fire, ItemBlockBlastInfo.class, brick_fire.getUnlocalizedName()); - - GameRegistry.registerBlock(concrete_slab, ItemModSlab.class, concrete_slab.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_double_slab, ItemModSlab.class, concrete_double_slab.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_brick_slab, ItemModSlab.class, concrete_brick_slab.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_brick_double_slab, ItemModSlab.class, concrete_brick_double_slab.getUnlocalizedName()); - GameRegistry.registerBlock(brick_slab, ItemModSlab.class, brick_slab.getUnlocalizedName()); - GameRegistry.registerBlock(brick_double_slab, ItemModSlab.class, brick_double_slab.getUnlocalizedName()); - - GameRegistry.registerBlock(concrete_smooth_stairs, concrete_smooth_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_stairs, concrete_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(concrete_asbestos_stairs, concrete_asbestos_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(ducrete_smooth_stairs, ducrete_smooth_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(brick_concrete_stairs, brick_concrete_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(brick_concrete_mossy_stairs, brick_concrete_mossy_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(brick_concrete_cracked_stairs, brick_concrete_cracked_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(brick_concrete_broken_stairs, brick_concrete_broken_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(brick_ducrete_stairs, brick_ducrete_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_stone_stairs, reinforced_stone_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(reinforced_brick_stairs, reinforced_brick_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(brick_obsidian_stairs, brick_obsidian_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(brick_light_stairs, brick_light_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(brick_compound_stairs, brick_compound_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(brick_asbestos_stairs, brick_asbestos_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(brick_fire_stairs, brick_fire_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(ducrete_stairs, ducrete_stairs.getUnlocalizedName()); - GameRegistry.registerBlock(asphalt_stairs, asphalt_stairs.getUnlocalizedName()); - - //CMB Building Elements - GameRegistry.registerBlock(cmb_brick, ItemBlockBlastInfo.class, cmb_brick.getUnlocalizedName()); - GameRegistry.registerBlock(cmb_brick_reinforced, ItemBlockBlastInfo.class, cmb_brick_reinforced.getUnlocalizedName()); - - //Tiles - GameRegistry.registerBlock(vinyl_tile, ItemBlockBlastInfo.class, vinyl_tile.getUnlocalizedName()); //i would rather die than dip into fucking blocks with subtypes again - - GameRegistry.registerBlock(tile_lab, tile_lab.getUnlocalizedName()); - GameRegistry.registerBlock(tile_lab_cracked, tile_lab_cracked.getUnlocalizedName()); - GameRegistry.registerBlock(tile_lab_broken, tile_lab_broken.getUnlocalizedName()); - - //Other defensive stuff - GameRegistry.registerBlock(barbed_wire, barbed_wire.getUnlocalizedName()); - GameRegistry.registerBlock(barbed_wire_fire, barbed_wire_fire.getUnlocalizedName()); - GameRegistry.registerBlock(barbed_wire_poison, barbed_wire_poison.getUnlocalizedName()); - GameRegistry.registerBlock(barbed_wire_acid, barbed_wire_acid.getUnlocalizedName()); - GameRegistry.registerBlock(barbed_wire_wither, barbed_wire_wither.getUnlocalizedName()); - GameRegistry.registerBlock(barbed_wire_ultradeath, barbed_wire_ultradeath.getUnlocalizedName()); - GameRegistry.registerBlock(spikes, spikes.getUnlocalizedName()); - GameRegistry.registerBlock(tesla, tesla.getUnlocalizedName()); - - //Charger - GameRegistry.registerBlock(charger, charger.getUnlocalizedName()); - //GameRegistry.registerBlock(floodlight, floodlight.getUnlocalizedName()); - - //Decoration Blocks - GameRegistry.registerBlock(block_meteor, block_meteor.getUnlocalizedName()); - GameRegistry.registerBlock(block_meteor_cobble, block_meteor_cobble.getUnlocalizedName()); - GameRegistry.registerBlock(block_meteor_broken, block_meteor_broken.getUnlocalizedName()); - GameRegistry.registerBlock(block_meteor_molten, block_meteor_molten.getUnlocalizedName()); - GameRegistry.registerBlock(block_meteor_treasure, block_meteor_treasure.getUnlocalizedName()); - GameRegistry.registerBlock(meteor_polished, meteor_polished.getUnlocalizedName()); - GameRegistry.registerBlock(meteor_brick, meteor_brick.getUnlocalizedName()); - GameRegistry.registerBlock(meteor_brick_mossy, meteor_brick_mossy.getUnlocalizedName()); - GameRegistry.registerBlock(meteor_brick_cracked, meteor_brick_cracked.getUnlocalizedName()); - GameRegistry.registerBlock(meteor_brick_chiseled, meteor_brick_chiseled.getUnlocalizedName()); - GameRegistry.registerBlock(meteor_pillar, meteor_pillar.getUnlocalizedName()); - GameRegistry.registerBlock(meteor_spawner, meteor_spawner.getUnlocalizedName()); - GameRegistry.registerBlock(meteor_battery, ItemBlockLore.class, meteor_battery.getUnlocalizedName()); - GameRegistry.registerBlock(brick_jungle, brick_jungle.getUnlocalizedName()); - GameRegistry.registerBlock(brick_jungle_cracked, brick_jungle_cracked.getUnlocalizedName()); - GameRegistry.registerBlock(brick_jungle_fragile, brick_jungle_fragile.getUnlocalizedName()); - GameRegistry.registerBlock(brick_jungle_lava, brick_jungle_lava.getUnlocalizedName()); - GameRegistry.registerBlock(brick_jungle_ooze, brick_jungle_ooze.getUnlocalizedName()); - GameRegistry.registerBlock(brick_jungle_mystic, brick_jungle_mystic.getUnlocalizedName()); - GameRegistry.registerBlock(brick_jungle_trap, ItemTrapBlock.class, brick_jungle_trap.getUnlocalizedName()); - GameRegistry.registerBlock(brick_jungle_glyph, ItemGlyphBlock.class, brick_jungle_glyph.getUnlocalizedName()); - GameRegistry.registerBlock(brick_jungle_circle, brick_jungle_circle.getUnlocalizedName()); - GameRegistry.registerBlock(brick_red, brick_red.getUnlocalizedName()); - register(deco_computer); - register(deco_crt); - register(deco_toaster); - GameRegistry.registerBlock(filing_cabinet, ItemBlockBase.class, filing_cabinet.getUnlocalizedName()); - GameRegistry.registerBlock(tape_recorder, tape_recorder.getUnlocalizedName()); - GameRegistry.registerBlock(steel_poles, steel_poles.getUnlocalizedName()); - GameRegistry.registerBlock(pole_top, pole_top.getUnlocalizedName()); - GameRegistry.registerBlock(pole_satellite_receiver, pole_satellite_receiver.getUnlocalizedName()); - GameRegistry.registerBlock(steel_wall, steel_wall.getUnlocalizedName()); - GameRegistry.registerBlock(steel_corner, steel_corner.getUnlocalizedName()); - GameRegistry.registerBlock(steel_roof, steel_roof.getUnlocalizedName()); - GameRegistry.registerBlock(steel_beam, steel_beam.getUnlocalizedName()); - register(steel_scaffold); - GameRegistry.registerBlock(steel_grate, steel_grate.getUnlocalizedName()); - register(steel_grate_wide); - register(scaffold_dynamic); - GameRegistry.registerBlock(deco_pipe, ItemBlockBase.class, deco_pipe.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_rusted, ItemBlockBase.class, deco_pipe_rusted.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_green, ItemBlockBase.class, deco_pipe_green.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_green_rusted, ItemBlockBase.class, deco_pipe_green_rusted.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_red, ItemBlockBase.class, deco_pipe_red.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_marked, ItemBlockBase.class, deco_pipe_marked.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_rim, ItemBlockBase.class, deco_pipe_rim.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_rim_rusted, ItemBlockBase.class, deco_pipe_rim_rusted.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_rim_green, ItemBlockBase.class, deco_pipe_rim_green.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_rim_green_rusted, ItemBlockBase.class, deco_pipe_rim_green_rusted.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_rim_red, ItemBlockBase.class, deco_pipe_rim_red.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_rim_marked, ItemBlockBase.class, deco_pipe_rim_marked.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_framed, ItemBlockBase.class, deco_pipe_framed.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_framed_rusted, ItemBlockBase.class, deco_pipe_framed_rusted.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_framed_green, ItemBlockBase.class, deco_pipe_framed_green.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_framed_green_rusted, ItemBlockBase.class, deco_pipe_framed_green_rusted.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_framed_red, ItemBlockBase.class, deco_pipe_framed_red.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_framed_marked, ItemBlockBase.class, deco_pipe_framed_marked.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_quad, ItemBlockBase.class, deco_pipe_quad.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_quad_rusted, ItemBlockBase.class, deco_pipe_quad_rusted.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_quad_green, ItemBlockBase.class, deco_pipe_quad_green.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_quad_green_rusted, ItemBlockBase.class, deco_pipe_quad_green_rusted.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_quad_red, ItemBlockBase.class, deco_pipe_quad_red.getUnlocalizedName()); - GameRegistry.registerBlock(deco_pipe_quad_marked, ItemBlockBase.class, deco_pipe_quad_marked.getUnlocalizedName()); - register(plant_flower); - register(plant_tall); - register(plant_dead); - register(reeds); - GameRegistry.registerBlock(mush, mush.getUnlocalizedName()); - GameRegistry.registerBlock(mush_block, mush_block.getUnlocalizedName()); - GameRegistry.registerBlock(mush_block_stem, mush_block_stem.getUnlocalizedName()); - register(glyphid_base); - register(glyphid_spawner); - GameRegistry.registerBlock(moon_turf, moon_turf.getUnlocalizedName()); - - //Waste - GameRegistry.registerBlock(waste_earth, waste_earth.getUnlocalizedName()); - GameRegistry.registerBlock(waste_mycelium, waste_mycelium.getUnlocalizedName()); - GameRegistry.registerBlock(waste_trinitite, waste_trinitite.getUnlocalizedName()); - GameRegistry.registerBlock(waste_trinitite_red, waste_trinitite_red.getUnlocalizedName()); - GameRegistry.registerBlock(waste_log, waste_log.getUnlocalizedName()); - GameRegistry.registerBlock(waste_leaves, waste_leaves.getUnlocalizedName()); - GameRegistry.registerBlock(waste_planks, waste_planks.getUnlocalizedName()); - GameRegistry.registerBlock(frozen_grass, frozen_grass.getUnlocalizedName()); - GameRegistry.registerBlock(frozen_dirt, frozen_dirt.getUnlocalizedName()); - GameRegistry.registerBlock(frozen_log, frozen_log.getUnlocalizedName()); - GameRegistry.registerBlock(frozen_planks, frozen_planks.getUnlocalizedName()); - GameRegistry.registerBlock(dirt_dead, dirt_dead.getUnlocalizedName()); - GameRegistry.registerBlock(dirt_oily, dirt_oily.getUnlocalizedName()); - GameRegistry.registerBlock(sand_dirty, sand_dirty.getUnlocalizedName()); - GameRegistry.registerBlock(sand_dirty_red, sand_dirty_red.getUnlocalizedName()); - GameRegistry.registerBlock(stone_cracked, stone_cracked.getUnlocalizedName()); - GameRegistry.registerBlock(fallout, fallout.getUnlocalizedName()); - GameRegistry.registerBlock(foam_layer, foam_layer.getUnlocalizedName()); - GameRegistry.registerBlock(sand_boron_layer, sand_boron_layer.getUnlocalizedName()); - GameRegistry.registerBlock(leaves_layer, leaves_layer.getUnlocalizedName()); - GameRegistry.registerBlock(oil_spill, oil_spill.getUnlocalizedName()); - GameRegistry.registerBlock(burning_earth, burning_earth.getUnlocalizedName()); - GameRegistry.registerBlock(tektite, tektite.getUnlocalizedName()); - GameRegistry.registerBlock(ore_tektite_osmiridium, ore_tektite_osmiridium.getUnlocalizedName()); - GameRegistry.registerBlock(impact_dirt, impact_dirt.getUnlocalizedName()); - - //RAD - register(sellafield_slaked); - register(sellafield_bedrock); - register(ore_sellafield_diamond); - register(ore_sellafield_emerald); - register(ore_sellafield_uranium_scorched); - register(ore_sellafield_schrabidium); - register(ore_sellafield_radgem); - GameRegistry.registerBlock(sellafield, ItemBlockNamedMeta.class, sellafield.getUnlocalizedName()); - - //Geysirs - GameRegistry.registerBlock(geysir_water, geysir_water.getUnlocalizedName()); - GameRegistry.registerBlock(geysir_chlorine, geysir_chlorine.getUnlocalizedName()); - GameRegistry.registerBlock(geysir_vapor, geysir_vapor.getUnlocalizedName()); - GameRegistry.registerBlock(geysir_nether, geysir_nether.getUnlocalizedName()); - - //Nukes - GameRegistry.registerBlock(nuke_gadget, nuke_gadget.getUnlocalizedName()); - GameRegistry.registerBlock(nuke_boy, nuke_boy.getUnlocalizedName()); - GameRegistry.registerBlock(nuke_man, nuke_man.getUnlocalizedName()); - GameRegistry.registerBlock(nuke_mike, nuke_mike.getUnlocalizedName()); - GameRegistry.registerBlock(nuke_tsar, nuke_tsar.getUnlocalizedName()); - GameRegistry.registerBlock(nuke_prototype, ItemPrototypeBlock.class, nuke_prototype.getUnlocalizedName()); - GameRegistry.registerBlock(nuke_fleija, nuke_fleija.getUnlocalizedName()); - GameRegistry.registerBlock(nuke_solinium, nuke_solinium.getUnlocalizedName()); - GameRegistry.registerBlock(nuke_n2, nuke_n2.getUnlocalizedName()); - GameRegistry.registerBlock(nuke_fstbmb, nuke_fstbmb.getUnlocalizedName()); - GameRegistry.registerBlock(nuke_custom, nuke_custom.getUnlocalizedName()); - - //Generic Bombs - GameRegistry.registerBlock(bomb_multi, bomb_multi.getUnlocalizedName()); - GameRegistry.registerBlock(crashed_balefire, crashed_balefire.getUnlocalizedName()); - GameRegistry.registerBlock(fireworks, fireworks.getUnlocalizedName()); - GameRegistry.registerBlock(dynamite, dynamite.getUnlocalizedName()); - GameRegistry.registerBlock(tnt, tnt.getUnlocalizedName()); - GameRegistry.registerBlock(semtex, semtex.getUnlocalizedName()); - GameRegistry.registerBlock(c4, c4.getUnlocalizedName()); - register(fissure_bomb); - - //Turrets - GameRegistry.registerBlock(turret_chekhov, turret_chekhov.getUnlocalizedName()); - GameRegistry.registerBlock(turret_friendly, turret_friendly.getUnlocalizedName()); - GameRegistry.registerBlock(turret_jeremy, turret_jeremy.getUnlocalizedName()); - GameRegistry.registerBlock(turret_tauon, turret_tauon.getUnlocalizedName()); - GameRegistry.registerBlock(turret_richard, turret_richard.getUnlocalizedName()); - GameRegistry.registerBlock(turret_howard, turret_howard.getUnlocalizedName()); - GameRegistry.registerBlock(turret_howard_damaged, turret_howard_damaged.getUnlocalizedName()); - GameRegistry.registerBlock(turret_maxwell, turret_maxwell.getUnlocalizedName()); - GameRegistry.registerBlock(turret_fritz, turret_fritz.getUnlocalizedName()); - //GameRegistry.registerBlock(turret_brandon, turret_brandon.getUnlocalizedName()); - GameRegistry.registerBlock(turret_arty, turret_arty.getUnlocalizedName()); - GameRegistry.registerBlock(turret_himars, turret_himars.getUnlocalizedName()); - GameRegistry.registerBlock(turret_sentry, turret_sentry.getUnlocalizedName()); - GameRegistry.registerBlock(turret_sentry_damaged, turret_sentry_damaged.getUnlocalizedName()); - - //Wall-mounted Explosives - GameRegistry.registerBlock(charge_dynamite, ItemBlockBase.class, charge_dynamite.getUnlocalizedName()); - GameRegistry.registerBlock(charge_miner, ItemBlockBase.class, charge_miner.getUnlocalizedName()); - GameRegistry.registerBlock(charge_c4, ItemBlockBase.class, charge_c4.getUnlocalizedName()); - GameRegistry.registerBlock(charge_semtex, ItemBlockBase.class, charge_semtex.getUnlocalizedName()); - - //Mines - GameRegistry.registerBlock(mine_ap, mine_ap.getUnlocalizedName()); - GameRegistry.registerBlock(mine_he, mine_he.getUnlocalizedName()); - GameRegistry.registerBlock(mine_shrap, mine_shrap.getUnlocalizedName()); - GameRegistry.registerBlock(mine_fat, mine_fat.getUnlocalizedName()); - - //Block Bombs - GameRegistry.registerBlock(flame_war, flame_war.getUnlocalizedName()); - GameRegistry.registerBlock(float_bomb, float_bomb.getUnlocalizedName()); - GameRegistry.registerBlock(therm_endo, therm_endo.getUnlocalizedName()); - GameRegistry.registerBlock(therm_exo, therm_exo.getUnlocalizedName()); - GameRegistry.registerBlock(emp_bomb, emp_bomb.getUnlocalizedName()); - GameRegistry.registerBlock(det_cord, det_cord.getUnlocalizedName()); - GameRegistry.registerBlock(det_charge, det_charge.getUnlocalizedName()); - GameRegistry.registerBlock(det_nuke, det_nuke.getUnlocalizedName()); - GameRegistry.registerBlock(det_miner, det_miner.getUnlocalizedName()); - GameRegistry.registerBlock(red_barrel, ItemBlockLore.class, red_barrel.getUnlocalizedName()); - GameRegistry.registerBlock(pink_barrel, ItemBlockLore.class, pink_barrel.getUnlocalizedName()); - GameRegistry.registerBlock(lox_barrel, ItemBlockLore.class, lox_barrel.getUnlocalizedName()); - GameRegistry.registerBlock(taint_barrel, taint_barrel.getUnlocalizedName()); - GameRegistry.registerBlock(yellow_barrel, yellow_barrel.getUnlocalizedName()); - GameRegistry.registerBlock(vitrified_barrel, vitrified_barrel.getUnlocalizedName()); - - //Siren - GameRegistry.registerBlock(machine_siren, machine_siren.getUnlocalizedName()); - - //This Thing - GameRegistry.registerBlock(broadcaster_pc, broadcaster_pc.getUnlocalizedName()); - - //Geiger Counter - GameRegistry.registerBlock(geiger, geiger.getUnlocalizedName()); - - //HEV Battery - GameRegistry.registerBlock(hev_battery, hev_battery.getUnlocalizedName()); - - //Chainlink Fence - GameRegistry.registerBlock(fence_metal, ItemBlockBase.class, fence_metal.getUnlocalizedName()); - - //Sands, Glass - GameRegistry.registerBlock(ash_digamma, ash_digamma.getUnlocalizedName()); - GameRegistry.registerBlock(sand_boron, sand_boron.getUnlocalizedName()); - GameRegistry.registerBlock(sand_lead, sand_lead.getUnlocalizedName()); - GameRegistry.registerBlock(sand_uranium, sand_uranium.getUnlocalizedName()); - GameRegistry.registerBlock(sand_polonium, sand_polonium.getUnlocalizedName()); - GameRegistry.registerBlock(sand_quartz, sand_quartz.getUnlocalizedName()); - GameRegistry.registerBlock(glass_boron, glass_boron.getUnlocalizedName()); - GameRegistry.registerBlock(glass_lead, glass_lead.getUnlocalizedName()); - GameRegistry.registerBlock(glass_uranium, glass_uranium.getUnlocalizedName()); - GameRegistry.registerBlock(glass_trinitite, glass_trinitite.getUnlocalizedName()); - GameRegistry.registerBlock(glass_polonium, glass_polonium.getUnlocalizedName()); - GameRegistry.registerBlock(glass_ash, glass_ash.getUnlocalizedName()); - GameRegistry.registerBlock(glass_quartz, glass_quartz.getUnlocalizedName()); - - //Silo Hatch - GameRegistry.registerBlock(seal_frame, seal_frame.getUnlocalizedName()); - GameRegistry.registerBlock(seal_controller, seal_controller.getUnlocalizedName()); - GameRegistry.registerBlock(seal_hatch, seal_hatch.getUnlocalizedName()); - - //Vault Door - GameRegistry.registerBlock(vault_door, vault_door.getUnlocalizedName()); - GameRegistry.registerBlock(blast_door, blast_door.getUnlocalizedName()); - GameRegistry.registerBlock(fire_door, fire_door.getUnlocalizedName()); - GameRegistry.registerBlock(transition_seal, transition_seal.getUnlocalizedName()); - GameRegistry.registerBlock(silo_hatch, silo_hatch.getUnlocalizedName()); - GameRegistry.registerBlock(silo_hatch_large, silo_hatch_large.getUnlocalizedName()); - GameRegistry.registerBlock(sliding_blast_door, sliding_blast_door.getUnlocalizedName()); - - //Doors - GameRegistry.registerBlock(door_metal, door_metal.getUnlocalizedName()); - GameRegistry.registerBlock(door_office, door_office.getUnlocalizedName()); - GameRegistry.registerBlock(door_bunker, door_bunker.getUnlocalizedName()); - GameRegistry.registerBlock(door_red, door_red.getUnlocalizedName()); - GameRegistry.registerBlock(secure_access_door, secure_access_door.getUnlocalizedName()); - GameRegistry.registerBlock(large_vehicle_door, large_vehicle_door.getUnlocalizedName()); - GameRegistry.registerBlock(qe_containment, qe_containment.getUnlocalizedName()); - GameRegistry.registerBlock(qe_sliding_door, qe_sliding_door.getUnlocalizedName()); - GameRegistry.registerBlock(round_airlock_door, round_airlock_door.getUnlocalizedName()); - GameRegistry.registerBlock(sliding_seal_door, sliding_seal_door.getUnlocalizedName()); - GameRegistry.registerBlock(water_door, water_door.getUnlocalizedName()); - - //Crates - register(crate_iron); - register(crate_steel); - register(crate_desh); - register(crate_tungsten); - register(crate_template); - register(safe); - register(mass_storage); - - //Junk - GameRegistry.registerBlock(boxcar, boxcar.getUnlocalizedName()); - GameRegistry.registerBlock(boat, boat.getUnlocalizedName()); - - //Machines - register(machine_autocrafter); - register(machine_funnel); - - register(anvil_iron); - register(anvil_lead); - register(anvil_steel); - register(anvil_desh); - register(anvil_saturnite); - register(anvil_ferrouranium); - register(anvil_bismuth_bronze); - register(anvil_arsenic_bronze); - register(anvil_schrabidate); - register(anvil_dnt); - register(anvil_osmiridium); - register(anvil_murky); - - GameRegistry.registerBlock(press_preheater, press_preheater.getUnlocalizedName()); - GameRegistry.registerBlock(machine_press, machine_press.getUnlocalizedName()); - GameRegistry.registerBlock(machine_epress, machine_epress.getUnlocalizedName()); - register(machine_conveyor_press); - register(pump_steam); - register(pump_electric); - register(heater_firebox); - register(heater_oven); - register(machine_ashpit); - register(heater_oilburner); - register(heater_electric); - register(heater_heatex); - register(furnace_iron); - register(furnace_steel); - register(furnace_combination); - register(machine_stirling); - register(machine_stirling_steel); - register(machine_stirling_creative); - register(machine_sawmill); - register(machine_crucible); - register(machine_strand_caster); - register(machine_boiler); - register(machine_industrial_boiler); - register(foundry_mold); - register(foundry_basin); - register(foundry_channel); - register(foundry_tank); - register(foundry_outlet); - register(foundry_slagtap); - register(slag); - register(machine_furnace_brick_off); - register(machine_furnace_brick_on); - register(machine_difurnace_off); - register(machine_difurnace_on); - register(machine_difurnace_extension); - GameRegistry.registerBlock(machine_difurnace_rtg_off, machine_difurnace_rtg_off.getUnlocalizedName()); - GameRegistry.registerBlock(machine_difurnace_rtg_on, machine_difurnace_rtg_on.getUnlocalizedName()); - GameRegistry.registerBlock(machine_centrifuge, machine_centrifuge.getUnlocalizedName()); - GameRegistry.registerBlock(machine_gascent, machine_gascent.getUnlocalizedName()); - GameRegistry.registerBlock(machine_fel, machine_fel.getUnlocalizedName()); - GameRegistry.registerBlock(machine_silex, machine_silex.getUnlocalizedName()); - GameRegistry.registerBlock(machine_crystallizer, machine_crystallizer.getUnlocalizedName()); - GameRegistry.registerBlock(machine_uf6_tank, machine_uf6_tank.getUnlocalizedName()); - GameRegistry.registerBlock(machine_puf6_tank, machine_puf6_tank.getUnlocalizedName()); - GameRegistry.registerBlock(machine_reactor_breeding, machine_reactor_breeding.getUnlocalizedName()); - GameRegistry.registerBlock(machine_nuke_furnace_off, machine_nuke_furnace_off.getUnlocalizedName()); - GameRegistry.registerBlock(machine_nuke_furnace_on, machine_nuke_furnace_on.getUnlocalizedName()); - GameRegistry.registerBlock(machine_rtg_furnace_off, machine_rtg_furnace_off.getUnlocalizedName()); - GameRegistry.registerBlock(machine_rtg_furnace_on, machine_rtg_furnace_on.getUnlocalizedName()); - register(machine_wood_burner); - register(machine_diesel); - register(machine_combustion_engine); - GameRegistry.registerBlock(machine_controller, machine_controller.getUnlocalizedName()); - GameRegistry.registerBlock(reactor_research, reactor_research.getUnlocalizedName()); - GameRegistry.registerBlock(reactor_zirnox, reactor_zirnox.getUnlocalizedName()); - GameRegistry.registerBlock(zirnox_destroyed, zirnox_destroyed.getUnlocalizedName()); - GameRegistry.registerBlock(machine_industrial_generator, machine_industrial_generator.getUnlocalizedName()); - GameRegistry.registerBlock(machine_radgen, machine_radgen.getUnlocalizedName()); - GameRegistry.registerBlock(machine_cyclotron, machine_cyclotron.getUnlocalizedName()); - GameRegistry.registerBlock(machine_exposure_chamber, machine_exposure_chamber.getUnlocalizedName()); - GameRegistry.registerBlock(machine_rtg_grey, machine_rtg_grey.getUnlocalizedName()); - GameRegistry.registerBlock(machine_geo, machine_geo.getUnlocalizedName()); - GameRegistry.registerBlock(machine_amgen, machine_amgen.getUnlocalizedName()); - GameRegistry.registerBlock(machine_minirtg, machine_minirtg.getUnlocalizedName()); - GameRegistry.registerBlock(machine_powerrtg, machine_powerrtg.getUnlocalizedName()); - GameRegistry.registerBlock(machine_radiolysis, machine_radiolysis.getUnlocalizedName()); - GameRegistry.registerBlock(machine_hephaestus, machine_hephaestus.getUnlocalizedName()); - GameRegistry.registerBlock(machine_spp_bottom, machine_spp_bottom.getUnlocalizedName()); - GameRegistry.registerBlock(machine_spp_top, machine_spp_top.getUnlocalizedName()); - - GameRegistry.registerBlock(hadron_plating, hadron_plating.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_plating_blue, hadron_plating_blue.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_plating_black, hadron_plating_black.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_plating_yellow, hadron_plating_yellow.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_plating_striped, hadron_plating_striped.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_plating_glass, hadron_plating_glass.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_plating_voltz, hadron_plating_voltz.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_coil_alloy, ItemBlockBase.class, hadron_coil_alloy.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_coil_gold, ItemBlockBase.class, hadron_coil_gold.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_coil_neodymium, ItemBlockBase.class, hadron_coil_neodymium.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_coil_magtung, ItemBlockBase.class, hadron_coil_magtung.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_coil_schrabidium, ItemBlockBase.class, hadron_coil_schrabidium.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_coil_schrabidate, ItemBlockBase.class, hadron_coil_schrabidate.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_coil_starmetal, ItemBlockBase.class, hadron_coil_starmetal.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_coil_chlorophyte, ItemBlockBase.class, hadron_coil_chlorophyte.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_coil_mese, ItemBlockBase.class, hadron_coil_mese.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_power, hadron_power.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_power_10m, hadron_power_10m.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_power_100m, hadron_power_100m.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_power_1g, hadron_power_1g.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_power_10g, hadron_power_10g.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_diode, hadron_diode.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_analysis, hadron_analysis.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_analysis_glass, hadron_analysis_glass.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_access, hadron_access.getUnlocalizedName()); - GameRegistry.registerBlock(hadron_core, hadron_core.getUnlocalizedName()); - register(hadron_cooler); - - GameRegistry.registerBlock(rbmk_rod, rbmk_rod.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_rod_mod, rbmk_rod_mod.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_rod_reasim, rbmk_rod_reasim.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_rod_reasim_mod, rbmk_rod_reasim_mod.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_control, rbmk_control.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_control_mod, rbmk_control_mod.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_control_auto, rbmk_control_auto.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_blank, rbmk_blank.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_boiler, rbmk_boiler.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_reflector, rbmk_reflector.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_absorber, rbmk_absorber.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_moderator, rbmk_moderator.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_outgasser, rbmk_outgasser.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_storage, rbmk_storage.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_cooler, rbmk_cooler.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_heater, rbmk_heater.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_console, rbmk_console.getUnlocalizedName()); - GameRegistry.registerBlock(rbmk_crane_console, rbmk_crane_console.getUnlocalizedName()); - register(rbmk_loader); - register(rbmk_steam_inlet); - register(rbmk_steam_outlet); - GameRegistry.registerBlock(pribris, pribris.getUnlocalizedName()); - GameRegistry.registerBlock(pribris_burning, pribris_burning.getUnlocalizedName()); - GameRegistry.registerBlock(pribris_radiating, pribris_radiating.getUnlocalizedName()); - GameRegistry.registerBlock(pribris_digamma, pribris_digamma.getUnlocalizedName()); - - GameRegistry.registerBlock(red_cable, red_cable.getUnlocalizedName()); - GameRegistry.registerBlock(red_cable_classic, red_cable_classic.getUnlocalizedName()); - GameRegistry.registerBlock(red_cable_paintable, red_cable_paintable.getUnlocalizedName()); - register(red_cable_gauge); - GameRegistry.registerBlock(red_wire_coated, red_wire_coated.getUnlocalizedName()); - GameRegistry.registerBlock(red_connector, ItemBlockBase.class, red_connector.getUnlocalizedName()); - GameRegistry.registerBlock(red_pylon, ItemBlockBase.class, red_pylon.getUnlocalizedName()); - register(red_pylon_medium_wood); - register(red_pylon_medium_wood_transformer); - register(red_pylon_medium_steel); - register(red_pylon_medium_steel_transformer); - GameRegistry.registerBlock(red_pylon_large, ItemBlockBase.class, red_pylon_large.getUnlocalizedName()); - GameRegistry.registerBlock(substation, ItemBlockBase.class, substation.getUnlocalizedName()); - GameRegistry.registerBlock(cable_switch, cable_switch.getUnlocalizedName()); - GameRegistry.registerBlock(cable_detector, cable_detector.getUnlocalizedName()); - GameRegistry.registerBlock(cable_diode, ItemBlockBase.class, cable_diode.getUnlocalizedName()); - GameRegistry.registerBlock(machine_detector, machine_detector.getUnlocalizedName()); - register(fluid_duct_neo); - register(fluid_duct_box); - register(fluid_duct_exhaust); - register(fluid_duct_paintable); - register(fluid_duct_gauge); - register(fluid_valve); - register(fluid_switch); - register(machine_drain); - register(radio_torch_sender); - register(radio_torch_receiver); - register(radio_torch_counter); - register(radio_torch_logic); - register(radio_telex); - - register(crane_extractor); - register(crane_inserter); - register(crane_grabber); - register(crane_router); - register(crane_boxer); - register(crane_unboxer); - register(conveyor); - register(conveyor_express); - register(conveyor_double); - register(conveyor_triple); - register(conveyor_chute); - register(conveyor_lift); - register(crane_splitter); - register(crane_partitioner); - register(drone_waypoint); - register(drone_crate); - register(drone_waypoint_request); - register(drone_dock); - register(drone_crate_provider); - register(drone_crate_requester); - register(fan); - register(piston_inserter); - - GameRegistry.registerBlock(chain, chain.getUnlocalizedName()); - GameRegistry.registerBlock(ladder_sturdy, ladder_sturdy.getUnlocalizedName()); - GameRegistry.registerBlock(ladder_iron, ladder_iron.getUnlocalizedName()); - GameRegistry.registerBlock(ladder_gold, ladder_gold.getUnlocalizedName()); - GameRegistry.registerBlock(ladder_titanium, ladder_titanium.getUnlocalizedName()); - GameRegistry.registerBlock(ladder_copper, ladder_copper.getUnlocalizedName()); - GameRegistry.registerBlock(ladder_tungsten, ladder_tungsten.getUnlocalizedName()); - GameRegistry.registerBlock(ladder_aluminium, ladder_aluminium.getUnlocalizedName()); - GameRegistry.registerBlock(ladder_steel, ladder_steel.getUnlocalizedName()); - GameRegistry.registerBlock(ladder_lead, ladder_lead.getUnlocalizedName()); - GameRegistry.registerBlock(ladder_cobalt, ladder_cobalt.getUnlocalizedName()); - - register(barrel_plastic); - register(barrel_corroded); - register(barrel_iron); - register(barrel_steel); - register(barrel_tcalloy); - register(barrel_antimatter); - register(machine_battery_potato); - register(machine_battery); - register(machine_lithium_battery); - register(machine_schrabidium_battery); - register(machine_dineutronium_battery); - register(machine_fensu); - register(capacitor_bus); - register(capacitor_copper); - register(capacitor_gold); - register(capacitor_niobium); - register(capacitor_tantalium); - register(capacitor_schrabidate); - GameRegistry.registerBlock(machine_transformer, machine_transformer.getUnlocalizedName()); - GameRegistry.registerBlock(machine_transformer_20, machine_transformer_20.getUnlocalizedName()); - GameRegistry.registerBlock(machine_transformer_dnt, machine_transformer_dnt.getUnlocalizedName()); - GameRegistry.registerBlock(machine_transformer_dnt_20, machine_transformer_dnt_20.getUnlocalizedName()); - GameRegistry.registerBlock(machine_converter_he_rf, machine_converter_he_rf.getUnlocalizedName()); - GameRegistry.registerBlock(machine_converter_rf_he, machine_converter_rf_he.getUnlocalizedName()); - GameRegistry.registerBlock(machine_electric_furnace_off, machine_electric_furnace_off.getUnlocalizedName()); - GameRegistry.registerBlock(machine_electric_furnace_on, machine_electric_furnace_on.getUnlocalizedName()); - GameRegistry.registerBlock(machine_arc_furnace_off, machine_arc_furnace_off.getUnlocalizedName()); - GameRegistry.registerBlock(machine_arc_furnace_on, machine_arc_furnace_on.getUnlocalizedName()); - GameRegistry.registerBlock(machine_microwave, machine_microwave.getUnlocalizedName()); - GameRegistry.registerBlock(machine_assembler, machine_assembler.getUnlocalizedName()); - GameRegistry.registerBlock(machine_assemfac, machine_assemfac.getUnlocalizedName()); - GameRegistry.registerBlock(machine_chemplant, machine_chemplant.getUnlocalizedName()); - GameRegistry.registerBlock(machine_chemfac, machine_chemfac.getUnlocalizedName()); - register(machine_arc_welder); - register(machine_soldering_station); - register(machine_arc_furnace); - register(machine_mixer); - register(machine_fluidtank); - register(machine_bat9000); - register(machine_orbus); - GameRegistry.registerBlock(machine_boiler_off, machine_boiler_off.getUnlocalizedName()); - register(machine_steam_engine); - register(machine_turbine); - register(machine_large_turbine); - register(machine_chungus); - GameRegistry.registerBlock(machine_condenser, machine_condenser.getUnlocalizedName()); - GameRegistry.registerBlock(machine_tower_small, machine_tower_small.getUnlocalizedName()); - GameRegistry.registerBlock(machine_tower_large, machine_tower_large.getUnlocalizedName()); - register(machine_condenser_powered); - GameRegistry.registerBlock(machine_deuterium_extractor, machine_deuterium_extractor.getUnlocalizedName()); - GameRegistry.registerBlock(machine_deuterium_tower, machine_deuterium_tower.getUnlocalizedName()); - GameRegistry.registerBlock(machine_liquefactor, ItemBlockBase.class, machine_liquefactor.getUnlocalizedName()); - GameRegistry.registerBlock(machine_solidifier, ItemBlockBase.class, machine_solidifier.getUnlocalizedName()); - register(machine_compressor); - GameRegistry.registerBlock(machine_electrolyser, machine_electrolyser.getUnlocalizedName()); - GameRegistry.registerBlock(machine_waste_drum, machine_waste_drum.getUnlocalizedName()); - GameRegistry.registerBlock(machine_storage_drum, machine_storage_drum.getUnlocalizedName()); - GameRegistry.registerBlock(machine_shredder, machine_shredder.getUnlocalizedName()); - register(machine_well); - register(machine_pumpjack); - register(machine_fracking_tower); - register(machine_flare); - register(chimney_brick); - register(chimney_industrial); - register(machine_refinery); - register(machine_vacuum_distill); - register(machine_fraction_tower); - register(fraction_spacer); - register(machine_catalytic_cracker); - register(machine_catalytic_reformer); - register(machine_hydrotreater); - register(machine_coker); - register(machine_pyrooven); - register(machine_autosaw); - register(machine_excavator); - register(machine_ore_slopper); - register(machine_mining_laser); - register(barricade); - register(machine_turbofan); - register(machine_turbinegas); - register(machine_lpw2); - GameRegistry.registerBlock(machine_schrabidium_transmutator, machine_schrabidium_transmutator.getUnlocalizedName()); - GameRegistry.registerBlock(machine_teleporter, machine_teleporter.getUnlocalizedName()); - GameRegistry.registerBlock(teleanchor, teleanchor.getUnlocalizedName()); - GameRegistry.registerBlock(field_disturber, field_disturber.getUnlocalizedName()); - GameRegistry.registerBlock(machine_satlinker, machine_satlinker.getUnlocalizedName()); - GameRegistry.registerBlock(machine_keyforge, machine_keyforge.getUnlocalizedName()); - GameRegistry.registerBlock(machine_armor_table, machine_armor_table.getUnlocalizedName()); - GameRegistry.registerBlock(machine_forcefield, machine_forcefield.getUnlocalizedName()); - GameRegistry.registerBlock(radiorec, radiorec.getUnlocalizedName()); - GameRegistry.registerBlock(radiobox, radiobox.getUnlocalizedName()); - - //Multiblock Parts - GameRegistry.registerBlock(struct_launcher, struct_launcher.getUnlocalizedName()); - GameRegistry.registerBlock(struct_scaffold, struct_scaffold.getUnlocalizedName()); - GameRegistry.registerBlock(struct_launcher_core, struct_launcher_core.getUnlocalizedName()); - GameRegistry.registerBlock(struct_launcher_core_large, struct_launcher_core_large.getUnlocalizedName()); - GameRegistry.registerBlock(struct_soyuz_core, struct_soyuz_core.getUnlocalizedName()); - GameRegistry.registerBlock(struct_iter_core, struct_iter_core.getUnlocalizedName()); - GameRegistry.registerBlock(struct_plasma_core, struct_plasma_core.getUnlocalizedName()); - GameRegistry.registerBlock(struct_watz_core, struct_watz_core.getUnlocalizedName()); - GameRegistry.registerBlock(struct_icf_core, struct_icf_core.getUnlocalizedName()); - - //Absorbers - GameRegistry.registerBlock(absorber, absorber.getUnlocalizedName()); - GameRegistry.registerBlock(absorber_red, absorber_red.getUnlocalizedName()); - GameRegistry.registerBlock(absorber_green, absorber_green.getUnlocalizedName()); - GameRegistry.registerBlock(absorber_pink, absorber_pink.getUnlocalizedName()); - GameRegistry.registerBlock(decon, decon.getUnlocalizedName()); - GameRegistry.registerBlock(transission_hatch, transission_hatch.getUnlocalizedName()); - - //Solar Tower Blocks - GameRegistry.registerBlock(machine_solar_boiler, machine_solar_boiler.getUnlocalizedName()); - GameRegistry.registerBlock(solar_mirror, solar_mirror.getUnlocalizedName()); - - //Literal fucking garbage - GameRegistry.registerBlock(factory_titanium_hull, factory_titanium_hull.getUnlocalizedName()); - GameRegistry.registerBlock(factory_advanced_hull, factory_advanced_hull.getUnlocalizedName()); - - //CM stuff - register(custom_machine, ItemCustomMachine.class); - register(cm_block); - register(cm_sheet); - register(cm_engine); - register(cm_tank); - register(cm_circuit); - register(cm_port); - register(cm_flux); - register(cm_heat); - register(cm_anchor); - - //PWR - register(pwr_fuel); - register(pwr_control); - register(pwr_channel); - register(pwr_heatex); - register(pwr_heatsink); - register(pwr_neutron_source); - register(pwr_reflector); - register(pwr_casing); - register(pwr_port); - register(pwr_controller); - register(pwr_block); - - //Multiblock Generators - register(fusion_conductor); - GameRegistry.registerBlock(fusion_center, fusion_center.getUnlocalizedName()); - GameRegistry.registerBlock(fusion_motor, fusion_motor.getUnlocalizedName()); - GameRegistry.registerBlock(fusion_heater, fusion_heater.getUnlocalizedName()); - GameRegistry.registerBlock(fusion_hatch, fusion_hatch.getUnlocalizedName()); - GameRegistry.registerBlock(plasma, ItemBlockLore.class, plasma.getUnlocalizedName()); - GameRegistry.registerBlock(iter, iter.getUnlocalizedName()); - GameRegistry.registerBlock(plasma_heater, plasma_heater.getUnlocalizedName()); - - register(watz_element); - register(watz_cooler); - register(watz_end); - register(watz); - register(watz_pump); - - register(machine_icf_press); - register(icf_laser_component); - register(icf_controller); - register(icf_block); - register(icf_component); - register(icf); - - //E - GameRegistry.registerBlock(balefire, balefire.getUnlocalizedName()); - GameRegistry.registerBlock(fire_digamma, fire_digamma.getUnlocalizedName()); - GameRegistry.registerBlock(digamma_matter, digamma_matter.getUnlocalizedName()); - register(volcano_core); - register(volcano_rad_core); - - //Dark Fusion Core - GameRegistry.registerBlock(dfc_emitter, dfc_emitter.getUnlocalizedName()); - GameRegistry.registerBlock(dfc_injector, dfc_injector.getUnlocalizedName()); - GameRegistry.registerBlock(dfc_receiver, dfc_receiver.getUnlocalizedName()); - GameRegistry.registerBlock(dfc_stabilizer, dfc_stabilizer.getUnlocalizedName()); - GameRegistry.registerBlock(dfc_core, dfc_core.getUnlocalizedName()); - - //Missile Blocks - GameRegistry.registerBlock(machine_missile_assembly, machine_missile_assembly.getUnlocalizedName()); - GameRegistry.registerBlock(launch_pad, launch_pad.getUnlocalizedName()); - GameRegistry.registerBlock(launch_pad_rusted, launch_pad_rusted.getUnlocalizedName()); - GameRegistry.registerBlock(launch_pad_large, launch_pad_large.getUnlocalizedName()); - GameRegistry.registerBlock(compact_launcher, compact_launcher.getUnlocalizedName()); - GameRegistry.registerBlock(launch_table, launch_table.getUnlocalizedName()); - GameRegistry.registerBlock(soyuz_launcher, soyuz_launcher.getUnlocalizedName()); - GameRegistry.registerBlock(sat_dock, sat_dock.getUnlocalizedName()); - GameRegistry.registerBlock(soyuz_capsule, soyuz_capsule.getUnlocalizedName()); - GameRegistry.registerBlock(machine_radar, machine_radar.getUnlocalizedName()); - GameRegistry.registerBlock(machine_radar_large, machine_radar_large.getUnlocalizedName()); - GameRegistry.registerBlock(radar_screen, radar_screen.getUnlocalizedName()); - - //Guide - GameRegistry.registerBlock(book_guide, book_guide.getUnlocalizedName()); - - //Sat Blocks - GameRegistry.registerBlock(sat_mapper, sat_mapper.getUnlocalizedName()); - GameRegistry.registerBlock(sat_scanner, sat_scanner.getUnlocalizedName()); - GameRegistry.registerBlock(sat_radar, sat_radar.getUnlocalizedName()); - GameRegistry.registerBlock(sat_laser, sat_laser.getUnlocalizedName()); - GameRegistry.registerBlock(sat_foeq, sat_foeq.getUnlocalizedName()); - GameRegistry.registerBlock(sat_resonator, sat_resonator.getUnlocalizedName()); - - //Rails - GameRegistry.registerBlock(rail_wood, ItemBlockBase.class, rail_wood.getUnlocalizedName()); - GameRegistry.registerBlock(rail_narrow, ItemBlockBase.class, rail_narrow.getUnlocalizedName()); - GameRegistry.registerBlock(rail_highspeed, ItemBlockBase.class, rail_highspeed.getUnlocalizedName()); - GameRegistry.registerBlock(rail_booster, ItemBlockBase.class, rail_booster.getUnlocalizedName()); - register(rail_narrow_straight); - register(rail_narrow_curve); - register(rail_large_straight); - register(rail_large_straight_short); - register(rail_large_curve); - register(rail_large_curve_7); - register(rail_large_curve_9); - register(rail_large_ramp); - register(rail_large_buffer); - register(rail_large_switch); - register(rail_large_switch_flipped); - - //Crate - GameRegistry.registerBlock(crate, crate.getUnlocalizedName()); - GameRegistry.registerBlock(crate_weapon, crate_weapon.getUnlocalizedName()); - GameRegistry.registerBlock(crate_lead, crate_lead.getUnlocalizedName()); - GameRegistry.registerBlock(crate_metal, crate_metal.getUnlocalizedName()); - GameRegistry.registerBlock(crate_red, crate_red.getUnlocalizedName()); - GameRegistry.registerBlock(crate_can, crate_can.getUnlocalizedName()); - GameRegistry.registerBlock(crate_ammo, crate_ammo.getUnlocalizedName()); - GameRegistry.registerBlock(crate_jungle, crate_jungle.getUnlocalizedName()); - - //ElB - GameRegistry.registerBlock(statue_elb, statue_elb.getUnlocalizedName()); - GameRegistry.registerBlock(statue_elb_g, statue_elb_g.getUnlocalizedName()); - GameRegistry.registerBlock(statue_elb_w, statue_elb_w.getUnlocalizedName()); - GameRegistry.registerBlock(statue_elb_f, statue_elb_f.getUnlocalizedName()); - - //Fluids - GameRegistry.registerBlock(mud_block, mud_block.getUnlocalizedName()); - GameRegistry.registerBlock(acid_block, acid_block.getUnlocalizedName()); - GameRegistry.registerBlock(toxic_block, toxic_block.getUnlocalizedName()); - GameRegistry.registerBlock(schrabidic_block, schrabidic_block.getUnlocalizedName()); - GameRegistry.registerBlock(corium_block, corium_block.getUnlocalizedName()); - GameRegistry.registerBlock(volcanic_lava_block, volcanic_lava_block.getUnlocalizedName()); - GameRegistry.registerBlock(rad_lava_block, rad_lava_block.getUnlocalizedName()); - GameRegistry.registerBlock(sulfuric_acid_block, sulfuric_acid_block.getUnlocalizedName()); - //GameRegistry.registerBlock(concrete_liquid, concrete_liquid.getUnlocalizedName()); - - //Multiblock Dummy Blocks - GameRegistry.registerBlock(dummy_block_vault, dummy_block_vault.getUnlocalizedName()); - GameRegistry.registerBlock(dummy_block_blast, dummy_block_blast.getUnlocalizedName()); - GameRegistry.registerBlock(dummy_block_uf6, dummy_block_uf6.getUnlocalizedName()); - GameRegistry.registerBlock(dummy_block_puf6, dummy_block_puf6.getUnlocalizedName()); - GameRegistry.registerBlock(dummy_plate_compact_launcher, dummy_plate_compact_launcher.getUnlocalizedName()); - GameRegistry.registerBlock(dummy_port_compact_launcher, dummy_port_compact_launcher.getUnlocalizedName()); - GameRegistry.registerBlock(dummy_plate_launch_table, dummy_plate_launch_table.getUnlocalizedName()); - GameRegistry.registerBlock(dummy_port_launch_table, dummy_port_launch_table.getUnlocalizedName()); - GameRegistry.registerBlock(dummy_plate_cargo, dummy_plate_cargo.getUnlocalizedName()); - - //Other Technical Blocks - GameRegistry.registerBlock(oil_pipe, oil_pipe.getUnlocalizedName()); - GameRegistry.registerBlock(vent_chlorine, vent_chlorine.getUnlocalizedName()); - GameRegistry.registerBlock(vent_cloud, vent_cloud.getUnlocalizedName()); - GameRegistry.registerBlock(vent_pink_cloud, vent_pink_cloud.getUnlocalizedName()); - GameRegistry.registerBlock(vent_chlorine_seal, vent_chlorine_seal.getUnlocalizedName()); - GameRegistry.registerBlock(chlorine_gas, chlorine_gas.getUnlocalizedName()); - GameRegistry.registerBlock(gas_radon, gas_radon.getUnlocalizedName()); - GameRegistry.registerBlock(gas_radon_dense, gas_radon_dense.getUnlocalizedName()); - GameRegistry.registerBlock(gas_radon_tomb, gas_radon_tomb.getUnlocalizedName()); - GameRegistry.registerBlock(gas_meltdown, gas_meltdown.getUnlocalizedName()); - GameRegistry.registerBlock(gas_monoxide, gas_monoxide.getUnlocalizedName()); - GameRegistry.registerBlock(gas_asbestos, gas_asbestos.getUnlocalizedName()); - GameRegistry.registerBlock(gas_coal, gas_coal.getUnlocalizedName()); - GameRegistry.registerBlock(gas_flammable, gas_flammable.getUnlocalizedName()); - GameRegistry.registerBlock(gas_explosive, gas_explosive.getUnlocalizedName()); - GameRegistry.registerBlock(vacuum, vacuum.getUnlocalizedName()); - - //??? - GameRegistry.registerBlock(crystal_virus, crystal_virus.getUnlocalizedName()); - GameRegistry.registerBlock(crystal_hardened, crystal_hardened.getUnlocalizedName()); - GameRegistry.registerBlock(crystal_pulsar, crystal_pulsar.getUnlocalizedName()); - GameRegistry.registerBlock(taint, ItemTaintBlock.class, taint.getUnlocalizedName()); - GameRegistry.registerBlock(cheater_virus, cheater_virus.getUnlocalizedName()); - GameRegistry.registerBlock(cheater_virus_seed, cheater_virus_seed.getUnlocalizedName()); - GameRegistry.registerBlock(ntm_dirt, ntm_dirt.getUnlocalizedName()); - GameRegistry.registerBlock(pink_log, pink_log.getUnlocalizedName()); - GameRegistry.registerBlock(pink_planks, pink_planks.getUnlocalizedName()); - GameRegistry.registerBlock(pink_slab, pink_slab.getUnlocalizedName()); - GameRegistry.registerBlock(pink_double_slab, pink_double_slab.getUnlocalizedName()); - GameRegistry.registerBlock(pink_stairs, pink_stairs.getUnlocalizedName()); - } - - private static void register(Block b) { - GameRegistry.registerBlock(b, ItemBlockBase.class, b.getUnlocalizedName()); - } - - private static void register(Block b, Class clazz) { - GameRegistry.registerBlock(b, clazz, b.getUnlocalizedName()); - } - - public static void addRemap(String unloc, Block block, int meta) { - Block remap = new BlockRemap(block, meta).setBlockName(unloc); - register(remap, ItemBlockRemap.class); - } -} +package com.hbm.blocks; + +import java.util.ArrayList; + +import com.hbm.blocks.BlockEnums.*; +import com.hbm.blocks.bomb.*; +import com.hbm.blocks.fluid.*; +import com.hbm.blocks.gas.*; +import com.hbm.blocks.generic.*; +import com.hbm.blocks.generic.BlockHazard.ExtDisplayEffect; +import com.hbm.blocks.generic.BlockMotherOfAllOres.ItemRandomOreBlock; +import com.hbm.blocks.machine.*; +import com.hbm.blocks.machine.pile.*; +import com.hbm.blocks.machine.rbmk.*; +import com.hbm.blocks.network.*; +import com.hbm.blocks.rail.*; +import com.hbm.blocks.test.*; +import com.hbm.blocks.turret.*; +import com.hbm.items.block.*; +import com.hbm.items.bomb.ItemPrototypeBlock; +import com.hbm.items.special.ItemOreBlock; +import com.hbm.lib.ModDamageSource; +import com.hbm.lib.RefStrings; +import com.hbm.main.MainRegistry; +import com.hbm.tileentity.DoorDecl; +import com.hbm.tileentity.machine.storage.TileEntityFileCabinet; +import cpw.mods.fml.common.registry.GameRegistry; +import net.minecraft.block.Block; +import net.minecraft.block.BlockFalling; +import net.minecraft.block.material.MapColor; +import net.minecraft.block.material.Material; +import net.minecraft.block.material.MaterialLiquid; +import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.item.Item; +import net.minecraft.item.ItemBlock; +import net.minecraft.item.ItemStack; +import net.minecraft.world.World; +import net.minecraftforge.fluids.Fluid; +import net.minecraftforge.fluids.FluidRegistry; + +public class ModBlocks { + + public static void mainRegistry() + { + initializeBlock(); + registerBlock(); + } + + public static Block event_tester; + public static Block obj_tester; + public static Block test_core; + public static Block test_charge; + public static Block structure_anchor; + + public static Block ore_uranium; + public static Block ore_uranium_scorched; + public static Block ore_titanium; + public static Block ore_sulfur; + public static Block ore_thorium; + public static Block ore_niter; + public static Block ore_copper; + public static Block ore_tungsten; + public static Block ore_aluminium; + public static Block ore_fluorite; + public static Block ore_lead; + public static Block ore_schrabidium; + public static Block ore_beryllium; + public static Block ore_australium; + public static Block ore_rare; + public static Block ore_cobalt; + public static Block ore_cinnebar; + public static Block ore_coltan; + public static Block ore_alexandrite; + + public static Block ore_random; + public static Block ore_bedrock; + public static Block ore_volcano; + + public static Block ore_nether_coal; + public static Block ore_nether_smoldering; + public static Block ore_nether_uranium; + public static Block ore_nether_uranium_scorched; + public static Block ore_nether_plutonium; + public static Block ore_nether_tungsten; + public static Block ore_nether_sulfur; + public static Block ore_nether_fire; + public static Block ore_nether_cobalt; + public static Block ore_nether_schrabidium; + + public static Block ore_meteor; + + public static Block stone_gneiss; + public static Block ore_gneiss_iron; + public static Block ore_gneiss_gold; + public static Block ore_gneiss_uranium; + public static Block ore_gneiss_uranium_scorched; + public static Block ore_gneiss_copper; + public static Block ore_gneiss_asbestos; + public static Block ore_gneiss_lithium; + public static Block ore_gneiss_schrabidium; + public static Block ore_gneiss_rare; + public static Block ore_gneiss_gas; + + public static Block gneiss_brick; + public static Block gneiss_tile; + public static Block gneiss_chiseled; + + public static Block stone_depth; + public static Block ore_depth_cinnebar; + public static Block ore_depth_zirconium; + public static Block ore_depth_borax; + public static Block cluster_depth_iron; + public static Block cluster_depth_titanium; + public static Block cluster_depth_tungsten; + + public static Block stone_keyhole; + + public static Block stone_depth_nether; + public static Block ore_depth_nether_neodymium; + + public static Block stone_porous; + public static Block stone_resource; + public static Block stalagmite; + public static Block stalactite; + public static Block stone_biome; + + public static Block depth_brick; + public static Block depth_tiles; + public static Block depth_nether_brick; + public static Block depth_nether_tiles; + public static Block depth_dnt; + + public static Block basalt; + public static Block ore_basalt; + public static Block basalt_smooth; + public static Block basalt_brick; + public static Block basalt_polished; + public static Block basalt_tiles; + + public static Block cluster_iron; + public static Block cluster_titanium; + public static Block cluster_aluminium; + public static Block cluster_copper; + + public static Block ore_oil; + public static Block ore_oil_empty; + public static Block ore_oil_sand; + public static Block ore_bedrock_oil; + public static Block ore_lignite; + public static Block ore_asbestos; + public static Block ore_coal_oil; + public static Block ore_coal_oil_burning; + + public static Block ore_tikite; + + public static Block block_thorium; + public static Block block_thorium_fuel; + public static Block block_uranium; + public static Block block_u233; + public static Block block_u235; + public static Block block_u238; + public static Block block_uranium_fuel; + public static Block block_neptunium; + public static Block block_polonium; + public static Block block_mox_fuel; + public static Block block_plutonium; + public static Block block_pu238; + public static Block block_pu239; + public static Block block_pu240; + public static Block block_pu_mix; + public static Block block_plutonium_fuel; + public static Block block_titanium; + public static Block block_sulfur; + public static Block block_niter; + public static Block block_copper; + public static Block block_red_copper; + public static Block block_tungsten; + public static Block block_aluminium; + public static Block block_fluorite; + public static Block block_steel; + public static Block block_tcalloy; + public static Block block_cdalloy; + public static Block block_lead; + public static Block block_bismuth; + public static Block block_cadmium; + public static Block block_coltan; + public static Block block_tantalium; + public static Block block_niobium; + public static Block block_trinitite; + public static Block block_waste; + public static Block block_waste_painted; + public static Block block_waste_vitrified; + public static Block ancient_scrap; + public static Block block_corium; + public static Block block_corium_cobble; + public static Block block_scrap; + public static Block block_electrical_scrap; + public static Block block_beryllium; + public static Block block_schraranium; + public static Block block_schrabidium; + public static Block block_schrabidate; + public static Block block_solinium; + public static Block block_schrabidium_fuel; + public static Block block_euphemium; + public static Block block_schrabidium_cluster; + public static Block block_euphemium_cluster; + public static Block block_dineutronium; + public static Block block_advanced_alloy; + public static Block block_magnetized_tungsten; + public static Block block_combine_steel; + public static Block block_desh; + public static Block block_dura_steel; + public static Block block_starmetal; + public static Block block_polymer; + public static Block block_bakelite; + public static Block block_rubber; + public static Block block_yellowcake; + public static Block block_insulator; + public static Block block_fiberglass; + public static Block block_asbestos; + public static Block block_cobalt; + public static Block block_lithium; + public static Block block_zirconium; + public static Block block_white_phosphorus; + public static Block block_red_phosphorus; + public static Block block_fallout; + public static Block block_foam; + public static Block block_coke; + public static Block block_graphite; + public static Block block_graphite_drilled; + public static Block block_graphite_fuel; + public static Block block_graphite_plutonium; + public static Block block_graphite_rod; + public static Block block_graphite_source; + public static Block block_graphite_lithium; + public static Block block_graphite_tritium; + public static Block block_graphite_detector; + public static Block block_boron; + public static Block block_lanthanium; + public static Block block_ra226; + public static Block block_actinium; + public static Block block_tritium; + public static Block block_semtex; + public static Block block_c4; + public static Block block_smore; + public static Block block_slag; + + public static Block block_australium; + public static Block block_weidanium; + public static Block block_reiium; + public static Block block_unobtainium; + public static Block block_daffergon; + public static Block block_verticium; + + public static Block block_cap; + + public static Block deco_titanium; + public static Block deco_red_copper; + public static Block deco_tungsten; + public static Block deco_aluminium; + public static Block deco_steel; + public static Block deco_lead; + public static Block deco_beryllium; + public static Block deco_asbestos; + public static Block deco_rbmk; + public static Block deco_rbmk_smooth; + + public static Block deco_emitter; + public static Block part_emitter; + public static Block deco_loot; + public static Block pedestal; + public static Block bobblehead; + public static Block snowglobe; + public static Block plushie; + + public static Block gravel_obsidian; + public static Block gravel_diamond; + public static Block asphalt; + public static Block asphalt_light; + + public static Block reinforced_brick; + public static Block reinforced_ducrete; + public static Block reinforced_glass; + public static Block reinforced_glass_pane; + public static Block reinforced_light; + public static Block reinforced_sand; + public static Block reinforced_lamp_off; + public static Block reinforced_lamp_on; + public static Block reinforced_laminate; + public static Block reinforced_laminate_pane; + + public static Block lamp_tritium_green_off; + public static Block lamp_tritium_green_on; + public static Block lamp_tritium_blue_off; + public static Block lamp_tritium_blue_on; + + public static Block lamp_demon; + + public static Block lantern; + public static Block lantern_behemoth; + + public static Block spotlight_incandescent; + public static Block spotlight_incandescent_off; + public static Block spotlight_fluoro; + public static Block spotlight_fluoro_off; + public static Block spotlight_halogen; + public static Block spotlight_halogen_off; + public static Block spotlight_beam; + public static Block floodlight; + public static Block floodlight_beam; + + public static Block reinforced_stone; + public static Block concrete_smooth; + public static Block concrete_colored; + public static Block concrete_colored_ext; + public static Block concrete; + public static Block concrete_asbestos; + public static Block concrete_super; + public static Block concrete_super_broken; + public static Block ducrete_smooth; + public static Block ducrete; + public static Block concrete_pillar; + public static Block brick_concrete; + public static Block brick_concrete_mossy; + public static Block brick_concrete_cracked; + public static Block brick_concrete_broken; + public static Block brick_concrete_marked; + public static Block brick_ducrete; + public static Block brick_obsidian; + public static Block brick_light; + public static Block brick_compound; + public static Block brick_asbestos; + public static Block brick_fire; + + public static Block concrete_slab; + public static Block concrete_double_slab; + public static Block concrete_brick_slab; + public static Block concrete_brick_double_slab; + public static Block brick_slab; + public static Block brick_double_slab; + + public static Block concrete_smooth_stairs; + public static Block concrete_stairs; + public static Block concrete_asbestos_stairs; + public static Block ducrete_smooth_stairs; + public static Block ducrete_stairs; + public static Block brick_concrete_stairs; + public static Block brick_concrete_mossy_stairs; + public static Block brick_concrete_cracked_stairs; + public static Block brick_concrete_broken_stairs; + public static Block brick_ducrete_stairs; + public static Block reinforced_stone_stairs; + public static Block reinforced_brick_stairs; + public static Block brick_obsidian_stairs; + public static Block brick_light_stairs; + public static Block brick_compound_stairs; + public static Block brick_asbestos_stairs; + public static Block brick_fire_stairs; + public static Block asphalt_stairs; + + public static Block cmb_brick; + public static Block cmb_brick_reinforced; + + public static Block vinyl_tile; + + public static Block tile_lab; + public static Block tile_lab_cracked; + public static Block tile_lab_broken; + + public static Block block_meteor; + public static Block block_meteor_cobble; + public static Block block_meteor_broken; + public static Block block_meteor_molten; + public static Block block_meteor_treasure; + public static Block meteor_polished; + public static Block meteor_brick; + public static Block meteor_brick_mossy; + public static Block meteor_brick_cracked; + public static Block meteor_brick_chiseled; + public static Block meteor_pillar; + public static Block meteor_spawner; + public static Block meteor_battery; + + public static Block moon_turf; + + public static Block brick_jungle; + public static Block brick_jungle_cracked; + public static Block brick_jungle_fragile; + public static Block brick_jungle_lava; + public static Block brick_jungle_ooze; + public static Block brick_jungle_mystic; + public static Block brick_jungle_trap; + public static Block brick_jungle_glyph; + public static Block brick_jungle_circle; + + public static Block brick_red; + + public static Block deco_computer; + public static Block deco_crt; + public static Block deco_toaster; + + public static Block filing_cabinet; + + public static Block tape_recorder; + public static Block steel_poles; + public static Block pole_top; + public static Block pole_satellite_receiver; + public static Block steel_wall; + public static Block steel_corner; + public static Block steel_roof; + public static Block steel_beam; + public static Block steel_scaffold; + public static Block steel_grate; + public static Block steel_grate_wide; + + public static Block deco_pipe; + public static Block deco_pipe_rusted; + public static Block deco_pipe_green; + public static Block deco_pipe_green_rusted; + public static Block deco_pipe_red; + public static Block deco_pipe_marked; + public static Block deco_pipe_rim; + public static Block deco_pipe_rim_rusted; + public static Block deco_pipe_rim_green; + public static Block deco_pipe_rim_green_rusted; + public static Block deco_pipe_rim_red; + public static Block deco_pipe_rim_marked; + public static Block deco_pipe_framed; + public static Block deco_pipe_framed_rusted; + public static Block deco_pipe_framed_green; + public static Block deco_pipe_framed_green_rusted; + public static Block deco_pipe_framed_red; + public static Block deco_pipe_framed_marked; + public static Block deco_pipe_quad; + public static Block deco_pipe_quad_rusted; + public static Block deco_pipe_quad_green; + public static Block deco_pipe_quad_green_rusted; + public static Block deco_pipe_quad_red; + public static Block deco_pipe_quad_marked; + + public static Block broadcaster_pc; + public static Block geiger; + public static Block hev_battery; + + public static Block fence_metal; + + public static Block sand_boron; + public static Block sand_lead; + public static Block sand_uranium; + public static Block sand_polonium; + public static Block sand_quartz; + public static Block ash_digamma; + public static Block glass_boron; + public static Block glass_lead; + public static Block glass_uranium; + public static Block glass_trinitite; + public static Block glass_polonium; + public static Block glass_ash; + public static Block glass_quartz; + + public static Block mush; + public static Block mush_block; + public static Block mush_block_stem; + + public static Block glyphid_base; + public static Block glyphid_spawner; + + public static Block plant_flower; + public static Block plant_tall; + public static Block plant_dead; + public static Block reeds; + + public static Block waste_earth; + public static Block waste_mycelium; + public static Block waste_trinitite; + public static Block waste_trinitite_red; + public static Block waste_log; + public static Block waste_leaves; + public static Block waste_planks; + public static Block frozen_dirt; + public static Block frozen_grass; + public static Block frozen_log; + public static Block frozen_planks; + public static Block dirt_dead; + public static Block dirt_oily; + public static Block sand_dirty; + public static Block sand_dirty_red; + public static Block stone_cracked; + public static Block burning_earth; + public static Block tektite; + public static Block ore_tektite_osmiridium; + public static Block impact_dirt; + + public static Block fallout; + public static Block foam_layer; + public static Block sand_boron_layer; + public static Block leaves_layer; + public static Block oil_spill; + + public static Block sellafield_slaked; + public static Block sellafield_bedrock; + public static Block sellafield; + public static Block ore_sellafield_diamond; + public static Block ore_sellafield_emerald; + public static Block ore_sellafield_uranium_scorched; + public static Block ore_sellafield_schrabidium; + public static Block ore_sellafield_radgem; + + public static Block geysir_water; + public static Block geysir_chlorine; + public static Block geysir_vapor; + public static Block geysir_nether; + + public static Block flame_war; + public static Block float_bomb; + public static Block therm_endo; + public static Block therm_exo; + public static Block emp_bomb; + public static Block det_cord; + public static Block det_charge; + public static Block det_nuke; + public static Block det_miner; + public static Block red_barrel; + public static Block pink_barrel; + public static Block yellow_barrel; + public static Block vitrified_barrel; + public static Block lox_barrel; + public static Block taint_barrel; + public static Block crashed_balefire; + public static Block fireworks; + public static Block dynamite; + public static Block tnt; + public static Block semtex; + public static Block c4; + public static Block fissure_bomb; + + public static Block charge_dynamite; + public static Block charge_miner; + public static Block charge_c4; + public static Block charge_semtex; + + public static Block mine_ap; + public static Block mine_he; + public static Block mine_shrap; + public static Block mine_fat; + + public static Block crate; + public static Block crate_weapon; + public static Block crate_lead; + public static Block crate_metal; + public static Block crate_red; + public static Block crate_can; + public static Block crate_ammo; + public static Block crate_jungle; + + public static Block boxcar; + public static Block boat; + + public static Block seal_frame; + public static Block seal_controller; + public static Block seal_hatch; + + public static Block vault_door; + public static Block blast_door; + public static Block sliding_blast_door; + public static Block fire_door; + public static Block transition_seal; + public static Block silo_hatch; + public static Block silo_hatch_large; + + // 1.12.2 Doors + public static Block secure_access_door; + public static Block large_vehicle_door; + public static Block qe_containment; + public static Block qe_sliding_door; + public static Block round_airlock_door; + public static Block sliding_seal_door; + public static Block water_door; + + public static Block door_metal; + public static Block door_office; + public static Block door_bunker; + public static Block door_red; + + public static Block barbed_wire; + public static Block barbed_wire_fire; + public static Block barbed_wire_poison; + public static Block barbed_wire_acid; + public static Block barbed_wire_wither; + public static Block barbed_wire_ultradeath; + public static Block spikes; + + public static Block charger; + + public static Block tesla; + + public static Block sat_mapper; + public static Block sat_scanner; + public static Block sat_radar; + public static Block sat_laser; + public static Block sat_foeq; + public static Block sat_resonator; + + public static Block sat_dock; + + public static Block soyuz_capsule; + + public static Block crate_iron; + public static Block crate_steel; + public static Block crate_desh; + public static Block crate_tungsten; + public static Block crate_template; + public static Block safe; + public static Block mass_storage; + + public static Block nuke_gadget; + public static Block nuke_boy; + public static Block nuke_man; + public static Block nuke_mike; + public static Block nuke_tsar; + public static Block nuke_fleija; + public static Block nuke_prototype; + public static Block nuke_custom; + public static Block nuke_solinium; + public static Block nuke_n2; + public static Block nuke_fstbmb; + public static Block bomb_multi; + + public static Block pump_steam; + public static Block pump_electric; + + public static Block heater_firebox; + public static Block heater_oven; + public static Block heater_oilburner; + public static Block heater_electric; + public static Block heater_heatex; + public static Block machine_ashpit; + + public static Block furnace_iron; + public static Block furnace_steel; + public static Block furnace_combination; + public static Block machine_stirling; + public static Block machine_stirling_steel; + public static Block machine_stirling_creative; + public static Block machine_sawmill; + public static Block machine_crucible; + public static Block machine_boiler; + public static Block machine_industrial_boiler; + + public static Block foundry_mold; + public static Block foundry_basin; + public static Block foundry_channel; + public static Block foundry_tank; + public static Block foundry_outlet; + public static Block machine_strand_caster; + public static Block foundry_slagtap; + public static Block slag; + + public static Block machine_difurnace_off; + public static Block machine_difurnace_on; + public static Block machine_difurnace_extension; + public static Block machine_difurnace_rtg_off; + public static Block machine_difurnace_rtg_on; + //public static final int guiID_test_difurnace = 1; historical + + public static Block machine_centrifuge; + public static Block machine_gascent; + + public static Block machine_fel; + public static Block machine_silex; + + public static Block machine_rotary_furnace; + public static Block machine_crystallizer; + + public static Block machine_uf6_tank; + public static Block machine_puf6_tank; + + public static Block machine_reactor_breeding; + + public static Block machine_furnace_brick_off; + public static Block machine_furnace_brick_on; + public static Block machine_nuke_furnace_off; + public static Block machine_nuke_furnace_on; + public static Block machine_rtg_furnace_off; + public static Block machine_rtg_furnace_on; + + public static Block machine_industrial_generator; + + public static Block machine_cyclotron; + public static Block machine_exposure_chamber; + + public static Block hadron_plating; + public static Block hadron_plating_blue; + public static Block hadron_plating_black; + public static Block hadron_plating_yellow; + public static Block hadron_plating_striped; + public static Block hadron_plating_voltz; + public static Block hadron_plating_glass; + public static Block hadron_coil_alloy; + public static Block hadron_coil_gold; + public static Block hadron_coil_neodymium; + public static Block hadron_coil_magtung; + public static Block hadron_coil_schrabidium; + public static Block hadron_coil_schrabidate; + public static Block hadron_coil_starmetal; + public static Block hadron_coil_chlorophyte; + public static Block hadron_coil_mese; + public static Block hadron_power; + public static Block hadron_power_10m; + public static Block hadron_power_100m; + public static Block hadron_power_1g; + public static Block hadron_power_10g; + public static Block hadron_diode; + public static Block hadron_analysis; + public static Block hadron_analysis_glass; + public static Block hadron_access; + public static Block hadron_core; + public static Block hadron_cooler; + + public static Block machine_electric_furnace_off; + public static Block machine_electric_furnace_on; + + public static Block machine_microwave; + + public static Block machine_arc_furnace_off; + public static Block machine_arc_furnace_on; + + //public static Block machine_deuterium; + + public static Block machine_battery_potato; + public static Block machine_battery; + public static Block machine_lithium_battery; + public static Block machine_schrabidium_battery; + public static Block machine_dineutronium_battery; + public static Block machine_fensu; + public static final int guiID_machine_fensu = 99; + + public static Block capacitor_bus; + public static Block capacitor_copper; + public static Block capacitor_gold; + public static Block capacitor_niobium; + public static Block capacitor_tantalium; + public static Block capacitor_schrabidate; + + public static Block machine_wood_burner; + + public static Block red_wire_coated; + public static Block red_cable; + public static Block red_cable_classic; + public static Block red_cable_paintable; + public static Block red_cable_gauge; + public static Block red_connector; + public static Block red_pylon; + public static Block red_pylon_medium_wood; + public static Block red_pylon_medium_wood_transformer; + public static Block red_pylon_medium_steel; + public static Block red_pylon_medium_steel_transformer; + public static Block red_pylon_large; + public static Block substation; + public static Block cable_switch; + public static Block cable_detector; + public static Block cable_diode; + public static Block machine_detector; + public static Block fluid_duct_neo; + public static Block fluid_duct_box; + public static Block fluid_duct_paintable; + public static Block fluid_duct_gauge; + public static Block fluid_duct_exhaust; + public static Block fluid_valve; + public static Block fluid_switch; + public static Block machine_drain; + public static Block radio_torch_sender; + public static Block radio_torch_receiver; + public static Block radio_torch_counter; + public static Block radio_torch_logic; + public static Block radio_telex; + + public static Block conveyor; + public static Block conveyor_express; + //public static Block conveyor_classic; + public static Block conveyor_double; + public static Block conveyor_triple; + public static Block conveyor_chute; + public static Block conveyor_lift; + public static Block crane_extractor; + public static Block crane_inserter; + public static Block crane_grabber; + public static Block crane_router; + public static Block crane_boxer; + public static Block crane_unboxer; + public static Block crane_splitter; + public static Block crane_partitioner; + + public static Block drone_waypoint; + public static Block drone_crate; + public static Block drone_waypoint_request; + public static Block drone_dock; + public static Block drone_crate_provider; + public static Block drone_crate_requester; + + public static Block fan; + + public static Block piston_inserter; + + public static Block chain; + + public static Block ladder_sturdy; + public static Block ladder_iron; + public static Block ladder_gold; + public static Block ladder_aluminium; + public static Block ladder_copper; + public static Block ladder_titanium; + public static Block ladder_lead; + public static Block ladder_cobalt; + public static Block ladder_steel; + public static Block ladder_tungsten; + + public static Block barrel_plastic; + public static Block barrel_corroded; + public static Block barrel_iron; + public static Block barrel_steel; + public static Block barrel_tcalloy; + public static Block barrel_antimatter; + + public static Block machine_transformer; + public static Block machine_transformer_20; + public static Block machine_transformer_dnt; + public static Block machine_transformer_dnt_20; + + public static Block bomb_multi_large; + public static final int guiID_bomb_multi_large = 18; + + public static Block machine_solar_boiler; + public static final int guiID_solar_boiler = 18; + public static Block solar_mirror; + + public static Block struct_launcher; + public static Block struct_scaffold; + public static Block struct_launcher_core; + public static Block struct_launcher_core_large; + public static Block struct_soyuz_core; + public static Block struct_iter_core; + public static Block struct_plasma_core; + public static Block struct_watz_core; + public static Block struct_icf_core; + + public static Block factory_titanium_hull; + @Deprecated public static Block factory_titanium_furnace; + @Deprecated public static Block factory_titanium_conductor; + + public static Block factory_advanced_hull; + @Deprecated public static Block factory_advanced_furnace; + @Deprecated public static Block factory_advanced_conductor; + + public static Block cm_block; + public static Block cm_sheet; + public static Block cm_engine; + public static Block cm_tank; + public static Block cm_circuit; + public static Block cm_port; + public static Block cm_flux; + public static Block cm_heat; + public static Block custom_machine; + public static Block cm_anchor; + + public static Block pwr_fuel; + public static Block pwr_control; + public static Block pwr_channel; + public static Block pwr_heatex; + public static Block pwr_heatsink; + public static Block pwr_neutron_source; + public static Block pwr_reflector; + public static Block pwr_casing; + public static Block pwr_port; + public static Block pwr_controller; + public static Block pwr_block; + + public static Block fusion_conductor; + public static Block fusion_center; + public static Block fusion_motor; + public static Block fusion_heater; + public static Block fusion_hatch; + public static Block plasma; + + public static Block iter; + public static Block plasma_heater; + + public static Block machine_icf_press; + public static Block icf_component; + public static Block icf; + public static Block icf_controller; + public static Block icf_laser_component; + public static Block icf_block; + + public static Block watz; + public static Block watz_pump; + + public static Block watz_element; + public static Block watz_cooler; + public static Block watz_end; + + public static Block balefire; + public static Block fire_digamma; + public static Block digamma_matter; + + public static Block dfc_emitter; + public static Block dfc_injector; + public static Block dfc_receiver; + public static Block dfc_stabilizer; + public static Block dfc_core; + + public static Block machine_converter_he_rf; + public static Block machine_converter_rf_he; + + public static Block machine_schrabidium_transmutator; + + public static Block machine_diesel; + public static Block machine_combustion_engine; + + public static Block machine_shredder; + + public static Block machine_teleporter; + public static Block teleanchor; + public static Block field_disturber; + + public static Block machine_rtg_grey; + public static Block machine_amgen; + public static Block machine_geo; + public static Block machine_minirtg; + public static Block machine_powerrtg; + public static Block machine_radiolysis; + public static Block machine_hephaestus; + + public static Block machine_well; + public static Block oil_pipe; + public static Block machine_pumpjack; + public static Block machine_fracking_tower; + + public static Block machine_flare; + public static Block chimney_brick; + public static Block chimney_industrial; + + public static Block machine_refinery; + public static Block machine_vacuum_distill; + public static Block machine_fraction_tower; + public static Block fraction_spacer; + public static Block machine_catalytic_cracker; + public static Block machine_catalytic_reformer; + public static Block machine_hydrotreater; + public static Block machine_coker; + public static Block machine_pyrooven; + + public static Block machine_boiler_off; + + public static Block machine_steam_engine; + public static Block machine_turbine; + public static Block machine_large_turbine; + + public static Block machine_deuterium_extractor; + public static Block machine_deuterium_tower; + + public static Block machine_liquefactor; + public static Block machine_solidifier; + public static Block machine_compressor; + + public static Block machine_chungus; + public static Block machine_condenser; + public static Block machine_tower_small; + public static Block machine_tower_large; + public static Block machine_condenser_powered; + + public static Block machine_electrolyser; + + public static Block machine_excavator; + public static Block machine_ore_slopper; + public static Block machine_autosaw; + + public static Block machine_mining_laser; + public static Block barricade; // a sand bag that drops nothing, for automated walling purposes + + public static Block machine_assembler; + public static Block machine_assemfac; + public static Block machine_arc_welder; + public static Block machine_soldering_station; + public static Block machine_arc_furnace; + + public static Block machine_chemplant; + public static Block machine_chemfac; + public static Block machine_mixer; + + public static Block machine_fluidtank; + public static Block machine_bat9000; + public static Block machine_orbus; + + public static Block launch_pad; + public static Block launch_pad_rusted; + public static Block launch_pad_large; + + public static Block machine_missile_assembly; + + public static Block compact_launcher; + public static Block launch_table; + + public static Block soyuz_launcher; + + public static Block machine_radar; + public static Block machine_radar_large; + public static Block radar_screen; + + public static Block machine_turbofan; + public static Block machine_turbinegas; + public static Block machine_lpw2; + + public static Block press_preheater; + public static Block machine_press; + public static Block machine_epress; + public static Block machine_conveyor_press; + + public static Block machine_siren; + + public static Block machine_radgen; + + public static Block machine_satlinker; + public static Block machine_keyforge; + + public static Block machine_armor_table; + + public static Block reactor_research; + public static Block reactor_zirnox; + public static Block zirnox_destroyed; + + public static Block machine_controller; + + public static Block machine_spp_bottom; + public static Block machine_spp_top; + + public static Block radiobox; + public static Block radiorec; + + public static Block machine_forcefield; + + public static Block machine_waste_drum; + public static Block machine_storage_drum; + + public static Block machine_autocrafter; + public static Block machine_funnel; + + public static Block anvil_iron; + public static Block anvil_lead; + public static Block anvil_steel; + public static Block anvil_desh; + public static Block anvil_saturnite; + public static Block anvil_ferrouranium; + public static Block anvil_bismuth_bronze; + public static Block anvil_arsenic_bronze; + public static Block anvil_schrabidate; + public static Block anvil_dnt; + public static Block anvil_osmiridium; + public static Block anvil_murky; + + public static Block turret_chekhov; + public static Block turret_friendly; + public static Block turret_jeremy; + public static Block turret_tauon; + public static Block turret_richard; + public static Block turret_howard; + public static Block turret_howard_damaged; + public static Block turret_maxwell; + public static Block turret_fritz; + public static Block turret_arty; + public static Block turret_himars; + public static Block turret_sentry; + public static Block turret_sentry_damaged; + + public static Block rbmk_rod; + public static Block rbmk_rod_mod; + public static Block rbmk_rod_reasim; + public static Block rbmk_rod_reasim_mod; + public static Block rbmk_control; + public static Block rbmk_control_mod; + public static Block rbmk_control_auto; + public static Block rbmk_blank; + public static Block rbmk_boiler; + public static Block rbmk_reflector; + public static Block rbmk_absorber; + public static Block rbmk_moderator; + public static Block rbmk_outgasser; + public static Block rbmk_storage; + public static Block rbmk_cooler; + public static Block rbmk_heater; + public static Block rbmk_console; + public static Block rbmk_crane_console; + public static Block rbmk_loader; + public static Block rbmk_steam_inlet; + public static Block rbmk_steam_outlet; + public static Block pribris; + public static Block pribris_burning; + public static Block pribris_radiating; + public static Block pribris_digamma; + + public static Block book_guide; + + public static Block rail_wood; + public static Block rail_narrow; + public static Block rail_highspeed; + public static Block rail_booster; + + public static Block rail_narrow_straight; + public static Block rail_narrow_curve; + public static Block rail_large_straight; + public static Block rail_large_straight_short; + public static Block rail_large_curve; + public static Block rail_large_curve_7; + public static Block rail_large_curve_9; + public static Block rail_large_ramp; + public static Block rail_large_buffer; + public static Block rail_large_switch; + public static Block rail_large_switch_flipped; + + public static Block statue_elb; + public static Block statue_elb_g; + public static Block statue_elb_w; + public static Block statue_elb_f; + + public static Block cheater_virus; + public static Block cheater_virus_seed; + public static Block crystal_virus; + public static Block crystal_hardened; + public static Block crystal_pulsar; + public static Block taint; + + public static Block vent_chlorine; + public static Block vent_cloud; + public static Block vent_pink_cloud; + public static Block vent_chlorine_seal; + public static Block chlorine_gas; + + public static Block gas_radon; + public static Block gas_radon_dense; + public static Block gas_radon_tomb; + public static Block gas_meltdown; + public static Block gas_monoxide; + public static Block gas_asbestos; + public static Block gas_coal; + public static Block gas_flammable; + public static Block gas_explosive; + public static Block vacuum; + + public static Block absorber; + public static Block absorber_red; + public static Block absorber_green; + public static Block absorber_pink; + public static Block decon; + public static Block transission_hatch; + + public static Block mud_block; + public static Fluid mud_fluid; + public static final Material fluidmud = (new MaterialLiquid(MapColor.adobeColor)); + + public static Block acid_block; + public static Fluid acid_fluid; + public static final Material fluidacid = (new MaterialLiquid(MapColor.purpleColor)); + + public static Block toxic_block; + public static Fluid toxic_fluid; + public static final Material fluidtoxic = (new MaterialLiquid(MapColor.greenColor)); + + public static Block schrabidic_block; + public static Fluid schrabidic_fluid; + public static final Material fluidschrabidic = (new MaterialLiquid(MapColor.cyanColor)); + + public static Block corium_block; + public static Fluid corium_fluid; + public static final Material fluidcorium = (new MaterialLiquid(MapColor.brownColor) { + + @Override + public boolean blocksMovement() { + return true; + } + + @Override + public Material setImmovableMobility() { //override access modifier + return super.setImmovableMobility(); + } + + }.setImmovableMobility()); + + public static Block volcanic_lava_block; + public static Fluid volcanic_lava_fluid; + public static Block rad_lava_block; + public static Fluid rad_lava_fluid; + + public static Block sulfuric_acid_block; + public static Fluid sulfuric_acid_fluid; + + public static Block concrete_liquid; + + public static Block volcano_core; + public static Block volcano_rad_core; + + public static Block dummy_block_vault; + public static Block dummy_block_blast; + public static Block dummy_block_uf6; + public static Block dummy_block_puf6; + public static Block dummy_plate_compact_launcher; + public static Block dummy_port_compact_launcher; + public static Block dummy_plate_launch_table; + public static Block dummy_port_launch_table; + public static Block dummy_plate_cargo; + + public static Block ntm_dirt; + + public static Block pink_log; + public static Block pink_planks; + public static Block pink_slab; + public static Block pink_double_slab; + public static Block pink_stairs; + + public static Material materialGas = new MaterialGas(); + + private static void initializeBlock() { + + event_tester = new TestEventTester(Material.iron).setBlockName("event_tester").setCreativeTab(null).setHardness(2.5F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":event_tester"); + obj_tester = new TestObjTester(Material.iron).setBlockName("obj_tester").setCreativeTab(null).setHardness(2.5F).setResistance(10.0F); + test_core = new TestCore(Material.iron).setBlockName("test_core").setCreativeTab(null).setHardness(2.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":test_core"); + test_charge = new TestCharge(Material.iron).setBlockName("test_charge").setCreativeTab(null).setHardness(2.5F).setResistance(10.0F); + structure_anchor = new BlockGeneric(Material.iron).setBlockName("structure_anchor").setCreativeTab(null).setHardness(2.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":structure_anchor"); + + ore_uranium = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_uranium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_uranium"); + ore_uranium_scorched = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_uranium_scorched").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_uranium_scorched"); + ore_titanium = new BlockGeneric(Material.rock).setBlockName("ore_titanium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_titanium"); + ore_sulfur = new BlockOre(Material.rock).setBlockName("ore_sulfur").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_sulfur"); + ore_thorium = new BlockGeneric(Material.rock).setBlockName("ore_thorium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_thorium"); + + ore_niter = new BlockOre(Material.rock).setBlockName("ore_niter").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_niter"); + ore_copper = new BlockGeneric(Material.rock).setBlockName("ore_copper").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_copper"); + ore_tungsten = new BlockGeneric(Material.rock).setBlockName("ore_tungsten").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_tungsten"); + ore_aluminium = new BlockGeneric(Material.rock).setBlockName("ore_aluminium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_aluminium"); + ore_fluorite = new BlockOre(Material.rock).setBlockName("ore_fluorite").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_fluorite"); + ore_lead = new BlockGeneric(Material.rock).setBlockName("ore_lead").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_lead"); + ore_schrabidium = new BlockOre(Material.rock, 0.1F, 0.5F).setBlockName("ore_schrabidium").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":ore_schrabidium"); + ore_beryllium = new BlockGeneric(Material.rock).setBlockName("ore_beryllium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":ore_beryllium"); + ore_lignite = new BlockOre(Material.rock).setBlockName("ore_lignite").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":ore_lignite"); + ore_asbestos = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_asbestos").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":ore_asbestos"); + ore_coal_oil = new BlockCoalOil(Material.rock).setBlockName("ore_coal_oil").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":ore_coal_oil"); + ore_coal_oil_burning = new BlockCoalBurning(Material.rock).setBlockName("ore_coal_oil_burning").setCreativeTab(MainRegistry.blockTab).setLightLevel(10F/15F).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":ore_coal_oil_burning"); + + cluster_iron = new BlockCluster(Material.rock).setBlockName("cluster_iron").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":cluster_iron"); + cluster_titanium = new BlockCluster(Material.rock).setBlockName("cluster_titanium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":cluster_titanium"); + cluster_aluminium = new BlockCluster(Material.rock).setBlockName("cluster_aluminium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":cluster_aluminium"); + cluster_copper = new BlockCluster(Material.rock).setBlockName("cluster_copper").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":cluster_copper"); + + ore_nether_coal = new BlockNetherCoal(Material.rock, false, 5, true).setBlockName("ore_nether_coal").setCreativeTab(MainRegistry.blockTab).setLightLevel(10F/15F).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_coal"); + ore_nether_smoldering = new BlockSmolder(Material.rock).setBlockName("ore_nether_smoldering").setCreativeTab(MainRegistry.blockTab).setLightLevel(1F).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_smoldering"); + ore_nether_uranium = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_nether_uranium").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_uranium"); + ore_nether_uranium_scorched = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_nether_uranium_scorched").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_uranium_scorched"); + ore_nether_plutonium = new BlockGeneric(Material.rock).setBlockName("ore_nether_plutonium").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_plutonium"); + ore_nether_tungsten = new BlockGeneric(Material.rock).setBlockName("ore_nether_tungsten").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_tungsten"); + ore_nether_sulfur = new BlockOre(Material.rock).setBlockName("ore_nether_sulfur").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_sulfur"); + ore_nether_fire = new BlockOre(Material.rock).setBlockName("ore_nether_fire").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_fire"); + ore_nether_cobalt = new BlockOre(Material.rock).setBlockName("ore_nether_cobalt").setCreativeTab(MainRegistry.blockTab).setHardness(0.4F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_cobalt"); + ore_nether_schrabidium = new BlockGeneric(Material.rock).setBlockName("ore_nether_schrabidium").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":ore_nether_schrabidium"); + + ore_meteor = new BlockMeteorOre().setBlockName("ore_meteor").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F); + + stone_gneiss = new BlockGeneric(Material.rock).setBlockName("stone_gneiss").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":stone_gneiss_var"); + ore_gneiss_iron = new BlockOre(Material.rock).setBlockName("ore_gneiss_iron").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_iron"); + ore_gneiss_gold = new BlockOre(Material.rock).setBlockName("ore_gneiss_gold").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_gold"); + ore_gneiss_uranium = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_gneiss_uranium").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_uranium"); + ore_gneiss_uranium_scorched = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_gneiss_uranium_scorched").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_uranium_scorched"); + ore_gneiss_copper = new BlockOre(Material.rock).setBlockName("ore_gneiss_copper").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_copper"); + ore_gneiss_asbestos = new BlockOutgas(Material.rock, true, 5, true).setBlockName("ore_gneiss_asbestos").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_asbestos"); + ore_gneiss_lithium = new BlockOre(Material.rock).setBlockName("ore_gneiss_lithium").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_lithium"); + ore_gneiss_schrabidium = new BlockOre(Material.rock).setBlockName("ore_gneiss_schrabidium").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_schrabidium"); + ore_gneiss_rare = new BlockOre(Material.rock).setBlockName("ore_gneiss_rare").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_rare"); + ore_gneiss_gas = new BlockOre(Material.rock).setBlockName("ore_gneiss_gas").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_gneiss_gas"); + + gneiss_brick = new BlockGeneric(Material.rock).setBlockName("gneiss_brick").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":gneiss_brick"); + gneiss_tile = new BlockGeneric(Material.rock).setBlockName("gneiss_tile").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":gneiss_tile"); + gneiss_chiseled = new BlockPillar(Material.rock, RefStrings.MODID + ":gneiss_tile").setBlockName("gneiss_chiseled").setCreativeTab(MainRegistry.blockTab).setHardness(1.5F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":gneiss_chiseled"); + + stone_depth = new BlockDepth().setBlockName("stone_depth").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":stone_depth"); + ore_depth_cinnebar = new BlockDepthOre().setBlockName("ore_depth_cinnebar").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ore_depth_cinnebar"); + ore_depth_zirconium = new BlockDepthOre().setBlockName("ore_depth_zirconium").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ore_depth_zirconium"); + ore_depth_borax = new BlockDepthOre().setBlockName("ore_depth_borax").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ore_depth_borax"); + cluster_depth_iron = new BlockDepthOre().setBlockName("cluster_depth_iron").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":cluster_depth_iron"); + cluster_depth_titanium = new BlockDepthOre().setBlockName("cluster_depth_titanium").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":cluster_depth_titanium"); + cluster_depth_tungsten = new BlockDepthOre().setBlockName("cluster_depth_tungsten").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":cluster_depth_tungsten"); + ore_alexandrite = new BlockDepthOre().setBlockName("ore_alexandrite").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ore_alexandrite"); + + stone_keyhole = new BlockKeyhole().setBlockName("stone_keyhole").setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":stone_keyhole"); + + ore_random = new BlockMotherOfAllOres().setBlockName("ore_random").setCreativeTab(MainRegistry.blockTab); + ore_bedrock = new BlockBedrockOreTE().setBlockName("ore_bedrock").setCreativeTab(null); + ore_volcano = new BlockFissure().setBlockName("ore_volcano").setLightLevel(1F).setCreativeTab(MainRegistry.blockTab); + + depth_brick = new BlockDepth().setBlockName("depth_brick").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":depth_brick"); + depth_tiles = new BlockDepth().setBlockName("depth_tiles").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":depth_tiles"); + depth_nether_brick = new BlockDepth().setBlockName("depth_nether_brick").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":depth_nether_brick"); + depth_nether_tiles = new BlockDepth().setBlockName("depth_nether_tiles").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":depth_nether_tiles"); + depth_dnt = new BlockDepth().setBlockName("depth_dnt").setCreativeTab(MainRegistry.blockTab).setResistance(60000.0F).setBlockTextureName(RefStrings.MODID + ":depth_dnt"); + + stone_depth_nether = new BlockDepth().setBlockName("stone_depth_nether").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":stone_depth_nether"); + ore_depth_nether_neodymium = new BlockDepthOre().setBlockName("ore_depth_nether_neodymium").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ore_depth_nether_neodymium"); + + stone_porous = new BlockPorous().setBlockName("stone_porous").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":stone_porous"); + stone_resource = new BlockResourceStone().setBlockName("stone_resource").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F); + stalagmite = new BlockStalagmite().setBlockName("stalagmite").setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.0F); + stalactite = new BlockStalagmite().setBlockName("stalactite").setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.0F); + stone_biome = new BlockBiomeStone().setBlockName("stone_biome").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F); + + basalt = new BlockPillar(Material.rock, RefStrings.MODID + ":basalt_top").setBlockName("basalt").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":basalt"); + ore_basalt = new BlockOreBasalt().setBlockName("ore_basalt").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_basalt"); + basalt_smooth = new BlockGeneric(Material.rock).setBlockName("basalt_smooth").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":basalt_smooth"); + basalt_brick = new BlockGeneric(Material.rock).setBlockName("basalt_brick").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":basalt_brick"); + basalt_polished = new BlockGeneric(Material.rock).setBlockName("basalt_polished").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":basalt_polished"); + basalt_tiles = new BlockGeneric(Material.rock).setBlockName("basalt_tiles").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":basalt_tiles"); + + ore_australium = new BlockGeneric(Material.rock).setBlockName("ore_australium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_australium"); + ore_rare = new BlockOre(Material.rock).setBlockName("ore_rare").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_rare"); + ore_cobalt = new BlockOre(Material.rock).setBlockName("ore_cobalt").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_cobalt"); + ore_cinnebar = new BlockOre(Material.rock).setBlockName("ore_cinnebar").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_cinnebar"); + ore_coltan = new BlockOre(Material.rock).setBlockName("ore_coltan").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_coltan"); + + ore_oil = new BlockOre(Material.rock).setBlockName("ore_oil").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_oil"); + ore_oil_empty = new BlockGeneric(Material.rock).setBlockName("ore_oil_empty").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_oil_empty"); + ore_oil_sand = new BlockFalling(Material.sand).setBlockName("ore_oil_sand").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeSand).setHardness(0.5F).setResistance(1.0F).setBlockTextureName(RefStrings.MODID + ":ore_oil_sand_alt"); + ore_bedrock_oil = new BlockGeneric(Material.rock).noMobSpawn().setBlockName("ore_bedrock_oil").setCreativeTab(MainRegistry.blockTab).setBlockUnbreakable().setResistance(1_000_000).setBlockTextureName(RefStrings.MODID + ":ore_bedrock_oil"); + + ore_tikite = new BlockDragonProof(Material.rock).setBlockName("ore_tikite").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":ore_tikite_alt"); + + block_uranium = new BlockHazard().makeBeaconable().setBlockName("block_uranium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_uranium"); + block_u233 = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_u233").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_u233"); + block_u235 = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_u235").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_u235"); + block_u238 = new BlockHazard().makeBeaconable().setBlockName("block_u238").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_u238"); + block_uranium_fuel = new BlockHazard().makeBeaconable().setBlockName("block_uranium_fuel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_uranium_fuel"); + block_thorium = new BlockHazard().makeBeaconable().setBlockName("block_thorium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_thorium"); + block_thorium_fuel = new BlockHazard().makeBeaconable().setBlockName("block_thorium_fuel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_thorium_fuel"); + block_neptunium = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_neptunium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":block_neptunium"); + block_polonium = new BlockHotHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_polonium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_polonium"); + block_mox_fuel = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_mox_fuel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_mox_fuel"); + block_plutonium = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_plutonium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_plutonium"); + block_pu238 = new BlockHotHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_pu238").setCreativeTab(MainRegistry.blockTab).setLightLevel(5F/15F).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_pu238"); + block_pu239 = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_pu239").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_pu239"); + block_pu240 = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_pu240").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_pu240"); + block_pu_mix = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_pu_mix").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_pu_mix"); + block_plutonium_fuel = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_plutonium_fuel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_plutonium_fuel"); + block_titanium = new BlockBeaconable(Material.iron).setBlockName("block_titanium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_titanium"); + block_sulfur = new BlockBeaconable(Material.iron).setBlockName("block_sulfur").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_sulfur"); + block_niter = new BlockBeaconable(Material.iron).setBlockName("block_niter").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_niter"); + block_copper = new BlockBeaconable(Material.iron).setBlockName("block_copper").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":block_copper"); + block_red_copper = new BlockBeaconable(Material.iron).setBlockName("block_red_copper").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(25.0F).setBlockTextureName(RefStrings.MODID + ":block_red_copper"); + block_tungsten = new BlockBeaconable(Material.iron).setBlockName("block_tungsten").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":block_tungsten"); + block_aluminium = new BlockBeaconable(Material.iron).setBlockName("block_aluminium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":block_aluminium"); + block_fluorite = new BlockBeaconable(Material.iron).setBlockName("block_fluorite").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_fluorite"); + block_steel = new BlockBeaconable(Material.iron).setBlockName("block_steel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); + block_tcalloy = new BlockBeaconable(Material.iron).setBlockName("block_tcalloy").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(70.0F).setBlockTextureName(RefStrings.MODID + ":block_tcalloy"); + block_cdalloy = new BlockBeaconable(Material.iron).setBlockName("block_cdalloy").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(70.0F).setBlockTextureName(RefStrings.MODID + ":block_cdalloy"); + block_lead = new BlockBeaconable(Material.iron).setBlockName("block_lead").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_lead"); + block_bismuth = new BlockBeaconable(Material.iron).setBlockName("block_bismuth").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(90.0F).setBlockTextureName(RefStrings.MODID + ":block_bismuth"); + block_cadmium = new BlockBeaconable(Material.iron).setBlockName("block_cadmium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(90.0F).setBlockTextureName(RefStrings.MODID + ":block_cadmium"); + block_coltan = new BlockBeaconable(Material.iron).setBlockName("block_coltan").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_coltan"); + block_tantalium = new BlockBeaconable(Material.iron).setBlockName("block_tantalium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_tantalium"); + block_niobium = new BlockBeaconable(Material.iron).setBlockName("block_niobium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(50.0F); + block_trinitite = new BlockHazard().makeBeaconable().setBlockName("block_trinitite").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_trinitite"); + block_waste = new BlockNuclearWaste().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_waste").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_waste"); + block_waste_painted = new BlockNuclearWaste().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_waste_painted").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_waste_painted"); + block_waste_vitrified = new BlockNuclearWaste().makeBeaconable().setDisplayEffect(ExtDisplayEffect.RADFOG).setBlockName("block_waste_vitrified").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_waste_vitrified"); + ancient_scrap = new BlockOutgas(Material.iron, true, 1, true, true).setBlockName("ancient_scrap").setCreativeTab(MainRegistry.blockTab).setHardness(100.0F).setResistance(6000.0F).setBlockTextureName(RefStrings.MODID + ":ancient_scrap"); + block_corium = new BlockHazard(Material.iron).setBlockName("block_corium").setCreativeTab(MainRegistry.blockTab).setHardness(100.0F).setResistance(6000.0F).setBlockTextureName(RefStrings.MODID + ":block_corium"); + block_corium_cobble = new BlockOutgas(Material.iron, true, 1, true, true).setBlockName("block_corium_cobble").setCreativeTab(MainRegistry.blockTab).setHardness(100.0F).setResistance(6000.0F).setBlockTextureName(RefStrings.MODID + ":block_corium_cobble"); + block_scrap = new BlockFalling(Material.sand).setBlockName("block_scrap").setCreativeTab(MainRegistry.blockTab).setHardness(2.5F).setResistance(5.0F).setStepSound(Block.soundTypeGravel).setBlockTextureName(RefStrings.MODID + ":block_scrap"); + block_electrical_scrap = new BlockFalling(Material.iron).setBlockName("block_electrical_scrap").setCreativeTab(MainRegistry.blockTab).setHardness(2.5F).setResistance(5.0F).setStepSound(Block.soundTypeMetal).setBlockTextureName(RefStrings.MODID + ":electrical_scrap_alt2"); + block_beryllium = new BlockBeaconable(Material.iron).setBlockName("block_beryllium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":block_beryllium"); + block_schraranium = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.SCHRAB).setBlockName("block_schraranium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(250.0F).setBlockTextureName(RefStrings.MODID + ":block_schraranium"); + block_schrabidium = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.SCHRAB).setBlockName("block_schrabidium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_schrabidium"); + block_schrabidate = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.SCHRAB).setBlockName("block_schrabidate").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_schrabidate"); + block_solinium = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.SCHRAB).setBlockName("block_solinium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_solinium"); + block_schrabidium_fuel = new BlockHazard().makeBeaconable().setDisplayEffect(ExtDisplayEffect.SCHRAB).setBlockName("block_schrabidium_fuel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_schrabidium_fuel"); + block_euphemium = new BlockBeaconable(Material.iron).setBlockName("block_euphemium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(60000.0F).setBlockTextureName(RefStrings.MODID + ":block_euphemium"); + block_dineutronium = new BlockBeaconable(Material.iron).setBlockName("block_dineutronium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(60000.0F).setBlockTextureName(RefStrings.MODID + ":block_dineutronium"); + block_schrabidium_cluster = new BlockRotatablePillar(Material.rock, RefStrings.MODID + ":block_schrabidium_cluster_top").setBlockName("block_schrabidium_cluster").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(60000.0F).setBlockTextureName(RefStrings.MODID + ":block_schrabidium_cluster_side"); + block_euphemium_cluster = new BlockRotatablePillar(Material.rock, RefStrings.MODID + ":block_euphemium_cluster_top").setBlockName("block_euphemium_cluster").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(60000.0F).setBlockTextureName(RefStrings.MODID + ":block_euphemium_cluster_side"); + block_advanced_alloy = new BlockBeaconable(Material.iron).setBlockName("block_advanced_alloy").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":block_advanced_alloy"); + block_magnetized_tungsten = new BlockBeaconable(Material.iron).setBlockName("block_magnetized_tungsten").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(75.0F).setBlockTextureName(RefStrings.MODID + ":block_magnetized_tungsten"); + block_combine_steel = new BlockBeaconable(Material.iron).setBlockName("block_combine_steel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_combine_steel"); + block_desh = new BlockBeaconable(Material.iron).setBlockName("block_desh").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(300.0F).setBlockTextureName(RefStrings.MODID + ":block_desh"); + block_dura_steel = new BlockBeaconable(Material.iron).setBlockName("block_dura_steel").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":block_dura_steel"); + block_starmetal = new BlockBeaconable(Material.iron).setBlockName("block_starmetal").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(400.0F).setBlockTextureName(RefStrings.MODID + ":block_starmetal"); + block_polymer = new BlockBeaconable(Material.rock).setBlockName("block_polymer").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypePiston).setHardness(3.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_polymer"); + block_bakelite = new BlockBeaconable(Material.rock).setBlockName("block_bakelite").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypePiston).setHardness(3.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":block_bakelite"); + block_rubber = new BlockBeaconable(Material.rock).setBlockName("block_rubber").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypePiston).setHardness(3.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":block_rubber"); + block_yellowcake = new BlockHazardFalling().makeBeaconable().setBlockName("block_yellowcake").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeSand).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_yellowcake"); + block_insulator = new BlockRotatablePillar(Material.cloth, RefStrings.MODID + ":block_insulator_top").setBlockName("block_insulator").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeCloth).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_insulator_side"); + block_fiberglass = new BlockRotatablePillar(Material.cloth, RefStrings.MODID + ":block_fiberglass_top").setBlockName("block_fiberglass").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeCloth).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":block_fiberglass_side"); + block_asbestos = new BlockOutgas(Material.cloth, true, 5, true).setBlockName("block_asbestos").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeCloth).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":block_asbestos"); + block_cobalt = new BlockBeaconable(Material.iron).setBlockName("block_cobalt").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(50.0F).setBlockTextureName(RefStrings.MODID + ":block_cobalt"); + block_lithium = new BlockLithium(Material.iron).setBlockName("block_lithium").setStepSound(Block.soundTypeMetal).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_lithium"); + block_zirconium = new BlockBeaconable(Material.iron).setBlockName("block_zirconium").setStepSound(Block.soundTypeMetal).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(30.0F).setBlockTextureName(RefStrings.MODID + ":block_zirconium"); + block_white_phosphorus = new BlockHazard(Material.rock).makeBeaconable().setBlockName("block_white_phosphorus").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_white_phosphorus"); + block_red_phosphorus = new BlockHazardFalling().makeBeaconable().setStepSound(Block.soundTypeSand).setBlockName("block_red_phosphorus").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_red_phosphorus"); + block_fallout = new BlockHazardFalling().setStepSound(Block.soundTypeGravel).setBlockName("block_fallout").setCreativeTab(MainRegistry.blockTab).setHardness(0.2F).setBlockTextureName(RefStrings.MODID + ":ash"); + block_foam = new BlockGeneric(Material.craftedSnow).setBlockName("block_foam").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeSnow).setHardness(0.5F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":foam"); + block_coke = new BlockCoke().setBlockName("block_coke").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F); + block_graphite = new BlockGraphite(Material.iron, 30, 5).setBlockName("block_graphite").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F); + block_graphite_drilled = new BlockGraphiteDrilled().setBlockName("block_graphite_drilled"); + block_graphite_fuel = new BlockGraphiteFuel().setBlockName("block_graphite_fuel"); + block_graphite_plutonium = new BlockGraphiteSource().setBlockName("block_graphite_plutonium"); + block_graphite_rod = new BlockGraphiteRod().setBlockName("block_graphite_rod").setBlockTextureName(RefStrings.MODID + ":block_graphite_rod_in"); + block_graphite_source = new BlockGraphiteSource().setBlockName("block_graphite_source"); + block_graphite_lithium = new BlockGraphiteBreedingFuel().setBlockName("block_graphite_lithium"); + block_graphite_tritium = new BlockGraphiteBreedingProduct().setBlockName("block_graphite_tritium"); + block_graphite_detector = new BlockGraphiteNeutronDetector().setBlockName("block_graphite_detector"); + block_boron = new BlockBeaconable(Material.iron).setBlockName("block_boron").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_boron"); + block_lanthanium = new BlockBeaconable(Material.iron).setBlockName("block_lanthanium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_lanthanium"); + block_ra226 = new BlockHazard().makeBeaconable().setBlockName("block_ra226").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_ra226"); + block_actinium = new BlockHazard().makeBeaconable().setBlockName("block_actinium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_actinium"); + block_tritium = new BlockRotatablePillar(Material.glass, RefStrings.MODID + ":block_tritium_top").setBlockName("block_tritium").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGlass).setHardness(3.0F).setResistance(2.0F).setBlockTextureName(RefStrings.MODID + ":block_tritium_side"); + block_semtex = new BlockPlasticExplosive(Material.tnt).setBlockName("block_semtex").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(2.0F).setBlockTextureName(RefStrings.MODID + ":block_semtex"); + block_c4 = new BlockPlasticExplosive(Material.tnt).setBlockName("block_c4").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(2.0F).setBlockTextureName(RefStrings.MODID + ":block_c4"); + block_smore = new BlockPillar(Material.rock, RefStrings.MODID + ":block_smore_top").setBlockName("block_smore").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":block_smore_side"); + block_slag = new BlockSlag(Material.rock).setBlockName("block_slag").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeStone).setHardness(2.0F).setBlockTextureName(RefStrings.MODID + ":block_slag"); + + block_australium = new BlockBeaconable(Material.iron).setBlockName("block_australium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_australium"); + block_weidanium = new BlockBeaconable(Material.iron).setBlockName("block_weidanium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_weidanium"); + block_reiium = new BlockBeaconable(Material.iron).setBlockName("block_reiium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_reiium"); + block_unobtainium = new BlockBeaconable(Material.iron).setBlockName("block_unobtainium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_unobtainium"); + block_daffergon = new BlockBeaconable(Material.iron).setBlockName("block_daffergon").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_daffergon"); + block_verticium = new BlockBeaconable(Material.iron).setBlockName("block_verticium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_verticium"); + + block_cap = new BlockCap().setBlockName("block_cap").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F); + + deco_titanium = new BlockOre(Material.iron).noFortune().setBlockName("deco_titanium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_titanium"); + deco_red_copper = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_red_copper").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_red_copper"); + deco_tungsten = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_tungsten").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_tungsten"); + deco_aluminium = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_aluminium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_aluminium"); + deco_steel = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_steel").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_steel"); + deco_lead = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_lead").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_lead"); + deco_beryllium = new BlockDecoCT(Material.iron).noFortune().setBlockName("deco_beryllium").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_beryllium"); + deco_asbestos = new BlockOutgas(Material.cloth, true, 5, true).noFortune().setBlockName("deco_asbestos").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_asbestos"); + deco_rbmk = new BlockGeneric(Material.iron).setBlockName("deco_rbmk").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(100.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_side"); + deco_rbmk_smooth = new BlockGeneric(Material.iron).setBlockName("deco_rbmk_smooth").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(100.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_top"); + + deco_emitter = new BlockEmitter().setBlockName("deco_emitter").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":emitter"); + part_emitter = new PartEmitter().setBlockName("part_emitter").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":part_top"); + deco_loot = new BlockLoot().setBlockName("deco_loot").setCreativeTab(null).setHardness(0.0F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); + pedestal = new BlockPedestal().setBlockName("pedestal").setCreativeTab(null).setHardness(2.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":pedestal_top"); + bobblehead = new BlockBobble().setBlockName("bobblehead").setCreativeTab(MainRegistry.blockTab).setHardness(0.0F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); + snowglobe = new BlockSnowglobe().setBlockName("snowglobe").setCreativeTab(MainRegistry.blockTab).setHardness(0.0F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":glass_boron"); + plushie = new BlockPlushie().setBlockName("plushie").setStepSound(Block.soundTypeCloth).setResistance(50_0000.0F).setCreativeTab(MainRegistry.blockTab).setHardness(0.0F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":block_fiberglass_side"); + + gravel_obsidian = new BlockFalling(Material.iron).setBlockName("gravel_obsidian").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGravel).setHardness(5.0F).setResistance(240.0F).setBlockTextureName(RefStrings.MODID + ":gravel_obsidian"); + gravel_diamond = new BlockFalling(Material.sand).setBlockName("gravel_diamond").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGravel).setHardness(0.6F).setBlockTextureName(RefStrings.MODID + ":gravel_diamond"); + asphalt = new BlockSpeedy(Material.rock, 1.5).setBlockName("asphalt").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(120.0F).setBlockTextureName(RefStrings.MODID + ":asphalt"); + asphalt_light = new BlockSpeedy(Material.rock, 1.5).setBlockName("asphalt_light").setCreativeTab(MainRegistry.blockTab).setLightLevel(1F).setHardness(15.0F).setResistance(120.0F).setBlockTextureName(RefStrings.MODID + ":asphalt_light"); + + reinforced_brick = new BlockGeneric(Material.rock).setBlockName("reinforced_brick").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(300.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_brick"); + reinforced_glass = new BlockNTMGlassCT(0, RefStrings.MODID + ":reinforced_glass", Material.rock).setBlockName("reinforced_glass").setCreativeTab(MainRegistry.blockTab).setLightOpacity(0).setHardness(2.0F).setResistance(25.0F); + reinforced_glass_pane = new BlockNTMGlassPane(0, RefStrings.MODID + ":reinforced_glass_pane", RefStrings.MODID + ":reinforced_glass_pane_edge", Material.rock, false).setBlockName("reinforced_glass_pane").setCreativeTab(MainRegistry.blockTab).setLightOpacity(1).setHardness(2.0F).setResistance(25.0F); + reinforced_light = new BlockGeneric(Material.rock).setBlockName("reinforced_light").setCreativeTab(MainRegistry.blockTab).setLightLevel(1.0F).setHardness(15.0F).setResistance(80.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_light"); + reinforced_sand = new BlockGeneric(Material.rock).setBlockName("reinforced_sand").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(40.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_sand"); + reinforced_lamp_off = new ReinforcedLamp(Material.rock, false).setBlockName("reinforced_lamp_off").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(80.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_lamp_off"); + reinforced_lamp_on = new ReinforcedLamp(Material.rock, true).setBlockName("reinforced_lamp_on").setHardness(15.0F).setResistance(80.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_lamp_on"); + reinforced_laminate = new BlockNTMGlassCT(1, RefStrings.MODID + ":reinforced_laminate", Material.rock, true).setBlockName("reinforced_laminate").setCreativeTab(MainRegistry.blockTab).setLightOpacity(0).setHardness(15.0F).setResistance(300.0F); + reinforced_laminate_pane = new BlockNTMGlassPane(1, RefStrings.MODID + ":reinforced_laminate_pane", RefStrings.MODID + ":reinforced_laminate_pane_edge", Material.rock, true).setBlockName("reinforced_laminate_pane").setCreativeTab(MainRegistry.blockTab).setLightOpacity(1).setHardness(15.0F).setResistance(300.0F); + + lamp_tritium_green_off = new TritiumLamp(Material.redstoneLight, false).setBlockName("lamp_tritium_green_off").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":lamp_tritium_green_off"); + lamp_tritium_green_on = new TritiumLamp(Material.redstoneLight, true).setBlockName("lamp_tritium_green_on").setStepSound(Block.soundTypeGlass).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":lamp_tritium_green_on"); + lamp_tritium_blue_off = new TritiumLamp(Material.redstoneLight, false).setBlockName("lamp_tritium_blue_off").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":lamp_tritium_blue_off"); + lamp_tritium_blue_on = new TritiumLamp(Material.redstoneLight, true).setBlockName("lamp_tritium_blue_on").setStepSound(Block.soundTypeGlass).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":lamp_tritium_blue_on"); + + lamp_demon = new DemonLamp().setBlockName("lamp_demon").setStepSound(Block.soundTypeMetal).setCreativeTab(MainRegistry.blockTab).setLightLevel(1F).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":lamp_demon"); + lantern = new BlockLantern().setBlockName("lantern").setStepSound(Block.soundTypeMetal).setCreativeTab(MainRegistry.blockTab).setLightLevel(1F).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); + lantern_behemoth = new BlockLanternBehemoth().setBlockName("lantern_behemoth").setStepSound(Block.soundTypeMetal).setCreativeTab(null).setHardness(3.0F).setBlockTextureName(RefStrings.MODID + ":block_rust"); + + spotlight_incandescent = new Spotlight(Material.iron, 2, LightType.INCANDESCENT, true).setBlockName("spotlight_incandescent").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":cage_lamp"); + spotlight_incandescent_off = new Spotlight(Material.iron, 2, LightType.INCANDESCENT, false).setBlockName("spotlight_incandescent_off").setBlockTextureName(RefStrings.MODID + ":cage_lamp_off"); + spotlight_fluoro = new SpotlightModular(Material.iron, 8, LightType.FLUORESCENT, true).setBlockName("spotlight_fluoro").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":fluorescent_lamp"); + spotlight_fluoro_off = new SpotlightModular(Material.iron, 8, LightType.FLUORESCENT, false).setBlockName("spotlight_fluoro_off").setBlockTextureName(RefStrings.MODID + ":fluorescent_lamp_off"); + spotlight_halogen = new Spotlight(Material.iron, 32, LightType.HALOGEN, true).setBlockName("spotlight_halogen").setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":flood_lamp"); + spotlight_halogen_off = new Spotlight(Material.iron, 32, LightType.HALOGEN, false).setBlockName("spotlight_halogen_off").setBlockTextureName(RefStrings.MODID + ":flood_lamp_off"); + spotlight_beam = new SpotlightBeam().setBlockName("spotlight_beam"); + floodlight = new Floodlight(Material.iron).setBlockName("floodlight").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + floodlight_beam = new FloodlightBeam().setBlockName("floodlight_beam"); + + reinforced_stone = new BlockGeneric(Material.rock).setBlockName("reinforced_stone").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(100.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_stone"); + concrete_smooth = new BlockRadResistant(Material.rock).setBlockName("concrete_smooth").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(140.0F).setBlockTextureName(RefStrings.MODID + ":concrete"); + concrete_colored = new BlockConcreteColored(Material.rock).setBlockName("concrete_colored").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(140.0F).setBlockTextureName(RefStrings.MODID + ":concrete"); + concrete_colored_ext = new BlockConcreteColoredExt(Material.rock).setBlockName("concrete_colored_ext").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(140.0F).setBlockTextureName(RefStrings.MODID + ":concrete_colored_ext"); + concrete = new BlockGeneric(Material.rock).setBlockName("concrete").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(140.0F).setBlockTextureName(RefStrings.MODID + ":concrete_tile"); + concrete_asbestos = new BlockGeneric(Material.rock).setBlockName("concrete_asbestos").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(150.0F).setBlockTextureName(RefStrings.MODID + ":concrete_asbestos"); + concrete_super = new BlockUberConcrete().setBlockName("concrete_super").setCreativeTab(MainRegistry.blockTab).setHardness(150.0F).setResistance(1000.0F); + concrete_super_broken = new BlockFalling(Material.rock).setBlockName("concrete_super_broken").setCreativeTab(MainRegistry.blockTab).setHardness(10.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":concrete_super_broken"); + concrete_pillar = new BlockRotatablePillar(Material.rock, RefStrings.MODID + ":concrete_pillar_top").setBlockName("concrete_pillar").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(180.0F).setBlockTextureName(RefStrings.MODID + ":concrete_pillar_side"); + brick_concrete = new BlockGeneric(Material.rock).setBlockName("brick_concrete").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(160.0F).setBlockTextureName(RefStrings.MODID + ":brick_concrete"); + brick_concrete_mossy = new BlockGeneric(Material.rock).setBlockName("brick_concrete_mossy").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(160.0F).setBlockTextureName(RefStrings.MODID + ":brick_concrete_mossy"); + brick_concrete_cracked = new BlockGeneric(Material.rock).setBlockName("brick_concrete_cracked").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":brick_concrete_cracked"); + brick_concrete_broken = new BlockGeneric(Material.rock).setBlockName("brick_concrete_broken").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(45.0F).setBlockTextureName(RefStrings.MODID + ":brick_concrete_broken"); + brick_concrete_marked = new BlockWriting(Material.rock, RefStrings.MODID + ":brick_concrete").setBlockName("brick_concrete_marked").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(160.0F).setBlockTextureName(RefStrings.MODID + ":brick_concrete_marked"); + brick_obsidian = new BlockGeneric(Material.rock).setBlockName("brick_obsidian").setCreativeTab(MainRegistry.blockTab).setLightOpacity(15).setHardness(15.0F).setResistance(120.0F).setBlockTextureName(RefStrings.MODID + ":brick_obsidian"); + brick_light = new BlockGeneric(Material.rock).setBlockName("brick_light").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":brick_light"); + brick_compound = new BlockGeneric(Material.rock).setBlockName("brick_compound").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(400.0F).setBlockTextureName(RefStrings.MODID + ":brick_compound"); + cmb_brick = new BlockGeneric(Material.rock).setBlockName("cmb_brick").setCreativeTab(MainRegistry.blockTab).setHardness(25.0F).setResistance(5000.0F).setBlockTextureName(RefStrings.MODID + ":cmb_brick"); + cmb_brick_reinforced = new BlockGeneric(Material.rock).setBlockName("cmb_brick_reinforced").setCreativeTab(MainRegistry.blockTab).setHardness(25.0F).setResistance(50000.0F).setBlockTextureName(RefStrings.MODID + ":cmb_brick_reinforced"); + brick_asbestos = new BlockOutgas(Material.rock, true, 5, true).setBlockName("brick_asbestos").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(1000.0F).setBlockTextureName(RefStrings.MODID + ":brick_asbestos"); + brick_fire = new BlockGeneric(Material.rock).setBlockName("brick_fire").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(35.0F).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + + ducrete_smooth = new BlockGeneric(Material.rock).setBlockName("ducrete_smooth").setCreativeTab(MainRegistry.blockTab).setHardness(20.0F).setResistance(500.0F).setBlockTextureName(RefStrings.MODID + ":ducrete"); + ducrete = new BlockGeneric(Material.rock).setBlockName("ducrete").setCreativeTab(MainRegistry.blockTab).setHardness(20.0F).setResistance(500.0F).setBlockTextureName(RefStrings.MODID + ":ducrete_tile"); + brick_ducrete = new BlockGeneric(Material.rock).setBlockName("brick_ducrete").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(750.0F).setBlockTextureName(RefStrings.MODID + ":brick_ducrete"); + reinforced_ducrete = new BlockGeneric(Material.rock).setBlockName("reinforced_ducrete").setCreativeTab(MainRegistry.blockTab).setHardness(20.0F).setResistance(1000.0F).setBlockTextureName(RefStrings.MODID + ":reinforced_ducrete"); + + concrete_slab = new BlockMultiSlab(null, Material.rock, concrete_smooth, concrete, concrete_asbestos, ducrete_smooth, ducrete, asphalt).setBlockName("concrete_slab").setCreativeTab(MainRegistry.blockTab); + concrete_double_slab = new BlockMultiSlab(concrete_slab, Material.rock, concrete_smooth, concrete, concrete_asbestos, ducrete_smooth, ducrete, asphalt).setBlockName("concrete_double_slab").setCreativeTab(MainRegistry.blockTab); + concrete_brick_slab = new BlockMultiSlab(null, Material.rock, brick_concrete, brick_concrete_mossy, brick_concrete_cracked, brick_concrete_broken, brick_ducrete).setBlockName("concrete_brick_slab").setCreativeTab(MainRegistry.blockTab); + concrete_brick_double_slab = new BlockMultiSlab(concrete_brick_slab, Material.rock, brick_concrete, brick_concrete_mossy, brick_concrete_cracked, brick_concrete_broken, brick_ducrete).setBlockName("concrete_brick_double_slab").setCreativeTab(MainRegistry.blockTab); + brick_slab = new BlockMultiSlab(null, Material.rock, reinforced_stone, reinforced_brick, brick_obsidian, brick_light, brick_compound, brick_asbestos, brick_fire).setBlockName("brick_slab").setCreativeTab(MainRegistry.blockTab); + brick_double_slab = new BlockMultiSlab(brick_slab, Material.rock, reinforced_stone, reinforced_brick, brick_obsidian, brick_light, brick_compound, brick_asbestos, brick_fire).setBlockName("brick_double_slab").setCreativeTab(MainRegistry.blockTab); + + concrete_smooth_stairs = new BlockGenericStairs(concrete_smooth, 0).setBlockName("concrete_smooth_stairs").setCreativeTab(MainRegistry.blockTab); + concrete_stairs = new BlockGenericStairs(concrete, 0).setBlockName("concrete_stairs").setCreativeTab(MainRegistry.blockTab); + concrete_asbestos_stairs = new BlockGenericStairs(concrete_asbestos, 0).setBlockName("concrete_asbestos_stairs").setCreativeTab(MainRegistry.blockTab); + ducrete_smooth_stairs = new BlockGenericStairs(ducrete_smooth, 0).setBlockName("ducrete_smooth_stairs").setCreativeTab(MainRegistry.blockTab); + ducrete_stairs = new BlockGenericStairs(ducrete, 0).setBlockName("ducrete_stairs").setCreativeTab(MainRegistry.blockTab); + brick_concrete_stairs = new BlockGenericStairs(brick_concrete, 0).setBlockName("brick_concrete_stairs").setCreativeTab(MainRegistry.blockTab); + brick_concrete_mossy_stairs = new BlockGenericStairs(brick_concrete_mossy, 0).setBlockName("brick_concrete_mossy_stairs").setCreativeTab(MainRegistry.blockTab); + brick_concrete_cracked_stairs = new BlockGenericStairs(brick_concrete_cracked, 0).setBlockName("brick_concrete_cracked_stairs").setCreativeTab(MainRegistry.blockTab); + brick_concrete_broken_stairs = new BlockGenericStairs(brick_concrete_broken, 0).setBlockName("brick_concrete_broken_stairs").setCreativeTab(MainRegistry.blockTab); + brick_ducrete_stairs = new BlockGenericStairs(brick_ducrete, 0).setBlockName("brick_ducrete_stairs").setCreativeTab(MainRegistry.blockTab); + reinforced_stone_stairs = new BlockGenericStairs(reinforced_stone, 0).setBlockName("reinforced_stone_stairs").setCreativeTab(MainRegistry.blockTab); + reinforced_brick_stairs = new BlockGenericStairs(reinforced_brick, 0).setBlockName("reinforced_brick_stairs").setCreativeTab(MainRegistry.blockTab); + brick_obsidian_stairs = new BlockGenericStairs(brick_obsidian, 0).setBlockName("brick_obsidian_stairs").setCreativeTab(MainRegistry.blockTab); + brick_light_stairs = new BlockGenericStairs(brick_light, 0).setBlockName("brick_light_stairs").setCreativeTab(MainRegistry.blockTab); + brick_compound_stairs = new BlockGenericStairs(brick_compound, 0).setBlockName("brick_compound_stairs").setCreativeTab(MainRegistry.blockTab); + brick_asbestos_stairs = new BlockGenericStairs(brick_asbestos, 0).setBlockName("brick_asbestos_stairs").setCreativeTab(MainRegistry.blockTab); + brick_fire_stairs = new BlockGenericStairs(brick_fire, 0).setBlockName("brick_fire_stairs").setCreativeTab(MainRegistry.blockTab); + asphalt_stairs = new BlockSpeedyStairs(asphalt, 0, 1.5).setBlockName("asphalt_stairs").setCreativeTab(MainRegistry.blockTab); + + vinyl_tile = new BlockEnumMulti(Material.rock, TileType.class, true, true).setBlockName("vinyl_tile").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(10.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":vinyl_tile"); + + tile_lab = new BlockOutgas(Material.rock, false, 5, true).setBlockName("tile_lab").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(1.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":tile_lab"); + tile_lab_cracked = new BlockOutgas(Material.rock, false, 5, true).setBlockName("tile_lab_cracked").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(1.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":tile_lab_cracked"); + tile_lab_broken = new BlockOutgas(Material.rock, true, 5, true).setBlockName("tile_lab_broken").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(1.0F).setResistance(20.0F).setBlockTextureName(RefStrings.MODID + ":tile_lab_broken"); + + block_meteor = new BlockOre(Material.rock).noFortune().setBlockName("block_meteor").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor"); + block_meteor_cobble = new BlockOre(Material.rock).noFortune().setBlockName("block_meteor_cobble").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_cobble"); + block_meteor_broken = new BlockOre(Material.rock).noFortune().setBlockName("block_meteor_broken").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_crushed"); + block_meteor_molten = new BlockOre(Material.rock, true).noFortune().setBlockName("block_meteor_molten").setLightLevel(0.75F).setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_cobble_molten"); + block_meteor_treasure = new BlockMeteoriteTreasure(Material.rock).setBlockName("block_meteor_treasure").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_treasure"); + meteor_polished = new BlockGeneric(Material.rock).setBlockName("meteor_polished").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_polished"); + meteor_brick = new BlockGeneric(Material.rock).setBlockName("meteor_brick").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_brick"); + meteor_brick_mossy = new BlockGeneric(Material.rock).setBlockName("meteor_brick_mossy").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_brick_mossy"); + meteor_brick_cracked = new BlockGeneric(Material.rock).setBlockName("meteor_brick_cracked").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_brick_cracked"); + meteor_brick_chiseled = new BlockGeneric(Material.rock).setBlockName("meteor_brick_chiseled").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_brick_chiseled"); + meteor_pillar = new BlockRotatablePillar(Material.rock, RefStrings.MODID + ":meteor_pillar_top").setBlockName("meteor_pillar").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_pillar"); + meteor_spawner = new BlockCybercrab(Material.rock).setBlockName("meteor_spawner").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F); + meteor_battery = new BlockPillar(Material.rock, RefStrings.MODID + ":meteor_power").setBlockName("meteor_battery").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":meteor_spawner_side"); + moon_turf = new BlockFalling(Material.sand).setBlockName("moon_turf").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":moon_turf"); + + brick_jungle = new BlockGeneric(Material.rock).setBlockName("brick_jungle").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":brick_jungle"); + brick_jungle_cracked = new BlockGeneric(Material.rock).setBlockName("brick_jungle_cracked").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_cracked"); + brick_jungle_fragile = new FragileBrick(Material.rock).setBlockName("brick_jungle_fragile").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_fragile"); + brick_jungle_lava = new BlockGeneric(Material.rock).setBlockName("brick_jungle_lava").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setLightLevel(5F/15F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_lava"); + brick_jungle_ooze = new BlockOre(Material.rock).setBlockName("brick_jungle_ooze").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setLightLevel(5F/15F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_ooze"); + brick_jungle_mystic = new BlockOre(Material.rock).setBlockName("brick_jungle_mystic").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setLightLevel(5F/15F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_mystic"); + brick_jungle_trap = new TrappedBrick(Material.rock).setBlockName("brick_jungle_trap").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_trap"); + brick_jungle_glyph = new BlockGlyph(Material.rock).setBlockName("brick_jungle_glyph").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F); + brick_jungle_circle = new BlockBallsSpawner(Material.rock).setBlockName("brick_jungle_circle").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(360.0F).setBlockTextureName(RefStrings.MODID + ":brick_jungle_circle"); + + brick_red = new BlockRedBrick(Material.rock).setBlockName("brick_red").setResistance(10_000); + + deco_computer = new BlockDecoModel(Material.iron, DecoComputerEnum.class, true, false).setBlockBoundsTo(.160749F, 0F, 0F, .839251F, .867849F, .622184F).setBlockName("deco_computer").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":deco_computer"); + deco_crt = new BlockDecoCRT(Material.iron).setBlockName("deco_crt").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); + deco_toaster = new BlockDecoToaster(Material.iron).setBlockName("deco_toaster").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); + filing_cabinet = new BlockDecoContainer(Material.iron, DecoCabinetEnum.class, true, false, TileEntityFileCabinet.class).setBlockBoundsTo(.1875F, 0F, 0F, .8125F, 1F, .75F).setBlockName("filing_cabinet").setCreativeTab(MainRegistry.blockTab).setHardness(10.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":block_steel"); + + tape_recorder = new DecoTapeRecorder(Material.iron).setBlockName("tape_recorder").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":deco_tape_recorder"); + steel_poles = new DecoSteelPoles(Material.iron).setBlockName("steel_poles").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":steel_beam"); + pole_top = new DecoPoleTop(Material.iron).setBlockName("pole_top").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":deco_pole_top"); + pole_satellite_receiver = new DecoPoleSatelliteReceiver(Material.iron).setBlockName("pole_satellite_receiver").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":deco_satellite_receiver"); + steel_wall = new DecoBlock(Material.iron).setBlockName("steel_wall").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":steel_wall"); + steel_corner = new DecoBlock(Material.iron).setBlockName("steel_corner").setCreativeTab(MainRegistry.blockTab).setHardness(15.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":steel_wall"); + steel_roof = new DecoBlock(Material.iron).setBlockName("steel_roof").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":steel_roof"); + steel_beam = new DecoBlock(Material.iron).setBlockName("steel_beam").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":steel_beam"); + steel_scaffold = new BlockScaffold().setBlockName("steel_scaffold").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":deco_steel_orig"); + steel_grate = new BlockGrate(Material.iron).setBlockName("steel_grate").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F); + steel_grate_wide = new BlockGrate(Material.iron).setBlockName("steel_grate_wide").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F); + + deco_pipe = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side", 0).setBlockName("deco_pipe").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top"); + deco_pipe_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_rusty", 0).setBlockName("deco_pipe_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_rusty"); + deco_pipe_green = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green", 0).setBlockName("deco_pipe_green").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green"); + deco_pipe_green_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green_rusty", 0).setBlockName("deco_pipe_green_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green_rusty"); + deco_pipe_red = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_red", 0).setBlockName("deco_pipe_red").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_red"); + deco_pipe_marked = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_marked", 0).setBlockName("deco_pipe_marked").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_marked"); + deco_pipe_rim = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side", 1).setBlockName("deco_pipe_rim").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top"); + deco_pipe_rim_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_rusty", 1).setBlockName("deco_pipe_rim_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_rusty"); + deco_pipe_rim_green = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green", 1).setBlockName("deco_pipe_rim_green").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green"); + deco_pipe_rim_green_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green_rusty", 1).setBlockName("deco_pipe_rim_green_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green_rusty"); + deco_pipe_rim_red = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_red", 1).setBlockName("deco_pipe_rim_red").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_red"); + deco_pipe_rim_marked = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_marked", 1).setBlockName("deco_pipe_rim_marked").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_marked"); + deco_pipe_framed = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side", 3).setBlockName("deco_pipe_framed").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top"); + deco_pipe_framed_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_rusty", 3).setBlockName("deco_pipe_framed_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_rusty"); + deco_pipe_framed_green = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green", 3).setBlockName("deco_pipe_framed_green").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green"); + deco_pipe_framed_green_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green_rusty", 3).setBlockName("deco_pipe_framed_green_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green_rusty"); + deco_pipe_framed_red = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_red", 3).setBlockName("deco_pipe_framed_red").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_red"); + deco_pipe_framed_marked = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_marked", 3).setBlockName("deco_pipe_framed_marked").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_marked"); + deco_pipe_quad = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side", 2).setBlockName("deco_pipe_quad").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top"); + deco_pipe_quad_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_rusty", 2).setBlockName("deco_pipe_quad_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_rusty"); + deco_pipe_quad_green = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green", 2).setBlockName("deco_pipe_quad_green").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green"); + deco_pipe_quad_green_rusted = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_green_rusty", 2).setBlockName("deco_pipe_quad_green_rusted").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_green_rusty"); + deco_pipe_quad_red = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_red", 2).setBlockName("deco_pipe_quad_red").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_red"); + deco_pipe_quad_marked = new BlockPipe(Material.iron, RefStrings.MODID + ":pipe_side_marked", 2).setBlockName("deco_pipe_quad_marked").setStepSound(ModSoundTypes.grate).setCreativeTab(MainRegistry.blockTab).setHardness(2.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":pipe_top_marked"); + + broadcaster_pc = new PinkCloudBroadcaster(Material.iron).setBlockName("broadcaster_pc").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(15.0F).setBlockTextureName(RefStrings.MODID + ":broadcaster_pc"); + geiger = new GeigerCounter(Material.iron).setBlockName("geiger").setCreativeTab(MainRegistry.machineTab).setHardness(15.0F).setResistance(0.25F).setBlockTextureName(RefStrings.MODID + ":geiger"); + hev_battery = new HEVBattery(Material.iron).setBlockName("hev_battery").setCreativeTab(MainRegistry.machineTab).setLightLevel(10F/15F).setHardness(0.5F).setResistance(0.25F).setBlockTextureName(RefStrings.MODID + ":hev_battery"); + + fence_metal = new BlockMetalFence(Material.iron).setBlockName("fence_metal").setCreativeTab(MainRegistry.machineTab).setHardness(15.0F).setResistance(0.25F).setBlockTextureName(RefStrings.MODID + ":fence_metal"); + + ash_digamma = new BlockAshes(Material.sand).setBlockName("ash_digamma").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setResistance(150.0F).setBlockTextureName(RefStrings.MODID + ":ash_digamma"); + sand_boron = new BlockFalling(Material.sand).setBlockName("sand_boron").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_boron"); + sand_lead = new BlockFalling(Material.sand).setBlockName("sand_lead").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_lead"); + sand_uranium = new BlockFalling(Material.sand).setBlockName("sand_uranium").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_uranium"); + sand_polonium = new BlockFalling(Material.sand).setBlockName("sand_polonium").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_polonium"); + sand_quartz = new BlockFalling(Material.sand).setBlockName("sand_quartz").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.machineTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_quartz"); + glass_boron = new BlockNTMGlassCT(0, RefStrings.MODID + ":glass_boron", Material.glass).setBlockName("glass_boron").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(0.3F); + glass_lead = new BlockNTMGlassCT(0, RefStrings.MODID + ":glass_lead", Material.glass).setBlockName("glass_lead").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(0.3F); + glass_uranium = new BlockNTMGlassCT(1, RefStrings.MODID + ":glass_uranium", Material.glass).setBlockName("glass_uranium").setLightLevel(5F/15F).setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(0.3F); + glass_trinitite = new BlockNTMGlassCT(1, RefStrings.MODID + ":glass_trinitite", Material.glass).setBlockName("glass_trinitite").setLightLevel(5F/15F).setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(0.3F); + glass_polonium = new BlockNTMGlassCT(1, RefStrings.MODID + ":glass_polonium", Material.glass).setBlockName("glass_polonium").setLightLevel(5F/15F).setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(0.3F); + glass_ash = new BlockNTMGlassCT(1, RefStrings.MODID + ":glass_ash", Material.glass).setBlockName("glass_ash").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.machineTab).setHardness(3F); + glass_quartz = new BlockNTMGlassCT(0, RefStrings.MODID + ":glass_quartz", Material.packedIce, true).setBlockName("glass_quartz").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGlass).setHardness(1.0F).setResistance(40.0F).setBlockTextureName(RefStrings.MODID + "glass_quartz"); + + mush = new BlockMush(Material.plants).setBlockName("mush").setCreativeTab(MainRegistry.blockTab).setLightLevel(0.5F).setStepSound(Block.soundTypeGrass).setBlockTextureName(RefStrings.MODID + ":mush"); + mush_block = new BlockMushHuge(Material.plants).setBlockName("mush_block").setLightLevel(1.0F).setStepSound(Block.soundTypeGrass).setHardness(0.2F).setBlockTextureName(RefStrings.MODID + ":mush_block_skin"); + mush_block_stem = new BlockMushHuge(Material.plants).setBlockName("mush_block_stem").setLightLevel(1.0F).setStepSound(Block.soundTypeGrass).setHardness(0.2F).setBlockTextureName(RefStrings.MODID + ":mush_block_stem"); + glyphid_base = new BlockGlyphid(Material.coral).setBlockName("glyphid_base").setStepSound(Block.soundTypeCloth).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":glyphid_base"); + glyphid_spawner = new BlockGlyphidSpawner(Material.coral).setBlockName("glyphid_spawner").setStepSound(Block.soundTypeCloth).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":glyphid_eggs_alt"); + + plant_flower = new BlockNTMFlower().setBlockName("plant_flower").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGrass).setHardness(0.0F); + plant_tall = new BlockTallPlant().setBlockName("plant_tall").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGrass).setHardness(0.0F); + plant_dead = new BlockDeadPlant().setBlockName("plant_dead").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGrass).setHardness(0.0F); + reeds = new BlockReeds().setBlockName("plant_reeds").setCreativeTab(MainRegistry.blockTab).setStepSound(Block.soundTypeGrass).setHardness(0.0F); + + waste_earth = new WasteEarth(Material.ground, true).setBlockName("waste_earth").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.blockTab).setHardness(0.6F).setBlockTextureName(RefStrings.MODID + ":waste_earth"); + waste_mycelium = new WasteEarth(Material.ground, true).setBlockName("waste_mycelium").setStepSound(Block.soundTypeGrass).setLightLevel(1F).setCreativeTab(MainRegistry.blockTab).setHardness(0.6F).setBlockTextureName(RefStrings.MODID + ":waste_mycelium_side"); + waste_trinitite = new BlockOre(Material.sand).noFortune().setBlockName("waste_trinitite").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":waste_trinitite"); + waste_trinitite_red = new BlockOre(Material.sand).noFortune().setBlockName("waste_trinitite_red").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":waste_trinitite_red"); + waste_log = new WasteLog(Material.wood).setBlockName("waste_log").setStepSound(Block.soundTypeWood).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(2.5F); + waste_leaves = new WasteLeaves(Material.leaves).setBlockName("waste_leaves").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setBlockTextureName(RefStrings.MODID + ":waste_leaves"); + waste_planks = new BlockOre(Material.wood).setBlockName("waste_planks").setStepSound(Block.soundTypeWood).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":waste_planks"); + frozen_dirt = new BlockOre(Material.ground).setBlockName("frozen_dirt").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":frozen_dirt"); + frozen_grass = new WasteEarth(Material.ground, false).setBlockName("frozen_grass").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F); + frozen_log = new WasteLog(Material.wood).setBlockName("frozen_log").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F); + frozen_planks = new BlockOre(Material.wood).setBlockName("frozen_planks").setStepSound(Block.soundTypeGlass).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":frozen_planks"); + fallout = new BlockFallout(Material.sand).setBlockName("fallout").setStepSound(Block.soundTypeGravel).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setLightOpacity(0).setBlockTextureName(RefStrings.MODID + ":ash"); + foam_layer = new BlockLayering(Material.snow).setBlockName("foam_layer").setStepSound(Block.soundTypeSnow).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setLightOpacity(0).setBlockTextureName(RefStrings.MODID + ":foam"); + sand_boron_layer = new BlockLayering(Material.sand).setBlockName("sand_boron_layer").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setLightOpacity(0).setBlockTextureName(RefStrings.MODID + ":sand_boron"); + leaves_layer = new BlockLayering(Material.leaves).setBlockName("leaves_layer").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setLightOpacity(0).setBlockTextureName(RefStrings.MODID + ":waste_leaves"); + oil_spill = new BlockLayering(Material.ground).setBlockName("oil_spill").setStepSound(Block.soundTypeSnow).setCreativeTab(MainRegistry.blockTab).setHardness(0.1F).setLightOpacity(0).setBlockTextureName(RefStrings.MODID + ":oil_spill"); + + burning_earth = new WasteEarth(Material.ground, true).setBlockName("burning_earth").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.blockTab).setHardness(0.6F).setBlockTextureName(RefStrings.MODID + ":burning_earth"); + tektite = new BlockGeneric(Material.sand).setBlockName("tektite").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":tektite"); + ore_tektite_osmiridium = new BlockGeneric(Material.sand).setBlockName("ore_tektite_osmiridium").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":ore_tektite_osmiridium"); + impact_dirt = new BlockDirt(Material.ground, true).setBlockName("impact_dirt").setStepSound(Block.soundTypeGravel).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":waste_earth_bottom"); + dirt_dead = new BlockFalling(Material.ground).setBlockName("dirt_dead").setStepSound(Block.soundTypeGravel).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":dirt_dead"); + dirt_oily = new BlockFalling(Material.ground).setBlockName("dirt_oily").setStepSound(Block.soundTypeGravel).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":dirt_oily"); + sand_dirty = new BlockFalling(Material.sand).setBlockName("sand_dirty").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_dirty"); + sand_dirty_red = new BlockFalling(Material.sand).setBlockName("sand_dirty_red").setStepSound(Block.soundTypeSand).setCreativeTab(MainRegistry.blockTab).setHardness(0.5F).setBlockTextureName(RefStrings.MODID + ":sand_dirty_red"); + stone_cracked = new BlockFalling(Material.rock).setBlockName("stone_cracked").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":stone_cracked"); + + sellafield_slaked = new BlockSellafieldSlaked(Material.rock).setBlockName("sellafield_slaked").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":sellafield_slaked"); + sellafield_bedrock = new BlockSellafieldSlaked(Material.rock).setBlockName("sellafield_bedrock").setBlockUnbreakable().setResistance(6000000.0F).setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sellafield_slaked"); + sellafield = new BlockSellafield(Material.rock).setBlockName("sellafield").setStepSound(Block.soundTypeStone).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":sellafield_0"); + ore_sellafield_diamond = new BlockSellafieldOre(Material.rock).setBlockName("ore_sellafield_diamond").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":ore_overlay_diamond"); + ore_sellafield_emerald = new BlockSellafieldOre(Material.rock).setBlockName("ore_sellafield_emerald").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":ore_overlay_emerald"); + ore_sellafield_uranium_scorched = new BlockSellafieldOre(Material.rock).setBlockName("ore_sellafield_uranium_scorched").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":ore_overlay_uranium_scorched"); + ore_sellafield_schrabidium = new BlockSellafieldOre(Material.rock).setBlockName("ore_sellafield_schrabidium").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":ore_overlay_schrabidium"); + ore_sellafield_radgem = new BlockSellafieldOre(Material.rock).setBlockName("ore_sellafield_radgem").setStepSound(Block.soundTypeStone).setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setBlockTextureName(RefStrings.MODID + ":ore_overlay_radgem"); + + geysir_water = new BlockGeysir(Material.rock).setBlockName("geysir_water").setStepSound(Block.soundTypeStone).setHardness(5.0F); + geysir_chlorine = new BlockGeysir(Material.rock).setBlockName("geysir_chlorine").setStepSound(Block.soundTypeStone).setHardness(5.0F); + geysir_vapor = new BlockGeysir(Material.rock).setBlockName("geysir_vapor").setStepSound(Block.soundTypeStone).setHardness(5.0F); + geysir_nether = new BlockGeysir(Material.rock).setBlockName("geysir_nether").setLightLevel(1.0F).setStepSound(Block.soundTypeStone).setHardness(2.0F); + + nuke_gadget = new NukeGadget(Material.iron).setBlockName("nuke_gadget").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":theGadget"); + nuke_boy = new NukeBoy(Material.iron).setBlockName("nuke_boy").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":lilBoy"); + nuke_man = new NukeMan(Material.iron).setBlockName("nuke_man").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":fatMan"); + nuke_mike = new NukeMike(Material.iron).setBlockName("nuke_mike").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":ivyMike"); + nuke_tsar = new NukeTsar(Material.iron).setBlockName("nuke_tsar").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":tsarBomba"); + nuke_fleija = new NukeFleija(Material.iron).setBlockName("nuke_fleija").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":fleija"); + nuke_prototype = new NukePrototype(Material.iron).setBlockName("nuke_prototype").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200).setBlockTextureName(RefStrings.MODID + ":prototype"); + nuke_custom = new NukeCustom(Material.iron).setBlockName("nuke_custom").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":custom"); + nuke_solinium = new NukeSolinium(Material.iron).setBlockName("nuke_solinium").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":nuke_solinium"); + nuke_n2 = new NukeN2(Material.iron).setBlockName("nuke_n2").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":nuke_n2"); + nuke_fstbmb = new NukeBalefire(Material.iron).setBlockName("nuke_fstbmb").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":nuke_fstbmb"); + + bomb_multi = new BombMulti(Material.iron).setBlockName("bomb_multi").setCreativeTab(MainRegistry.nukeTab).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":bomb_multi1"); + + flame_war = new BombFlameWar(Material.iron).setBlockName("flame_war").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F).setBlockTextureName(RefStrings.MODID + ":flame_war"); + float_bomb = new BombFloat(Material.iron).setBlockName("float_bomb").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F); + therm_endo = new BombThermo(Material.iron).setBlockName("therm_endo").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F); + therm_exo = new BombThermo(Material.iron).setBlockName("therm_exo").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F); + emp_bomb = new BombFloat(Material.iron).setBlockName("emp_bomb").setCreativeTab(MainRegistry.nukeTab).setHardness(5.0F).setResistance(200.0F); + det_cord = new DetCord(Material.iron).setBlockName("det_cord").setCreativeTab(MainRegistry.nukeTab).setHardness(0.1F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":det_cord"); + det_charge = new ExplosiveCharge(Material.iron).setBlockName("det_charge").setCreativeTab(MainRegistry.nukeTab).setHardness(0.1F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":det_charge"); + det_nuke = new ExplosiveCharge(Material.iron).setBlockName("det_nuke").setCreativeTab(MainRegistry.nukeTab).setHardness(0.1F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":det_nuke"); + det_miner = new DetMiner(Material.iron, RefStrings.MODID + ":det_miner_top").setBlockName("det_miner").setCreativeTab(MainRegistry.nukeTab).setHardness(0.1F).setResistance(0.0F).setBlockTextureName(RefStrings.MODID + ":det_miner_side"); + red_barrel = new RedBarrel(Material.iron, true).setBlockName("red_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_red"); + pink_barrel = new RedBarrel(Material.iron, true).setBlockName("pink_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_pink"); + yellow_barrel = new YellowBarrel(Material.iron).setBlockName("yellow_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_yellow"); + vitrified_barrel = new YellowBarrel(Material.iron).setBlockName("vitrified_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_vitrified"); + lox_barrel = new RedBarrel(Material.iron, false).setBlockName("lox_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_lox"); + taint_barrel = new RedBarrel(Material.iron, false).setBlockName("taint_barrel").setCreativeTab(MainRegistry.nukeTab).setHardness(0.5F).setResistance(2.5F).setBlockTextureName(RefStrings.MODID + ":barrel_taint"); + crashed_balefire = new BlockCrashedBomb(Material.iron).setBlockName("crashed_bomb").setCreativeTab(MainRegistry.nukeTab).setBlockUnbreakable().setResistance(6000.0F).setBlockTextureName(RefStrings.MODID + ":crashed_balefire"); + fireworks = new BlockFireworks(Material.iron).setBlockName("fireworks").setCreativeTab(MainRegistry.nukeTab).setResistance(5.0F); + charge_dynamite = new BlockChargeDynamite().setBlockName("charge_dynamite").setCreativeTab(MainRegistry.nukeTab).setResistance(1.0F); + charge_miner = new BlockChargeMiner().setBlockName("charge_miner").setCreativeTab(MainRegistry.nukeTab).setResistance(1.0F); + charge_c4 = new BlockChargeC4().setBlockName("charge_c4").setCreativeTab(MainRegistry.nukeTab).setResistance(1.0F); + charge_semtex = new BlockChargeSemtex().setBlockName("charge_semtex").setCreativeTab(MainRegistry.nukeTab).setResistance(1.0F); + mine_ap = new Landmine(Material.iron, 1.5D, 1D).setBlockName("mine_ap").setCreativeTab(MainRegistry.nukeTab).setHardness(1.0F).setBlockTextureName(RefStrings.MODID + ":mine_ap"); + mine_he = new Landmine(Material.iron, 2D, 5D).setBlockName("mine_he").setCreativeTab(MainRegistry.nukeTab).setHardness(1.0F).setBlockTextureName(RefStrings.MODID + ":mine_he"); + mine_shrap = new Landmine(Material.iron, 1.5D, 1D).setBlockName("mine_shrap").setCreativeTab(MainRegistry.nukeTab).setHardness(1.0F).setBlockTextureName(RefStrings.MODID + ":mine_shrap"); + mine_fat = new Landmine(Material.iron, 2.5D, 1D).setBlockName("mine_fat").setCreativeTab(MainRegistry.nukeTab).setHardness(1.0F).setBlockTextureName(RefStrings.MODID + ":mine_fat"); + dynamite = new BlockDynamite().setBlockName("dynamite").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.nukeTab).setHardness(0.0F).setBlockTextureName(RefStrings.MODID + ":dynamite"); + tnt = new BlockTNT().setBlockName("tnt_ntm").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.nukeTab).setHardness(0.0F).setBlockTextureName(RefStrings.MODID + ":tnt"); + semtex = new BlockSemtex().setBlockName("semtex").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.nukeTab).setHardness(0.0F).setBlockTextureName(RefStrings.MODID + ":semtex"); + c4 = new BlockC4().setBlockName("c4").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.nukeTab).setHardness(0.0F).setBlockTextureName(RefStrings.MODID + ":c4"); + fissure_bomb = new BlockFissureBomb().setBlockName("fissure_bomb").setStepSound(Block.soundTypeGrass).setCreativeTab(MainRegistry.nukeTab).setHardness(0.0F).setBlockTextureName(RefStrings.MODID + ":fissure_bomb"); + + pump_steam = new MachinePump().setBlockName("pump_steam").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_copper"); + pump_electric = new MachinePump().setBlockName("pump_electric").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + + heater_firebox = new HeaterFirebox().setBlockName("heater_firebox").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + heater_oven = new HeaterOven().setBlockName("heater_oven").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + heater_oilburner = new HeaterOilburner().setBlockName("heater_oilburner").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + heater_electric = new HeaterElectric().setBlockName("heater_electric").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + heater_heatex = new HeaterHeatex().setBlockName("heater_heatex").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_ashpit = new MachineAshpit().setBlockName("machine_ashpit").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName("stonebrick"); + + furnace_iron = new FurnaceIron().setBlockName("furnace_iron").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_aluminium"); + furnace_steel = new FurnaceSteel().setBlockName("furnace_steel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + furnace_combination = new FurnaceCombination().setBlockName("furnace_combination").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_light_alt"); + machine_stirling = new MachineStirling().setBlockName("machine_stirling").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_stirling_steel = new MachineStirling().setBlockName("machine_stirling_steel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_stirling_creative = new MachineStirling().setBlockName("machine_stirling_creative").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_sawmill = new MachineSawmill().setBlockName("machine_sawmill").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_strand_caster = new MachineStrandCaster().setBlockName("machine_strand_caster").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + machine_crucible = new MachineCrucible().setBlockName("machine_crucible").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + machine_boiler = new MachineHeatBoiler().setBlockName("machine_boiler").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_copper"); + machine_industrial_boiler = new MachineHeatBoilerIndustrial().setBlockName("machine_industrial_boiler").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + + foundry_mold = new FoundryMold().setBlockName("foundry_mold").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + foundry_basin = new FoundryBasin().setBlockName("foundry_basin").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + foundry_channel = new FoundryChannel().setBlockName("foundry_channel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + foundry_tank = new FoundryTank().setBlockName("foundry_tank").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + foundry_outlet = new FoundryOutlet().setBlockName("foundry_outlet").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + foundry_slagtap = new FoundrySlagtap().setBlockName("foundry_slagtap").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + slag = new BlockDynamicSlag().setBlockName("slag").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":slag"); + + machine_difurnace_off = new MachineDiFurnace(false).setBlockName("machine_difurnace_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_difurnace_on = new MachineDiFurnace(true).setBlockName("machine_difurnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); + machine_difurnace_extension = new MachineDiFurnaceExtension().setBlockName("machine_difurnace_extension").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_difurnace_rtg_off = new MachineDiFurnaceRTG(false).setBlockName("machine_difurnace_rtg_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_difurnace_rtg_on = new MachineDiFurnaceRTG(true).setBlockName("machine_difurnace_rtg_on").setHardness(5.0F).setResistance(10.0F).setLightLevel(2.0F).setCreativeTab(null); + + machine_centrifuge = new MachineCentrifuge(Material.iron).setBlockName("machine_centrifuge").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_gascent = new MachineGasCent(Material.iron).setBlockName("machine_gascent").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_fel = new MachineFEL(Material.iron).setBlockName("machine_fel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_silex = new MachineSILEX(Material.iron).setBlockName("machine_silex").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_rotary_furnace = new MachineRotaryFurnace(Material.iron).setBlockName("machine_rotary_furnace").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_firebrick"); + machine_crystallizer = new MachineCrystallizer(Material.iron).setBlockName("machine_crystallizer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_crystallizer"); + + machine_uf6_tank = new MachineUF6Tank(Material.iron).setBlockName("machine_uf6_tank").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + + machine_puf6_tank = new MachinePuF6Tank(Material.iron).setBlockName("machine_puf6_tank").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + + machine_reactor_breeding = new MachineReactorBreeding(Material.iron).setBlockName("machine_reactor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_reactor"); + + machine_furnace_brick_off = new MachineBrickFurnace(false).setBlockName("machine_furnace_brick_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_furnace_brick_on = new MachineBrickFurnace(true).setBlockName("machine_furnace_brick_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); + machine_nuke_furnace_off = new MachineNukeFurnace(false).setBlockName("machine_nuke_furnace_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_nuke_furnace_on = new MachineNukeFurnace(true).setBlockName("machine_nuke_furnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); + machine_rtg_furnace_off = new MachineRtgFurnace(false).setBlockName("machine_rtg_furnace_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_rtg_furnace_on = new MachineRtgFurnace(true).setBlockName("machine_rtg_furnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); + + machine_industrial_generator = new MachineIGenerator(Material.iron).setBlockName("machine_industrial_generator").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName("gold_block"); + machine_cyclotron = new MachineCyclotron(Material.iron).setBlockName("machine_cyclotron").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":cyclotron"); + machine_exposure_chamber = new MachineExposureChamber(Material.iron).setBlockName("machine_exposure_chamber").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_aluminium"); + machine_radgen = new MachineRadGen(Material.iron).setBlockName("machine_radgen").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_radgen"); + + hadron_plating = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating"); + hadron_plating_blue = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_blue").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_blue"); + hadron_plating_black = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_black").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_black"); + hadron_plating_yellow = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_yellow").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_yellow"); + hadron_plating_striped = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_striped").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_striped"); + hadron_plating_voltz = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_voltz").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_voltz"); + hadron_plating_glass = new BlockNTMGlass(0, RefStrings.MODID + ":hadron_plating_glass", Material.iron, true).setStepSound(Block.soundTypeMetal).setBlockName("hadron_plating_glass").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_plating_glass"); + hadron_coil_alloy = new BlockHadronCoil(Material.iron, 10).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_alloy").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_alloy"); + hadron_coil_gold = new BlockHadronCoil(Material.iron, 25).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_gold").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_gold"); + hadron_coil_neodymium = new BlockHadronCoil(Material.iron, 50).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_neodymium").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_neodymium"); + hadron_coil_magtung = new BlockHadronCoil(Material.iron, 100).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_magtung").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_magtung"); + hadron_coil_schrabidium = new BlockHadronCoil(Material.iron, 250).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_schrabidium").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_schrabidium"); + hadron_coil_schrabidate = new BlockHadronCoil(Material.iron, 500).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_schrabidate").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_schrabidate"); + hadron_coil_starmetal = new BlockHadronCoil(Material.iron, 1000).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_starmetal").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_starmetal"); + hadron_coil_chlorophyte = new BlockHadronCoil(Material.iron, 2500).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_chlorophyte").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_chlorophyte"); + hadron_coil_mese = new BlockHadronCoil(Material.iron, 10000).setStepSound(Block.soundTypeMetal).setBlockName("hadron_coil_mese").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_coil_mese"); + hadron_power = new BlockHadronPower(Material.iron, 1000000L).setStepSound(Block.soundTypeMetal).setBlockName("hadron_power").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_power"); + hadron_power_10m = new BlockHadronPower(Material.iron, 10000000L).setStepSound(Block.soundTypeMetal).setBlockName("hadron_power_10m").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_power"); + hadron_power_100m = new BlockHadronPower(Material.iron, 100000000L).setStepSound(Block.soundTypeMetal).setBlockName("hadron_power_100m").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_power"); + hadron_power_1g = new BlockHadronPower(Material.iron, 1000000000L).setStepSound(Block.soundTypeMetal).setBlockName("hadron_power_1g").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_power"); + hadron_power_10g = new BlockHadronPower(Material.iron, 10000000000L).setStepSound(Block.soundTypeMetal).setBlockName("hadron_power_10g").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_power"); + hadron_diode = new BlockHadronDiode(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_diode").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + hadron_analysis = new BlockHadronPlating(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_analysis").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_analysis"); + hadron_analysis_glass = new BlockNTMGlass(0, RefStrings.MODID + ":hadron_analysis_glass", Material.iron, true).setStepSound(Block.soundTypeMetal).setBlockName("hadron_analysis_glass").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_analysis_glass"); + hadron_access = new BlockHadronAccess(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_access").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_access"); + hadron_core = new BlockHadronCore(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_core").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_core"); + hadron_cooler = new BlockHadronCooler(Material.iron).setBlockName("hadron_cooler").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F); + + machine_electric_furnace_off = new MachineElectricFurnace(false).setBlockName("machine_electric_furnace_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_electric_furnace_on = new MachineElectricFurnace(true).setBlockName("machine_electric_furnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); + machine_arc_furnace_off = new MachineArcFurnace(false).setBlockName("machine_arc_furnace_off").setHardness(5.0F).setResistance(10.0F); + machine_arc_furnace_on = new MachineArcFurnace(true).setBlockName("machine_arc_furnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F); + machine_arc_furnace = new MachineArcFurnaceLarge().setBlockName("machine_arc_furnace").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_microwave = new MachineMicrowave(Material.iron).setBlockName("machine_microwave").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_microwave"); + + machine_battery_potato = new MachineBattery(Material.iron, 10_000).setBlockName("machine_battery_potato").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_battery = new MachineBattery(Material.iron, 1_000_000).setBlockName("machine_battery").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_lithium_battery = new MachineBattery(Material.iron, 50_000_000).setBlockName("machine_lithium_battery").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_schrabidium_battery = new MachineBattery(Material.iron, 25_000_000_000L).setBlockName("machine_schrabidium_battery").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_dineutronium_battery = new MachineBattery(Material.iron, 1_000_000_000_000L).setBlockName("machine_dineutronium_battery").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_fensu = new MachineFENSU(Material.iron).setBlockName("machine_fensu").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_fensu"); + + capacitor_bus = new MachineCapacitorBus(Material.iron).setBlockName("capacitor_bus").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + capacitor_copper = new MachineCapacitor(Material.iron, 1_000_000L, "copper").setBlockName("capacitor_copper").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_copper"); + capacitor_gold = new MachineCapacitor(Material.iron, 5_000_000L, "gold").setBlockName("capacitor_gold").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName("gold_block"); + capacitor_niobium = new MachineCapacitor(Material.iron, 25_000_000L, "niobium").setBlockName("capacitor_niobium").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_niobium"); + capacitor_tantalium = new MachineCapacitor(Material.iron, 150_000_000L, "tantalium").setBlockName("capacitor_tantalium").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_tantalium"); + capacitor_schrabidate = new MachineCapacitor(Material.iron, 50_000_000_000L, "schrabidate").setBlockName("capacitor_schrabidate").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_schrabidate"); + + machine_wood_burner = new MachineWoodBurner(Material.iron).setBlockName("machine_wood_burner").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_diesel = new MachineDiesel().setBlockName("machine_diesel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_combustion_engine = new MachineCombustionEngine().setBlockName("machine_combustion_engine").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + + machine_shredder = new MachineShredder(Material.iron).setBlockName("machine_shredder").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + + machine_teleporter = new MachineTeleporter(Material.iron).setBlockName("machine_teleporter").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + teleanchor = new MachineTeleanchor().setBlockName("teleanchor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + field_disturber = new MachineFieldDisturber().setBlockName("field_disturber").setHardness(5.0F).setResistance(200.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":field_disturber"); + + machine_rtg_grey = new MachineRTG(Material.iron).setBlockName("machine_rtg_grey").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rtg"); + machine_amgen = new MachineAmgen(Material.iron).setBlockName("machine_amgen").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_geo = new MachineAmgen(Material.iron).setBlockName("machine_geo").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_minirtg = new MachineMiniRTG(Material.iron).setBlockName("machine_minirtg").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rtg_cell"); + machine_powerrtg = new MachineMiniRTG(Material.iron).setBlockName("machine_powerrtg").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rtg_polonium"); + machine_radiolysis = new MachineRadiolysis(Material.iron).setBlockName("machine_radiolysis").setHardness(10.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); + machine_hephaestus = new MachineHephaestus(Material.iron).setBlockName("machine_hephaestus").setHardness(10.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); + + red_wire_coated = new WireCoated(Material.iron).setBlockName("red_wire_coated").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_wire_coated"); + red_cable = new BlockCable(Material.iron).setBlockName("red_cable").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":cable_neo"); + red_cable_classic = new BlockCable(Material.iron).setBlockName("red_cable_classic").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_cable_classic"); + red_cable_paintable = new BlockCablePaintable().setBlockName("red_cable_paintable").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + red_cable_gauge = new BlockCableGauge().setBlockName("red_cable_gauge").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + red_connector = new ConnectorRedWire(Material.iron).setBlockName("red_connector").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_connector"); + red_pylon = new PylonRedWire(Material.iron).setBlockName("red_pylon").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon"); + red_pylon_medium_wood = new PylonMedium(Material.wood).setBlockName("red_pylon_medium_wood").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon"); + red_pylon_medium_wood_transformer = new PylonMedium(Material.wood).setBlockName("red_pylon_medium_wood_transformer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon"); + red_pylon_medium_steel = new PylonMedium(Material.iron).setBlockName("red_pylon_medium_steel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon"); + red_pylon_medium_steel_transformer = new PylonMedium(Material.iron).setBlockName("red_pylon_medium_steel_transformer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon"); + red_pylon_large = new PylonLarge(Material.iron).setBlockName("red_pylon_large").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":red_pylon_large"); + substation = new Substation(Material.iron).setBlockName("substation").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":substation"); + cable_switch = new CableSwitch(Material.iron).setBlockName("cable_switch").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + cable_detector = new CableDetector(Material.iron).setBlockName("cable_detector").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + cable_diode = new CableDiode(Material.iron).setBlockName("cable_diode").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":cable_diode"); + machine_detector = new PowerDetector(Material.iron).setBlockName("machine_detector").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_detector_off"); + fluid_duct_neo = new FluidDuctStandard(Material.iron).setBlockName("fluid_duct_neo").setStepSound(ModSoundTypes.pipe).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pipe_neo"); + fluid_duct_box = new FluidDuctBox(Material.iron).setBlockName("fluid_duct_box").setStepSound(ModSoundTypes.pipe).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fluid_duct_box"); + fluid_duct_exhaust = new FluidDuctBoxExhaust(Material.iron).setBlockName("fluid_duct_exhaust").setStepSound(ModSoundTypes.pipe).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fluid_duct_box"); + fluid_duct_paintable = new FluidDuctPaintable().setBlockName("fluid_duct_paintable").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + fluid_duct_gauge = new FluidDuctGauge().setBlockName("fluid_duct_gauge").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + fluid_valve = new FluidValve(Material.iron).setBlockName("fluid_valve").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + fluid_switch = new FluidSwitch(Material.iron).setBlockName("fluid_switch").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_drain = new MachineDrain(Material.iron).setBlockName("machine_drain").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":concrete"); + radio_torch_sender = new RadioTorchSender().setBlockName("radio_torch_sender").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + radio_torch_receiver = new RadioTorchReceiver().setBlockName("radio_torch_receiver").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + radio_torch_counter = new RadioTorchCounter().setBlockName("radio_torch_counter").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rtty_counter"); + radio_torch_logic = new RadioTorchLogic().setBlockName("radio_torch_logic").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + radio_telex = new RadioTelex().setBlockName("radio_telex").setHardness(3F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":radio_telex"); + + conveyor = new BlockConveyor().setBlockName("conveyor").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor"); + conveyor_express = new BlockConveyorExpress().setBlockName("conveyor_express").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor_express"); + //conveyor_classic = new BlockConveyorClassic().setBlockName("conveyor_classic").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor"); + conveyor_double = new BlockConveyorDouble().setBlockName("conveyor_double").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor_double"); + conveyor_triple = new BlockConveyorTriple().setBlockName("conveyor_triple").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor_triple"); + conveyor_chute = new BlockConveyorChute().setBlockName("conveyor_chute").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor"); + conveyor_lift = new BlockConveyorLift().setBlockName("conveyor_lift").setHardness(2.0F).setResistance(2.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":conveyor"); + crane_extractor = new CraneExtractor().setBlockName("crane_extractor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + crane_inserter = new CraneInserter().setBlockName("crane_inserter").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + crane_grabber = new CraneGrabber().setBlockName("crane_grabber").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + crane_router = new CraneRouter().setBlockName("crane_router").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + crane_boxer = new CraneBoxer().setBlockName("crane_boxer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + crane_unboxer = new CraneUnboxer().setBlockName("crane_unboxer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + crane_splitter = new CraneSplitter().setBlockName("crane_splitter").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":crane_side"); + crane_partitioner = new CranePartitioner().setBlockName("crane_partitioner").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":crane_partitioner_side"); + fan = new MachineFan().setBlockName("fan").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + piston_inserter = new PistonInserter().setBlockName("piston_inserter").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + + drone_waypoint = new DroneWaypoint().setBlockName("drone_waypoint").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":drone_waypoint"); + drone_crate = new DroneCrate().setBlockName("drone_crate").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + drone_waypoint_request = new DroneWaypointRequest().setBlockName("drone_waypoint_request").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":drone_waypoint_request"); + drone_dock = new DroneDock().setBlockName("drone_dock").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":drone_dock"); + drone_crate_provider = new DroneDock().setBlockName("drone_crate_provider").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":drone_crate_provider"); + drone_crate_requester = new DroneDock().setBlockName("drone_crate_requester").setHardness(0.1F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":drone_crate_requester"); + + chain = new BlockChain(Material.iron).setBlockName("dungeon_chain").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":chain"); + + ladder_sturdy = new BlockNTMLadder().setBlockName("ladder_sturdy").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_sturdy"); + ladder_iron = new BlockNTMLadder().setBlockName("ladder_iron").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_iron"); + ladder_gold = new BlockNTMLadder().setBlockName("ladder_gold").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_gold"); + ladder_aluminium = new BlockNTMLadder().setBlockName("ladder_aluminium").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_aluminium"); + ladder_copper = new BlockNTMLadder().setBlockName("ladder_copper").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_copper"); + ladder_titanium = new BlockNTMLadder().setBlockName("ladder_titanium").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_titanium"); + ladder_lead = new BlockNTMLadder().setBlockName("ladder_lead").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_lead"); + ladder_cobalt = new BlockNTMLadder().setBlockName("ladder_cobalt").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_cobalt"); + ladder_steel = new BlockNTMLadder().setBlockName("ladder_steel").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_steel"); + ladder_tungsten = new BlockNTMLadder().setBlockName("ladder_tungsten").setHardness(0.25F).setResistance(2.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":ladder_tungsten"); + + barrel_plastic = new BlockFluidBarrel(Material.iron, 12000).setBlockName("barrel_plastic").setStepSound(Block.soundTypeStone).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_plastic"); + barrel_corroded = new BlockFluidBarrel(Material.iron, 6000).setBlockName("barrel_corroded").setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_corroded"); + barrel_iron = new BlockFluidBarrel(Material.iron, 8000).setBlockName("barrel_iron").setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_iron"); + barrel_steel = new BlockFluidBarrel(Material.iron, 16000).setBlockName("barrel_steel").setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_steel"); + barrel_tcalloy = new BlockFluidBarrel(Material.iron, 24000).setBlockName("barrel_tcalloy").setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_tcalloy"); + barrel_antimatter = new BlockFluidBarrel(Material.iron, 16000).setBlockName("barrel_antimatter").setStepSound(Block.soundTypeMetal).setHardness(2.0F).setResistance(5.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":barrel_antimatter"); + + machine_transformer = new MachineTransformer(Material.iron, 10000L, 1).setBlockName("machine_transformer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_transformer_iron"); + machine_transformer_dnt = new MachineTransformer(Material.iron, 1000000000000000L, 1).setBlockName("machine_transformer_dnt").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_transformer"); + machine_transformer_20 = new MachineTransformer(Material.iron, 10000L, 20).setBlockName("machine_transformer_20").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_transformer_iron"); + machine_transformer_dnt_20 = new MachineTransformer(Material.iron, 1000000000000000L, 20).setBlockName("machine_transformer_dnt_20").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_transformer"); + + machine_satlinker = new MachineSatLinker(Material.iron).setBlockName("machine_satlinker").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":machine_satlinker_side"); + machine_keyforge = new MachineKeyForge(Material.iron).setBlockName("machine_keyforge").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":machine_keyforge_side"); + machine_armor_table = new BlockArmorTable(Material.iron).setBlockName("machine_armor_table").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab); + + machine_solar_boiler = new MachineSolarBoiler(Material.iron).setBlockName("machine_solar_boiler").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_solar_boiler"); + solar_mirror = new SolarMirror(Material.iron).setBlockName("solar_mirror").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":solar_mirror"); + + struct_launcher = new BlockGeneric(Material.iron).setBlockName("struct_launcher").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":struct_launcher"); + struct_scaffold = new BlockGeneric(Material.iron).setBlockName("struct_scaffold").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":struct_scaffold"); + struct_launcher_core = new BlockStruct(Material.iron).setBlockName("struct_launcher_core").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":struct_launcher_core"); + struct_launcher_core_large = new BlockStruct(Material.iron).setBlockName("struct_launcher_core_large").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":struct_launcher_core_large"); + struct_soyuz_core = new BlockSoyuzStruct(Material.iron).setBlockName("struct_soyuz_core").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":struct_soyuz_core"); + struct_iter_core = new BlockITERStruct(Material.iron).setBlockName("struct_iter_core").setLightLevel(1F).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":struct_iter_core"); + struct_plasma_core = new BlockPlasmaStruct(Material.iron).setBlockName("struct_plasma_core").setLightLevel(1F).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":struct_plasma_core"); + struct_watz_core = new BlockWatzStruct(Material.iron).setBlockName("struct_watz_core").setLightLevel(1F).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":struct_watz_core"); + struct_icf_core = new BlockICFStruct(Material.iron).setBlockName("struct_icf_core").setLightLevel(1F).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":struct_icf_core"); + + factory_titanium_hull = new BlockGeneric(Material.iron).setBlockName("factory_titanium_hull").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_titanium_hull"); + factory_titanium_furnace = new FactoryHatch(Material.iron).setBlockName("factory_titanium_furnace").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_titanium_furnace"); + factory_titanium_conductor = new BlockPillar(Material.iron, RefStrings.MODID + ":factory_titanium_conductor").setBlockName("factory_titanium_conductor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_titanium_hull"); + factory_advanced_hull = new BlockGeneric(Material.iron).setBlockName("factory_advanced_hull").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_advanced_hull"); + factory_advanced_furnace = new FactoryHatch(Material.iron).setBlockName("factory_advanced_furnace").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_advanced_furnace"); + factory_advanced_conductor = new BlockPillar(Material.iron, RefStrings.MODID + ":factory_advanced_conductor").setBlockName("factory_advanced_conductor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":factory_advanced_hull"); + + cm_block = new BlockCM(Material.iron, EnumCMMaterials.class, true, true).setBlockName("cm_block").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_block"); + cm_sheet = new BlockCM(Material.iron, EnumCMMaterials.class, true, true).setBlockName("cm_sheet").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_sheet"); + cm_engine = new BlockCM(Material.iron, EnumCMEngines.class, true, true).setBlockName("cm_engine").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_engine"); + cm_tank = new BlockCMGlass(Material.iron, EnumCMMaterials.class, true, true).setBlockName("cm_tank").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_tank"); + cm_circuit = new BlockCM(Material.iron, EnumCMCircuit.class, true, true).setBlockName("cm_circuit").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_circuit"); + cm_port = new BlockCMPort(Material.iron, EnumCMMaterials.class, true, true).setBlockName("cm_port").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_port"); + cm_flux = new BlockCMFlux(Material.iron, RefStrings.MODID + ":cm_flux_top").setBlockName("cm_flux").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_flux_side"); + cm_heat = new BlockCMHeat(Material.iron, RefStrings.MODID +":cm_heat_top").setBlockName("cm_heat").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":cm_heat_side"); + custom_machine = new BlockCustomMachine().setBlockName("custom_machine").setCreativeTab(MainRegistry.machineTab).setLightLevel(1F).setHardness(5.0F).setResistance(10.0F); + cm_anchor = new BlockCMAnchor().setBlockName("custom_machine_anchor").setCreativeTab(MainRegistry.machineTab).setHardness(5.0F).setResistance(10.0F); + + pwr_fuel = new BlockPillarPWR(Material.iron, RefStrings.MODID + ":pwr_fuel_top").setBlockName("pwr_fuel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_fuel_side"); + pwr_control = new BlockPillarPWR(Material.iron, RefStrings.MODID + ":pwr_control_top").setBlockName("pwr_control").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_control_side"); + pwr_channel = new BlockPillarPWR(Material.iron, RefStrings.MODID + ":pwr_channel_top").setBlockName("pwr_channel").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_channel_side"); + pwr_heatex = new BlockGenericPWR(Material.iron).setBlockName("pwr_heatex").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_heatex"); + pwr_heatsink = new BlockGenericPWR(Material.iron).setBlockName("pwr_heatsink").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_heatsink"); + pwr_neutron_source = new BlockGenericPWR(Material.iron).setBlockName("pwr_neutron_source").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_neutron_source"); + pwr_reflector = new BlockGenericPWR(Material.iron).setBlockName("pwr_reflector").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_reflector"); + pwr_casing = new BlockGenericPWR(Material.iron).setBlockName("pwr_casing").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_casing"); + pwr_port = new BlockGenericPWR(Material.iron).setBlockName("pwr_port").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_port"); + pwr_controller = new MachinePWRController(Material.iron).setBlockName("pwr_controller").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":pwr_casing_blank"); + pwr_block = new BlockPWR(Material.iron).setBlockName("pwr_block").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":pwr_block"); + + fusion_conductor = new BlockToolConversionPillar(Material.iron).addVariant("_welded").setBlockName("fusion_conductor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fusion_conductor"); + fusion_center = new BlockPillar(Material.iron, RefStrings.MODID + ":fusion_center_top_alt").setBlockName("fusion_center").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fusion_center_side_alt"); + fusion_motor = new BlockPillar(Material.iron, RefStrings.MODID + ":fusion_motor_top_alt").setBlockName("fusion_motor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fusion_motor_side_alt"); + fusion_heater = new BlockPillar(Material.iron, RefStrings.MODID + ":fusion_heater_top").setBlockName("fusion_heater").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fusion_heater_side"); + fusion_hatch = new FusionHatch(Material.iron).setBlockName("fusion_hatch").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fusion_hatch"); + plasma = new BlockPlasma(Material.iron).setBlockName("plasma").setHardness(5.0F).setResistance(6000.0F).setLightLevel(1.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":plasma"); + iter = new MachineITER().setBlockName("iter").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":iter"); + plasma_heater = new MachinePlasmaHeater().setBlockName("plasma_heater").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":plasma_heater"); + + machine_icf_press = new MachineICFPress().setBlockName("machine_icf_press").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + icf = new MachineICF().setBlockName("icf").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + icf_component = new BlockICFComponent().setBlockName("icf_component").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":icf_component"); + icf_controller = new MachineICFController().setBlockName("icf_controller").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":icf_casing"); + icf_laser_component = new BlockICFLaserComponent().setBlockName("icf_laser_component").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab); + icf_block = new BlockICF(Material.iron).setBlockName("icf_block").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":icf_block"); + + watz_element = new BlockPillar(Material.iron, RefStrings.MODID + ":watz_element_top").setBlockName("watz_element").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":watz_element_side"); + watz_cooler = new BlockPillar(Material.iron, RefStrings.MODID + ":watz_cooler_top").setBlockName("watz_cooler").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":watz_cooler_side"); + watz_end = new BlockToolConversion(Material.iron).addVariant("_bolted").setBlockName("watz_end").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":watz_casing"); + watz = new Watz().setBlockName("watz").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + watz_pump = new WatzPump().setBlockName("watz_pump").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + + balefire = new Balefire().setBlockName("balefire").setHardness(0.0F).setLightLevel(1.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":balefire"); + fire_digamma = new DigammaFlame().setBlockName("fire_digamma").setHardness(0.0F).setResistance(150F).setLightLevel(1.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":fire_digamma"); + digamma_matter = new DigammaMatter().setBlockName("digamma_matter").setBlockUnbreakable().setResistance(18000000).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":digamma_matter"); + + machine_converter_he_rf = new BlockConverterHeRf(Material.iron).setBlockName("machine_converter_he_rf").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_converter_he_rf"); + machine_converter_rf_he = new BlockConverterRfHe(Material.iron).setBlockName("machine_converter_rf_he").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_converter_rf_he"); + + dfc_emitter = new CoreComponent(Material.iron).setBlockName("dfc_emitter").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":dfc_emitter"); + dfc_injector = new CoreComponent(Material.iron).setBlockName("dfc_injector").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":dfc_injector"); + dfc_receiver = new CoreComponent(Material.iron).setBlockName("dfc_receiver").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":dfc_receiver"); + dfc_stabilizer = new CoreComponent(Material.iron).setBlockName("dfc_stabilizer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":dfc_stabilizer"); + dfc_core = new CoreCore(Material.iron).setBlockName("dfc_core").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":dfc_core"); + + seal_frame = new BlockGeneric(Material.iron).setBlockName("seal_frame").setHardness(10.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":seal_frame"); + seal_controller = new BlockSeal(Material.iron).setBlockName("seal_controller").setHardness(10.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab); + seal_hatch = new BlockHatch(Material.iron).setBlockName("seal_hatch").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":seal_hatch_3"); + + vault_door = new VaultDoor(Material.iron).setBlockName("vault_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":vault_door"); + blast_door = new BlastDoor(Material.iron).setBlockName("blast_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":blast_door"); + + sliding_blast_door = new BlockDoorGeneric(Material.iron, DoorDecl.SLIDE_DOOR).setBlockName("sliding_blast_door").setHardness(10.0F).setResistance(750.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":sliding_blast_door"); + fire_door = new BlockDoorGeneric(Material.iron, DoorDecl.FIRE_DOOR).setBlockName("fire_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":fire_door"); + transition_seal = new BlockDoorGeneric(Material.iron, DoorDecl.TRANSITION_SEAL).setBlockName("transition_seal").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":transition_seal"); + silo_hatch = new BlockDoorGeneric(Material.iron, DoorDecl.SILO_HATCH).setBlockName("silo_hatch").setHardness(10.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + silo_hatch_large = new BlockDoorGeneric(Material.iron, DoorDecl.SILO_HATCH_LARGE).setBlockName("silo_hatch_large").setHardness(10.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + secure_access_door = new BlockDoorGeneric(Material.iron, DoorDecl.SECURE_ACCESS_DOOR).setBlockName("secure_access_door").setHardness(20.0F).setResistance(2_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + large_vehicle_door = new BlockDoorGeneric(Material.iron, DoorDecl.LARGE_VEHICLE_DOOR).setBlockName("large_vehicle_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + qe_containment = new BlockDoorGeneric(Material.iron, DoorDecl.QE_CONTAINMENT).setBlockName("qe_containment").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + qe_sliding_door = new BlockDoorGeneric(Material.iron, DoorDecl.QE_SLIDING).setBlockName("qe_sliding_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + round_airlock_door = new BlockDoorGeneric(Material.iron, DoorDecl.ROUND_AIRLOCK_DOOR).setBlockName("round_airlock_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + sliding_seal_door = new BlockDoorGeneric(Material.iron, DoorDecl.SLIDING_SEAL_DOOR).setBlockName("sliding_seal_door").setHardness(10.0F).setResistance(1_000.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + water_door = new BlockDoorGeneric(Material.iron, DoorDecl.WATER_DOOR).setBlockName("water_door").setHardness(5.0F).setResistance(50.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + + door_metal = new BlockModDoor(Material.iron).setBlockName("door_metal").setHardness(5.0F).setResistance(5.0F).setBlockTextureName(RefStrings.MODID + ":door_metal"); + door_office = new BlockModDoor(Material.iron).setBlockName("door_office").setHardness(10.0F).setResistance(10.0F).setBlockTextureName(RefStrings.MODID + ":door_office"); + door_bunker = new BlockModDoor(Material.iron).setBlockName("door_bunker").setHardness(10.0F).setResistance(100.0F).setBlockTextureName(RefStrings.MODID + ":door_bunker"); + door_red = new BlockModDoor(Material.iron).setBlockName("door_red").setHardness(10.0F).setResistance(100.0F).setBlockTextureName(RefStrings.MODID + ":door_red"); + + barbed_wire = new BarbedWire(Material.iron).setBlockName("barbed_wire").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_model"); + barbed_wire_fire = new BarbedWire(Material.iron).setBlockName("barbed_wire_fire").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_fire_model"); + barbed_wire_poison = new BarbedWire(Material.iron).setBlockName("barbed_wire_poison").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_poison_model"); + barbed_wire_acid = new BarbedWire(Material.iron).setBlockName("barbed_wire_acid").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_acid_model"); + barbed_wire_wither = new BarbedWire(Material.iron).setBlockName("barbed_wire_wither").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_wither_model"); + barbed_wire_ultradeath = new BarbedWire(Material.iron).setBlockName("barbed_wire_ultradeath").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":barbed_wire_ultradeath_model"); + spikes = new Spikes(Material.iron).setBlockName("spikes").setHardness(2.5F).setResistance(5.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":spikes"); + + charger = new Charger(Material.iron).setBlockName("charger").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + + tesla = new MachineTesla(Material.iron).setBlockName("tesla").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":tesla"); + + launch_pad = new LaunchPad(Material.iron).setBlockName("launch_pad").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":launch_pad"); + launch_pad_rusted = new LaunchPadRusted(Material.iron).setBlockName("launch_pad_rusted").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":block_rust"); + launch_pad_large = new LaunchPadLarge(Material.iron).setBlockName("launch_pad_large").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_radar = new MachineRadar(Material.iron).setBlockName("machine_radar").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":machine_radar"); + machine_radar_large = new MachineRadarLarge(Material.iron).setBlockName("machine_radar_large").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + radar_screen = new MachineRadarScreen(Material.iron).setBlockName("radar_screen").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + + machine_missile_assembly = new MachineMissileAssembly(Material.iron).setBlockName("machine_missile_assembly").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":machine_missile_assembly"); + compact_launcher = new CompactLauncher(Material.iron).setBlockName("compact_launcher").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":compact_launcher"); + launch_table = new LaunchTable(Material.iron).setBlockName("launch_table").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":launch_table"); + soyuz_launcher = new SoyuzLauncher(Material.iron).setBlockName("soyuz_launcher").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":soyuz_launcher"); + + sat_mapper = new DecoBlock(Material.iron).setBlockName("sat_mapper").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_mapper"); + sat_radar = new DecoBlock(Material.iron).setBlockName("sat_radar").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_radar"); + sat_scanner = new DecoBlock(Material.iron).setBlockName("sat_scanner").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_scanner"); + sat_laser = new DecoBlock(Material.iron).setBlockName("sat_laser").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_laser"); + sat_foeq = new DecoBlock(Material.iron).setBlockName("sat_foeq").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_foeq"); + sat_resonator = new DecoBlock(Material.iron).setBlockName("sat_resonator").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":sat_resonator"); + + sat_dock = new MachineSatDock(Material.iron).setBlockName("sat_dock").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":sat_dock"); + soyuz_capsule = new SoyuzCapsule(Material.iron).setBlockName("soyuz_capsule").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":soyuz_capsule"); + + turret_chekhov = new TurretChekhov(Material.iron).setBlockName("turret_chekhov").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_friendly = new TurretFriendly(Material.iron).setBlockName("turret_friendly").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_jeremy = new TurretJeremy(Material.iron).setBlockName("turret_jeremy").setHardness(5.0F).setResistance(600.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_tauon = new TurretTauon(Material.iron).setBlockName("turret_tauon").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_richard = new TurretRichard(Material.iron).setBlockName("turret_richard").setHardness(5.0F).setResistance(600.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_howard = new TurretHoward(Material.iron).setBlockName("turret_howard").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_howard_damaged = new TurretHowardDamaged(Material.iron).setBlockName("turret_howard_damaged").setHardness(5.0F).setResistance(600.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_rust"); + turret_maxwell = new TurretMaxwell(Material.iron).setBlockName("turret_maxwell").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_fritz = new TurretFritz(Material.iron).setBlockName("turret_fritz").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_arty = new TurretArty(Material.iron).setBlockName("turret_arty").setHardness(5.0F).setResistance(600.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_himars = new TurretHIMARS(Material.iron).setBlockName("turret_himars").setHardness(5.0F).setResistance(600.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_sentry = new TurretSentry().setBlockName("turret_sentry").setHardness(5.0F).setResistance(5.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + turret_sentry_damaged = new TurretSentryDamaged().setBlockName("turret_sentry_damaged").setHardness(5.0F).setResistance(5.0F).setCreativeTab(MainRegistry.weaponTab).setBlockTextureName(RefStrings.MODID + ":block_rust"); + + rbmk_rod = new RBMKRod(false).setBlockName("rbmk_rod").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_element"); + rbmk_rod_mod = new RBMKRod(true).setBlockName("rbmk_rod_mod").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_element_mod"); + rbmk_rod_reasim = new RBMKRodReaSim(false).setBlockName("rbmk_rod_reasim").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_element_reasim"); + rbmk_rod_reasim_mod = new RBMKRodReaSim(true).setBlockName("rbmk_rod_reasim_mod").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_element_reasim_mod"); + rbmk_control = new RBMKControl(false).setBlockName("rbmk_control").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_control"); + rbmk_control_mod = new RBMKControl(true).setBlockName("rbmk_control_mod").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_control_mod"); + rbmk_control_auto = new RBMKControlAuto().setBlockName("rbmk_control_auto").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_control_auto"); + rbmk_blank = new RBMKBlank().setBlockName("rbmk_blank").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_blank"); + rbmk_boiler = new RBMKBoiler().setBlockName("rbmk_boiler").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_boiler"); + rbmk_reflector = new RBMKReflector().setBlockName("rbmk_reflector").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_reflector"); + rbmk_absorber = new RBMKAbsorber().setBlockName("rbmk_absorber").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_absorber"); + rbmk_moderator = new RBMKModerator().setBlockName("rbmk_moderator").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_moderator"); + rbmk_outgasser = new RBMKOutgasser().setBlockName("rbmk_outgasser").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_outgasser"); + rbmk_storage = new RBMKStorage().setBlockName("rbmk_storage").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_storage"); + rbmk_cooler = new RBMKCooler().setBlockName("rbmk_cooler").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_cooler"); + rbmk_heater = new RBMKHeater().setBlockName("rbmk_heater").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_heater"); + rbmk_console = new RBMKConsole().setBlockName("rbmk_console").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_console"); + rbmk_crane_console = new RBMKCraneConsole().setBlockName("rbmk_crane_console").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_crane_console"); + rbmk_loader = new RBMKLoader(Material.iron).setBlockName("rbmk_loader").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":rbmk_loader"); + rbmk_steam_inlet = new RBMKInlet(Material.iron).setBlockName("rbmk_steam_inlet").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":rbmk_steam_inlet"); + rbmk_steam_outlet = new RBMKOutlet(Material.iron).setBlockName("rbmk_steam_outlet").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(60.0F).setBlockTextureName(RefStrings.MODID + ":rbmk_steam_outlet"); + pribris = new RBMKDebris().setBlockName("pribris").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_debris"); + pribris_burning = new RBMKDebrisBurning().setBlockName("pribris_burning").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_debris_burning"); + pribris_radiating = new RBMKDebrisRadiating().setBlockName("pribris_radiating").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_debris_radiating"); + pribris_digamma = new RBMKDebrisDigamma().setBlockName("pribris_digamma").setCreativeTab(MainRegistry.machineTab).setHardness(50.0F).setResistance(600.0F).setBlockTextureName(RefStrings.MODID + ":rbmk/rbmk_debris_digamma"); + + book_guide = new Guide(Material.iron).setBlockName("book_guide").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.nukeTab); + + rail_wood = new RailGeneric().setMaxSpeed(0.2F).setBlockName("rail_wood").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_wood"); + rail_narrow = new RailGeneric().setBlockName("rail_narrow").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_narrow"); + rail_highspeed = new RailGeneric().setMaxSpeed(1F).setFlexible(false).setBlockName("rail_highspeed").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_highspeed"); + rail_booster = new RailBooster().setBlockName("rail_booster").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_booster"); + rail_narrow_straight = new RailNarrowStraight().setBlockName("rail_narrow_straight").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":rail_narrow_neo"); + rail_narrow_curve = new RailNarrowCurve().setBlockName("rail_narrow_curve").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":rail_narrow_neo"); + rail_large_straight = new RailStandardStraight().setBlockName("rail_large_straight").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); + rail_large_straight_short = new RailStandardStraightShort().setBlockName("rail_large_straight_short").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); + rail_large_curve = new RailStandardCurveBase().setBlockName("rail_large_curve").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); + rail_large_curve_7 = new RailStandardCurveWide7().setBlockName("rail_large_curve_7").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); + rail_large_curve_9 = new RailStandardCurveWide9().setBlockName("rail_large_curve_9").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); + rail_large_ramp = new RailStandardRamp().setBlockName("rail_large_ramp").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); + rail_large_buffer = new RailStandardBuffer().setBlockName("rail_large_buffer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_buffer"); + rail_large_switch = new RailStandardSwitch().setBlockName("rail_large_switch").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); + rail_large_switch_flipped = new RailStandardSwitchFlipped().setBlockName("rail_large_switch_flipped").setHardness(5.0F).setResistance(10.0F).setCreativeTab(CreativeTabs.tabTransport).setBlockTextureName(RefStrings.MODID + ":rail_standard_straight"); + + crate = new BlockCrate(Material.wood).setBlockName("crate").setStepSound(Block.soundTypeWood).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate"); + crate_weapon = new BlockCrate(Material.wood).setBlockName("crate_weapon").setStepSound(Block.soundTypeWood).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate_weapon"); + crate_lead = new BlockCrate(Material.iron).setBlockName("crate_lead").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate_lead"); + crate_metal = new BlockCrate(Material.iron).setBlockName("crate_metal").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate_metal"); + crate_red = new BlockCrate(Material.iron).setBlockName("crate_red").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":crate_red"); + crate_can = new BlockCanCrate(Material.wood).setBlockName("crate_can").setStepSound(Block.soundTypeWood).setHardness(1.0F).setResistance(2.5F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate_can"); + crate_ammo = new BlockAmmoCrate(Material.iron).setBlockName("crate_ammo").setStepSound(Block.soundTypeMetal).setHardness(1.0F).setResistance(2.5F).setCreativeTab(MainRegistry.consumableTab); + crate_jungle = new BlockJungleCrate(Material.rock).setBlockName("crate_jungle").setStepSound(Block.soundTypeStone).setHardness(1.0F).setResistance(2.5F).setCreativeTab(MainRegistry.consumableTab).setBlockTextureName(RefStrings.MODID + ":crate_jungle"); + crate_iron = new BlockStorageCrate(Material.iron).setBlockName("crate_iron").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + crate_steel = new BlockStorageCrate(Material.iron).setBlockName("crate_steel").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + crate_desh = new BlockStorageCrate(Material.iron).setBlockName("crate_desh").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + crate_tungsten = new BlockStorageCrate(Material.iron).setBlockName("crate_tungsten").setStepSound(Block.soundTypeMetal).setHardness(7.5F).setResistance(300.0F).setCreativeTab(MainRegistry.machineTab); + crate_template = new BlockStorageCrate(Material.iron).setBlockName("crate_template").setStepSound(Block.soundTypeMetal).setHardness(7.5F).setResistance(300.0F).setCreativeTab(MainRegistry.machineTab); + safe = new BlockStorageCrate(Material.iron).setBlockName("safe").setStepSound(Block.soundTypeMetal).setHardness(7.5F).setResistance(10000.0F).setCreativeTab(MainRegistry.machineTab); + mass_storage = new BlockMassStorage().setBlockName("mass_storage").setStepSound(Block.soundTypeMetal).setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + + boxcar = new DecoBlock(Material.iron).setBlockName("boxcar").setStepSound(Block.soundTypeMetal).setHardness(10.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":boxcar"); + boat = new DecoBlock(Material.iron).setBlockName("boat").setStepSound(Block.soundTypeMetal).setHardness(10.0F).setResistance(10.0F).setCreativeTab(MainRegistry.blockTab).setBlockTextureName(RefStrings.MODID + ":boat"); + + machine_well = new MachineOilWell().setBlockName("machine_well").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_well"); + machine_pumpjack = new MachinePumpjack().setBlockName("machine_pumpjack").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_pumpjack"); + machine_fracking_tower = new MachineFrackingTower().setBlockName("machine_fracking_tower").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + oil_pipe = new BlockNoDrop(Material.iron).setBlockName("oil_pipe").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":oil_pipe"); + machine_flare = new MachineGasFlare(Material.iron).setBlockName("machine_flare").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + chimney_brick = new MachineChimneyBrick(Material.iron).setBlockName("chimney_brick").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire"); + chimney_industrial = new MachineChimneyIndustrial(Material.iron).setBlockName("chimney_industrial").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":concrete_colored_ext.machine"); + machine_refinery = new MachineRefinery(Material.iron).setBlockName("machine_refinery").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_refinery"); + machine_vacuum_distill = new MachineVacuumDistill(Material.iron).setBlockName("machine_vacuum_distill").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_fraction_tower = new MachineFractionTower(Material.iron).setBlockName("machine_fraction_tower").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + fraction_spacer = new FractionSpacer(Material.iron).setBlockName("fraction_spacer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_catalytic_cracker = new MachineCatalyticCracker(Material.iron).setBlockName("machine_catalytic_cracker").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_catalytic_reformer = new MachineCatalyticReformer(Material.iron).setBlockName("machine_catalytic_reformer").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_hydrotreater = new MachineHydrotreater(Material.iron).setBlockName("machine_hydrotreater").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_coker = new MachineCoker(Material.iron).setBlockName("machine_coker").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_pyrooven = new MachinePyroOven(Material.iron).setBlockName("machine_pyrooven").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_autosaw = new MachineAutosaw().setBlockName("machine_autosaw").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_excavator = new MachineExcavator().setBlockName("machine_excavator").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_ore_slopper = new MachineOreSlopper().setBlockName("machine_ore_slopper").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_mining_laser = new MachineMiningLaser(Material.iron).setBlockName("machine_mining_laser").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_mining_laser"); + barricade = new BlockNoDrop(Material.sand).setBlockName("barricade").setHardness(1.0F).setResistance(2.5F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":barricade"); + machine_assembler = new MachineAssembler(Material.iron).setBlockName("machine_assembler").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_assembler"); + machine_assemfac = new MachineAssemfac(Material.iron).setBlockName("machine_assemfac").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_arc_welder = new MachineArcWelder(Material.iron).setBlockName("machine_arc_welder").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_soldering_station = new MachineSolderingStation(Material.iron).setBlockName("machine_soldering_station").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_chemplant = new MachineChemplant(Material.iron).setBlockName("machine_chemplant").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_chemfac = new MachineChemfac(Material.iron).setBlockName("machine_chemfac").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_mixer = new MachineMixer(Material.iron).setBlockName("machine_mixer").setHardness(5.0F).setResistance(30.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_fluidtank = new MachineFluidTank(Material.iron).setBlockName("machine_fluidtank").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_fluidtank"); + machine_bat9000 = new MachineBigAssTank9000(Material.iron).setBlockName("machine_bat9000").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_orbus = new MachineOrbus(Material.iron).setBlockName("machine_orbus").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_turbofan = new MachineTurbofan(Material.iron).setBlockName("machine_turbofan").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_turbofan"); + machine_turbinegas = new MachineTurbineGas(Material.iron).setBlockName("machine_turbinegas").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_lpw2 = new MachineLPW2().setBlockName("machine_lpw2").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + press_preheater = new BlockBase(Material.iron).setBlockName("press_preheater").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":press_preheater"); + machine_press = new MachinePress(Material.iron).setBlockName("machine_press").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_press"); + machine_epress = new MachineEPress(Material.iron).setBlockName("machine_epress").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_epress"); + machine_conveyor_press = new MachineConveyorPress(Material.iron).setBlockName("machine_conveyor_press").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + reactor_research = new ReactorResearch(Material.iron).setBlockName("machine_reactor_small").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_reactor_small"); + reactor_zirnox = new ReactorZirnox(Material.iron).setBlockName("machine_zirnox").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + zirnox_destroyed = new ZirnoxDestroyed(Material.iron).setBlockName("zirnox_destroyed").setHardness(100.0F).setResistance(800.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_controller = new MachineReactorControl(Material.iron).setBlockName("machine_controller").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null); + + machine_boiler_off = new MachineBoiler(false).setBlockName("machine_boiler_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":machine_boiler_off"); + + machine_steam_engine = new MachineSteamEngine().setBlockName("machine_steam_engine").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel"); + machine_turbine = new MachineTurbine(Material.iron).setBlockName("machine_turbine").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_turbine"); + machine_large_turbine = new MachineLargeTurbine(Material.iron).setBlockName("machine_large_turbine").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_large_turbine"); + machine_chungus = new MachineChungus(Material.iron).setBlockName("machine_chungus").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_chungus"); + machine_condenser = new MachineCondenser(Material.iron).setBlockName("machine_condenser").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":condenser"); + machine_tower_small = new MachineTowerSmall(Material.iron).setBlockName("machine_tower_small").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_concrete"); + machine_tower_large = new MachineTowerLarge(Material.iron).setBlockName("machine_tower_large").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":concrete"); + machine_condenser_powered = new MachineCondenserPowered(Material.iron).setBlockName("machine_condenser_powered").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); + + machine_deuterium_extractor = new MachineDeuteriumExtractor(Material.iron).setBlockName("machine_deuterium_extractor").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_deuterium_extractor_side"); + machine_deuterium_tower = new DeuteriumTower(Material.iron).setBlockName("machine_deuterium_tower").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":concrete"); + + machine_liquefactor = new MachineLiquefactor().setBlockName("machine_liquefactor").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); + machine_solidifier = new MachineSolidifier().setBlockName("machine_solidifier").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); + machine_compressor = new MachineCompressor().setBlockName("machine_compressor").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); + + machine_electrolyser = new MachineElectrolyser().setBlockName("machine_electrolyser").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel_machine"); + + machine_autocrafter = new MachineAutocrafter().setBlockName("machine_autocrafter").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab); + machine_funnel = new MachineFunnel().setBlockName("machine_funnel").setHardness(10.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab); + + anvil_iron = new NTMAnvil(Material.iron, NTMAnvil.TIER_IRON).setBlockName("anvil_iron").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_iron"); + anvil_lead = new NTMAnvil(Material.iron, NTMAnvil.TIER_IRON).setBlockName("anvil_lead").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_lead"); + anvil_steel = new NTMAnvil(Material.iron, NTMAnvil.TIER_STEEL).setBlockName("anvil_steel").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_steel"); + anvil_desh = new NTMAnvil(Material.iron, NTMAnvil.TIER_OIL).setBlockName("anvil_desh").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_desh"); + anvil_saturnite = new NTMAnvil(Material.iron, NTMAnvil.TIER_OIL).setBlockName("anvil_saturnite").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_saturnite"); + anvil_ferrouranium = new NTMAnvil(Material.iron, NTMAnvil.TIER_NUCLEAR).setBlockName("anvil_ferrouranium").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_ferrouranium"); + anvil_bismuth_bronze = new NTMAnvil(Material.iron, NTMAnvil.TIER_RBMK).setBlockName("anvil_bismuth_bronze").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_bismuth_bronze"); + anvil_arsenic_bronze = new NTMAnvil(Material.iron, NTMAnvil.TIER_RBMK).setBlockName("anvil_arsenic_bronze").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_arsenic_bronze"); + anvil_schrabidate = new NTMAnvil(Material.iron, NTMAnvil.TIER_FUSION).setBlockName("anvil_schrabidate").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_schrabidate"); + anvil_dnt = new NTMAnvil(Material.iron, NTMAnvil.TIER_PARTICLE).setBlockName("anvil_dnt").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_dnt"); + anvil_osmiridium = new NTMAnvil(Material.iron, NTMAnvil.TIER_GERALD).setBlockName("anvil_osmiridium").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_osmiridium"); + anvil_murky = new NTMAnvil(Material.iron, 1916169).setBlockName("anvil_murky").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":anvil_steel"); + + machine_waste_drum = new WasteDrum(Material.iron).setBlockName("machine_waste_drum").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":waste_drum"); + machine_storage_drum = new StorageDrum(Material.iron).setBlockName("machine_storage_drum").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_storage_drum"); + + machine_schrabidium_transmutator = new MachineSchrabidiumTransmutator(Material.iron).setBlockName("machine_schrabidium_transmutator").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab); + + machine_siren = new MachineSiren(Material.iron).setBlockName("machine_siren").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_siren"); + + machine_spp_bottom = new SPPBottom(Material.iron).setBlockName("machine_spp_bottom").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + machine_spp_top = new SPPTop(Material.iron).setBlockName("machine_spp_top").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + + radiobox = new Radiobox(Material.iron).setBlockName("radiobox").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":radiobox"); + radiorec = new RadioRec(Material.iron).setBlockName("radiorec").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":radiorec"); + + machine_forcefield = new MachineForceField(Material.iron).setBlockName("machine_forcefield").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.missileTab).setBlockTextureName(RefStrings.MODID + ":machine_forcefield"); + + cheater_virus = new CheaterVirus(Material.iron).setBlockName("cheater_virus").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":cheater_virus"); + cheater_virus_seed = new CheaterVirusSeed(Material.iron).setBlockName("cheater_virus_seed").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":cheater_virus_seed"); + crystal_virus = new CrystalVirus(Material.iron).setBlockName("crystal_virus").setHardness(15.0F).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":crystal_virus"); + crystal_hardened = new BlockGeneric(Material.iron).setBlockName("crystal_hardened").setHardness(15.0F).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":crystal_hardened"); + crystal_pulsar = new CrystalPulsar(Material.iron).setBlockName("crystal_pulsar").setHardness(15.0F).setResistance(Float.POSITIVE_INFINITY).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":crystal_pulsar"); + taint = new BlockTaint(Material.iron).setBlockName("taint").setHardness(15.0F).setResistance(10.0F).setCreativeTab(null); + + vent_chlorine = new BlockVent(Material.iron).setBlockName("vent_chlorine").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":vent_chlorine"); + vent_cloud = new BlockVent(Material.iron).setBlockName("vent_cloud").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":vent_cloud"); + vent_pink_cloud = new BlockVent(Material.iron).setBlockName("vent_pink_cloud").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":vent_pink_cloud"); + vent_chlorine_seal = new BlockClorineSeal(Material.iron).setBlockName("vent_chlorine_seal").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab); + chlorine_gas = new BlockGasClorine().setBlockName("chlorine_gas").setHardness(0.0F).setResistance(0.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":chlorine_gas"); + + gas_radon = new BlockGasRadon().setBlockName("gas_radon").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_radon"); + gas_radon_dense = new BlockGasRadonDense().setBlockName("gas_radon_dense").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_radon_dense"); + gas_radon_tomb = new BlockGasRadonTomb().setBlockName("gas_radon_tomb").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_radon_tomb"); + gas_meltdown = new BlockGasMeltdown().setBlockName("gas_meltdown").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_meltdown"); + gas_monoxide = new BlockGasMonoxide().setBlockName("gas_monoxide").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_monoxide"); + gas_asbestos = new BlockGasAsbestos().setBlockName("gas_asbestos").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_asbestos"); + gas_coal = new BlockGasCoal().setBlockName("gas_coal").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_coal"); + gas_flammable = new BlockGasFlammable().setBlockName("gas_flammable").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_flammable"); + gas_explosive = new BlockGasExplosive().setBlockName("gas_explosive").setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":gas_explosive"); + vacuum = new BlockVacuum().setBlockName("vacuum").setResistance(1000000F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":vacuum"); + + absorber = new BlockAbsorber(Material.iron, 2.5F).setBlockName("absorber").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":absorber"); + absorber_red = new BlockAbsorber(Material.iron, 10F).setBlockName("absorber_red").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":absorber_red"); + absorber_green = new BlockAbsorber(Material.iron, 100F).setBlockName("absorber_green").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":absorber_green"); + absorber_pink = new BlockAbsorber(Material.iron, 10000F).setBlockName("absorber_pink").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":absorber_pink"); + decon = new BlockDecon(Material.iron).setBlockName("decon").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":decon_side"); + transission_hatch = new BlockTransission(Material.iron).setBlockName("transission_hatch").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":transission_hatch"); + + volcano_core = new BlockVolcano().setBlockName("volcano_core").setBlockUnbreakable().setResistance(10000.0F).setCreativeTab(MainRegistry.nukeTab).setBlockTextureName(RefStrings.MODID + ":volcano_core"); + volcano_rad_core = new BlockVolcano().setBlockName("volcano_rad_core").setBlockUnbreakable().setResistance(10000.0F).setCreativeTab(MainRegistry.nukeTab).setBlockTextureName(RefStrings.MODID + ":volcano_rad_core"); + + statue_elb = new DecoBlockAlt(Material.iron).setBlockName("#null").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY); + statue_elb_g = new DecoBlockAlt(Material.iron).setBlockName("#void").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY); + statue_elb_w = new DecoBlockAlt(Material.iron).setBlockName("#ngtv").setHardness(Float.POSITIVE_INFINITY).setResistance(Float.POSITIVE_INFINITY); + statue_elb_f = new DecoBlockAlt(Material.iron).setBlockName("#undef").setHardness(Float.POSITIVE_INFINITY).setLightLevel(1.0F).setResistance(Float.POSITIVE_INFINITY); + + mud_fluid = new MudFluid().setDensity(2500).setViscosity(3000).setLuminosity(5).setTemperature(2773).setUnlocalizedName("mud_fluid"); + FluidRegistry.registerFluid(mud_fluid); + mud_block = new MudBlock(mud_fluid, fluidmud.setReplaceable(), ModDamageSource.mudPoisoning).setBlockName("mud_block").setResistance(500F); + + acid_fluid = new AcidFluid().setDensity(2500).setViscosity(1500).setLuminosity(5).setTemperature(2773).setUnlocalizedName("acid_fluid"); + FluidRegistry.registerFluid(acid_fluid); + acid_block = new AcidBlock(acid_fluid, fluidacid.setReplaceable(), ModDamageSource.acid).setBlockName("acid_block").setResistance(500F); + + toxic_fluid = new ToxicFluid().setDensity(2500).setViscosity(2000).setLuminosity(15).setTemperature(2773).setUnlocalizedName("toxic_fluid"); + FluidRegistry.registerFluid(toxic_fluid); + toxic_block = new ToxicBlock(toxic_fluid, fluidtoxic.setReplaceable(), ModDamageSource.radiation).setBlockName("toxic_block").setResistance(500F); + + schrabidic_fluid = new SchrabidicFluid().setDensity(31200).setViscosity(500).setTemperature(273).setUnlocalizedName("schrabidic_fluid"); + FluidRegistry.registerFluid(schrabidic_fluid); + schrabidic_block = new SchrabidicBlock(schrabidic_fluid, fluidschrabidic.setReplaceable(), ModDamageSource.radiation).setBlockName("schrabidic_block").setResistance(500F); + + corium_fluid = new CoriumFluid().setDensity(600000).setViscosity(12000).setLuminosity(10).setTemperature(1500).setUnlocalizedName("corium_fluid"); + FluidRegistry.registerFluid(corium_fluid); + corium_block = new CoriumFinite(corium_fluid, fluidcorium).setBlockName("corium_block").setResistance(500F); + + volcanic_lava_fluid = new VolcanicFluid().setLuminosity(15).setDensity(3000).setViscosity(3000).setTemperature(1300).setUnlocalizedName("volcanic_lava_fluid"); + FluidRegistry.registerFluid(volcanic_lava_fluid); + volcanic_lava_block = new VolcanicBlock(volcanic_lava_fluid, Material.lava).setBlockName("volcanic_lava_block").setResistance(500F); + + rad_lava_fluid = new RadFluid().setLuminosity(15).setDensity(3000).setViscosity(3000).setTemperature(1300).setUnlocalizedName("rad_lava_fluid"); + FluidRegistry.registerFluid(rad_lava_fluid); + rad_lava_block = new RadBlock(rad_lava_fluid, Material.lava).setBlockName("rad_lava_block").setResistance(500F); + + sulfuric_acid_fluid = new GenericFluid("sulfuric_acid_fluid").setDensity(1840).setViscosity(1000).setTemperature(273); + FluidRegistry.registerFluid(sulfuric_acid_fluid); + sulfuric_acid_block = new GenericFluidBlock(sulfuric_acid_fluid, Material.water, "sulfuric_acid_still", "sulfuric_acid_flowing").setDamage(ModDamageSource.acid, 5F).setBlockName("sulfuric_acid_block").setResistance(500F); + + Fluid liquidConcrete = new GenericFluid("concrete_liquid").setViscosity(2000); + concrete_liquid = new GenericFiniteFluid(liquidConcrete, Material.rock, "concrete_liquid", "concrete_liquid_flowing").setQuantaPerBlock(4).setBlockName("concrete_liquid").setResistance(500F); + + dummy_block_vault = new DummyBlockVault(Material.iron).setBlockName("dummy_block_vault").setHardness(10.0F).setResistance(10000.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); + dummy_block_blast = new DummyBlockBlast(Material.iron).setBlockName("dummy_block_blast").setHardness(10.0F).setResistance(10000.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); + dummy_block_uf6 = new DummyBlockMachine(Material.iron, machine_uf6_tank, false).setBlockName("dummy_block_uf6").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_titanium"); + dummy_block_puf6 = new DummyBlockMachine(Material.iron, machine_puf6_tank, false).setBlockName("dummy_block_puf6").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); + dummy_plate_compact_launcher = new DummyBlockMachine(Material.iron, compact_launcher, false).setBounds(0, 16, 0, 16, 16, 16).setBlockName("dummy_plate_compact_launcher").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); + dummy_port_compact_launcher = new DummyBlockMachine(Material.iron, compact_launcher, true).setBlockName("dummy_port_compact_launcher").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); + dummy_plate_launch_table = new DummyBlockMachine(Material.iron, launch_table, false).setBounds(0, 16, 0, 16, 16, 16).setBlockName("dummy_plate_launch_table").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); + dummy_port_launch_table = new DummyBlockMachine(Material.iron, launch_table, true).setBlockName("dummy_port_launch_table").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); + dummy_plate_cargo = new DummyBlockMachine(Material.iron, sat_dock, false).setBounds(0, 0, 0, 16, 8, 16).setBlockName("dummy_plate_cargo").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":block_steel"); + + ntm_dirt = new BlockNTMDirt().setBlockName("ntm_dirt").setHardness(0.5F).setStepSound(Block.soundTypeGravel).setCreativeTab(null).setBlockTextureName("dirt"); + + pink_log = new BlockPinkLog().setBlockName("pink_log").setHardness(0.5F).setStepSound(Block.soundTypeWood).setCreativeTab(null); + pink_planks = new BlockGeneric(Material.wood).setBlockName("pink_planks").setStepSound(Block.soundTypeWood).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":pink_planks"); + pink_slab = new BlockPinkSlab(false, Material.wood).setBlockName("pink_slab").setStepSound(Block.soundTypeWood).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":pink_planks"); + pink_double_slab = new BlockPinkSlab(true, Material.wood).setBlockName("pink_double_slab").setStepSound(Block.soundTypeWood).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":pink_planks"); + pink_stairs = new BlockGenericStairs(pink_planks, 0).setBlockName("pink_stairs").setStepSound(Block.soundTypeWood).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":pink_planks"); + } + + private static void registerBlock() { + //Test + GameRegistry.registerBlock(event_tester, event_tester.getUnlocalizedName()); + GameRegistry.registerBlock(obj_tester, obj_tester.getUnlocalizedName()); + GameRegistry.registerBlock(test_core, test_core.getUnlocalizedName()); + GameRegistry.registerBlock(test_charge, test_charge.getUnlocalizedName()); + GameRegistry.registerBlock(structure_anchor, structure_anchor.getUnlocalizedName()); + + //Ores + GameRegistry.registerBlock(ore_uranium, ore_uranium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_uranium_scorched, ore_uranium_scorched.getUnlocalizedName()); + GameRegistry.registerBlock(ore_thorium, ore_thorium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_titanium, ore_titanium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_sulfur, ore_sulfur.getUnlocalizedName()); + GameRegistry.registerBlock(ore_niter, ore_niter.getUnlocalizedName()); + GameRegistry.registerBlock(ore_copper, ore_copper.getUnlocalizedName()); + GameRegistry.registerBlock(ore_tungsten, ore_tungsten.getUnlocalizedName()); + GameRegistry.registerBlock(ore_aluminium, ore_aluminium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_fluorite, ore_fluorite.getUnlocalizedName()); + GameRegistry.registerBlock(ore_beryllium, ore_beryllium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_lead, ore_lead.getUnlocalizedName()); + GameRegistry.registerBlock(ore_oil, ItemBlockLore.class, ore_oil.getUnlocalizedName()); + GameRegistry.registerBlock(ore_oil_empty, ore_oil_empty.getUnlocalizedName()); + GameRegistry.registerBlock(ore_oil_sand, ore_oil_sand.getUnlocalizedName()); + GameRegistry.registerBlock(ore_lignite, ore_lignite.getUnlocalizedName()); + GameRegistry.registerBlock(ore_asbestos, ore_asbestos.getUnlocalizedName()); + GameRegistry.registerBlock(ore_schrabidium, ItemBlockLore.class, ore_schrabidium.getUnlocalizedName()); + + //Rare Minerals + GameRegistry.registerBlock(ore_australium, ItemOreBlock.class, ore_australium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_rare, ItemOreBlock.class, ore_rare.getUnlocalizedName()); + GameRegistry.registerBlock(ore_cobalt, ore_cobalt.getUnlocalizedName()); + GameRegistry.registerBlock(ore_cinnebar, ore_cinnebar.getUnlocalizedName()); + GameRegistry.registerBlock(ore_coltan, ore_coltan.getUnlocalizedName()); + + //Stone clusters + GameRegistry.registerBlock(cluster_iron, ItemBlockBase.class, cluster_iron.getUnlocalizedName()); + GameRegistry.registerBlock(cluster_titanium, ItemBlockBase.class, cluster_titanium.getUnlocalizedName()); + GameRegistry.registerBlock(cluster_aluminium, ItemBlockBase.class, cluster_aluminium.getUnlocalizedName()); + GameRegistry.registerBlock(cluster_copper, ItemBlockBase.class, cluster_copper.getUnlocalizedName()); + + //Bedrock ores + GameRegistry.registerBlock(ore_bedrock_oil, ore_bedrock_oil.getUnlocalizedName()); + + //Nice Meme + GameRegistry.registerBlock(ore_coal_oil, ore_coal_oil.getUnlocalizedName()); + GameRegistry.registerBlock(ore_coal_oil_burning, ore_coal_oil_burning.getUnlocalizedName()); + + //Nether Ores + GameRegistry.registerBlock(ore_nether_coal, ore_nether_coal.getUnlocalizedName()); + GameRegistry.registerBlock(ore_nether_smoldering, ore_nether_smoldering.getUnlocalizedName()); + GameRegistry.registerBlock(ore_nether_uranium, ore_nether_uranium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_nether_uranium_scorched, ore_nether_uranium_scorched.getUnlocalizedName()); + GameRegistry.registerBlock(ore_nether_plutonium, ore_nether_plutonium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_nether_tungsten, ore_nether_tungsten.getUnlocalizedName()); + GameRegistry.registerBlock(ore_nether_sulfur, ore_nether_sulfur.getUnlocalizedName()); + GameRegistry.registerBlock(ore_nether_fire, ore_nether_fire.getUnlocalizedName()); + GameRegistry.registerBlock(ore_nether_cobalt, ore_nether_cobalt.getUnlocalizedName()); + GameRegistry.registerBlock(ore_nether_schrabidium, ItemBlockLore.class, ore_nether_schrabidium.getUnlocalizedName()); + + //Meteor Ores + register(ore_meteor); + + //Gneiss Ores + GameRegistry.registerBlock(ore_gneiss_iron, ore_gneiss_iron.getUnlocalizedName()); + GameRegistry.registerBlock(ore_gneiss_gold, ore_gneiss_gold.getUnlocalizedName()); + GameRegistry.registerBlock(ore_gneiss_uranium, ore_gneiss_uranium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_gneiss_uranium_scorched, ore_gneiss_uranium_scorched.getUnlocalizedName()); + GameRegistry.registerBlock(ore_gneiss_copper, ore_gneiss_copper.getUnlocalizedName()); + GameRegistry.registerBlock(ore_gneiss_asbestos, ore_gneiss_asbestos.getUnlocalizedName()); + GameRegistry.registerBlock(ore_gneiss_lithium, ore_gneiss_lithium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_gneiss_schrabidium, ItemBlockLore.class, ore_gneiss_schrabidium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_gneiss_rare, ItemOreBlock.class, ore_gneiss_rare.getUnlocalizedName()); + GameRegistry.registerBlock(ore_gneiss_gas, ore_gneiss_gas.getUnlocalizedName()); + + //Depth ores + GameRegistry.registerBlock(ore_depth_cinnebar, ItemBlockBase.class, ore_depth_cinnebar.getUnlocalizedName()); + GameRegistry.registerBlock(ore_depth_zirconium, ItemBlockBase.class, ore_depth_zirconium.getUnlocalizedName()); + GameRegistry.registerBlock(ore_depth_borax, ItemBlockBase.class, ore_depth_borax.getUnlocalizedName()); + GameRegistry.registerBlock(cluster_depth_iron, ItemBlockBase.class, cluster_depth_iron.getUnlocalizedName()); + GameRegistry.registerBlock(cluster_depth_titanium, ItemBlockBase.class, cluster_depth_titanium.getUnlocalizedName()); + GameRegistry.registerBlock(cluster_depth_tungsten, ItemBlockBase.class, cluster_depth_tungsten.getUnlocalizedName()); + GameRegistry.registerBlock(ore_alexandrite, ItemBlockBase.class, ore_alexandrite.getUnlocalizedName()); + + //Nether depth ores + GameRegistry.registerBlock(ore_depth_nether_neodymium, ItemBlockBase.class, ore_depth_nether_neodymium.getUnlocalizedName()); + + //Basalt ores + register(ore_basalt); + + //End Ores + GameRegistry.registerBlock(ore_tikite, ore_tikite.getUnlocalizedName()); + + //It's a meme you dip + GameRegistry.registerBlock(ore_random, ItemRandomOreBlock.class, ore_random.getUnlocalizedName()); + + //Bedrock ore + register(ore_bedrock); + register(ore_volcano); + + //Secret + register(stone_keyhole); + + //Resource-bearing Stones + register(stone_resource); + register(stalagmite); + register(stalactite); + register(stone_biome); + + //Stone Variants + GameRegistry.registerBlock(stone_porous, stone_porous.getUnlocalizedName()); + GameRegistry.registerBlock(stone_gneiss, stone_gneiss.getUnlocalizedName()); + GameRegistry.registerBlock(gneiss_brick, gneiss_brick.getUnlocalizedName()); + GameRegistry.registerBlock(gneiss_tile, gneiss_tile.getUnlocalizedName()); + GameRegistry.registerBlock(gneiss_chiseled, gneiss_chiseled.getUnlocalizedName()); + GameRegistry.registerBlock(stone_depth, ItemBlockBase.class, stone_depth.getUnlocalizedName()); + GameRegistry.registerBlock(depth_brick, ItemBlockBase.class, depth_brick.getUnlocalizedName()); + GameRegistry.registerBlock(depth_tiles, ItemBlockBase.class, depth_tiles.getUnlocalizedName()); + GameRegistry.registerBlock(stone_depth_nether, ItemBlockBase.class, stone_depth_nether.getUnlocalizedName()); + GameRegistry.registerBlock(depth_nether_brick, ItemBlockBase.class, depth_nether_brick.getUnlocalizedName()); + GameRegistry.registerBlock(depth_nether_tiles, ItemBlockBase.class, depth_nether_tiles.getUnlocalizedName()); + GameRegistry.registerBlock(depth_dnt, ItemBlockBase.class, depth_dnt.getUnlocalizedName()); + GameRegistry.registerBlock(basalt, basalt.getUnlocalizedName()); + GameRegistry.registerBlock(basalt_smooth, basalt_smooth.getUnlocalizedName()); + GameRegistry.registerBlock(basalt_brick, basalt_brick.getUnlocalizedName()); + GameRegistry.registerBlock(basalt_polished, basalt_polished.getUnlocalizedName()); + GameRegistry.registerBlock(basalt_tiles, basalt_tiles.getUnlocalizedName()); + //GameRegistry.registerBlock(stone_deep_cobble, ItemBlockBase.class, stone_deep_cobble.getUnlocalizedName()); + + //Blocks + GameRegistry.registerBlock(block_uranium, block_uranium.getUnlocalizedName()); + GameRegistry.registerBlock(block_u233, block_u233.getUnlocalizedName()); + GameRegistry.registerBlock(block_u235, block_u235.getUnlocalizedName()); + GameRegistry.registerBlock(block_u238, block_u238.getUnlocalizedName()); + GameRegistry.registerBlock(block_uranium_fuel, block_uranium_fuel.getUnlocalizedName()); + GameRegistry.registerBlock(block_neptunium, block_neptunium.getUnlocalizedName()); + GameRegistry.registerBlock(block_polonium, block_polonium.getUnlocalizedName()); + GameRegistry.registerBlock(block_mox_fuel, block_mox_fuel.getUnlocalizedName()); + GameRegistry.registerBlock(block_plutonium, block_plutonium.getUnlocalizedName()); + GameRegistry.registerBlock(block_pu238, block_pu238.getUnlocalizedName()); + GameRegistry.registerBlock(block_pu239, block_pu239.getUnlocalizedName()); + GameRegistry.registerBlock(block_pu240, block_pu240.getUnlocalizedName()); + GameRegistry.registerBlock(block_pu_mix, block_pu_mix.getUnlocalizedName()); + GameRegistry.registerBlock(block_plutonium_fuel, block_plutonium_fuel.getUnlocalizedName()); + GameRegistry.registerBlock(block_thorium, block_thorium.getUnlocalizedName()); + GameRegistry.registerBlock(block_thorium_fuel, block_thorium_fuel.getUnlocalizedName()); + GameRegistry.registerBlock(block_titanium, block_titanium.getUnlocalizedName()); + GameRegistry.registerBlock(block_sulfur, block_sulfur.getUnlocalizedName()); + GameRegistry.registerBlock(block_niter, block_niter.getUnlocalizedName()); + GameRegistry.registerBlock(block_copper, block_copper.getUnlocalizedName()); + GameRegistry.registerBlock(block_red_copper, block_red_copper.getUnlocalizedName()); + GameRegistry.registerBlock(block_advanced_alloy, block_advanced_alloy.getUnlocalizedName()); + GameRegistry.registerBlock(block_tungsten, block_tungsten.getUnlocalizedName()); + GameRegistry.registerBlock(block_aluminium, block_aluminium.getUnlocalizedName()); + GameRegistry.registerBlock(block_fluorite, block_fluorite.getUnlocalizedName()); + GameRegistry.registerBlock(block_beryllium, block_beryllium.getUnlocalizedName()); + GameRegistry.registerBlock(block_cobalt, block_cobalt.getUnlocalizedName()); + GameRegistry.registerBlock(block_steel, block_steel.getUnlocalizedName()); + GameRegistry.registerBlock(block_tcalloy, block_tcalloy.getUnlocalizedName()); + GameRegistry.registerBlock(block_cdalloy, block_cdalloy.getUnlocalizedName()); + GameRegistry.registerBlock(block_lead, block_lead.getUnlocalizedName()); + GameRegistry.registerBlock(block_bismuth, block_bismuth.getUnlocalizedName()); + GameRegistry.registerBlock(block_cadmium, block_cadmium.getUnlocalizedName()); + GameRegistry.registerBlock(block_coltan, block_coltan.getUnlocalizedName()); + GameRegistry.registerBlock(block_tantalium, block_tantalium.getUnlocalizedName()); + GameRegistry.registerBlock(block_niobium, block_niobium.getUnlocalizedName()); + GameRegistry.registerBlock(block_lithium, block_lithium.getUnlocalizedName()); + GameRegistry.registerBlock(block_zirconium, block_zirconium.getUnlocalizedName()); + GameRegistry.registerBlock(block_white_phosphorus, block_white_phosphorus.getUnlocalizedName()); + GameRegistry.registerBlock(block_red_phosphorus, block_red_phosphorus.getUnlocalizedName()); + GameRegistry.registerBlock(block_yellowcake, block_yellowcake.getUnlocalizedName()); + GameRegistry.registerBlock(block_scrap, block_scrap.getUnlocalizedName()); + GameRegistry.registerBlock(block_electrical_scrap, block_electrical_scrap.getUnlocalizedName()); + GameRegistry.registerBlock(block_fallout, block_fallout.getUnlocalizedName()); + GameRegistry.registerBlock(block_foam, block_foam.getUnlocalizedName()); + GameRegistry.registerBlock(block_graphite, block_graphite.getUnlocalizedName()); + register(block_coke); + GameRegistry.registerBlock(block_graphite_drilled, block_graphite_drilled.getUnlocalizedName()); + GameRegistry.registerBlock(block_graphite_fuel, block_graphite_fuel.getUnlocalizedName()); + GameRegistry.registerBlock(block_graphite_rod, block_graphite_rod.getUnlocalizedName()); + GameRegistry.registerBlock(block_graphite_plutonium, block_graphite_plutonium.getUnlocalizedName()); + GameRegistry.registerBlock(block_graphite_source, block_graphite_source.getUnlocalizedName()); + GameRegistry.registerBlock(block_graphite_lithium, block_graphite_lithium.getUnlocalizedName()); + GameRegistry.registerBlock(block_graphite_tritium, block_graphite_tritium.getUnlocalizedName()); + GameRegistry.registerBlock(block_graphite_detector, block_graphite_detector.getUnlocalizedName()); + GameRegistry.registerBlock(block_boron, block_boron.getUnlocalizedName()); + GameRegistry.registerBlock(block_insulator, block_insulator.getUnlocalizedName()); + GameRegistry.registerBlock(block_fiberglass, block_fiberglass.getUnlocalizedName()); + GameRegistry.registerBlock(block_asbestos, block_asbestos.getUnlocalizedName()); + GameRegistry.registerBlock(block_trinitite, block_trinitite.getUnlocalizedName()); + GameRegistry.registerBlock(block_waste, block_waste.getUnlocalizedName()); + GameRegistry.registerBlock(block_waste_painted, block_waste_painted.getUnlocalizedName()); + GameRegistry.registerBlock(block_waste_vitrified, block_waste_vitrified.getUnlocalizedName()); + GameRegistry.registerBlock(ancient_scrap, ancient_scrap.getUnlocalizedName()); + GameRegistry.registerBlock(block_corium, block_corium.getUnlocalizedName()); + GameRegistry.registerBlock(block_corium_cobble, block_corium_cobble.getUnlocalizedName()); + GameRegistry.registerBlock(block_schraranium, ItemBlockBase.class, block_schraranium.getUnlocalizedName()); + GameRegistry.registerBlock(block_schrabidium, ItemBlockBase.class, block_schrabidium.getUnlocalizedName()); + GameRegistry.registerBlock(block_schrabidate, ItemBlockBase.class, block_schrabidate.getUnlocalizedName()); + GameRegistry.registerBlock(block_solinium, ItemBlockBase.class, block_solinium.getUnlocalizedName()); + GameRegistry.registerBlock(block_schrabidium_fuel, ItemBlockBase.class, block_schrabidium_fuel.getUnlocalizedName()); + GameRegistry.registerBlock(block_euphemium, ItemBlockLore.class, block_euphemium.getUnlocalizedName()); + GameRegistry.registerBlock(block_schrabidium_cluster, ItemBlockBase.class, block_schrabidium_cluster.getUnlocalizedName()); + GameRegistry.registerBlock(block_euphemium_cluster, ItemBlockLore.class, block_euphemium_cluster.getUnlocalizedName()); + GameRegistry.registerBlock(block_dineutronium, block_dineutronium.getUnlocalizedName()); + GameRegistry.registerBlock(block_magnetized_tungsten, block_magnetized_tungsten.getUnlocalizedName()); + GameRegistry.registerBlock(block_combine_steel, block_combine_steel.getUnlocalizedName()); + GameRegistry.registerBlock(block_desh, block_desh.getUnlocalizedName()); + GameRegistry.registerBlock(block_dura_steel, block_dura_steel.getUnlocalizedName()); + GameRegistry.registerBlock(block_starmetal, block_starmetal.getUnlocalizedName()); + GameRegistry.registerBlock(block_polymer, block_polymer.getUnlocalizedName()); + GameRegistry.registerBlock(block_bakelite, block_bakelite.getUnlocalizedName()); + GameRegistry.registerBlock(block_rubber, block_rubber.getUnlocalizedName()); + GameRegistry.registerBlock(block_australium, ItemOreBlock.class, block_australium.getUnlocalizedName()); + GameRegistry.registerBlock(block_weidanium, ItemOreBlock.class, block_weidanium.getUnlocalizedName()); + GameRegistry.registerBlock(block_reiium, ItemOreBlock.class, block_reiium.getUnlocalizedName()); + GameRegistry.registerBlock(block_unobtainium, ItemOreBlock.class, block_unobtainium.getUnlocalizedName()); + GameRegistry.registerBlock(block_daffergon, ItemOreBlock.class, block_daffergon.getUnlocalizedName()); + GameRegistry.registerBlock(block_verticium, ItemOreBlock.class, block_verticium.getUnlocalizedName()); + register(block_cap); + GameRegistry.registerBlock(block_lanthanium, block_lanthanium.getUnlocalizedName()); + GameRegistry.registerBlock(block_ra226, block_ra226.getUnlocalizedName()); + GameRegistry.registerBlock(block_actinium, block_actinium.getUnlocalizedName()); + GameRegistry.registerBlock(block_tritium, block_tritium.getUnlocalizedName()); + GameRegistry.registerBlock(block_semtex, block_semtex.getUnlocalizedName()); + GameRegistry.registerBlock(block_c4, block_c4.getUnlocalizedName()); + GameRegistry.registerBlock(block_smore, block_smore.getUnlocalizedName()); + GameRegistry.registerBlock(block_slag, block_slag.getUnlocalizedName()); + + //Deco Blocks + GameRegistry.registerBlock(deco_titanium, deco_titanium.getUnlocalizedName()); + GameRegistry.registerBlock(deco_red_copper, deco_red_copper.getUnlocalizedName()); + GameRegistry.registerBlock(deco_tungsten, deco_tungsten.getUnlocalizedName()); + GameRegistry.registerBlock(deco_aluminium, deco_aluminium.getUnlocalizedName()); + GameRegistry.registerBlock(deco_steel, deco_steel.getUnlocalizedName()); + GameRegistry.registerBlock(deco_lead, deco_lead.getUnlocalizedName()); + GameRegistry.registerBlock(deco_beryllium, deco_beryllium.getUnlocalizedName()); + GameRegistry.registerBlock(deco_asbestos, deco_asbestos.getUnlocalizedName()); + GameRegistry.registerBlock(deco_emitter, ItemBlockBase.class, deco_emitter.getUnlocalizedName()); + GameRegistry.registerBlock(part_emitter, ItemBlockBase.class, part_emitter.getUnlocalizedName()); + GameRegistry.registerBlock(deco_loot, deco_loot.getUnlocalizedName()); + GameRegistry.registerBlock(pedestal, pedestal.getUnlocalizedName()); + GameRegistry.registerBlock(bobblehead, ItemBlockMeta.class, bobblehead.getUnlocalizedName()); + GameRegistry.registerBlock(snowglobe, ItemBlockMeta.class, snowglobe.getUnlocalizedName()); + GameRegistry.registerBlock(plushie, ItemBlockBase.class, plushie.getUnlocalizedName()); + GameRegistry.registerBlock(deco_rbmk, deco_rbmk.getUnlocalizedName()); + GameRegistry.registerBlock(deco_rbmk_smooth, deco_rbmk_smooth.getUnlocalizedName()); + + //Gravel + GameRegistry.registerBlock(gravel_obsidian, ItemBlockBlastInfo.class, gravel_obsidian.getUnlocalizedName()); + GameRegistry.registerBlock(gravel_diamond, ItemBlockLore.class, gravel_diamond.getUnlocalizedName()); + + //Lamps + GameRegistry.registerBlock(lamp_tritium_green_off, lamp_tritium_green_off.getUnlocalizedName()); + GameRegistry.registerBlock(lamp_tritium_green_on, lamp_tritium_green_on.getUnlocalizedName()); + GameRegistry.registerBlock(lamp_tritium_blue_off, lamp_tritium_blue_off.getUnlocalizedName()); + GameRegistry.registerBlock(lamp_tritium_blue_on, lamp_tritium_blue_on.getUnlocalizedName()); + GameRegistry.registerBlock(lamp_demon, lamp_demon.getUnlocalizedName()); + GameRegistry.registerBlock(lantern, lantern.getUnlocalizedName()); + GameRegistry.registerBlock(lantern_behemoth, lantern_behemoth.getUnlocalizedName()); + GameRegistry.registerBlock(spotlight_incandescent, spotlight_incandescent.getUnlocalizedName()); + GameRegistry.registerBlock(spotlight_incandescent_off, spotlight_incandescent_off.getUnlocalizedName()); + GameRegistry.registerBlock(spotlight_fluoro, spotlight_fluoro.getUnlocalizedName()); + GameRegistry.registerBlock(spotlight_fluoro_off, spotlight_fluoro_off.getUnlocalizedName()); + GameRegistry.registerBlock(spotlight_halogen, spotlight_halogen.getUnlocalizedName()); + GameRegistry.registerBlock(spotlight_halogen_off, spotlight_halogen_off.getUnlocalizedName()); + GameRegistry.registerBlock(spotlight_beam, spotlight_beam.getUnlocalizedName()); + register(floodlight); + GameRegistry.registerBlock(floodlight_beam, floodlight_beam.getUnlocalizedName()); + + //Reinforced Blocks + GameRegistry.registerBlock(asphalt, ItemBlockBlastInfo.class, asphalt.getUnlocalizedName()); + GameRegistry.registerBlock(asphalt_light, ItemBlockBlastInfo.class, asphalt_light.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_brick, ItemBlockBlastInfo.class, reinforced_brick.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_glass, ItemBlockBlastInfo.class, reinforced_glass.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_glass_pane, ItemBlockBlastInfo.class, reinforced_glass_pane.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_light, ItemBlockBlastInfo.class, reinforced_light.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_sand, ItemBlockBlastInfo.class, reinforced_sand.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_lamp_off, ItemBlockBlastInfo.class, reinforced_lamp_off.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_lamp_on, ItemBlockBlastInfo.class, reinforced_lamp_on.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_laminate, ItemBlockBlastInfo.class, reinforced_laminate.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_laminate_pane,ItemBlockBlastInfo.class, reinforced_laminate_pane.getUnlocalizedName()); + + //Bricks + GameRegistry.registerBlock(reinforced_stone, ItemBlockBlastInfo.class, reinforced_stone.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_ducrete, ItemBlockBlastInfo.class, reinforced_ducrete.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_smooth, ItemBlockBlastInfo.class, concrete_smooth.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_colored, ItemBlockColoredConcrete.class, concrete_colored.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_colored_ext, ItemBlockBlastInfo.class, concrete_colored_ext.getUnlocalizedName()); + GameRegistry.registerBlock(concrete, ItemBlockBlastInfo.class, concrete.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_asbestos, ItemBlockBlastInfo.class, concrete_asbestos.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_super, ItemBlockBlastInfo.class, concrete_super.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_super_broken, ItemBlockBlastInfo.class, concrete_super_broken.getUnlocalizedName()); + GameRegistry.registerBlock(ducrete_smooth, ItemBlockBlastInfo.class, ducrete_smooth.getUnlocalizedName()); + GameRegistry.registerBlock(ducrete, ItemBlockBlastInfo.class, ducrete.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_pillar, ItemBlockBlastInfo.class, concrete_pillar.getUnlocalizedName()); + GameRegistry.registerBlock(brick_concrete, ItemBlockBlastInfo.class, brick_concrete.getUnlocalizedName()); + GameRegistry.registerBlock(brick_concrete_mossy, ItemBlockBlastInfo.class, brick_concrete_mossy.getUnlocalizedName()); + GameRegistry.registerBlock(brick_concrete_cracked, ItemBlockBlastInfo.class, brick_concrete_cracked.getUnlocalizedName()); + GameRegistry.registerBlock(brick_concrete_broken, ItemBlockBlastInfo.class, brick_concrete_broken.getUnlocalizedName()); + GameRegistry.registerBlock(brick_concrete_marked, ItemBlockBlastInfo.class, brick_concrete_marked.getUnlocalizedName()); + GameRegistry.registerBlock(brick_ducrete, ItemBlockBlastInfo.class, brick_ducrete.getUnlocalizedName()); + GameRegistry.registerBlock(brick_obsidian, ItemBlockBlastInfo.class, brick_obsidian.getUnlocalizedName()); + GameRegistry.registerBlock(brick_compound, ItemBlockBlastInfo.class, brick_compound.getUnlocalizedName()); + GameRegistry.registerBlock(brick_light, ItemBlockBlastInfo.class, brick_light.getUnlocalizedName()); + GameRegistry.registerBlock(brick_asbestos, brick_asbestos.getUnlocalizedName()); + GameRegistry.registerBlock(brick_fire, ItemBlockBlastInfo.class, brick_fire.getUnlocalizedName()); + + GameRegistry.registerBlock(concrete_slab, ItemModSlab.class, concrete_slab.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_double_slab, ItemModSlab.class, concrete_double_slab.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_brick_slab, ItemModSlab.class, concrete_brick_slab.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_brick_double_slab, ItemModSlab.class, concrete_brick_double_slab.getUnlocalizedName()); + GameRegistry.registerBlock(brick_slab, ItemModSlab.class, brick_slab.getUnlocalizedName()); + GameRegistry.registerBlock(brick_double_slab, ItemModSlab.class, brick_double_slab.getUnlocalizedName()); + + GameRegistry.registerBlock(concrete_smooth_stairs, concrete_smooth_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_stairs, concrete_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(concrete_asbestos_stairs, concrete_asbestos_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(ducrete_smooth_stairs, ducrete_smooth_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(brick_concrete_stairs, brick_concrete_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(brick_concrete_mossy_stairs, brick_concrete_mossy_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(brick_concrete_cracked_stairs, brick_concrete_cracked_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(brick_concrete_broken_stairs, brick_concrete_broken_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(brick_ducrete_stairs, brick_ducrete_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_stone_stairs, reinforced_stone_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(reinforced_brick_stairs, reinforced_brick_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(brick_obsidian_stairs, brick_obsidian_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(brick_light_stairs, brick_light_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(brick_compound_stairs, brick_compound_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(brick_asbestos_stairs, brick_asbestos_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(brick_fire_stairs, brick_fire_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(ducrete_stairs, ducrete_stairs.getUnlocalizedName()); + GameRegistry.registerBlock(asphalt_stairs, asphalt_stairs.getUnlocalizedName()); + + //CMB Building Elements + GameRegistry.registerBlock(cmb_brick, ItemBlockBlastInfo.class, cmb_brick.getUnlocalizedName()); + GameRegistry.registerBlock(cmb_brick_reinforced, ItemBlockBlastInfo.class, cmb_brick_reinforced.getUnlocalizedName()); + + //Tiles + GameRegistry.registerBlock(vinyl_tile, ItemBlockBlastInfo.class, vinyl_tile.getUnlocalizedName()); //i would rather die than dip into fucking blocks with subtypes again + + GameRegistry.registerBlock(tile_lab, tile_lab.getUnlocalizedName()); + GameRegistry.registerBlock(tile_lab_cracked, tile_lab_cracked.getUnlocalizedName()); + GameRegistry.registerBlock(tile_lab_broken, tile_lab_broken.getUnlocalizedName()); + + //Other defensive stuff + GameRegistry.registerBlock(barbed_wire, barbed_wire.getUnlocalizedName()); + GameRegistry.registerBlock(barbed_wire_fire, barbed_wire_fire.getUnlocalizedName()); + GameRegistry.registerBlock(barbed_wire_poison, barbed_wire_poison.getUnlocalizedName()); + GameRegistry.registerBlock(barbed_wire_acid, barbed_wire_acid.getUnlocalizedName()); + GameRegistry.registerBlock(barbed_wire_wither, barbed_wire_wither.getUnlocalizedName()); + GameRegistry.registerBlock(barbed_wire_ultradeath, barbed_wire_ultradeath.getUnlocalizedName()); + GameRegistry.registerBlock(spikes, spikes.getUnlocalizedName()); + GameRegistry.registerBlock(tesla, tesla.getUnlocalizedName()); + + //Charger + GameRegistry.registerBlock(charger, charger.getUnlocalizedName()); + //GameRegistry.registerBlock(floodlight, floodlight.getUnlocalizedName()); + + //Decoration Blocks + GameRegistry.registerBlock(block_meteor, block_meteor.getUnlocalizedName()); + GameRegistry.registerBlock(block_meteor_cobble, block_meteor_cobble.getUnlocalizedName()); + GameRegistry.registerBlock(block_meteor_broken, block_meteor_broken.getUnlocalizedName()); + GameRegistry.registerBlock(block_meteor_molten, block_meteor_molten.getUnlocalizedName()); + GameRegistry.registerBlock(block_meteor_treasure, block_meteor_treasure.getUnlocalizedName()); + GameRegistry.registerBlock(meteor_polished, meteor_polished.getUnlocalizedName()); + GameRegistry.registerBlock(meteor_brick, meteor_brick.getUnlocalizedName()); + GameRegistry.registerBlock(meteor_brick_mossy, meteor_brick_mossy.getUnlocalizedName()); + GameRegistry.registerBlock(meteor_brick_cracked, meteor_brick_cracked.getUnlocalizedName()); + GameRegistry.registerBlock(meteor_brick_chiseled, meteor_brick_chiseled.getUnlocalizedName()); + GameRegistry.registerBlock(meteor_pillar, meteor_pillar.getUnlocalizedName()); + GameRegistry.registerBlock(meteor_spawner, meteor_spawner.getUnlocalizedName()); + GameRegistry.registerBlock(meteor_battery, ItemBlockLore.class, meteor_battery.getUnlocalizedName()); + GameRegistry.registerBlock(brick_jungle, brick_jungle.getUnlocalizedName()); + GameRegistry.registerBlock(brick_jungle_cracked, brick_jungle_cracked.getUnlocalizedName()); + GameRegistry.registerBlock(brick_jungle_fragile, brick_jungle_fragile.getUnlocalizedName()); + GameRegistry.registerBlock(brick_jungle_lava, brick_jungle_lava.getUnlocalizedName()); + GameRegistry.registerBlock(brick_jungle_ooze, brick_jungle_ooze.getUnlocalizedName()); + GameRegistry.registerBlock(brick_jungle_mystic, brick_jungle_mystic.getUnlocalizedName()); + GameRegistry.registerBlock(brick_jungle_trap, ItemTrapBlock.class, brick_jungle_trap.getUnlocalizedName()); + GameRegistry.registerBlock(brick_jungle_glyph, ItemGlyphBlock.class, brick_jungle_glyph.getUnlocalizedName()); + GameRegistry.registerBlock(brick_jungle_circle, brick_jungle_circle.getUnlocalizedName()); + GameRegistry.registerBlock(brick_red, brick_red.getUnlocalizedName()); + register(deco_computer); + register(deco_crt); + register(deco_toaster); + GameRegistry.registerBlock(filing_cabinet, ItemBlockBase.class, filing_cabinet.getUnlocalizedName()); + GameRegistry.registerBlock(tape_recorder, tape_recorder.getUnlocalizedName()); + GameRegistry.registerBlock(steel_poles, steel_poles.getUnlocalizedName()); + GameRegistry.registerBlock(pole_top, pole_top.getUnlocalizedName()); + GameRegistry.registerBlock(pole_satellite_receiver, pole_satellite_receiver.getUnlocalizedName()); + GameRegistry.registerBlock(steel_wall, steel_wall.getUnlocalizedName()); + GameRegistry.registerBlock(steel_corner, steel_corner.getUnlocalizedName()); + GameRegistry.registerBlock(steel_roof, steel_roof.getUnlocalizedName()); + GameRegistry.registerBlock(steel_beam, steel_beam.getUnlocalizedName()); + register(steel_scaffold); + GameRegistry.registerBlock(steel_grate, steel_grate.getUnlocalizedName()); + register(steel_grate_wide); + //register(scaffold_dynamic); + GameRegistry.registerBlock(deco_pipe, ItemBlockBase.class, deco_pipe.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_rusted, ItemBlockBase.class, deco_pipe_rusted.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_green, ItemBlockBase.class, deco_pipe_green.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_green_rusted, ItemBlockBase.class, deco_pipe_green_rusted.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_red, ItemBlockBase.class, deco_pipe_red.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_marked, ItemBlockBase.class, deco_pipe_marked.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_rim, ItemBlockBase.class, deco_pipe_rim.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_rim_rusted, ItemBlockBase.class, deco_pipe_rim_rusted.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_rim_green, ItemBlockBase.class, deco_pipe_rim_green.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_rim_green_rusted, ItemBlockBase.class, deco_pipe_rim_green_rusted.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_rim_red, ItemBlockBase.class, deco_pipe_rim_red.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_rim_marked, ItemBlockBase.class, deco_pipe_rim_marked.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_framed, ItemBlockBase.class, deco_pipe_framed.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_framed_rusted, ItemBlockBase.class, deco_pipe_framed_rusted.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_framed_green, ItemBlockBase.class, deco_pipe_framed_green.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_framed_green_rusted, ItemBlockBase.class, deco_pipe_framed_green_rusted.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_framed_red, ItemBlockBase.class, deco_pipe_framed_red.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_framed_marked, ItemBlockBase.class, deco_pipe_framed_marked.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_quad, ItemBlockBase.class, deco_pipe_quad.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_quad_rusted, ItemBlockBase.class, deco_pipe_quad_rusted.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_quad_green, ItemBlockBase.class, deco_pipe_quad_green.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_quad_green_rusted, ItemBlockBase.class, deco_pipe_quad_green_rusted.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_quad_red, ItemBlockBase.class, deco_pipe_quad_red.getUnlocalizedName()); + GameRegistry.registerBlock(deco_pipe_quad_marked, ItemBlockBase.class, deco_pipe_quad_marked.getUnlocalizedName()); + register(plant_flower); + register(plant_tall); + register(plant_dead); + register(reeds); + GameRegistry.registerBlock(mush, mush.getUnlocalizedName()); + GameRegistry.registerBlock(mush_block, mush_block.getUnlocalizedName()); + GameRegistry.registerBlock(mush_block_stem, mush_block_stem.getUnlocalizedName()); + register(glyphid_base); + register(glyphid_spawner); + GameRegistry.registerBlock(moon_turf, moon_turf.getUnlocalizedName()); + + //Waste + GameRegistry.registerBlock(waste_earth, waste_earth.getUnlocalizedName()); + GameRegistry.registerBlock(waste_mycelium, waste_mycelium.getUnlocalizedName()); + GameRegistry.registerBlock(waste_trinitite, waste_trinitite.getUnlocalizedName()); + GameRegistry.registerBlock(waste_trinitite_red, waste_trinitite_red.getUnlocalizedName()); + GameRegistry.registerBlock(waste_log, waste_log.getUnlocalizedName()); + GameRegistry.registerBlock(waste_leaves, waste_leaves.getUnlocalizedName()); + GameRegistry.registerBlock(waste_planks, waste_planks.getUnlocalizedName()); + GameRegistry.registerBlock(frozen_grass, frozen_grass.getUnlocalizedName()); + GameRegistry.registerBlock(frozen_dirt, frozen_dirt.getUnlocalizedName()); + GameRegistry.registerBlock(frozen_log, frozen_log.getUnlocalizedName()); + GameRegistry.registerBlock(frozen_planks, frozen_planks.getUnlocalizedName()); + GameRegistry.registerBlock(dirt_dead, dirt_dead.getUnlocalizedName()); + GameRegistry.registerBlock(dirt_oily, dirt_oily.getUnlocalizedName()); + GameRegistry.registerBlock(sand_dirty, sand_dirty.getUnlocalizedName()); + GameRegistry.registerBlock(sand_dirty_red, sand_dirty_red.getUnlocalizedName()); + GameRegistry.registerBlock(stone_cracked, stone_cracked.getUnlocalizedName()); + GameRegistry.registerBlock(fallout, fallout.getUnlocalizedName()); + GameRegistry.registerBlock(foam_layer, foam_layer.getUnlocalizedName()); + GameRegistry.registerBlock(sand_boron_layer, sand_boron_layer.getUnlocalizedName()); + GameRegistry.registerBlock(leaves_layer, leaves_layer.getUnlocalizedName()); + GameRegistry.registerBlock(oil_spill, oil_spill.getUnlocalizedName()); + GameRegistry.registerBlock(burning_earth, burning_earth.getUnlocalizedName()); + GameRegistry.registerBlock(tektite, tektite.getUnlocalizedName()); + GameRegistry.registerBlock(ore_tektite_osmiridium, ore_tektite_osmiridium.getUnlocalizedName()); + GameRegistry.registerBlock(impact_dirt, impact_dirt.getUnlocalizedName()); + + //RAD + register(sellafield_slaked); + register(sellafield_bedrock); + register(ore_sellafield_diamond); + register(ore_sellafield_emerald); + register(ore_sellafield_uranium_scorched); + register(ore_sellafield_schrabidium); + register(ore_sellafield_radgem); + GameRegistry.registerBlock(sellafield, ItemBlockNamedMeta.class, sellafield.getUnlocalizedName()); + + //Geysirs + GameRegistry.registerBlock(geysir_water, geysir_water.getUnlocalizedName()); + GameRegistry.registerBlock(geysir_chlorine, geysir_chlorine.getUnlocalizedName()); + GameRegistry.registerBlock(geysir_vapor, geysir_vapor.getUnlocalizedName()); + GameRegistry.registerBlock(geysir_nether, geysir_nether.getUnlocalizedName()); + + //Nukes + GameRegistry.registerBlock(nuke_gadget, nuke_gadget.getUnlocalizedName()); + GameRegistry.registerBlock(nuke_boy, nuke_boy.getUnlocalizedName()); + GameRegistry.registerBlock(nuke_man, nuke_man.getUnlocalizedName()); + GameRegistry.registerBlock(nuke_mike, nuke_mike.getUnlocalizedName()); + GameRegistry.registerBlock(nuke_tsar, nuke_tsar.getUnlocalizedName()); + GameRegistry.registerBlock(nuke_prototype, ItemPrototypeBlock.class, nuke_prototype.getUnlocalizedName()); + GameRegistry.registerBlock(nuke_fleija, nuke_fleija.getUnlocalizedName()); + GameRegistry.registerBlock(nuke_solinium, nuke_solinium.getUnlocalizedName()); + GameRegistry.registerBlock(nuke_n2, nuke_n2.getUnlocalizedName()); + GameRegistry.registerBlock(nuke_fstbmb, nuke_fstbmb.getUnlocalizedName()); + GameRegistry.registerBlock(nuke_custom, nuke_custom.getUnlocalizedName()); + + //Generic Bombs + GameRegistry.registerBlock(bomb_multi, bomb_multi.getUnlocalizedName()); + GameRegistry.registerBlock(crashed_balefire, crashed_balefire.getUnlocalizedName()); + GameRegistry.registerBlock(fireworks, fireworks.getUnlocalizedName()); + GameRegistry.registerBlock(dynamite, dynamite.getUnlocalizedName()); + GameRegistry.registerBlock(tnt, tnt.getUnlocalizedName()); + GameRegistry.registerBlock(semtex, semtex.getUnlocalizedName()); + GameRegistry.registerBlock(c4, c4.getUnlocalizedName()); + register(fissure_bomb); + + //Turrets + GameRegistry.registerBlock(turret_chekhov, turret_chekhov.getUnlocalizedName()); + GameRegistry.registerBlock(turret_friendly, turret_friendly.getUnlocalizedName()); + GameRegistry.registerBlock(turret_jeremy, turret_jeremy.getUnlocalizedName()); + GameRegistry.registerBlock(turret_tauon, turret_tauon.getUnlocalizedName()); + GameRegistry.registerBlock(turret_richard, turret_richard.getUnlocalizedName()); + GameRegistry.registerBlock(turret_howard, turret_howard.getUnlocalizedName()); + GameRegistry.registerBlock(turret_howard_damaged, turret_howard_damaged.getUnlocalizedName()); + GameRegistry.registerBlock(turret_maxwell, turret_maxwell.getUnlocalizedName()); + GameRegistry.registerBlock(turret_fritz, turret_fritz.getUnlocalizedName()); + //GameRegistry.registerBlock(turret_brandon, turret_brandon.getUnlocalizedName()); + GameRegistry.registerBlock(turret_arty, turret_arty.getUnlocalizedName()); + GameRegistry.registerBlock(turret_himars, turret_himars.getUnlocalizedName()); + GameRegistry.registerBlock(turret_sentry, turret_sentry.getUnlocalizedName()); + GameRegistry.registerBlock(turret_sentry_damaged, turret_sentry_damaged.getUnlocalizedName()); + + //Wall-mounted Explosives + GameRegistry.registerBlock(charge_dynamite, ItemBlockBase.class, charge_dynamite.getUnlocalizedName()); + GameRegistry.registerBlock(charge_miner, ItemBlockBase.class, charge_miner.getUnlocalizedName()); + GameRegistry.registerBlock(charge_c4, ItemBlockBase.class, charge_c4.getUnlocalizedName()); + GameRegistry.registerBlock(charge_semtex, ItemBlockBase.class, charge_semtex.getUnlocalizedName()); + + //Mines + GameRegistry.registerBlock(mine_ap, mine_ap.getUnlocalizedName()); + GameRegistry.registerBlock(mine_he, mine_he.getUnlocalizedName()); + GameRegistry.registerBlock(mine_shrap, mine_shrap.getUnlocalizedName()); + GameRegistry.registerBlock(mine_fat, mine_fat.getUnlocalizedName()); + + //Block Bombs + GameRegistry.registerBlock(flame_war, flame_war.getUnlocalizedName()); + GameRegistry.registerBlock(float_bomb, float_bomb.getUnlocalizedName()); + GameRegistry.registerBlock(therm_endo, therm_endo.getUnlocalizedName()); + GameRegistry.registerBlock(therm_exo, therm_exo.getUnlocalizedName()); + GameRegistry.registerBlock(emp_bomb, emp_bomb.getUnlocalizedName()); + GameRegistry.registerBlock(det_cord, det_cord.getUnlocalizedName()); + GameRegistry.registerBlock(det_charge, det_charge.getUnlocalizedName()); + GameRegistry.registerBlock(det_nuke, det_nuke.getUnlocalizedName()); + GameRegistry.registerBlock(det_miner, det_miner.getUnlocalizedName()); + GameRegistry.registerBlock(red_barrel, ItemBlockLore.class, red_barrel.getUnlocalizedName()); + GameRegistry.registerBlock(pink_barrel, ItemBlockLore.class, pink_barrel.getUnlocalizedName()); + GameRegistry.registerBlock(lox_barrel, ItemBlockLore.class, lox_barrel.getUnlocalizedName()); + GameRegistry.registerBlock(taint_barrel, taint_barrel.getUnlocalizedName()); + GameRegistry.registerBlock(yellow_barrel, yellow_barrel.getUnlocalizedName()); + GameRegistry.registerBlock(vitrified_barrel, vitrified_barrel.getUnlocalizedName()); + + //Siren + GameRegistry.registerBlock(machine_siren, machine_siren.getUnlocalizedName()); + + //This Thing + GameRegistry.registerBlock(broadcaster_pc, broadcaster_pc.getUnlocalizedName()); + + //Geiger Counter + GameRegistry.registerBlock(geiger, geiger.getUnlocalizedName()); + + //HEV Battery + GameRegistry.registerBlock(hev_battery, hev_battery.getUnlocalizedName()); + + //Chainlink Fence + GameRegistry.registerBlock(fence_metal, ItemBlockBase.class, fence_metal.getUnlocalizedName()); + + //Sands, Glass + GameRegistry.registerBlock(ash_digamma, ash_digamma.getUnlocalizedName()); + GameRegistry.registerBlock(sand_boron, sand_boron.getUnlocalizedName()); + GameRegistry.registerBlock(sand_lead, sand_lead.getUnlocalizedName()); + GameRegistry.registerBlock(sand_uranium, sand_uranium.getUnlocalizedName()); + GameRegistry.registerBlock(sand_polonium, sand_polonium.getUnlocalizedName()); + GameRegistry.registerBlock(sand_quartz, sand_quartz.getUnlocalizedName()); + GameRegistry.registerBlock(glass_boron, glass_boron.getUnlocalizedName()); + GameRegistry.registerBlock(glass_lead, glass_lead.getUnlocalizedName()); + GameRegistry.registerBlock(glass_uranium, glass_uranium.getUnlocalizedName()); + GameRegistry.registerBlock(glass_trinitite, glass_trinitite.getUnlocalizedName()); + GameRegistry.registerBlock(glass_polonium, glass_polonium.getUnlocalizedName()); + GameRegistry.registerBlock(glass_ash, glass_ash.getUnlocalizedName()); + GameRegistry.registerBlock(glass_quartz, glass_quartz.getUnlocalizedName()); + + //Silo Hatch + GameRegistry.registerBlock(seal_frame, seal_frame.getUnlocalizedName()); + GameRegistry.registerBlock(seal_controller, seal_controller.getUnlocalizedName()); + GameRegistry.registerBlock(seal_hatch, seal_hatch.getUnlocalizedName()); + + //Vault Door + GameRegistry.registerBlock(vault_door, vault_door.getUnlocalizedName()); + GameRegistry.registerBlock(blast_door, blast_door.getUnlocalizedName()); + GameRegistry.registerBlock(fire_door, fire_door.getUnlocalizedName()); + GameRegistry.registerBlock(transition_seal, transition_seal.getUnlocalizedName()); + GameRegistry.registerBlock(silo_hatch, silo_hatch.getUnlocalizedName()); + GameRegistry.registerBlock(silo_hatch_large, silo_hatch_large.getUnlocalizedName()); + GameRegistry.registerBlock(sliding_blast_door, sliding_blast_door.getUnlocalizedName()); + + //Doors + GameRegistry.registerBlock(door_metal, door_metal.getUnlocalizedName()); + GameRegistry.registerBlock(door_office, door_office.getUnlocalizedName()); + GameRegistry.registerBlock(door_bunker, door_bunker.getUnlocalizedName()); + GameRegistry.registerBlock(door_red, door_red.getUnlocalizedName()); + GameRegistry.registerBlock(secure_access_door, secure_access_door.getUnlocalizedName()); + GameRegistry.registerBlock(large_vehicle_door, large_vehicle_door.getUnlocalizedName()); + GameRegistry.registerBlock(qe_containment, qe_containment.getUnlocalizedName()); + GameRegistry.registerBlock(qe_sliding_door, qe_sliding_door.getUnlocalizedName()); + GameRegistry.registerBlock(round_airlock_door, round_airlock_door.getUnlocalizedName()); + GameRegistry.registerBlock(sliding_seal_door, sliding_seal_door.getUnlocalizedName()); + GameRegistry.registerBlock(water_door, water_door.getUnlocalizedName()); + + //Crates + register(crate_iron); + register(crate_steel); + register(crate_desh); + register(crate_tungsten); + register(crate_template); + register(safe); + register(mass_storage); + + //Junk + GameRegistry.registerBlock(boxcar, boxcar.getUnlocalizedName()); + GameRegistry.registerBlock(boat, boat.getUnlocalizedName()); + + //Machines + register(machine_autocrafter); + register(machine_funnel); + + register(anvil_iron); + register(anvil_lead); + register(anvil_steel); + register(anvil_desh); + register(anvil_saturnite); + register(anvil_ferrouranium); + register(anvil_bismuth_bronze); + register(anvil_arsenic_bronze); + register(anvil_schrabidate); + register(anvil_dnt); + register(anvil_osmiridium); + register(anvil_murky); + + GameRegistry.registerBlock(press_preheater, press_preheater.getUnlocalizedName()); + GameRegistry.registerBlock(machine_press, machine_press.getUnlocalizedName()); + GameRegistry.registerBlock(machine_epress, machine_epress.getUnlocalizedName()); + register(machine_conveyor_press); + register(pump_steam); + register(pump_electric); + register(heater_firebox); + register(heater_oven); + register(machine_ashpit); + register(heater_oilburner); + register(heater_electric); + register(heater_heatex); + register(furnace_iron); + register(furnace_steel); + register(furnace_combination); + register(machine_stirling); + register(machine_stirling_steel); + register(machine_stirling_creative); + register(machine_sawmill); + register(machine_crucible); + register(machine_strand_caster); + register(machine_boiler); + register(machine_industrial_boiler); + register(foundry_mold); + register(foundry_basin); + register(foundry_channel); + register(foundry_tank); + register(foundry_outlet); + register(foundry_slagtap); + register(slag); + register(machine_furnace_brick_off); + register(machine_furnace_brick_on); + register(machine_difurnace_off); + register(machine_difurnace_on); + register(machine_difurnace_extension); + GameRegistry.registerBlock(machine_difurnace_rtg_off, machine_difurnace_rtg_off.getUnlocalizedName()); + GameRegistry.registerBlock(machine_difurnace_rtg_on, machine_difurnace_rtg_on.getUnlocalizedName()); + GameRegistry.registerBlock(machine_centrifuge, machine_centrifuge.getUnlocalizedName()); + GameRegistry.registerBlock(machine_gascent, machine_gascent.getUnlocalizedName()); + GameRegistry.registerBlock(machine_fel, machine_fel.getUnlocalizedName()); + GameRegistry.registerBlock(machine_silex, machine_silex.getUnlocalizedName()); + register(machine_rotary_furnace); + GameRegistry.registerBlock(machine_crystallizer, machine_crystallizer.getUnlocalizedName()); + GameRegistry.registerBlock(machine_uf6_tank, machine_uf6_tank.getUnlocalizedName()); + GameRegistry.registerBlock(machine_puf6_tank, machine_puf6_tank.getUnlocalizedName()); + GameRegistry.registerBlock(machine_reactor_breeding, machine_reactor_breeding.getUnlocalizedName()); + GameRegistry.registerBlock(machine_nuke_furnace_off, machine_nuke_furnace_off.getUnlocalizedName()); + GameRegistry.registerBlock(machine_nuke_furnace_on, machine_nuke_furnace_on.getUnlocalizedName()); + GameRegistry.registerBlock(machine_rtg_furnace_off, machine_rtg_furnace_off.getUnlocalizedName()); + GameRegistry.registerBlock(machine_rtg_furnace_on, machine_rtg_furnace_on.getUnlocalizedName()); + register(machine_wood_burner); + register(machine_diesel); + register(machine_combustion_engine); + GameRegistry.registerBlock(machine_controller, machine_controller.getUnlocalizedName()); + GameRegistry.registerBlock(reactor_research, reactor_research.getUnlocalizedName()); + GameRegistry.registerBlock(reactor_zirnox, reactor_zirnox.getUnlocalizedName()); + GameRegistry.registerBlock(zirnox_destroyed, zirnox_destroyed.getUnlocalizedName()); + GameRegistry.registerBlock(machine_industrial_generator, machine_industrial_generator.getUnlocalizedName()); + GameRegistry.registerBlock(machine_radgen, machine_radgen.getUnlocalizedName()); + GameRegistry.registerBlock(machine_cyclotron, machine_cyclotron.getUnlocalizedName()); + GameRegistry.registerBlock(machine_exposure_chamber, machine_exposure_chamber.getUnlocalizedName()); + GameRegistry.registerBlock(machine_rtg_grey, machine_rtg_grey.getUnlocalizedName()); + GameRegistry.registerBlock(machine_geo, machine_geo.getUnlocalizedName()); + GameRegistry.registerBlock(machine_amgen, machine_amgen.getUnlocalizedName()); + GameRegistry.registerBlock(machine_minirtg, machine_minirtg.getUnlocalizedName()); + GameRegistry.registerBlock(machine_powerrtg, machine_powerrtg.getUnlocalizedName()); + GameRegistry.registerBlock(machine_radiolysis, machine_radiolysis.getUnlocalizedName()); + GameRegistry.registerBlock(machine_hephaestus, machine_hephaestus.getUnlocalizedName()); + GameRegistry.registerBlock(machine_spp_bottom, machine_spp_bottom.getUnlocalizedName()); + GameRegistry.registerBlock(machine_spp_top, machine_spp_top.getUnlocalizedName()); + + GameRegistry.registerBlock(hadron_plating, hadron_plating.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_plating_blue, hadron_plating_blue.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_plating_black, hadron_plating_black.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_plating_yellow, hadron_plating_yellow.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_plating_striped, hadron_plating_striped.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_plating_glass, hadron_plating_glass.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_plating_voltz, hadron_plating_voltz.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_coil_alloy, ItemBlockBase.class, hadron_coil_alloy.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_coil_gold, ItemBlockBase.class, hadron_coil_gold.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_coil_neodymium, ItemBlockBase.class, hadron_coil_neodymium.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_coil_magtung, ItemBlockBase.class, hadron_coil_magtung.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_coil_schrabidium, ItemBlockBase.class, hadron_coil_schrabidium.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_coil_schrabidate, ItemBlockBase.class, hadron_coil_schrabidate.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_coil_starmetal, ItemBlockBase.class, hadron_coil_starmetal.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_coil_chlorophyte, ItemBlockBase.class, hadron_coil_chlorophyte.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_coil_mese, ItemBlockBase.class, hadron_coil_mese.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_power, hadron_power.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_power_10m, hadron_power_10m.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_power_100m, hadron_power_100m.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_power_1g, hadron_power_1g.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_power_10g, hadron_power_10g.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_diode, hadron_diode.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_analysis, hadron_analysis.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_analysis_glass, hadron_analysis_glass.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_access, hadron_access.getUnlocalizedName()); + GameRegistry.registerBlock(hadron_core, hadron_core.getUnlocalizedName()); + register(hadron_cooler); + + GameRegistry.registerBlock(rbmk_rod, rbmk_rod.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_rod_mod, rbmk_rod_mod.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_rod_reasim, rbmk_rod_reasim.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_rod_reasim_mod, rbmk_rod_reasim_mod.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_control, rbmk_control.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_control_mod, rbmk_control_mod.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_control_auto, rbmk_control_auto.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_blank, rbmk_blank.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_boiler, rbmk_boiler.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_reflector, rbmk_reflector.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_absorber, rbmk_absorber.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_moderator, rbmk_moderator.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_outgasser, rbmk_outgasser.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_storage, rbmk_storage.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_cooler, rbmk_cooler.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_heater, rbmk_heater.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_console, rbmk_console.getUnlocalizedName()); + GameRegistry.registerBlock(rbmk_crane_console, rbmk_crane_console.getUnlocalizedName()); + register(rbmk_loader); + register(rbmk_steam_inlet); + register(rbmk_steam_outlet); + GameRegistry.registerBlock(pribris, pribris.getUnlocalizedName()); + GameRegistry.registerBlock(pribris_burning, pribris_burning.getUnlocalizedName()); + GameRegistry.registerBlock(pribris_radiating, pribris_radiating.getUnlocalizedName()); + GameRegistry.registerBlock(pribris_digamma, pribris_digamma.getUnlocalizedName()); + + GameRegistry.registerBlock(red_cable, red_cable.getUnlocalizedName()); + GameRegistry.registerBlock(red_cable_classic, red_cable_classic.getUnlocalizedName()); + GameRegistry.registerBlock(red_cable_paintable, red_cable_paintable.getUnlocalizedName()); + register(red_cable_gauge); + GameRegistry.registerBlock(red_wire_coated, red_wire_coated.getUnlocalizedName()); + GameRegistry.registerBlock(red_connector, ItemBlockBase.class, red_connector.getUnlocalizedName()); + GameRegistry.registerBlock(red_pylon, ItemBlockBase.class, red_pylon.getUnlocalizedName()); + register(red_pylon_medium_wood); + register(red_pylon_medium_wood_transformer); + register(red_pylon_medium_steel); + register(red_pylon_medium_steel_transformer); + GameRegistry.registerBlock(red_pylon_large, ItemBlockBase.class, red_pylon_large.getUnlocalizedName()); + GameRegistry.registerBlock(substation, ItemBlockBase.class, substation.getUnlocalizedName()); + GameRegistry.registerBlock(cable_switch, cable_switch.getUnlocalizedName()); + GameRegistry.registerBlock(cable_detector, cable_detector.getUnlocalizedName()); + GameRegistry.registerBlock(cable_diode, ItemBlockBase.class, cable_diode.getUnlocalizedName()); + GameRegistry.registerBlock(machine_detector, machine_detector.getUnlocalizedName()); + register(fluid_duct_neo); + register(fluid_duct_box); + register(fluid_duct_exhaust); + register(fluid_duct_paintable); + register(fluid_duct_gauge); + register(fluid_valve); + register(fluid_switch); + register(machine_drain); + register(radio_torch_sender); + register(radio_torch_receiver); + register(radio_torch_counter); + register(radio_torch_logic); + register(radio_telex); + + register(crane_extractor); + register(crane_inserter); + register(crane_grabber); + register(crane_router); + register(crane_boxer); + register(crane_unboxer); + register(conveyor); + register(conveyor_express); + register(conveyor_double); + register(conveyor_triple); + register(conveyor_chute); + register(conveyor_lift); + register(crane_splitter); + register(crane_partitioner); + register(drone_waypoint); + register(drone_crate); + register(drone_waypoint_request); + register(drone_dock); + register(drone_crate_provider); + register(drone_crate_requester); + register(fan); + register(piston_inserter); + + GameRegistry.registerBlock(chain, chain.getUnlocalizedName()); + GameRegistry.registerBlock(ladder_sturdy, ladder_sturdy.getUnlocalizedName()); + GameRegistry.registerBlock(ladder_iron, ladder_iron.getUnlocalizedName()); + GameRegistry.registerBlock(ladder_gold, ladder_gold.getUnlocalizedName()); + GameRegistry.registerBlock(ladder_titanium, ladder_titanium.getUnlocalizedName()); + GameRegistry.registerBlock(ladder_copper, ladder_copper.getUnlocalizedName()); + GameRegistry.registerBlock(ladder_tungsten, ladder_tungsten.getUnlocalizedName()); + GameRegistry.registerBlock(ladder_aluminium, ladder_aluminium.getUnlocalizedName()); + GameRegistry.registerBlock(ladder_steel, ladder_steel.getUnlocalizedName()); + GameRegistry.registerBlock(ladder_lead, ladder_lead.getUnlocalizedName()); + GameRegistry.registerBlock(ladder_cobalt, ladder_cobalt.getUnlocalizedName()); + + register(barrel_plastic); + register(barrel_corroded); + register(barrel_iron); + register(barrel_steel); + register(barrel_tcalloy); + register(barrel_antimatter); + register(machine_battery_potato); + register(machine_battery); + register(machine_lithium_battery); + register(machine_schrabidium_battery); + register(machine_dineutronium_battery); + register(machine_fensu); + register(capacitor_bus); + register(capacitor_copper); + register(capacitor_gold); + register(capacitor_niobium); + register(capacitor_tantalium); + register(capacitor_schrabidate); + GameRegistry.registerBlock(machine_transformer, machine_transformer.getUnlocalizedName()); + GameRegistry.registerBlock(machine_transformer_20, machine_transformer_20.getUnlocalizedName()); + GameRegistry.registerBlock(machine_transformer_dnt, machine_transformer_dnt.getUnlocalizedName()); + GameRegistry.registerBlock(machine_transformer_dnt_20, machine_transformer_dnt_20.getUnlocalizedName()); + GameRegistry.registerBlock(machine_converter_he_rf, machine_converter_he_rf.getUnlocalizedName()); + GameRegistry.registerBlock(machine_converter_rf_he, machine_converter_rf_he.getUnlocalizedName()); + GameRegistry.registerBlock(machine_electric_furnace_off, machine_electric_furnace_off.getUnlocalizedName()); + GameRegistry.registerBlock(machine_electric_furnace_on, machine_electric_furnace_on.getUnlocalizedName()); + GameRegistry.registerBlock(machine_arc_furnace_off, machine_arc_furnace_off.getUnlocalizedName()); + GameRegistry.registerBlock(machine_arc_furnace_on, machine_arc_furnace_on.getUnlocalizedName()); + GameRegistry.registerBlock(machine_microwave, machine_microwave.getUnlocalizedName()); + GameRegistry.registerBlock(machine_assembler, machine_assembler.getUnlocalizedName()); + GameRegistry.registerBlock(machine_assemfac, machine_assemfac.getUnlocalizedName()); + GameRegistry.registerBlock(machine_chemplant, machine_chemplant.getUnlocalizedName()); + GameRegistry.registerBlock(machine_chemfac, machine_chemfac.getUnlocalizedName()); + register(machine_arc_welder); + register(machine_soldering_station); + register(machine_arc_furnace); + register(machine_mixer); + register(machine_fluidtank); + register(machine_bat9000); + register(machine_orbus); + GameRegistry.registerBlock(machine_boiler_off, machine_boiler_off.getUnlocalizedName()); + register(machine_steam_engine); + register(machine_turbine); + register(machine_large_turbine); + register(machine_chungus); + GameRegistry.registerBlock(machine_condenser, machine_condenser.getUnlocalizedName()); + GameRegistry.registerBlock(machine_tower_small, machine_tower_small.getUnlocalizedName()); + GameRegistry.registerBlock(machine_tower_large, machine_tower_large.getUnlocalizedName()); + register(machine_condenser_powered); + GameRegistry.registerBlock(machine_deuterium_extractor, machine_deuterium_extractor.getUnlocalizedName()); + GameRegistry.registerBlock(machine_deuterium_tower, machine_deuterium_tower.getUnlocalizedName()); + GameRegistry.registerBlock(machine_liquefactor, ItemBlockBase.class, machine_liquefactor.getUnlocalizedName()); + GameRegistry.registerBlock(machine_solidifier, ItemBlockBase.class, machine_solidifier.getUnlocalizedName()); + register(machine_compressor); + GameRegistry.registerBlock(machine_electrolyser, machine_electrolyser.getUnlocalizedName()); + GameRegistry.registerBlock(machine_waste_drum, machine_waste_drum.getUnlocalizedName()); + GameRegistry.registerBlock(machine_storage_drum, machine_storage_drum.getUnlocalizedName()); + GameRegistry.registerBlock(machine_shredder, machine_shredder.getUnlocalizedName()); + register(machine_well); + register(machine_pumpjack); + register(machine_fracking_tower); + register(machine_flare); + register(chimney_brick); + register(chimney_industrial); + register(machine_refinery); + register(machine_vacuum_distill); + register(machine_fraction_tower); + register(fraction_spacer); + register(machine_catalytic_cracker); + register(machine_catalytic_reformer); + register(machine_hydrotreater); + register(machine_coker); + register(machine_pyrooven); + register(machine_autosaw); + register(machine_excavator); + register(machine_ore_slopper); + register(machine_mining_laser); + register(barricade); + register(machine_turbofan); + register(machine_turbinegas); + register(machine_lpw2); + GameRegistry.registerBlock(machine_schrabidium_transmutator, machine_schrabidium_transmutator.getUnlocalizedName()); + GameRegistry.registerBlock(machine_teleporter, machine_teleporter.getUnlocalizedName()); + GameRegistry.registerBlock(teleanchor, teleanchor.getUnlocalizedName()); + GameRegistry.registerBlock(field_disturber, field_disturber.getUnlocalizedName()); + GameRegistry.registerBlock(machine_satlinker, machine_satlinker.getUnlocalizedName()); + GameRegistry.registerBlock(machine_keyforge, machine_keyforge.getUnlocalizedName()); + GameRegistry.registerBlock(machine_armor_table, machine_armor_table.getUnlocalizedName()); + GameRegistry.registerBlock(machine_forcefield, machine_forcefield.getUnlocalizedName()); + GameRegistry.registerBlock(radiorec, radiorec.getUnlocalizedName()); + GameRegistry.registerBlock(radiobox, radiobox.getUnlocalizedName()); + + //Multiblock Parts + GameRegistry.registerBlock(struct_launcher, struct_launcher.getUnlocalizedName()); + GameRegistry.registerBlock(struct_scaffold, struct_scaffold.getUnlocalizedName()); + GameRegistry.registerBlock(struct_launcher_core, struct_launcher_core.getUnlocalizedName()); + GameRegistry.registerBlock(struct_launcher_core_large, struct_launcher_core_large.getUnlocalizedName()); + GameRegistry.registerBlock(struct_soyuz_core, struct_soyuz_core.getUnlocalizedName()); + GameRegistry.registerBlock(struct_iter_core, struct_iter_core.getUnlocalizedName()); + GameRegistry.registerBlock(struct_plasma_core, struct_plasma_core.getUnlocalizedName()); + GameRegistry.registerBlock(struct_watz_core, struct_watz_core.getUnlocalizedName()); + GameRegistry.registerBlock(struct_icf_core, struct_icf_core.getUnlocalizedName()); + + //Absorbers + GameRegistry.registerBlock(absorber, absorber.getUnlocalizedName()); + GameRegistry.registerBlock(absorber_red, absorber_red.getUnlocalizedName()); + GameRegistry.registerBlock(absorber_green, absorber_green.getUnlocalizedName()); + GameRegistry.registerBlock(absorber_pink, absorber_pink.getUnlocalizedName()); + GameRegistry.registerBlock(decon, decon.getUnlocalizedName()); + GameRegistry.registerBlock(transission_hatch, transission_hatch.getUnlocalizedName()); + + //Solar Tower Blocks + GameRegistry.registerBlock(machine_solar_boiler, machine_solar_boiler.getUnlocalizedName()); + GameRegistry.registerBlock(solar_mirror, solar_mirror.getUnlocalizedName()); + + //Literal fucking garbage + GameRegistry.registerBlock(factory_titanium_hull, factory_titanium_hull.getUnlocalizedName()); + GameRegistry.registerBlock(factory_advanced_hull, factory_advanced_hull.getUnlocalizedName()); + + //CM stuff + register(custom_machine, ItemCustomMachine.class); + register(cm_block); + register(cm_sheet); + register(cm_engine); + register(cm_tank); + register(cm_circuit); + register(cm_port); + register(cm_flux); + register(cm_heat); + register(cm_anchor); + + //PWR + register(pwr_fuel); + register(pwr_control); + register(pwr_channel); + register(pwr_heatex); + register(pwr_heatsink); + register(pwr_neutron_source); + register(pwr_reflector); + register(pwr_casing); + register(pwr_port); + register(pwr_controller); + register(pwr_block); + + //Multiblock Generators + register(fusion_conductor); + GameRegistry.registerBlock(fusion_center, fusion_center.getUnlocalizedName()); + GameRegistry.registerBlock(fusion_motor, fusion_motor.getUnlocalizedName()); + GameRegistry.registerBlock(fusion_heater, fusion_heater.getUnlocalizedName()); + GameRegistry.registerBlock(fusion_hatch, fusion_hatch.getUnlocalizedName()); + GameRegistry.registerBlock(plasma, ItemBlockLore.class, plasma.getUnlocalizedName()); + GameRegistry.registerBlock(iter, iter.getUnlocalizedName()); + GameRegistry.registerBlock(plasma_heater, plasma_heater.getUnlocalizedName()); + + register(watz_element); + register(watz_cooler); + register(watz_end); + register(watz); + register(watz_pump); + + register(machine_icf_press); + register(icf_laser_component); + register(icf_controller); + register(icf_block); + register(icf_component); + register(icf); + + //E + GameRegistry.registerBlock(balefire, balefire.getUnlocalizedName()); + GameRegistry.registerBlock(fire_digamma, fire_digamma.getUnlocalizedName()); + GameRegistry.registerBlock(digamma_matter, digamma_matter.getUnlocalizedName()); + register(volcano_core); + register(volcano_rad_core); + + //Dark Fusion Core + GameRegistry.registerBlock(dfc_emitter, dfc_emitter.getUnlocalizedName()); + GameRegistry.registerBlock(dfc_injector, dfc_injector.getUnlocalizedName()); + GameRegistry.registerBlock(dfc_receiver, dfc_receiver.getUnlocalizedName()); + GameRegistry.registerBlock(dfc_stabilizer, dfc_stabilizer.getUnlocalizedName()); + GameRegistry.registerBlock(dfc_core, dfc_core.getUnlocalizedName()); + + //Missile Blocks + GameRegistry.registerBlock(machine_missile_assembly, machine_missile_assembly.getUnlocalizedName()); + GameRegistry.registerBlock(launch_pad, launch_pad.getUnlocalizedName()); + GameRegistry.registerBlock(launch_pad_rusted, launch_pad_rusted.getUnlocalizedName()); + GameRegistry.registerBlock(launch_pad_large, launch_pad_large.getUnlocalizedName()); + GameRegistry.registerBlock(compact_launcher, compact_launcher.getUnlocalizedName()); + GameRegistry.registerBlock(launch_table, launch_table.getUnlocalizedName()); + GameRegistry.registerBlock(soyuz_launcher, soyuz_launcher.getUnlocalizedName()); + GameRegistry.registerBlock(sat_dock, sat_dock.getUnlocalizedName()); + GameRegistry.registerBlock(soyuz_capsule, soyuz_capsule.getUnlocalizedName()); + GameRegistry.registerBlock(machine_radar, machine_radar.getUnlocalizedName()); + GameRegistry.registerBlock(machine_radar_large, machine_radar_large.getUnlocalizedName()); + GameRegistry.registerBlock(radar_screen, radar_screen.getUnlocalizedName()); + + //Guide + GameRegistry.registerBlock(book_guide, book_guide.getUnlocalizedName()); + + //Sat Blocks + GameRegistry.registerBlock(sat_mapper, sat_mapper.getUnlocalizedName()); + GameRegistry.registerBlock(sat_scanner, sat_scanner.getUnlocalizedName()); + GameRegistry.registerBlock(sat_radar, sat_radar.getUnlocalizedName()); + GameRegistry.registerBlock(sat_laser, sat_laser.getUnlocalizedName()); + GameRegistry.registerBlock(sat_foeq, sat_foeq.getUnlocalizedName()); + GameRegistry.registerBlock(sat_resonator, sat_resonator.getUnlocalizedName()); + + //Rails + GameRegistry.registerBlock(rail_wood, ItemBlockBase.class, rail_wood.getUnlocalizedName()); + GameRegistry.registerBlock(rail_narrow, ItemBlockBase.class, rail_narrow.getUnlocalizedName()); + GameRegistry.registerBlock(rail_highspeed, ItemBlockBase.class, rail_highspeed.getUnlocalizedName()); + GameRegistry.registerBlock(rail_booster, ItemBlockBase.class, rail_booster.getUnlocalizedName()); + register(rail_narrow_straight); + register(rail_narrow_curve); + register(rail_large_straight); + register(rail_large_straight_short); + register(rail_large_curve); + register(rail_large_curve_7); + register(rail_large_curve_9); + register(rail_large_ramp); + register(rail_large_buffer); + register(rail_large_switch); + register(rail_large_switch_flipped); + + //Crate + GameRegistry.registerBlock(crate, crate.getUnlocalizedName()); + GameRegistry.registerBlock(crate_weapon, crate_weapon.getUnlocalizedName()); + GameRegistry.registerBlock(crate_lead, crate_lead.getUnlocalizedName()); + GameRegistry.registerBlock(crate_metal, crate_metal.getUnlocalizedName()); + GameRegistry.registerBlock(crate_red, crate_red.getUnlocalizedName()); + GameRegistry.registerBlock(crate_can, crate_can.getUnlocalizedName()); + GameRegistry.registerBlock(crate_ammo, crate_ammo.getUnlocalizedName()); + GameRegistry.registerBlock(crate_jungle, crate_jungle.getUnlocalizedName()); + + //ElB + GameRegistry.registerBlock(statue_elb, statue_elb.getUnlocalizedName()); + GameRegistry.registerBlock(statue_elb_g, statue_elb_g.getUnlocalizedName()); + GameRegistry.registerBlock(statue_elb_w, statue_elb_w.getUnlocalizedName()); + GameRegistry.registerBlock(statue_elb_f, statue_elb_f.getUnlocalizedName()); + + //Fluids + GameRegistry.registerBlock(mud_block, mud_block.getUnlocalizedName()); + GameRegistry.registerBlock(acid_block, acid_block.getUnlocalizedName()); + GameRegistry.registerBlock(toxic_block, toxic_block.getUnlocalizedName()); + GameRegistry.registerBlock(schrabidic_block, schrabidic_block.getUnlocalizedName()); + GameRegistry.registerBlock(corium_block, corium_block.getUnlocalizedName()); + GameRegistry.registerBlock(volcanic_lava_block, volcanic_lava_block.getUnlocalizedName()); + GameRegistry.registerBlock(rad_lava_block, rad_lava_block.getUnlocalizedName()); + GameRegistry.registerBlock(sulfuric_acid_block, sulfuric_acid_block.getUnlocalizedName()); + //GameRegistry.registerBlock(concrete_liquid, concrete_liquid.getUnlocalizedName()); + + //Multiblock Dummy Blocks + GameRegistry.registerBlock(dummy_block_vault, dummy_block_vault.getUnlocalizedName()); + GameRegistry.registerBlock(dummy_block_blast, dummy_block_blast.getUnlocalizedName()); + GameRegistry.registerBlock(dummy_block_uf6, dummy_block_uf6.getUnlocalizedName()); + GameRegistry.registerBlock(dummy_block_puf6, dummy_block_puf6.getUnlocalizedName()); + GameRegistry.registerBlock(dummy_plate_compact_launcher, dummy_plate_compact_launcher.getUnlocalizedName()); + GameRegistry.registerBlock(dummy_port_compact_launcher, dummy_port_compact_launcher.getUnlocalizedName()); + GameRegistry.registerBlock(dummy_plate_launch_table, dummy_plate_launch_table.getUnlocalizedName()); + GameRegistry.registerBlock(dummy_port_launch_table, dummy_port_launch_table.getUnlocalizedName()); + GameRegistry.registerBlock(dummy_plate_cargo, dummy_plate_cargo.getUnlocalizedName()); + + //Other Technical Blocks + GameRegistry.registerBlock(oil_pipe, oil_pipe.getUnlocalizedName()); + GameRegistry.registerBlock(vent_chlorine, vent_chlorine.getUnlocalizedName()); + GameRegistry.registerBlock(vent_cloud, vent_cloud.getUnlocalizedName()); + GameRegistry.registerBlock(vent_pink_cloud, vent_pink_cloud.getUnlocalizedName()); + GameRegistry.registerBlock(vent_chlorine_seal, vent_chlorine_seal.getUnlocalizedName()); + GameRegistry.registerBlock(chlorine_gas, chlorine_gas.getUnlocalizedName()); + GameRegistry.registerBlock(gas_radon, gas_radon.getUnlocalizedName()); + GameRegistry.registerBlock(gas_radon_dense, gas_radon_dense.getUnlocalizedName()); + GameRegistry.registerBlock(gas_radon_tomb, gas_radon_tomb.getUnlocalizedName()); + GameRegistry.registerBlock(gas_meltdown, gas_meltdown.getUnlocalizedName()); + GameRegistry.registerBlock(gas_monoxide, gas_monoxide.getUnlocalizedName()); + GameRegistry.registerBlock(gas_asbestos, gas_asbestos.getUnlocalizedName()); + GameRegistry.registerBlock(gas_coal, gas_coal.getUnlocalizedName()); + GameRegistry.registerBlock(gas_flammable, gas_flammable.getUnlocalizedName()); + GameRegistry.registerBlock(gas_explosive, gas_explosive.getUnlocalizedName()); + GameRegistry.registerBlock(vacuum, vacuum.getUnlocalizedName()); + + //??? + GameRegistry.registerBlock(crystal_virus, crystal_virus.getUnlocalizedName()); + GameRegistry.registerBlock(crystal_hardened, crystal_hardened.getUnlocalizedName()); + GameRegistry.registerBlock(crystal_pulsar, crystal_pulsar.getUnlocalizedName()); + GameRegistry.registerBlock(taint, ItemTaintBlock.class, taint.getUnlocalizedName()); + GameRegistry.registerBlock(cheater_virus, cheater_virus.getUnlocalizedName()); + GameRegistry.registerBlock(cheater_virus_seed, cheater_virus_seed.getUnlocalizedName()); + GameRegistry.registerBlock(ntm_dirt, ntm_dirt.getUnlocalizedName()); + GameRegistry.registerBlock(pink_log, pink_log.getUnlocalizedName()); + GameRegistry.registerBlock(pink_planks, pink_planks.getUnlocalizedName()); + GameRegistry.registerBlock(pink_slab, pink_slab.getUnlocalizedName()); + GameRegistry.registerBlock(pink_double_slab, pink_double_slab.getUnlocalizedName()); + GameRegistry.registerBlock(pink_stairs, pink_stairs.getUnlocalizedName()); + } + + private static void register(Block b) { + GameRegistry.registerBlock(b, ItemBlockBase.class, b.getUnlocalizedName()); + } + + private static void register(Block b, Class clazz) { + GameRegistry.registerBlock(b, clazz, b.getUnlocalizedName()); + } + + public static void addRemap(String unloc, Block block, int meta) { + Block remap = new BlockRemap(block, meta).setBlockName(unloc); + register(remap, ItemBlockRemap.class); + } + + // Pretty much the default getDrops function but with no damage set on the item (fucks with recipes) + // but setting the meta via damageDropped breaks creative middle-click and any WAILA-like overlays + public static ArrayList getDropsWithoutDamage(World world, Block block, int metadata, int fortune) { + ArrayList ret = new ArrayList(); + + int count = block.quantityDropped(metadata, fortune, world.rand); + for(int i = 0; i < count; i++) { + Item item = block.getItemDropped(metadata, world.rand, fortune); + if(item != null) { + ret.add(new ItemStack(item, 1, 0)); + } + } + + return ret; + } +} diff --git a/src/main/java/com/hbm/blocks/generic/BlockOreBasalt.java b/src/main/java/com/hbm/blocks/generic/BlockOreBasalt.java index d650c0b95..977051fb8 100644 --- a/src/main/java/com/hbm/blocks/generic/BlockOreBasalt.java +++ b/src/main/java/com/hbm/blocks/generic/BlockOreBasalt.java @@ -1,5 +1,6 @@ package com.hbm.blocks.generic; +import java.util.ArrayList; import java.util.Locale; import java.util.Random; @@ -7,15 +8,22 @@ import com.hbm.blocks.BlockEnumMulti; import com.hbm.blocks.ModBlocks; import com.hbm.items.ModItems; +import cpw.mods.fml.relauncher.Side; +import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.block.Block; import net.minecraft.block.material.Material; +import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.entity.Entity; import net.minecraft.init.Blocks; import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.util.IIcon; import net.minecraft.world.World; import net.minecraftforge.common.util.ForgeDirection; public class BlockOreBasalt extends BlockEnumMulti { + + protected IIcon[] topIcons; public BlockOreBasalt() { super(Material.rock, EnumBasaltOreType.class, true, true); @@ -47,11 +55,6 @@ public class BlockOreBasalt extends BlockEnumMulti { return super.getItemDropped(meta, rand, fortune); } - @Override - public int damageDropped(int meta) { - return 0; - } - @Override public void onEntityWalking(World world, int x, int y, int z, Entity entity) { int meta = world.getBlockMetadata(x, y, z); @@ -76,4 +79,31 @@ public class BlockOreBasalt extends BlockEnumMulti { if(meta == EnumBasaltOreType.ASBESTOS.ordinal()) world.setBlock(x, y, z, ModBlocks.gas_asbestos); super.dropBlockAsItemWithChance(world, x, y, z, meta, chance, fortune); } + + @Override + public ArrayList getDrops(World world, int x, int y, int z, int metadata, int fortune) { + return ModBlocks.getDropsWithoutDamage(world, this, metadata, fortune); + } + + @Override + @SideOnly(Side.CLIENT) + public void registerBlockIcons(IIconRegister reg) { + super.registerBlockIcons(reg); + + Enum[] enums = theEnum.getEnumConstants(); + this.topIcons = new IIcon[enums.length]; + + for(int i = 0; i < topIcons.length; i++) { + Enum num = enums[i]; + this.topIcons[i] = reg.registerIcon(this.getTextureMultiName(num) + "_top"); + } + } + + @Override + @SideOnly(Side.CLIENT) + public IIcon getIcon(int side, int meta) { + if(side <= 1) return this.topIcons[meta % this.topIcons.length]; + return super.getIcon(side, meta); + } + } diff --git a/src/main/java/com/hbm/blocks/generic/BlockScaffold.java b/src/main/java/com/hbm/blocks/generic/BlockScaffold.java index 64a2eb919..1f34d1d84 100644 --- a/src/main/java/com/hbm/blocks/generic/BlockScaffold.java +++ b/src/main/java/com/hbm/blocks/generic/BlockScaffold.java @@ -16,6 +16,7 @@ import net.minecraft.util.IIcon; import net.minecraft.util.MathHelper; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; +import net.minecraftforge.common.util.ForgeDirection; public class BlockScaffold extends BlockMulti { @@ -59,22 +60,34 @@ public class BlockScaffold extends BlockMulti { public IIcon getIcon(int side, int meta) { return this.icons[this.damageDropped(meta)]; } + + @Override + public int onBlockPlaced(World world, int x, int y, int z, int side, float fx, float fy, float fz, int meta) { + return side; + } @Override public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase player, ItemStack stack) { - int i = MathHelper.floor_double(player.rotationYaw * 4.0F / 360.0F + 0.5D) & 3; + ForgeDirection placed = ForgeDirection.getOrientation(world.getBlockMetadata(x, y, z)); int meta = stack.getItemDamage(); - - if(i % 2 == 0) { - world.setBlockMetadataWithNotify(x, y, z, meta, 2); + + if(placed == ForgeDirection.UP || placed == ForgeDirection.DOWN) { + int rot = MathHelper.floor_double(player.rotationYaw * 4.0F / 360.0F + 0.5D) & 3; + if(rot % 2 == 0) { + world.setBlockMetadataWithNotify(x, y, z, meta, 2); + } else { + world.setBlockMetadataWithNotify(x, y, z, meta + 8, 2); + } + } else if(placed == ForgeDirection.NORTH || placed == ForgeDirection.SOUTH) { + world.setBlockMetadataWithNotify(x, y, z, meta + 4, 2); } else { - world.setBlockMetadataWithNotify(x, y, z, meta + 8, 2); + world.setBlockMetadataWithNotify(x, y, z, meta + 12, 2); } } @Override public int damageDropped(int meta) { - return rectify(meta) & 7; + return rectify(meta); } @Override @@ -83,27 +96,24 @@ public class BlockScaffold extends BlockMulti { } @Override - public void setBlockBoundsBasedOnState(IBlockAccess p_149719_1_, int p_149719_2_, int p_149719_3_, int p_149719_4_) { - int te = p_149719_1_.getBlockMetadata(p_149719_2_, p_149719_3_, p_149719_4_); + public void setBlockBoundsBasedOnState(IBlockAccess world, int x, int y, int z) { + int meta = world.getBlockMetadata(x, y, z); float f = 0.0625F; - if((te & 8) != 0) + if(meta >= 12) { + this.setBlockBounds(0.0F, 2 * f, 0.0F, 1.0F, 14 * f, 1.0F); + } else if(meta >= 8) { this.setBlockBounds(2 * f, 0.0F, 0.0F, 14 * f, 1.0F, 1.0F); - else + } else if(meta >= 4) { + this.setBlockBounds(0.0F, 2 * f, 0.0F, 1.0F, 14 * f, 1.0F); + } else { this.setBlockBounds(0.0F, 0.0F, 2 * f, 1.0F, 1.0F, 14 * f); + } } @Override public AxisAlignedBB getCollisionBoundingBoxFromPool(World world, int x, int y, int z) { - - int te = world.getBlockMetadata(x, y, z); - float f = 0.0625F; - - if((te & 8) != 0) - this.setBlockBounds(2 * f, 0.0F, 0.0F, 14 * f, 1.0F, 1.0F); - else - this.setBlockBounds(0.0F, 0.0F, 2 * f, 1.0F, 1.0F, 14 * f); - + setBlockBoundsBasedOnState(world, x, y, z); return AxisAlignedBB.getBoundingBox(x + this.minX, y + this.minY, z + this.minZ, x + this.maxX, y + this.maxY, z + this.maxZ); } } diff --git a/src/main/java/com/hbm/blocks/generic/BlockScaffoldDynamic.java b/src/main/java/com/hbm/blocks/generic/BlockScaffoldDynamic.java deleted file mode 100644 index 61e314085..000000000 --- a/src/main/java/com/hbm/blocks/generic/BlockScaffoldDynamic.java +++ /dev/null @@ -1,270 +0,0 @@ -package com.hbm.blocks.generic; - -import com.hbm.lib.Library; -import com.hbm.lib.RefStrings; -import com.hbm.util.I18nUtil; - -import static com.hbm.blocks.generic.BlockScaffoldDynamic.TileEntityScaffoldDynamic.*; - -import java.util.ArrayList; -import java.util.List; - -import com.hbm.blocks.ILookOverlay; -import com.hbm.items.ModItems; -import com.hbm.items.tool.ItemBlowtorch; - -import api.hbm.block.IToolable; -import cpw.mods.fml.client.registry.RenderingRegistry; -import cpw.mods.fml.relauncher.Side; -import cpw.mods.fml.relauncher.SideOnly; -import net.minecraft.block.BlockContainer; -import net.minecraft.block.material.Material; -import net.minecraft.client.Minecraft; -import net.minecraft.client.renderer.texture.IIconRegister; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemStack; -import net.minecraft.item.ItemTool; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.network.NetworkManager; -import net.minecraft.network.Packet; -import net.minecraft.network.play.server.S35PacketUpdateTileEntity; -import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumChatFormatting; -import net.minecraft.util.IIcon; -import net.minecraft.util.MovingObjectPosition; -import net.minecraft.world.World; -import net.minecraftforge.client.event.RenderGameOverlayEvent.Pre; - -public class BlockScaffoldDynamic extends BlockContainer implements IToolable, ILookOverlay { - - @SideOnly(Side.CLIENT) public IIcon iconPoleTop; - @SideOnly(Side.CLIENT) public IIcon iconPoleSide; - @SideOnly(Side.CLIENT) public IIcon iconGrateTop; - @SideOnly(Side.CLIENT) public IIcon iconGrateSide; - @SideOnly(Side.CLIENT) public IIcon iconBarTop; - @SideOnly(Side.CLIENT) public IIcon iconBarSide; - - public static int renderMode; - - public BlockScaffoldDynamic() { - super(Material.iron); - } - - public static int renderIDScaffold = RenderingRegistry.getNextAvailableRenderId(); - @Override public int getRenderType(){ return renderIDScaffold; } - @Override public boolean isOpaqueCube() { return false; } - @Override public boolean renderAsNormalBlock() { return false; } - - @Override - public TileEntity createNewTileEntity(World world, int meta) { - return new TileEntityScaffoldDynamic(); - } - - @SideOnly(Side.CLIENT) - public IIcon getIcon(int side, int meta) { - if(renderMode == 0) return side == 0 || side == 1 ? iconPoleTop : iconPoleSide; - if(renderMode == 1) return side == 0 || side == 1 ? iconGrateTop : iconGrateSide; - if(renderMode == 2) return side == 0 || side == 1 ? iconBarTop : iconBarSide; - return this.blockIcon; - } - - @Override - @SideOnly(Side.CLIENT) - public void registerBlockIcons(IIconRegister reg) { - super.registerBlockIcons(reg); - this.iconPoleTop = reg.registerIcon(RefStrings.MODID + ":scaffold_pole_top"); - this.iconPoleSide = reg.registerIcon(RefStrings.MODID + ":scaffold_pole_side"); - this.iconGrateTop = reg.registerIcon(RefStrings.MODID + ":scaffold_grate_top"); - this.iconGrateSide = reg.registerIcon(RefStrings.MODID + ":scaffold_grate_side"); - this.iconBarTop = reg.registerIcon(RefStrings.MODID + ":scaffold_bar_top"); - this.iconBarSide = reg.registerIcon(RefStrings.MODID + ":scaffold_bar_side"); - } - - @Override - public boolean onScrew(World world, EntityPlayer player, int x, int y, int z, int side, float fX, float fY, float fZ, ToolType tool) { - - TileEntityScaffoldDynamic tile = (TileEntityScaffoldDynamic) world.getTileEntity(x, y, z); - if(tool == ToolType.SCREWDRIVER) { - tile.locked = !tile.locked; - tile.markDirty(); - world.markBlockForUpdate(x, y, z); - return true; - } - - if(tool != ToolType.TORCH) return false; - - - int part = getPartFromCoord(fX, fY, fZ); - - if(part != 0 && tile.canToggle(part)) { - tile.toggle(part); - tile.markDirty(); - world.markBlockForUpdate(x, y, z); - return true; - } - return false; - } - - public static int getPartFromCoord(float fX, float fY, float fZ) { - if(fX < 0.25 && fZ < 0.25) return POLE_NX_NZ; - if(fX > 0.75 && fZ < 0.25) return POLE_PX_NZ; - if(fX > 0.75 && fZ > 0.75) return POLE_PX_PZ; - if(fX < 0.25 && fZ > 0.75) return POLE_NX_PZ; - - if(fY == 0 && fX < 0.25) return BAR_LOWER_NEG_X; - if(fY == 0 && fX > 0.75) return BAR_LOWER_POS_X; - if(fY == 0 && fZ < 0.25) return BAR_LOWER_NEG_Z; - if(fY == 0 && fZ > 0.75) return BAR_LOWER_POS_Z; - if(fY == 1 && fX < 0.25) return BAR_UPPER_NEG_X; - if(fY == 1 && fX > 0.75) return BAR_UPPER_POS_X; - if(fY == 1 && fZ < 0.25) return BAR_UPPER_NEG_Z; - if(fY == 1 && fZ > 0.75) return BAR_UPPER_POS_Z; - - if(fY < 0.125) return GRATE_LOWER; - if(fY > 0.875) return GRATE_UPPER; - - if(fX == 0 && fY < 0.5) return BAR_LOWER_NEG_X; - if(fX == 1 && fY < 0.5) return BAR_LOWER_POS_X; - if(fZ == 0 && fY < 0.5) return BAR_LOWER_NEG_Z; - if(fZ == 1 && fY < 0.5) return BAR_LOWER_POS_Z; - if(fX == 0 && fY > 0.5) return BAR_UPPER_NEG_X; - if(fX == 1 && fY > 0.5) return BAR_UPPER_POS_X; - if(fZ == 0 && fY > 0.5) return BAR_UPPER_NEG_Z; - if(fZ == 1 && fY > 0.5) return BAR_UPPER_POS_Z; - - return 0; - } - - //ttoo lazy to make an itemblock just to provide this in the one method that needs it - public static float lastFX; - public static float lastFY; - public static float lastFZ; - - @Override - public int onBlockPlaced(World world, int x, int y, int z, int side, float fX, float fY, float fZ, int meta) { - lastFX = fX; - lastFY = fY; - lastFZ = fZ; - - if(side == Library.POS_X.ordinal()) lastFX = 0; - if(side == Library.NEG_X.ordinal()) lastFX = 1; - if(side == Library.POS_Z.ordinal()) lastFZ = 0; - if(side == Library.NEG_Z.ordinal()) lastFZ = 1; - - return side; - } - - @Override - public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase player, ItemStack stack) { - TileEntityScaffoldDynamic tile = (TileEntityScaffoldDynamic) world.getTileEntity(x, y, z); - - // DEFAUL: POLES - if(stack.getItemDamage() == 0) { - if(lastFX < 0.5 && lastFZ < 0.5) tile.toggle(tile.POLE_NX_NZ); - if(lastFX >= 0.5 && lastFZ < 0.5) tile.toggle(tile.POLE_PX_NZ); - if(lastFX < 0.5 && lastFZ >= 0.5) tile.toggle(tile.POLE_NX_PZ); - if(lastFX >= 0.5 && lastFZ >= 0.5) tile.toggle(tile.POLE_PX_PZ); - } - } - - public static class TileEntityScaffoldDynamic extends TileEntity { - - public int composite; - public int prevComposite; - public boolean locked; - public static final int BAR_LOWER_POS_X = (1 << 0); - public static final int BAR_LOWER_NEG_X = (1 << 1); - public static final int BAR_LOWER_POS_Z = (1 << 2); - public static final int BAR_LOWER_NEG_Z = (1 << 3); - public static final int BAR_UPPER_POS_X = (1 << 4); - public static final int BAR_UPPER_NEG_X = (1 << 5); - public static final int BAR_UPPER_POS_Z = (1 << 6); - public static final int BAR_UPPER_NEG_Z = (1 << 7); - public static final int POLE_PX_PZ = (1 << 8); - public static final int POLE_PX_NZ = (1 << 9); - public static final int POLE_NX_PZ = (1 << 10); - public static final int POLE_NX_NZ = (1 << 11); - public static final int GRATE_LOWER = (1 << 12); - public static final int GRATE_UPPER = (1 << 13); - - public boolean canToggle(int part) { return !locked && (composite ^ part) != 0; } - public void toggle(int part) { this.composite ^= part; System.out.println("" + this.composite); } - public boolean has(int part) { return (this.composite & part) != 0; } - - @Override - public void updateEntity() { } - - @Override - public Packet getDescriptionPacket() { - NBTTagCompound nbt = new NBTTagCompound(); - this.writeToNBT(nbt); - return new S35PacketUpdateTileEntity(this.xCoord, this.yCoord, this.zCoord, 0, nbt); - } - - @Override - public void onDataPacket(NetworkManager net, S35PacketUpdateTileEntity pkt) { - this.readFromNBT(pkt.func_148857_g()); - } - - @Override - public void readFromNBT(NBTTagCompound nbt) { - super.readFromNBT(nbt); - this.composite = nbt.getInteger("c"); - this.prevComposite = nbt.getInteger("p"); - this.locked = nbt.getBoolean("l"); - } - - @Override - public void writeToNBT(NBTTagCompound nbt) { - super.writeToNBT(nbt); - nbt.setInteger("c", composite); - nbt.setInteger("p", prevComposite); - nbt.setBoolean("l", locked); - } - } - - @Override - public void printHook(Pre event, World world, int x, int y, int z) { - - Minecraft mc = Minecraft.getMinecraft(); - EntityPlayer player = mc.thePlayer; - ItemStack held = player.getHeldItem(); - - boolean holdsBlowtorch = held != null && held.getItem() instanceof ItemBlowtorch; - boolean holdScrewdriver = held != null && (held.getItem() == ModItems.screwdriver || held.getItem() == ModItems.screwdriver_desh); - - MovingObjectPosition mop = mc.objectMouseOver; - - if(mop != null && mop.typeOfHit == mop.typeOfHit.BLOCK) { - float fX = (float) (mop.hitVec.xCoord - x); - float fY = (float) (mop.hitVec.yCoord - y); - float fZ = (float) (mop.hitVec.zCoord - z); - - TileEntityScaffoldDynamic tile = (TileEntityScaffoldDynamic) world.getTileEntity(x, y, z); - - if(tile != null && tile.locked && (holdsBlowtorch || holdScrewdriver)) { - List text = new ArrayList(); - text.add(EnumChatFormatting.RED + "Locked!"); - ILookOverlay.printGeneric(event, I18nUtil.resolveKey(this.getUnlocalizedName() + ".name"), 0xffff00, 0x404000, text); - return; - } - - if(holdsBlowtorch) { - String name = null; - int part = getPartFromCoord(fX, fY, fZ); - if(part <= (1 << 3)) name = "Lower Vertical Bar"; - else if(part <= (1 << 7)) name = "Upper Vertical Bar"; - else if(part <= (1 << 10)) name = "Pole"; - else if(part <= (1 << 13)) name = "Grate"; - - if(name != null) { - List text = new ArrayList(); - text.add("Toggle:"); - text.add(name); - ILookOverlay.printGeneric(event, I18nUtil.resolveKey(this.getUnlocalizedName() + ".name"), 0xffff00, 0x404000, text); - } - } - } - } -} diff --git a/src/main/java/com/hbm/blocks/generic/BlockStalagmite.java b/src/main/java/com/hbm/blocks/generic/BlockStalagmite.java index f8beed00c..5db100280 100644 --- a/src/main/java/com/hbm/blocks/generic/BlockStalagmite.java +++ b/src/main/java/com/hbm/blocks/generic/BlockStalagmite.java @@ -1,5 +1,6 @@ package com.hbm.blocks.generic; +import java.util.ArrayList; import java.util.Random; import com.hbm.blocks.BlockEnumMulti; @@ -10,6 +11,7 @@ import com.hbm.items.ModItems; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; import net.minecraft.util.AxisAlignedBB; import net.minecraft.world.World; import net.minecraftforge.common.util.ForgeDirection; @@ -45,11 +47,6 @@ public class BlockStalagmite extends BlockEnumMulti { return null; } - - @Override - public int damageDropped(int meta) { - return 0; - } public static int getMetaFromResource(int meta) { return meta; @@ -75,4 +72,10 @@ public class BlockStalagmite extends BlockEnumMulti { public AxisAlignedBB getCollisionBoundingBoxFromPool(World world, int x, int y, int z) { return null; } + + @Override + public ArrayList getDrops(World world, int x, int y, int z, int metadata, int fortune) { + return ModBlocks.getDropsWithoutDamage(world, this, metadata, fortune); + } + } diff --git a/src/main/java/com/hbm/blocks/machine/MachineRotaryFurnace.java b/src/main/java/com/hbm/blocks/machine/MachineRotaryFurnace.java new file mode 100644 index 000000000..523bc10b7 --- /dev/null +++ b/src/main/java/com/hbm/blocks/machine/MachineRotaryFurnace.java @@ -0,0 +1,60 @@ +package com.hbm.blocks.machine; + +import com.hbm.blocks.BlockDummyable; +import com.hbm.tileentity.TileEntityProxyCombo; +import com.hbm.tileentity.machine.TileEntityMachineRotaryFurnace; + +import net.minecraft.block.material.Material; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.tileentity.TileEntity; +import net.minecraft.world.World; +import net.minecraftforge.common.util.ForgeDirection; + +public class MachineRotaryFurnace extends BlockDummyable { + + public MachineRotaryFurnace(Material mat) { + super(mat); + } + + @Override + public TileEntity createNewTileEntity(World world, int meta) { + if(meta >= 12) return new TileEntityMachineRotaryFurnace(); + if(meta >= 6) return new TileEntityProxyCombo().inventory().fluid(); + return null; + } + + @Override + public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ) { + return this.standardOpenBehavior(world, x, y, z, player, 0); + } + + @Override + public int[] getDimensions() { + return new int[] {4, 0, 1, 1, 2, 2}; + } + + @Override + public int getOffset() { + return 1; + } + + @Override + protected void fillSpace(World world, int x, int y, int z, ForgeDirection dir, int o) { + super.fillSpace(world, x, y, z, dir, o); + x += dir.offsetX * o; + z += dir.offsetZ * o; + + ForgeDirection rot = dir.getRotation(ForgeDirection.DOWN); + + //back + for(int i = -2; i <= 2; i++) { + this.makeExtra(world, x - dir.offsetX + rot.offsetX * i, y, z - dir.offsetZ + rot.offsetZ * i); + } + //side fluid + this.makeExtra(world, x + dir.offsetX - rot.offsetX * 2, y, z + dir.offsetZ - rot.offsetZ * 2); + //exhaust + this.makeExtra(world, x + rot.offsetX, y + 4, z + rot.offsetZ); + //solid fuel + this.makeExtra(world, x + dir.offsetX + rot.offsetX, y, z + dir.offsetZ + rot.offsetZ); + } +} diff --git a/src/main/java/com/hbm/blocks/machine/rbmk/RBMKCraneConsole.java b/src/main/java/com/hbm/blocks/machine/rbmk/RBMKCraneConsole.java index 21059f59a..680856254 100644 --- a/src/main/java/com/hbm/blocks/machine/rbmk/RBMKCraneConsole.java +++ b/src/main/java/com/hbm/blocks/machine/rbmk/RBMKCraneConsole.java @@ -4,14 +4,16 @@ import com.hbm.blocks.BlockDummyable; import com.hbm.handler.MultiblockHandlerXR; import com.hbm.tileentity.machine.rbmk.TileEntityCraneConsole; +import api.hbm.block.IToolable; import net.minecraft.block.material.Material; +import net.minecraft.entity.player.EntityPlayer; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.AxisAlignedBB; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import net.minecraftforge.common.util.ForgeDirection; -public class RBMKCraneConsole extends BlockDummyable { +public class RBMKCraneConsole extends BlockDummyable implements IToolable { public RBMKCraneConsole() { super(Material.iron); @@ -72,4 +74,20 @@ public class RBMKCraneConsole extends BlockDummyable { this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F); } } + + @Override + public boolean onScrew(World world, EntityPlayer player, int x, int y, int z, int side, float fX, float fY, float fZ, ToolType tool) { + + if(tool == ToolType.SCREWDRIVER) { + if(world.isRemote) return true; + + int[] pos = findCore(world, x, y, z); + TileEntityCraneConsole tile = (TileEntityCraneConsole) world.getTileEntity(pos[0], pos[1], pos[2]); + tile.cycleCraneRotation(); + tile.markDirty(); + return true; + } + + return false; + } } diff --git a/src/main/java/com/hbm/crafting/MineralRecipes.java b/src/main/java/com/hbm/crafting/MineralRecipes.java index db125cf8c..6ab5ea10b 100644 --- a/src/main/java/com/hbm/crafting/MineralRecipes.java +++ b/src/main/java/com/hbm/crafting/MineralRecipes.java @@ -2,6 +2,7 @@ package com.hbm.crafting; import com.hbm.blocks.ModBlocks; import com.hbm.blocks.BlockEnums.EnumStoneType; +import com.hbm.inventory.material.MaterialShapes; import com.hbm.items.ItemEnums.EnumCokeType; import com.hbm.items.ModItems; import com.hbm.items.machine.ItemRTGPelletDepleted.DepletedRTGMaterial; @@ -106,31 +107,31 @@ public class MineralRecipes { addBillet(ModItems.billet_cobalt, ModItems.ingot_cobalt, ModItems.nugget_cobalt); addBillet(ModItems.billet_co60, ModItems.ingot_co60, ModItems.nugget_co60); - addBillet(ModItems.billet_sr90, ModItems.ingot_sr90, ModItems.nugget_sr90, SR90.allNuggets()); - addBillet(ModItems.billet_uranium, ModItems.ingot_uranium, ModItems.nugget_uranium, U.allNuggets()); - addBillet(ModItems.billet_u233, ModItems.ingot_u233, ModItems.nugget_u233, U233.allNuggets()); - addBillet(ModItems.billet_u235, ModItems.ingot_u235, ModItems.nugget_u235, U235.allNuggets()); - addBillet(ModItems.billet_u238, ModItems.ingot_u238, ModItems.nugget_u238, U238.allNuggets()); - addBillet(ModItems.billet_th232, ModItems.ingot_th232, ModItems.nugget_th232, TH232.allNuggets()); - addBillet(ModItems.billet_plutonium, ModItems.ingot_plutonium, ModItems.nugget_plutonium, PU.allNuggets()); - addBillet(ModItems.billet_pu238, ModItems.ingot_pu238, ModItems.nugget_pu238, PU238.allNuggets()); - addBillet(ModItems.billet_pu239, ModItems.ingot_pu239, ModItems.nugget_pu239, PU239.allNuggets()); - addBillet(ModItems.billet_pu240, ModItems.ingot_pu240, ModItems.nugget_pu240, PU240.allNuggets()); - addBillet(ModItems.billet_pu241, ModItems.ingot_pu241, ModItems.nugget_pu241, PU241.allNuggets()); + addBillet(ModItems.billet_sr90, ModItems.ingot_sr90, ModItems.nugget_sr90, SR90.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_uranium, ModItems.ingot_uranium, ModItems.nugget_uranium, U.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_u233, ModItems.ingot_u233, ModItems.nugget_u233, U233.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_u235, ModItems.ingot_u235, ModItems.nugget_u235, U235.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_u238, ModItems.ingot_u238, ModItems.nugget_u238, U238.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_th232, ModItems.ingot_th232, ModItems.nugget_th232, TH232.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_plutonium, ModItems.ingot_plutonium, ModItems.nugget_plutonium, PU.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_pu238, ModItems.ingot_pu238, ModItems.nugget_pu238, PU238.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_pu239, ModItems.ingot_pu239, ModItems.nugget_pu239, PU239.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_pu240, ModItems.ingot_pu240, ModItems.nugget_pu240, PU240.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_pu241, ModItems.ingot_pu241, ModItems.nugget_pu241, PU241.all(MaterialShapes.NUGGET)); addBillet(ModItems.billet_pu_mix, ModItems.ingot_pu_mix, ModItems.nugget_pu_mix); - addBillet(ModItems.billet_am241, ModItems.ingot_am241, ModItems.nugget_am241, AM241.allNuggets()); - addBillet(ModItems.billet_am242, ModItems.ingot_am242, ModItems.nugget_am242, AM242.allNuggets()); + addBillet(ModItems.billet_am241, ModItems.ingot_am241, ModItems.nugget_am241, AM241.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_am242, ModItems.ingot_am242, ModItems.nugget_am242, AM242.all(MaterialShapes.NUGGET)); addBillet(ModItems.billet_am_mix, ModItems.ingot_am_mix, ModItems.nugget_am_mix); - addBillet(ModItems.billet_neptunium, ModItems.ingot_neptunium, ModItems.nugget_neptunium, NP237.allNuggets()); - addBillet(ModItems.billet_polonium, ModItems.ingot_polonium, ModItems.nugget_polonium, PO210.allNuggets()); - addBillet(ModItems.billet_technetium, ModItems.ingot_technetium, ModItems.nugget_technetium, TC99.allNuggets()); - addBillet(ModItems.billet_au198, ModItems.ingot_au198, ModItems.nugget_au198, AU198.allNuggets()); - addBillet(ModItems.billet_pb209, ModItems.ingot_pb209, ModItems.nugget_pb209, PB209.allNuggets()); //and so forth - addBillet(ModItems.billet_ra226, ModItems.ingot_ra226, ModItems.nugget_ra226, RA226.allNuggets()); - addBillet(ModItems.billet_actinium, ModItems.ingot_actinium, ModItems.nugget_actinium, AC227.allNuggets()); + addBillet(ModItems.billet_neptunium, ModItems.ingot_neptunium, ModItems.nugget_neptunium, NP237.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_polonium, ModItems.ingot_polonium, ModItems.nugget_polonium, PO210.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_technetium, ModItems.ingot_technetium, ModItems.nugget_technetium, TC99.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_au198, ModItems.ingot_au198, ModItems.nugget_au198, AU198.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_pb209, ModItems.ingot_pb209, ModItems.nugget_pb209, PB209.all(MaterialShapes.NUGGET)); //and so forth + addBillet(ModItems.billet_ra226, ModItems.ingot_ra226, ModItems.nugget_ra226, RA226.all(MaterialShapes.NUGGET)); + addBillet(ModItems.billet_actinium, ModItems.ingot_actinium, ModItems.nugget_actinium, AC227.all(MaterialShapes.NUGGET)); addBillet(ModItems.billet_schrabidium, ModItems.ingot_schrabidium, ModItems.nugget_schrabidium, SA326.nugget()); addBillet(ModItems.billet_solinium, ModItems.ingot_solinium, ModItems.nugget_solinium, SA327.nugget()); - addBillet(ModItems.billet_gh336, ModItems.ingot_gh336, ModItems.nugget_gh336, GH336.allNuggets()); + addBillet(ModItems.billet_gh336, ModItems.ingot_gh336, ModItems.nugget_gh336, GH336.all(MaterialShapes.NUGGET)); addBillet(ModItems.billet_uranium_fuel, ModItems.ingot_uranium_fuel, ModItems.nugget_uranium_fuel); addBillet(ModItems.billet_thorium_fuel, ModItems.ingot_thorium_fuel, ModItems.nugget_thorium_fuel); addBillet(ModItems.billet_plutonium_fuel, ModItems.ingot_plutonium_fuel, ModItems.nugget_plutonium_fuel); diff --git a/src/main/java/com/hbm/crafting/WeaponRecipes.java b/src/main/java/com/hbm/crafting/WeaponRecipes.java index 665afe7f6..7914ba839 100644 --- a/src/main/java/com/hbm/crafting/WeaponRecipes.java +++ b/src/main/java/com/hbm/crafting/WeaponRecipes.java @@ -4,6 +4,7 @@ import com.hbm.blocks.ModBlocks; import com.hbm.inventory.OreDictManager; import com.hbm.inventory.fluid.FluidType; import com.hbm.inventory.fluid.Fluids; +import com.hbm.inventory.material.Mats; import static com.hbm.inventory.OreDictManager.*; @@ -12,6 +13,7 @@ import com.hbm.items.food.ItemConserve.EnumFoodType; import com.hbm.items.machine.ItemCircuit.EnumCircuitType; import com.hbm.items.ModItems; import com.hbm.items.weapon.GunB92Cell; +import com.hbm.items.weapon.sedna.factory.GunFactory.EnumAmmo; import com.hbm.main.CraftingManager; import net.minecraft.init.Blocks; @@ -26,6 +28,29 @@ import net.minecraft.item.ItemStack; public class WeaponRecipes { public static void register() { + + //SEDNA Parts + CraftingManager.addRecipeAuto(new ItemStack(ModItems.part_stock, 1, Mats.MAT_WOOD.id), new Object[] { "WWW", " W", 'W', KEY_PLANKS }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.part_grip, 1, Mats.MAT_WOOD.id), new Object[] { "W ", " W", " W", 'W', KEY_PLANKS }); + + //SEDNA Guns + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_pepperbox, 1), new Object[] { "IIW", " C", 'I', IRON.ingot(), 'W', KEY_PLANKS, 'C', CU.ingot() }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_light_revolver, 1), new Object[] { "BRM", " G", 'B', STEEL.lightBarrel(), 'R', STEEL.lightReceiver(), 'M', GUNMETAL.mechanism(), 'G', WOOD.grip() }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_henry, 1), new Object[] { "BRP", "BMS", 'B', STEEL.lightBarrel(), 'R', GUNMETAL.lightReceiver(), 'M', GUNMETAL.mechanism(), 'S', WOOD.stock(), 'P', GUNMETAL.plate() }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_greasegun, 1), new Object[] { "BRS", "SMG", 'B', STEEL.lightBarrel(), 'R', STEEL.lightReceiver(), 'S', STEEL.bolt(), 'M', GUNMETAL.mechanism(), 'G', STEEL.grip() }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_maresleg, 1), new Object[] { "BRM", "BGS", 'B', STEEL.lightBarrel(), 'R', STEEL.lightReceiver(), 'M', GUNMETAL.mechanism(), 'G', STEEL.bolt(), 'S', WOOD.stock() }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_flaregun, 1), new Object[] { "BRM", " G", 'B', STEEL.heavyBarrel(), 'R', STEEL.lightReceiver(), 'M', GUNMETAL.mechanism(), 'G', STEEL.grip() }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_heavy_revolver, 1), new Object[] { "BRM", " G", 'B', DURA.lightBarrel(), 'R', DURA.lightReceiver(), 'M', GUNMETAL.mechanism(), 'G', WOOD.grip() }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_carbine, 1), new Object[] { "BRM", "G S", 'B', DURA.lightBarrel(), 'R', DURA.lightReceiver(), 'M', GUNMETAL.mechanism(), 'G', WOOD.grip(), 'S', WOOD.stock() }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_am180, 1), new Object[] { "BBR", "GMS", 'B', DURA.lightBarrel(), 'R', DURA.lightReceiver(), 'M', GUNMETAL.mechanism(), 'G', WOOD.grip(), 'S', WOOD.stock() }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_liberator, 1), new Object[] { "BB ", "BBM", "G G", 'B', DURA.lightBarrel(), 'M', GUNMETAL.mechanism(), 'G', WOOD.grip() }); + CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_congolake, 1), new Object[] { "BM ", "BRS", "G ", 'B', DURA.heavyBarrel(), 'M', GUNMETAL.mechanism(), 'R', DURA.lightReceiver(), 'S', WOOD.stock(), 'G', WOOD.grip() }); + + //SEDNA Ammo + CraftingManager.addRecipeAuto(DictFrame.fromOne(ModItems.ammo_standard, EnumAmmo.STONE, 6), new Object[] { "C", "P", "G", 'C', KEY_COBBLESTONE, 'P', Items.paper, 'G', Items.gunpowder }); + CraftingManager.addRecipeAuto(DictFrame.fromOne(ModItems.ammo_standard, EnumAmmo.STONE_AP, 6), new Object[] { "C", "P", "G", 'C', Items.flint, 'P', Items.paper, 'G', Items.gunpowder }); + CraftingManager.addRecipeAuto(DictFrame.fromOne(ModItems.ammo_standard, EnumAmmo.STONE_SHOT, 6), new Object[] { "C", "P", "G", 'C', Blocks.gravel, 'P', Items.paper, 'G', Items.gunpowder }); + CraftingManager.addRecipeAuto(DictFrame.fromOne(ModItems.ammo_standard, EnumAmmo.STONE_IRON, 6), new Object[] { "C", "P", "G", 'C', IRON.ingot(), 'P', Items.paper, 'G', Items.gunpowder }); //Missiles CraftingManager.addShapelessAuto(new ItemStack(ModItems.missile_taint, 1), new Object[] { ModItems.missile_assembly, ModItems.bucket_mud, ModItems.powder_spark_mix, ModItems.powder_magic }); @@ -75,7 +100,6 @@ public class WeaponRecipes { CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_karl, 1), new Object[] { "SSW", " MW", 'S', STEEL.shell(), 'W', ALLOY.plate(), 'M', ModItems.mechanism_launcher_2 }); CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_quadro, 1), new Object[] { "SSS", "SSS", "CM ", 'S', STEEL.pipe(), 'C', DictFrame.fromOne(ModItems.circuit, EnumCircuitType.BASIC), 'M', ModItems.mechanism_launcher_2 }); CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_hk69, 1), new Object[] { "SSI", " MB", 'S', STEEL.shell(), 'I', IRON.ingot(), 'M', ModItems.mechanism_launcher_1, 'B', STEEL.bolt() }); - CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_congolake, 1), new Object[] { "HHR", "WLW", 'H', AL.shell(), 'R', ModItems.mechanism_rifle_1, 'W', KEY_LOG, 'L', ModItems.mechanism_launcher_1 }); CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_stinger, 1), new Object[] { "SSW", "CMW", 'S', STEEL.plate(), 'W', TI.plate(), 'C', DictFrame.fromOne(ModItems.circuit, EnumCircuitType.ADVANCED), 'M', ModItems.mechanism_launcher_2 }); CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_revolver, 1), new Object[] { "SSM", " RW", 'S', STEEL.plate(), 'W', KEY_PLANKS, 'R', AL.wireFine(), 'M', ModItems.mechanism_revolver_1 }); CraftingManager.addRecipeAuto(new ItemStack(ModItems.gun_revolver_saturnite, 1), new Object[] { "SSM", " RW", 'S', BIGMT.plate(), 'W', KEY_PLANKS, 'R', W.wireFine(), 'M', ModItems.mechanism_revolver_2 }); diff --git a/src/main/java/com/hbm/crafting/handlers/ContainerUpgradeCraftingHandler.java b/src/main/java/com/hbm/crafting/handlers/ContainerUpgradeCraftingHandler.java new file mode 100644 index 000000000..110967484 --- /dev/null +++ b/src/main/java/com/hbm/crafting/handlers/ContainerUpgradeCraftingHandler.java @@ -0,0 +1,41 @@ +package com.hbm.crafting.handlers; + +import com.hbm.blocks.generic.BlockStorageCrate; +import com.hbm.blocks.machine.BlockMassStorage; + +import net.minecraft.block.Block; +import net.minecraft.inventory.InventoryCrafting; +import net.minecraft.item.ItemStack; +import net.minecraftforge.oredict.ShapedOreRecipe; + +/** + * Handles upgrading storage crates and mass storage blocks, preserving their contents. + * + * Note: this assumes the input and the output items store their inventory in the same format + * in the NBT + */ +public class ContainerUpgradeCraftingHandler extends ShapedOreRecipe { + + public ContainerUpgradeCraftingHandler(ItemStack result, Object... items) { + super(result, items); + } + + @Override + public ItemStack getCraftingResult(InventoryCrafting inventoryCrafting) { + ItemStack source = getFirstContainer(inventoryCrafting); + ItemStack result = super.getCraftingResult(inventoryCrafting); + result.setTagCompound(source.getTagCompound()); + return result; + } + + private static ItemStack getFirstContainer(InventoryCrafting inventoryCrafting) { + for(int i = 0; i < 9; ++i) { + ItemStack itemstack = inventoryCrafting.getStackInRowAndColumn(i % 3, i / 3); + if(itemstack == null) continue; + Block block = Block.getBlockFromItem(itemstack.getItem()); + if(block == null) continue; + if(block instanceof BlockStorageCrate || block instanceof BlockMassStorage) return itemstack; + } + return null; + } +} diff --git a/src/main/java/com/hbm/creativetabs/WeaponTab.java b/src/main/java/com/hbm/creativetabs/WeaponTab.java index 01636faa6..28801e152 100644 --- a/src/main/java/com/hbm/creativetabs/WeaponTab.java +++ b/src/main/java/com/hbm/creativetabs/WeaponTab.java @@ -8,18 +8,16 @@ import net.minecraft.item.Item; public class WeaponTab extends CreativeTabs { - public WeaponTab(int p_i1853_1_, String p_i1853_2_) { - super(p_i1853_1_, p_i1853_2_); + public WeaponTab(int index, String name) { + super(index, name); } @Override public Item getTabIconItem() { - - if(ModItems.gun_lever_action != null) - { - return ModItems.gun_lever_action; + + if(ModItems.gun_maresleg != null) { + return ModItems.gun_maresleg; } - return Items.iron_pickaxe; } } diff --git a/src/main/java/com/hbm/entity/projectile/EntityBulletBaseMK4.java b/src/main/java/com/hbm/entity/projectile/EntityBulletBaseMK4.java index 92938b64a..f83eeb76d 100644 --- a/src/main/java/com/hbm/entity/projectile/EntityBulletBaseMK4.java +++ b/src/main/java/com/hbm/entity/projectile/EntityBulletBaseMK4.java @@ -1,16 +1,28 @@ package com.hbm.entity.projectile; import com.hbm.items.weapon.sedna.BulletConfig; +import com.hbm.util.BobMathUtil; +import com.hbm.util.EntityDamageUtil; +import com.hbm.util.TrackerUtil; +import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; +import net.minecraft.util.DamageSource; import net.minecraft.util.MathHelper; import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.Vec3; import net.minecraft.world.World; +import net.minecraft.world.WorldServer; +import net.minecraftforge.common.util.ForgeDirection; public class EntityBulletBaseMK4 extends EntityThrowableInterp { public BulletConfig config; + //used for rendering tracers + public double velocity; + public double prevVelocity; + public float damage; + public int ricochets = 0; public EntityBulletBaseMK4(World world) { super(world); @@ -18,11 +30,13 @@ public class EntityBulletBaseMK4 extends EntityThrowableInterp { this.setSize(0.5F, 0.5F); } - public EntityBulletBaseMK4(EntityLivingBase entity, BulletConfig config, float baseDamage, float spreadMod, double sideOffset, double heightOffset, double frontOffset) { + public EntityBulletBaseMK4(EntityLivingBase entity, BulletConfig config, float baseDamage, float gunSpread, double sideOffset, double heightOffset, double frontOffset) { this(entity.worldObj); this.thrower = entity; - this.config = config; + this.setBulletConfig(config); + + this.damage = baseDamage * this.config.damageMult; this.setLocationAndAngles(thrower.posX, thrower.posY + thrower.getEyeHeight(), thrower.posZ, thrower.rotationYaw, thrower.rotationPitch); @@ -40,7 +54,7 @@ public class EntityBulletBaseMK4 extends EntityThrowableInterp { this.motionZ = MathHelper.cos(this.rotationYaw / 180.0F * (float) Math.PI) * MathHelper.cos(this.rotationPitch / 180.0F * (float) Math.PI); this.motionY = (-MathHelper.sin(this.rotationPitch / 180.0F * (float) Math.PI)); - this.setThrowableHeading(this.motionX, this.motionY, this.motionZ, 1.0F, this.config.spread * spreadMod); + this.setThrowableHeading(this.motionX, this.motionY, this.motionZ, 1.0F, this.config.spread + gunSpread); } @Override @@ -50,6 +64,7 @@ public class EntityBulletBaseMK4 extends EntityThrowableInterp { } public void setBulletConfig(BulletConfig config) { + this.config = config; this.dataWatcher.updateObject(3, config.id); } @@ -69,16 +84,115 @@ public class EntityBulletBaseMK4 extends EntityThrowableInterp { return; } - this.prevPosX = posX; - this.prevPosY = posY; - this.prevPosZ = posZ; + this.prevPosX = this.posX; + this.prevPosY = this.posY; + this.prevPosZ = this.posZ; super.onUpdate(); + + double dX = this.posX - this.prevPosX; + double dY = this.posY - this.prevPosY; + double dZ = this.posZ - this.prevPosZ; + + this.prevVelocity = this.velocity; + this.velocity = Math.sqrt(dX * dX + dY * dY + dZ * dZ); + + if(!this.onGround && velocity > 0) { + + float hyp = MathHelper.sqrt_double(dX * dX + dZ * dZ); + this.rotationYaw = (float) (Math.atan2(dX, dZ) * 180.0D / Math.PI); + + for(this.rotationPitch = (float) (Math.atan2(dY, (double) hyp) * 180.0D / Math.PI); this.rotationPitch - this.prevRotationPitch < -180.0F; this.prevRotationPitch -= 360.0F); + + while(this.rotationPitch - this.prevRotationPitch >= 180.0F) this.prevRotationPitch += 360.0F; + while(this.rotationYaw - this.prevRotationYaw < -180.0F) this.prevRotationYaw -= 360.0F; + while(this.rotationYaw - this.prevRotationYaw >= 180.0F) this.prevRotationYaw += 360.0F; + } + + if(!worldObj.isRemote && this.ticksExisted > config.expires) this.setDead(); + + if(this.config.onUpdate != null) this.config.onUpdate.accept(this); + } + + @Override + public void setDead() { + super.setDead(); + + //send a teleport on collision so that the bullets are forced to move even if their lifetime is only 1 tick, letting them render + if(worldObj instanceof WorldServer) TrackerUtil.sendTeleport((WorldServer) worldObj, this); } @Override protected void onImpact(MovingObjectPosition mop) { - this.setDead(); + if(!worldObj.isRemote) { + + if(this.config.onImpact != null) this.config.onImpact.accept(this, mop); + + if(this.isDead) return; + + if(mop.typeOfHit == mop.typeOfHit.BLOCK) { + + ForgeDirection dir = ForgeDirection.getOrientation(mop.sideHit); + Vec3 face = Vec3.createVectorHelper(dir.offsetX, dir.offsetY, dir.offsetZ); + Vec3 vel = Vec3.createVectorHelper(motionX, motionY, motionZ).normalize(); + + double angle = Math.abs(BobMathUtil.getCrossAngle(vel, face) - 90); + + if(angle <= config.ricochetAngle) { + + this.ricochets++; + if(this.ricochets > this.config.maxRicochetCount) { + this.setPosition(mop.hitVec.xCoord, mop.hitVec.yCoord, mop.hitVec.zCoord); + this.setDead(); + } + + switch(mop.sideHit) { + case 0: case 1: motionY *= -1; break; + case 2: case 3: motionZ *= -1; break; + case 4: case 5: motionX *= -1; break; + } + worldObj.playSoundAtEntity(this, "hbm:weapon.ricochet", 0.25F, 1.0F); + this.setPosition(mop.hitVec.xCoord, mop.hitVec.yCoord, mop.hitVec.zCoord); + //send a teleport so the ricochet is more accurate instead of the interp smoothing fucking everything up + if(worldObj instanceof WorldServer) TrackerUtil.sendTeleport((WorldServer) worldObj, this); + return; + + } else { + this.setPosition(mop.hitVec.xCoord, mop.hitVec.yCoord, mop.hitVec.zCoord); + this.setDead(); + } + } + + if(mop.typeOfHit == mop.typeOfHit.ENTITY) { + Entity entity = mop.entityHit; + if(!entity.isEntityAlive()) return; + + DamageSource damageCalc = this.config.getDamage(this, getThrower(), false); + + if(!(entity instanceof EntityLivingBase)) { + entity.attackEntityFrom(damageCalc, this.damage); + return; + } + + EntityLivingBase living = (EntityLivingBase) entity; + float prevHealth = living.getHealth(); + + if(this.config.armorPiercingPercent == 0) { + EntityDamageUtil.attackEntityFromIgnoreIFrame(entity, damageCalc, this.damage); + } else { + DamageSource damagePiercing = this.config.getDamage(this, getThrower(), true); + EntityDamageUtil.attackArmorPiercing(living, damageCalc, damagePiercing, this.damage, this.config.armorPiercingPercent); + } + + float newHealth = living.getHealth(); + + if(this.config.damageFalloffByPen) this.damage -= Math.max(prevHealth - newHealth, 0); + if(!this.doesPenetrate() || this.damage < 0) { + this.setPosition(mop.hitVec.xCoord, mop.hitVec.yCoord, mop.hitVec.zCoord); + this.setDead(); + } + } + } } @Override protected double headingForceMult() { return 1D; } @@ -86,4 +200,9 @@ public class EntityBulletBaseMK4 extends EntityThrowableInterp { @Override protected double motionMult() { return this.config.velocity; } @Override protected float getAirDrag() { return 1F; } @Override protected float getWaterDrag() { return 1F; } + + @Override public boolean doesImpactEntities() { return this.config.impactsEntities; } + @Override public boolean doesPenetrate() { return this.config.doesPenetrate; } + @Override public boolean isSpectral() { return this.config.isSpectral; } + @Override public int selfDamageDelay() { return this.config.selfDamageDelay; } } diff --git a/src/main/java/com/hbm/entity/projectile/EntityThrowableNT.java b/src/main/java/com/hbm/entity/projectile/EntityThrowableNT.java index a96f66097..f3b70f6a6 100644 --- a/src/main/java/com/hbm/entity/projectile/EntityThrowableNT.java +++ b/src/main/java/com/hbm/entity/projectile/EntityThrowableNT.java @@ -235,21 +235,11 @@ public abstract class EntityThrowableNT extends Entity implements IProjectile { float hyp = MathHelper.sqrt_double(this.motionX * this.motionX + this.motionZ * this.motionZ); this.rotationYaw = (float) (Math.atan2(this.motionX, this.motionZ) * 180.0D / Math.PI); - for(this.rotationPitch = (float) (Math.atan2(this.motionY, (double) hyp) * 180.0D / Math.PI); this.rotationPitch - this.prevRotationPitch < -180.0F; this.prevRotationPitch -= 360.0F) { - ; - } + for(this.rotationPitch = (float) (Math.atan2(this.motionY, (double) hyp) * 180.0D / Math.PI); this.rotationPitch - this.prevRotationPitch < -180.0F; this.prevRotationPitch -= 360.0F); - while(this.rotationPitch - this.prevRotationPitch >= 180.0F) { - this.prevRotationPitch += 360.0F; - } - - while(this.rotationYaw - this.prevRotationYaw < -180.0F) { - this.prevRotationYaw -= 360.0F; - } - - while(this.rotationYaw - this.prevRotationYaw >= 180.0F) { - this.prevRotationYaw += 360.0F; - } + while(this.rotationPitch - this.prevRotationPitch >= 180.0F) this.prevRotationPitch += 360.0F; + while(this.rotationYaw - this.prevRotationYaw < -180.0F) this.prevRotationYaw -= 360.0F; + while(this.rotationYaw - this.prevRotationYaw >= 180.0F) this.prevRotationYaw += 360.0F; this.rotationPitch = this.prevRotationPitch + (this.rotationPitch - this.prevRotationPitch) * 0.2F; this.rotationYaw = this.prevRotationYaw + (this.rotationYaw - this.prevRotationYaw) * 0.2F; diff --git a/src/main/java/com/hbm/explosion/ExplosionNT.java b/src/main/java/com/hbm/explosion/ExplosionNT.java index 5de3072b3..533823d5f 100644 --- a/src/main/java/com/hbm/explosion/ExplosionNT.java +++ b/src/main/java/com/hbm/explosion/ExplosionNT.java @@ -21,6 +21,7 @@ import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.Blocks; import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.DamageSource; +import net.minecraft.util.EntityDamageSource; import net.minecraft.util.MathHelper; import net.minecraft.util.Vec3; import net.minecraft.world.ChunkPosition; @@ -156,7 +157,7 @@ public class ExplosionNT extends Explosion { currentZ /= d9; double d10 = (double) this.worldObj.getBlockDensity(vec3, entity.boundingBox); double d11 = (1.0D - d4) * d10; - entity.attackEntityFrom(DamageSource.setExplosionSource(this), (float) ((int) ((d11 * d11 + d11) / 2.0D * 8.0D * (double) this.explosionSize + 1.0D))); + entity.attackEntityFrom(setExplosionSource(this), (float) ((int) ((d11 * d11 + d11) / 2.0D * 8.0D * (double) this.explosionSize + 1.0D))); double d8 = EnchantmentProtection.func_92092_a(entity, d11); entity.motionX += currentX * d8; entity.motionY += currentY * d8; @@ -173,6 +174,12 @@ public class ExplosionNT extends Explosion { } } + public static DamageSource setExplosionSource(Explosion explosion) { + return explosion != null && explosion.getExplosivePlacedBy() != null ? + (new EntityDamageSource("explosion.player", explosion.getExplosivePlacedBy())).setExplosion() : + (new DamageSource("explosion")).setExplosion(); + } + public void doExplosionB(boolean p_77279_1_) { if(!has(ExAttrib.NOSOUND)) diff --git a/src/main/java/com/hbm/explosion/ExplosionTom.java b/src/main/java/com/hbm/explosion/ExplosionTom.java index bd049ed6e..21ae8f7cd 100644 --- a/src/main/java/com/hbm/explosion/ExplosionTom.java +++ b/src/main/java/com/hbm/explosion/ExplosionTom.java @@ -106,14 +106,14 @@ public class ExplosionTom { while(y > threshold) { - if(y == 0) - break; + if(y == 0) break; + if(y <= craterFloor) { if(worldObj.rand.nextInt(499) < 1) { - worldObj.setBlock(pX, y, pZ, ModBlocks.ore_tektite_osmiridium); + worldObj.setBlock(pX, y, pZ, ModBlocks.ore_tektite_osmiridium, 0, 2); } else { - worldObj.setBlock(pX, y, pZ, ModBlocks.tektite); + worldObj.setBlock(pX, y, pZ, ModBlocks.tektite, 0, 2); } } else { @@ -130,7 +130,7 @@ public class ExplosionTom { } } } - worldObj.setBlockToAir(pX, y, pZ); + worldObj.setBlock(pX, y, pZ, Blocks.air, 0, 2); } } else { for(int i = -2; i < 3; i++) { diff --git a/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorCross.java b/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorCross.java index 64c4de445..15b1a06b8 100644 --- a/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorCross.java +++ b/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorCross.java @@ -13,7 +13,9 @@ import net.minecraft.entity.Entity; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.DamageSource; +import net.minecraft.util.EntityDamageSource; import net.minecraft.util.Vec3; +import net.minecraft.world.Explosion; import net.minecraft.world.World; import net.minecraftforge.common.util.ForgeDirection; import net.minecraftforge.event.ForgeEventFactory; @@ -86,8 +88,8 @@ public class EntityProcessorCross implements IEntityProcessor { } double knockback = (1.0D - distanceScaled) * density; - - entity.attackEntityFrom(DamageSource.setExplosionSource(explosion.compat), (float) ((int) ((knockback * knockback + knockback) / 2.0D * 8.0D * size + 1.0D))); + + entity.attackEntityFrom(setExplosionSource(explosion.compat), calculateDamage(distanceScaled, density, knockback, size)); double enchKnockback = EnchantmentProtection.func_92092_a(entity, knockback); entity.motionX += deltaX * enchKnockback; @@ -108,6 +110,16 @@ public class EntityProcessorCross implements IEntityProcessor { return affectedPlayers; } + public float calculateDamage(double distanceScaled, double density, double knockback, float size) { + return (float) ((int) ((knockback * knockback + knockback) / 2.0D * 8.0D * size + 1.0D)); + } + + public static DamageSource setExplosionSource(Explosion explosion) { + return explosion != null && explosion.getExplosivePlacedBy() != null ? + (new EntityDamageSource("explosion.player", explosion.getExplosivePlacedBy())).setExplosion() : + (new DamageSource("explosion")).setExplosion(); + } + public EntityProcessorCross withRangeMod(float mod) { range = new IEntityRangeMutator() { @Override diff --git a/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorCrossSmooth.java b/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorCrossSmooth.java new file mode 100644 index 000000000..725b9fc92 --- /dev/null +++ b/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorCrossSmooth.java @@ -0,0 +1,15 @@ +package com.hbm.explosion.vanillant.standard; + +public class EntityProcessorCrossSmooth extends EntityProcessorCross { + + protected float fixedDamage; + + public EntityProcessorCrossSmooth(double nodeDist, float fixedDamage) { + super(nodeDist); + this.fixedDamage = fixedDamage; + } + + public float calculateDamage(double distanceScaled, double density, double knockback, float size) { + return (float) (fixedDamage * (1 - distanceScaled)); + } +} diff --git a/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorStandard.java b/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorStandard.java index ba9a66cad..9e369ea35 100644 --- a/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorStandard.java +++ b/src/main/java/com/hbm/explosion/vanillant/standard/EntityProcessorStandard.java @@ -13,7 +13,9 @@ import net.minecraft.entity.Entity; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.DamageSource; +import net.minecraft.util.EntityDamageSource; import net.minecraft.util.Vec3; +import net.minecraft.world.Explosion; import net.minecraft.world.World; import net.minecraftforge.event.ForgeEventFactory; @@ -67,7 +69,7 @@ public class EntityProcessorStandard implements IEntityProcessor { double density = world.getBlockDensity(vec3, entity.boundingBox); double knockback = (1.0D - distanceScaled) * density; - entity.attackEntityFrom(DamageSource.setExplosionSource(explosion.compat), (float) ((int) ((knockback * knockback + knockback) / 2.0D * 8.0D * size + 1.0D))); + entity.attackEntityFrom(setExplosionSource(explosion.compat), calculateDamage(distanceScaled, density, knockback, size)); double enchKnockback = EnchantmentProtection.func_92092_a(entity, knockback); entity.motionX += deltaX * enchKnockback; @@ -88,6 +90,16 @@ public class EntityProcessorStandard implements IEntityProcessor { return affectedPlayers; } + public float calculateDamage(double distanceScaled, double density, double knockback, float size) { + return (float) ((int) ((knockback * knockback + knockback) / 2.0D * 8.0D * size + 1.0D)); + } + + public static DamageSource setExplosionSource(Explosion explosion) { + return explosion != null && explosion.getExplosivePlacedBy() != null ? + (new EntityDamageSource("explosion.player", explosion.getExplosivePlacedBy())).setExplosion() : + (new DamageSource("explosion")).setExplosion(); + } + public EntityProcessorStandard withRangeMod(float mod) { range = new IEntityRangeMutator() { @Override diff --git a/src/main/java/com/hbm/handler/CasingEjector.java b/src/main/java/com/hbm/handler/CasingEjector.java index eda29d1a0..321aa8d71 100644 --- a/src/main/java/com/hbm/handler/CasingEjector.java +++ b/src/main/java/com/hbm/handler/CasingEjector.java @@ -30,9 +30,9 @@ public class CasingEjector implements Cloneable { private static int nextId = 0; private Vec3 posOffset = Vec3.createVectorHelper(0, 0, 0); private Vec3 initialMotion = Vec3.createVectorHelper(0, 0, 0); - private int casingAmount = 1; - private boolean afterReload = false; - private int delay = 0; + @Deprecated private int casingAmount = 1; + @Deprecated private boolean afterReload = false; + @Deprecated private int delay = 0; private float randomYaw = 0F; private float randomPitch = 0F; @@ -61,17 +61,17 @@ public class CasingEjector implements Cloneable { return this; } - public CasingEjector setAmount(int am) { + @Deprecated public CasingEjector setAmount(int am) { this.casingAmount = am; return this; } - public CasingEjector setAfterReload() { + @Deprecated public CasingEjector setAfterReload() { this.afterReload = true; return this; } - public CasingEjector setDelay(int delay) { + @Deprecated public CasingEjector setDelay(int delay) { this.delay = delay; return this; } @@ -94,7 +94,7 @@ public class CasingEjector implements Cloneable { @SideOnly(Side.CLIENT) public void spawnCasing(TextureManager textureManager, SpentCasing config, World world, double x, double y, double z, float pitch, float yaw, boolean crouched) { Vec3 rotatedMotionVec = rotateVector(getMotion(), pitch + (float) rand.nextGaussian() * getPitchFactor(), yaw + (float) rand.nextGaussian() * getPitchFactor(), getPitchFactor(), getPitchFactor()); - ParticleSpentCasing casing = new ParticleSpentCasing(textureManager, world, x, y, z, rotatedMotionVec.xCoord, rotatedMotionVec.yCoord, rotatedMotionVec.zCoord, (float) (getPitchFactor() * rand.nextGaussian()), (float) (getYawFactor() * rand.nextGaussian()), config); + ParticleSpentCasing casing = new ParticleSpentCasing(textureManager, world, x, y, z, rotatedMotionVec.xCoord, rotatedMotionVec.yCoord, rotatedMotionVec.zCoord, (float) (getPitchFactor() * rand.nextGaussian()), (float) (getYawFactor() * rand.nextGaussian()), config, false, 0, 0, 0); offsetCasing(casing, getOffset(), pitch, yaw, crouched); diff --git a/src/main/java/com/hbm/handler/guncfg/Gun12GaugeFactory.java b/src/main/java/com/hbm/handler/guncfg/Gun12GaugeFactory.java index 1502b98ab..9ee46a194 100644 --- a/src/main/java/com/hbm/handler/guncfg/Gun12GaugeFactory.java +++ b/src/main/java/com/hbm/handler/guncfg/Gun12GaugeFactory.java @@ -70,13 +70,13 @@ public class Gun12GaugeFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL_TRANSLATE", new BusAnimationSequence() - .addKeyframePosition(0, 0, -2, 100) - .addKeyframePosition(0, 0, 0, 200) + .addPos(0, 0, -2, 100) + .addPos(0, 0, 0, 200) ) .addBus("PUMP", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 450) - .addKeyframePosition(0, 0, -1.8, 200) - .addKeyframePosition(0, 0, 0, 200) + .addPos(0, 0, 0, 450) + .addPos(0, 0, -1.8, 200) + .addPos(0, 0, 0, 200) ) ); diff --git a/src/main/java/com/hbm/handler/guncfg/Gun20GaugeFactory.java b/src/main/java/com/hbm/handler/guncfg/Gun20GaugeFactory.java index 60daa8afb..3aa45c9ab 100644 --- a/src/main/java/com/hbm/handler/guncfg/Gun20GaugeFactory.java +++ b/src/main/java/com/hbm/handler/guncfg/Gun20GaugeFactory.java @@ -49,16 +49,16 @@ public class Gun20GaugeFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("LEVER_ROTATE", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 250) - .addKeyframePosition(0, 0, 45, 500) - .addKeyframePosition(0, 0, 0, 500) + .addPos(0, 0, 0, 250) + .addPos(0, 0, 45, 500) + .addPos(0, 0, 0, 500) ) .addBus("LEVER_RECOIL", new BusAnimationSequence() - .addKeyframePosition(0.5, 0, 0, 50) - .addKeyframePosition(0, 0, 0, 50) - .addKeyframePosition(0, 0, 0, 150) - .addKeyframePosition(0, -0.5, 0, 500) - .addKeyframePosition(0, 0, 0, 500) + .addPos(0.5, 0, 0, 50) + .addPos(0, 0, 0, 50) + .addPos(0, 0, 0, 150) + .addPos(0, -0.5, 0, 500) + .addPos(0, 0, 0, 500) ) ); diff --git a/src/main/java/com/hbm/handler/guncfg/Gun45ACPFactory.java b/src/main/java/com/hbm/handler/guncfg/Gun45ACPFactory.java index d9ae7f897..c09794ca6 100644 --- a/src/main/java/com/hbm/handler/guncfg/Gun45ACPFactory.java +++ b/src/main/java/com/hbm/handler/guncfg/Gun45ACPFactory.java @@ -80,12 +80,12 @@ public class Gun45ACPFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("SLIDE", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 10)// Wait for hammer - .addKeyframePosition(0, 0, -3.5, 40)// Slide back - .addKeyframePosition(0, 0, 0, 40))// Return + .addPos(0, 0, 0, 10)// Wait for hammer + .addPos(0, 0, -3.5, 40)// Slide back + .addPos(0, 0, 0, 40))// Return .addBus("HAMMER", new BusAnimationSequence() - .addKeyframePosition(15, 0, 0, 10) - .addKeyframePosition(0, 0, 0, 40))); + .addPos(15, 0, 0, 10) + .addPos(0, 0, 0, 40))); return config; } diff --git a/src/main/java/com/hbm/handler/guncfg/Gun4GaugeFactory.java b/src/main/java/com/hbm/handler/guncfg/Gun4GaugeFactory.java index 9ebcb6f44..8869e7259 100644 --- a/src/main/java/com/hbm/handler/guncfg/Gun4GaugeFactory.java +++ b/src/main/java/com/hbm/handler/guncfg/Gun4GaugeFactory.java @@ -123,25 +123,25 @@ public class Gun4GaugeFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("SAUER_RECOIL", new BusAnimationSequence() - .addKeyframePosition(0.5, 0, 0, 50) - .addKeyframePosition(0, 0, 0, 50) + .addPos(0.5, 0, 0, 50) + .addPos(0, 0, 0, 50) ) .addBus("SAUER_TILT", new BusAnimationSequence() - .addKeyframePosition(0.0, 0, 0, 200) // do nothing for 200ms - .addKeyframePosition(0, 0, 30, 150) //tilt forward - .addKeyframePosition(45, 0, 30, 150) //tilt sideways - .addKeyframePosition(45, 0, 30, 200) //do nothing for 200ms (eject) - .addKeyframePosition(0, 0, 30, 150) //restore sideways - .addKeyframePosition(0, 0, 0, 150) //restore forward + .addPos(0.0, 0, 0, 200) // do nothing for 200ms + .addPos(0, 0, 30, 150) //tilt forward + .addPos(45, 0, 30, 150) //tilt sideways + .addPos(45, 0, 30, 200) //do nothing for 200ms (eject) + .addPos(0, 0, 30, 150) //restore sideways + .addPos(0, 0, 0, 150) //restore forward ) .addBus("SAUER_COCK", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 500) //do nothing for 500ms - .addKeyframePosition(1, 0, 0, 100) //pull back lever for 100ms - .addKeyframePosition(0, 0, 0, 100) //release lever for 100ms + .addPos(0, 0, 0, 500) //do nothing for 500ms + .addPos(1, 0, 0, 100) //pull back lever for 100ms + .addPos(0, 0, 0, 100) //release lever for 100ms ) .addBus("SAUER_SHELL_EJECT", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 500) //do nothing for 500ms - .addKeyframePosition(0, 0, 1, 500) //FLING! + .addPos(0, 0, 0, 500) //do nothing for 500ms + .addPos(0, 0, 1, 500) //FLING! ) ); diff --git a/src/main/java/com/hbm/handler/guncfg/Gun50BMGFactory.java b/src/main/java/com/hbm/handler/guncfg/Gun50BMGFactory.java index 9494ba9a9..846d931b9 100644 --- a/src/main/java/com/hbm/handler/guncfg/Gun50BMGFactory.java +++ b/src/main/java/com/hbm/handler/guncfg/Gun50BMGFactory.java @@ -137,20 +137,20 @@ public class Gun50BMGFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 25) - .addKeyframePosition(0, 0, 0, 75) + .addPos(1, 0, 0, 25) + .addPos(0, 0, 0, 75) ) ); config.animations.put(AnimType.RELOAD, new BusAnimation() .addBus("TILT", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 125) - .addKeyframePosition(1, 0, 0, 750) - .addKeyframePosition(0, 0, 0, 125) + .addPos(1, 0, 0, 125) + .addPos(1, 0, 0, 750) + .addPos(0, 0, 0, 125) ) .addBus("MAG", new BusAnimationSequence() - .addKeyframePosition(0, 0, 1, 200) - .addKeyframePosition(1, 0, 1, 200) - .addKeyframePosition(0, 0, 0, 200) + .addPos(0, 0, 1, 200) + .addPos(1, 0, 1, 200) + .addPos(0, 0, 0, 200) ) ); @@ -190,8 +190,8 @@ public class Gun50BMGFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 25) - .addKeyframePosition(0, 0, 0, 75) + .addPos(1, 0, 0, 25) + .addPos(0, 0, 0, 75) ) ); @@ -237,10 +237,10 @@ public class Gun50BMGFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(-0.45, 0.15, 0, 40) // Moves back and raise slightly - .addKeyframePosition(0, 0, 0, 75)) // Then forward again - .addBus("EJECT", new BusAnimationSequence().addKeyframePosition(0, 0, 0, 30) // Wait - .addKeyframePosition(50, 0, 0, 120))); // Fly // out + .addPos(-0.45, 0.15, 0, 40) // Moves back and raise slightly + .addPos(0, 0, 0, 75)) // Then forward again + .addBus("EJECT", new BusAnimationSequence().addPos(0, 0, 0, 30) // Wait + .addPos(50, 0, 0, 120))); // Fly // out config.ejector = EJECTOR_SNIPER; return config; diff --git a/src/main/java/com/hbm/handler/guncfg/Gun556mmFactory.java b/src/main/java/com/hbm/handler/guncfg/Gun556mmFactory.java index df66f7f16..25f683b8a 100644 --- a/src/main/java/com/hbm/handler/guncfg/Gun556mmFactory.java +++ b/src/main/java/com/hbm/handler/guncfg/Gun556mmFactory.java @@ -92,8 +92,8 @@ public class Gun556mmFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(0.5, 0, 0, 25) - .addKeyframePosition(0, 0, 0, 75) + .addPos(0.5, 0, 0, 25) + .addPos(0, 0, 0, 75) ) ); diff --git a/src/main/java/com/hbm/handler/guncfg/Gun75BoltFactory.java b/src/main/java/com/hbm/handler/guncfg/Gun75BoltFactory.java index 09384bcc7..e8e667fab 100644 --- a/src/main/java/com/hbm/handler/guncfg/Gun75BoltFactory.java +++ b/src/main/java/com/hbm/handler/guncfg/Gun75BoltFactory.java @@ -47,25 +47,25 @@ public class Gun75BoltFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 25) - .addKeyframePosition(0, 0, 0, 75) + .addPos(1, 0, 0, 25) + .addPos(0, 0, 0, 75) ) .addBus("EJECT", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 25) - .addKeyframePosition(0, 0, 1, 75) + .addPos(0, 0, 0, 25) + .addPos(0, 0, 1, 75) ) ); config.animations.put(AnimType.RELOAD, new BusAnimation() .addBus("TILT", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 250) - .addKeyframePosition(1, 0, 0, 1500) - .addKeyframePosition(0, 0, 0, 250) + .addPos(1, 0, 0, 250) + .addPos(1, 0, 0, 1500) + .addPos(0, 0, 0, 250) ) .addBus("MAG", new BusAnimationSequence() - .addKeyframePosition(0, 0, 1, 500) - .addKeyframePosition(1, 0, 1, 500) - .addKeyframePosition(0, 0, 0, 500) + .addPos(0, 0, 1, 500) + .addPos(1, 0, 1, 500) + .addPos(0, 0, 0, 500) ) ); diff --git a/src/main/java/com/hbm/handler/guncfg/Gun762mmFactory.java b/src/main/java/com/hbm/handler/guncfg/Gun762mmFactory.java index 6f08a02eb..619a3fe96 100644 --- a/src/main/java/com/hbm/handler/guncfg/Gun762mmFactory.java +++ b/src/main/java/com/hbm/handler/guncfg/Gun762mmFactory.java @@ -57,15 +57,15 @@ public class Gun762mmFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 25) - .addKeyframePosition(0, 0, 0, 75) + .addPos(1, 0, 0, 25) + .addPos(0, 0, 0, 75) ) ); config.animations.put(AnimType.RELOAD, new BusAnimation() .addBus("MAG", new BusAnimationSequence() - .addKeyframePosition(0, -1, 0, 500) - .addKeyframePosition(0, 0, 0, 500) + .addPos(0, -1, 0, 500) + .addPos(0, 0, 0, 500) ) ); @@ -176,19 +176,19 @@ public class Gun762mmFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 25) - .addKeyframePosition(0, 0, 0, 75) + .addPos(1, 0, 0, 25) + .addPos(0, 0, 0, 75) ) .addBus("LEVER_PULL", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 375) //wait out recoil and lever flick - .addKeyframePosition(-1, 0, 0, 375) //pull back bolt - .addKeyframePosition(0, 0, 0, 375) //release bolt + .addPos(0, 0, 0, 375) //wait out recoil and lever flick + .addPos(-1, 0, 0, 375) //pull back bolt + .addPos(0, 0, 0, 375) //release bolt ) .addBus("LEVER_ROTATE", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 250) //wait out recoil - .addKeyframePosition(1, 0, 0, 125) //flick up lever in 125ms - .addKeyframePosition(1, 0, 0, 750) //pull action - .addKeyframePosition(0, 0, 0, 125) //flick down lever again + .addPos(0, 0, 0, 250) //wait out recoil + .addPos(1, 0, 0, 125) //flick up lever in 125ms + .addPos(1, 0, 0, 750) //pull action + .addPos(0, 0, 0, 125) //flick down lever again ) ); @@ -215,19 +215,19 @@ public class Gun762mmFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 25) - .addKeyframePosition(0, 0, 0, 75) + .addPos(1, 0, 0, 25) + .addPos(0, 0, 0, 75) ) .addBus("LEVER_PULL", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 375) //wait out recoil and lever flick - .addKeyframePosition(-1, 0, 0, 375) //pull back bolt - .addKeyframePosition(0, 0, 0, 375) //release bolt + .addPos(0, 0, 0, 375) //wait out recoil and lever flick + .addPos(-1, 0, 0, 375) //pull back bolt + .addPos(0, 0, 0, 375) //release bolt ) .addBus("LEVER_ROTATE", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 250) //wait out recoil - .addKeyframePosition(1, 0, 0, 125) //flick up lever in 125ms - .addKeyframePosition(1, 0, 0, 750) //pull action - .addKeyframePosition(0, 0, 0, 125) //flick down lever again + .addPos(0, 0, 0, 250) //wait out recoil + .addPos(1, 0, 0, 125) //flick up lever in 125ms + .addPos(1, 0, 0, 750) //pull action + .addPos(0, 0, 0, 125) //flick down lever again ) ); @@ -258,19 +258,19 @@ public class Gun762mmFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 25) - .addKeyframePosition(0, 0, 0, 75) + .addPos(1, 0, 0, 25) + .addPos(0, 0, 0, 75) ) .addBus("LEVER_PULL", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 375) //wait out recoil and lever flick - .addKeyframePosition(-1, 0, 0, 375) //pull back bolt - .addKeyframePosition(0, 0, 0, 375) //release bolt + .addPos(0, 0, 0, 375) //wait out recoil and lever flick + .addPos(-1, 0, 0, 375) //pull back bolt + .addPos(0, 0, 0, 375) //release bolt ) .addBus("LEVER_ROTATE", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 250) //wait out recoil - .addKeyframePosition(1, 0, 0, 125) //flick up lever in 125ms - .addKeyframePosition(1, 0, 0, 750) //pull action - .addKeyframePosition(0, 0, 0, 125) //flick down lever again + .addPos(0, 0, 0, 250) //wait out recoil + .addPos(1, 0, 0, 125) //flick up lever in 125ms + .addPos(1, 0, 0, 750) //pull action + .addPos(0, 0, 0, 125) //flick down lever again ) ); diff --git a/src/main/java/com/hbm/handler/guncfg/GunGaussFactory.java b/src/main/java/com/hbm/handler/guncfg/GunGaussFactory.java index 572bf3674..000e74d4e 100644 --- a/src/main/java/com/hbm/handler/guncfg/GunGaussFactory.java +++ b/src/main/java/com/hbm/handler/guncfg/GunGaussFactory.java @@ -41,8 +41,8 @@ public class GunGaussFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 25) - .addKeyframePosition(0, 0, 0, 75) + .addPos(1, 0, 0, 25) + .addPos(0, 0, 0, 75) ) ); diff --git a/src/main/java/com/hbm/handler/guncfg/GunRocketFactory.java b/src/main/java/com/hbm/handler/guncfg/GunRocketFactory.java index 02a1e5a37..08a7bdc35 100644 --- a/src/main/java/com/hbm/handler/guncfg/GunRocketFactory.java +++ b/src/main/java/com/hbm/handler/guncfg/GunRocketFactory.java @@ -82,23 +82,23 @@ public class GunRocketFactory { config.animations.put(AnimType.CYCLE, new BusAnimation() .addBus("QUADRO_RECOIL", new BusAnimationSequence() - .addKeyframePosition(0, 0, -0.5, 50) - .addKeyframePosition(0, 0, 0, 50) + .addPos(0, 0, -0.5, 50) + .addPos(0, 0, 0, 50) ) ); config.animations.put(AnimType.RELOAD, new BusAnimation() .addBus("QUADRO_RELOAD_ROTATE", new BusAnimationSequence() - .addKeyframePosition(0, 0, 60, 750) - .addKeyframePosition(0, 0, 60, 3500) - .addKeyframePosition(0, 0, 0, 750) + .addPos(0, 0, 60, 750) + .addPos(0, 0, 60, 3500) + .addPos(0, 0, 0, 750) ) .addBus("QUADRO_RELOAD_PUSH", new BusAnimationSequence() - .addKeyframePosition(-1, -1, 0, 0) - .addKeyframePosition(-1, -1, 0, 750) - .addKeyframePosition(-1, 0, 0, 500) - .addKeyframePosition(0, 0, 0, 3000) - .addKeyframePosition(0, 0, 0, 750) + .addPos(-1, -1, 0, 0) + .addPos(-1, -1, 0, 750) + .addPos(-1, 0, 0, 500) + .addPos(0, 0, 0, 3000) + .addPos(0, 0, 0, 750) ) ); diff --git a/src/main/java/com/hbm/handler/nei/ArcFurnaceFluidHandler.java b/src/main/java/com/hbm/handler/nei/ArcFurnaceFluidHandler.java index 228cb786c..b7290eedb 100644 --- a/src/main/java/com/hbm/handler/nei/ArcFurnaceFluidHandler.java +++ b/src/main/java/com/hbm/handler/nei/ArcFurnaceFluidHandler.java @@ -6,7 +6,7 @@ import com.hbm.inventory.recipes.ArcFurnaceRecipes; public class ArcFurnaceFluidHandler extends NEIUniversalHandler { public ArcFurnaceFluidHandler() { - super("Arc Furnace (Fluid)", ModBlocks.machine_arc_furnace, ArcFurnaceRecipes.getFluidRecipes()); + super(ModBlocks.machine_arc_furnace.getLocalizedName(), ModBlocks.machine_arc_furnace, ArcFurnaceRecipes.getFluidRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/ArcFurnaceSolidHandler.java b/src/main/java/com/hbm/handler/nei/ArcFurnaceSolidHandler.java index b2b21ffd9..7345e4f72 100644 --- a/src/main/java/com/hbm/handler/nei/ArcFurnaceSolidHandler.java +++ b/src/main/java/com/hbm/handler/nei/ArcFurnaceSolidHandler.java @@ -6,7 +6,7 @@ import com.hbm.inventory.recipes.ArcFurnaceRecipes; public class ArcFurnaceSolidHandler extends NEIUniversalHandler { public ArcFurnaceSolidHandler() { - super("Arc Furnace (Solid)", ModBlocks.machine_arc_furnace, ArcFurnaceRecipes.getSolidRecipes()); + super(ModBlocks.machine_arc_furnace.getLocalizedName(), ModBlocks.machine_arc_furnace, ArcFurnaceRecipes.getSolidRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/ArcWelderHandler.java b/src/main/java/com/hbm/handler/nei/ArcWelderHandler.java index e598840fc..b1eb411bf 100644 --- a/src/main/java/com/hbm/handler/nei/ArcWelderHandler.java +++ b/src/main/java/com/hbm/handler/nei/ArcWelderHandler.java @@ -15,7 +15,7 @@ import net.minecraft.item.ItemStack; public class ArcWelderHandler extends NEIUniversalHandler { public ArcWelderHandler() { - super("Arc Welder", ModBlocks.machine_arc_welder, ArcWelderRecipes.getRecipes()); + super(ModBlocks.machine_arc_welder.getLocalizedName(), ModBlocks.machine_arc_welder, ArcWelderRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/AshpitHandler.java b/src/main/java/com/hbm/handler/nei/AshpitHandler.java index d7cf8af20..6e4313a84 100644 --- a/src/main/java/com/hbm/handler/nei/AshpitHandler.java +++ b/src/main/java/com/hbm/handler/nei/AshpitHandler.java @@ -17,7 +17,7 @@ import net.minecraft.item.ItemStack; public class AshpitHandler extends NEIUniversalHandler { public AshpitHandler() { - super("Ashpit", ModBlocks.machine_ashpit, getRecipes()); + super(ModBlocks.machine_ashpit.getLocalizedName(), ModBlocks.machine_ashpit, getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/BoilingHandler.java b/src/main/java/com/hbm/handler/nei/BoilingHandler.java index a048cfb44..0ac8427c8 100644 --- a/src/main/java/com/hbm/handler/nei/BoilingHandler.java +++ b/src/main/java/com/hbm/handler/nei/BoilingHandler.java @@ -13,7 +13,7 @@ import com.hbm.items.machine.ItemFluidIcon; public class BoilingHandler extends NEIUniversalHandler { public BoilingHandler() { - super("Boiler", ModBlocks.machine_boiler, generateRecipes()); + super(ModBlocks.machine_boiler.getLocalizedName(), ModBlocks.machine_boiler, generateRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/CokingHandler.java b/src/main/java/com/hbm/handler/nei/CokingHandler.java index a0227147e..41d0c72ce 100644 --- a/src/main/java/com/hbm/handler/nei/CokingHandler.java +++ b/src/main/java/com/hbm/handler/nei/CokingHandler.java @@ -9,7 +9,7 @@ import com.hbm.inventory.recipes.CokerRecipes; public class CokingHandler extends NEIUniversalHandler { public CokingHandler() { - super("Coking", ModBlocks.machine_coker, CokerRecipes.getRecipes()); + super(ModBlocks.machine_coker.getLocalizedName(), ModBlocks.machine_coker, CokerRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/CombinationHandler.java b/src/main/java/com/hbm/handler/nei/CombinationHandler.java index 0c07afbbc..b303a2b53 100644 --- a/src/main/java/com/hbm/handler/nei/CombinationHandler.java +++ b/src/main/java/com/hbm/handler/nei/CombinationHandler.java @@ -9,7 +9,7 @@ import com.hbm.inventory.recipes.CombinationRecipes; public class CombinationHandler extends NEIUniversalHandler { public CombinationHandler() { - super("Combination Furnace", ModBlocks.furnace_combination, CombinationRecipes.getRecipes()); + super(ModBlocks.furnace_combination.getLocalizedName(), ModBlocks.furnace_combination, CombinationRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/ElectrolyserFluidHandler.java b/src/main/java/com/hbm/handler/nei/ElectrolyserFluidHandler.java index 11af20db8..5072b1bfb 100644 --- a/src/main/java/com/hbm/handler/nei/ElectrolyserFluidHandler.java +++ b/src/main/java/com/hbm/handler/nei/ElectrolyserFluidHandler.java @@ -9,7 +9,7 @@ import com.hbm.inventory.recipes.ElectrolyserFluidRecipes; public class ElectrolyserFluidHandler extends NEIUniversalHandler { public ElectrolyserFluidHandler() { - super("Electrolysis", ModBlocks.machine_electrolyser, ElectrolyserFluidRecipes.getRecipes()); + super(ModBlocks.machine_electrolyser.getLocalizedName(), ModBlocks.machine_electrolyser, ElectrolyserFluidRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/ElectrolyserMetalHandler.java b/src/main/java/com/hbm/handler/nei/ElectrolyserMetalHandler.java index f1d5b6e68..b695f86b9 100644 --- a/src/main/java/com/hbm/handler/nei/ElectrolyserMetalHandler.java +++ b/src/main/java/com/hbm/handler/nei/ElectrolyserMetalHandler.java @@ -9,7 +9,7 @@ import com.hbm.inventory.recipes.ElectrolyserMetalRecipes; public class ElectrolyserMetalHandler extends NEIUniversalHandler { public ElectrolyserMetalHandler() { - super("Electrolysis", ModBlocks.machine_electrolyser, ElectrolyserMetalRecipes.getRecipes()); + super(ModBlocks.machine_electrolyser.getLocalizedName(), ModBlocks.machine_electrolyser, ElectrolyserMetalRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/ExposureChamberHandler.java b/src/main/java/com/hbm/handler/nei/ExposureChamberHandler.java index 4969763e4..a9f16bb50 100644 --- a/src/main/java/com/hbm/handler/nei/ExposureChamberHandler.java +++ b/src/main/java/com/hbm/handler/nei/ExposureChamberHandler.java @@ -9,7 +9,7 @@ import com.hbm.inventory.recipes.ExposureChamberRecipes; public class ExposureChamberHandler extends NEIUniversalHandler { public ExposureChamberHandler() { - super("Exposure Chamber", ModBlocks.machine_exposure_chamber, ExposureChamberRecipes.getRecipes()); + super(ModBlocks.machine_exposure_chamber.getLocalizedName(), ModBlocks.machine_exposure_chamber, ExposureChamberRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/FractioningHandler.java b/src/main/java/com/hbm/handler/nei/FractioningHandler.java index 158ab9b4d..fb54c4d51 100644 --- a/src/main/java/com/hbm/handler/nei/FractioningHandler.java +++ b/src/main/java/com/hbm/handler/nei/FractioningHandler.java @@ -6,7 +6,7 @@ import com.hbm.inventory.recipes.FractionRecipes; public class FractioningHandler extends NEIUniversalHandler { public FractioningHandler() { - super("Fractioning", ModBlocks.machine_fraction_tower, FractionRecipes.getFractionRecipesForNEI()); + super(ModBlocks.machine_fraction_tower.getLocalizedName(), ModBlocks.machine_fraction_tower, FractionRecipes.getFractionRecipesForNEI()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/LiquefactionHandler.java b/src/main/java/com/hbm/handler/nei/LiquefactionHandler.java index b3f31e9cb..5d0398d4c 100644 --- a/src/main/java/com/hbm/handler/nei/LiquefactionHandler.java +++ b/src/main/java/com/hbm/handler/nei/LiquefactionHandler.java @@ -6,7 +6,7 @@ import com.hbm.inventory.recipes.LiquefactionRecipes; public class LiquefactionHandler extends NEIUniversalHandler { public LiquefactionHandler() { - super("Liquefaction", ModBlocks.machine_liquefactor, LiquefactionRecipes.getRecipes()); + super(ModBlocks.machine_liquefactor.getLocalizedName(), ModBlocks.machine_liquefactor, LiquefactionRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/MixerHandler.java b/src/main/java/com/hbm/handler/nei/MixerHandler.java index 320cde187..b93ff9ca1 100644 --- a/src/main/java/com/hbm/handler/nei/MixerHandler.java +++ b/src/main/java/com/hbm/handler/nei/MixerHandler.java @@ -9,7 +9,7 @@ import com.hbm.inventory.recipes.MixerRecipes; public class MixerHandler extends NEIUniversalHandler { public MixerHandler() { - super("Mixer", ModBlocks.machine_mixer, MixerRecipes.getRecipes()); + super(ModBlocks.machine_mixer.getLocalizedName(), ModBlocks.machine_mixer, MixerRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/OutgasserHandler.java b/src/main/java/com/hbm/handler/nei/OutgasserHandler.java index e3965aea1..6a7575609 100644 --- a/src/main/java/com/hbm/handler/nei/OutgasserHandler.java +++ b/src/main/java/com/hbm/handler/nei/OutgasserHandler.java @@ -9,7 +9,7 @@ import com.hbm.inventory.recipes.OutgasserRecipes; public class OutgasserHandler extends NEIUniversalHandler { public OutgasserHandler() { - super("Irradiation", ModBlocks.rbmk_outgasser, OutgasserRecipes.getRecipes()); + super(ModBlocks.rbmk_outgasser.getLocalizedName(), ModBlocks.rbmk_outgasser, OutgasserRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/PyroHandler.java b/src/main/java/com/hbm/handler/nei/PyroHandler.java index f4a992ad4..b81813e53 100644 --- a/src/main/java/com/hbm/handler/nei/PyroHandler.java +++ b/src/main/java/com/hbm/handler/nei/PyroHandler.java @@ -9,7 +9,7 @@ import com.hbm.inventory.recipes.PyroOvenRecipes; public class PyroHandler extends NEIUniversalHandler { public PyroHandler() { - super("Pyrolysis", ModBlocks.machine_pyrooven, PyroOvenRecipes.getRecipes()); + super(ModBlocks.machine_pyrooven.getLocalizedName(), ModBlocks.machine_pyrooven, PyroOvenRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/RotaryFurnaceHandler.java b/src/main/java/com/hbm/handler/nei/RotaryFurnaceHandler.java new file mode 100644 index 000000000..ca6c3b628 --- /dev/null +++ b/src/main/java/com/hbm/handler/nei/RotaryFurnaceHandler.java @@ -0,0 +1,62 @@ +package com.hbm.handler.nei; + +import java.awt.Rectangle; +import java.util.Locale; + +import com.hbm.blocks.ModBlocks; +import com.hbm.inventory.fluid.Fluids; +import com.hbm.inventory.gui.GUIMachineRotaryFurnace; +import com.hbm.inventory.recipes.RotaryFurnaceRecipes; +import com.hbm.inventory.recipes.RotaryFurnaceRecipes.RotaryFurnaceRecipe; +import com.hbm.items.machine.ItemScraps; +import com.hbm.util.I18nUtil; + +import net.minecraft.client.Minecraft; +import net.minecraft.client.gui.FontRenderer; +import net.minecraft.item.ItemStack; + +public class RotaryFurnaceHandler extends NEIUniversalHandler { + + public RotaryFurnaceHandler() { + super(ModBlocks.machine_rotary_furnace.getLocalizedName(), ModBlocks.machine_rotary_furnace, RotaryFurnaceRecipes.getRecipes()); + } + + @Override + public String getKey() { + return "ntmRotaryFurnace"; + } + + @Override + public void loadTransferRects() { + super.loadTransferRects(); + transferRectsGui.add(new RecipeTransferRect(new Rectangle(58, 19, 32, 10), "ntmRotaryFurnace")); + guiGui.add(GUIMachineRotaryFurnace.class); + RecipeTransferRectHandler.registerRectsToGuis(guiGui, transferRectsGui); + } + + @Override + public void drawExtras(int recipe) { + + RecipeSet rec = (RecipeSet) this.arecipes.get(recipe); + Object[] original = (Object[]) rec.originalInputInstance; + ItemStack output = rec.output[0].item; + + outer: for(RotaryFurnaceRecipe arc : RotaryFurnaceRecipes.recipes) { + + if(ItemStack.areItemStacksEqual(ItemScraps.create(arc.output, true), output) && arc.ingredients.length == original.length - (arc.fluid == null ? 0 : 1)) { + + for(int i = 0; i < rec.input.length - (arc.fluid == null ? 0 : 1); i++) { + if(arc.ingredients[i] != original[i]) continue outer; + } + + FontRenderer fontRenderer = Minecraft.getMinecraft().fontRenderer; + String duration = String.format(Locale.US, "%,d", arc.duration) + " ticks"; + String consumption = I18nUtil.resolveKey(Fluids.STEAM.getUnlocalizedName()) + ": " + String.format(Locale.US, "%,d", arc.steam) + " mB/t"; + int side = 160; + fontRenderer.drawString(duration, side - fontRenderer.getStringWidth(duration), 43, 0x404040); + fontRenderer.drawString(consumption, side - fontRenderer.getStringWidth(consumption), 55, 0x404040); + return; + } + } + } +} diff --git a/src/main/java/com/hbm/handler/nei/SawmillHandler.java b/src/main/java/com/hbm/handler/nei/SawmillHandler.java index e573e9f42..43d79bf87 100644 --- a/src/main/java/com/hbm/handler/nei/SawmillHandler.java +++ b/src/main/java/com/hbm/handler/nei/SawmillHandler.java @@ -6,7 +6,7 @@ import com.hbm.tileentity.machine.TileEntitySawmill; public class SawmillHandler extends NEIUniversalHandler { public SawmillHandler() { - super("Sawmill", ModBlocks.machine_sawmill, TileEntitySawmill.getRecipes()); + super(ModBlocks.machine_sawmill.getLocalizedName(), ModBlocks.machine_sawmill, TileEntitySawmill.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/SolderingStationHandler.java b/src/main/java/com/hbm/handler/nei/SolderingStationHandler.java index a48f5f620..a1f127692 100644 --- a/src/main/java/com/hbm/handler/nei/SolderingStationHandler.java +++ b/src/main/java/com/hbm/handler/nei/SolderingStationHandler.java @@ -15,7 +15,7 @@ import net.minecraft.item.ItemStack; public class SolderingStationHandler extends NEIUniversalHandler { public SolderingStationHandler() { - super("Soldering Station", ModBlocks.machine_soldering_station, SolderingRecipes.getRecipes()); + super(ModBlocks.machine_soldering_station.getLocalizedName(), ModBlocks.machine_soldering_station, SolderingRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/SolidificationHandler.java b/src/main/java/com/hbm/handler/nei/SolidificationHandler.java index 181f7dfa8..5eda6e643 100644 --- a/src/main/java/com/hbm/handler/nei/SolidificationHandler.java +++ b/src/main/java/com/hbm/handler/nei/SolidificationHandler.java @@ -6,7 +6,7 @@ import com.hbm.inventory.recipes.SolidificationRecipes; public class SolidificationHandler extends NEIUniversalHandler { public SolidificationHandler() { - super("Solidification", ModBlocks.machine_solidifier, SolidificationRecipes.getRecipes()); + super(ModBlocks.machine_solidifier.getLocalizedName(), ModBlocks.machine_solidifier, SolidificationRecipes.getRecipes()); } @Override diff --git a/src/main/java/com/hbm/handler/nei/ZirnoxRecipeHandler.java b/src/main/java/com/hbm/handler/nei/ZirnoxRecipeHandler.java index a39208d98..b5ab368d5 100644 --- a/src/main/java/com/hbm/handler/nei/ZirnoxRecipeHandler.java +++ b/src/main/java/com/hbm/handler/nei/ZirnoxRecipeHandler.java @@ -6,7 +6,7 @@ import com.hbm.tileentity.machine.TileEntityReactorZirnox; public class ZirnoxRecipeHandler extends NEIUniversalHandler { public ZirnoxRecipeHandler() { - super("ZIRNOX", ModBlocks.reactor_zirnox, TileEntityReactorZirnox.fuelMap); + super(ModBlocks.reactor_zirnox.getLocalizedName(), ModBlocks.reactor_zirnox, TileEntityReactorZirnox.fuelMap); } @Override diff --git a/src/main/java/com/hbm/hazard/HazardRegistry.java b/src/main/java/com/hbm/hazard/HazardRegistry.java index d9021d10d..6c7b2a19b 100644 --- a/src/main/java/com/hbm/hazard/HazardRegistry.java +++ b/src/main/java/com/hbm/hazard/HazardRegistry.java @@ -499,8 +499,8 @@ public class HazardRegistry { /* * Blacklist */ - for(String ore : TH232.ores()) HazardSystem.blacklist(ore); - for(String ore : U.ores()) HazardSystem.blacklist(ore); + for(String ore : TH232.all(MaterialShapes.ORE)) HazardSystem.blacklist(ore); + for(String ore : U.all(MaterialShapes.ORE)) HazardSystem.blacklist(ore); /* @@ -524,7 +524,7 @@ public class HazardRegistry { }; for(MaterialShapes shape : MaterialShapes.allShapes) { - for(String prefix : shape.prefixes) { + if(!shape.noAutogen) for(String prefix : shape.prefixes) { for(Object[] o : data) { HazardSystem.register(prefix + o[0], new HazardData().setMutex(0b1).addEntry(new HazardEntry(RADIATION, (float) o[1] * shape.q(1) / MaterialShapes.INGOT.q(1)))); } diff --git a/src/main/java/com/hbm/inventory/OreDictManager.java b/src/main/java/com/hbm/inventory/OreDictManager.java index 973bf8000..b63e5d595 100644 --- a/src/main/java/com/hbm/inventory/OreDictManager.java +++ b/src/main/java/com/hbm/inventory/OreDictManager.java @@ -9,7 +9,7 @@ import java.util.List; import static com.hbm.items.ModItems.*; import static com.hbm.blocks.ModBlocks.*; import static com.hbm.inventory.OreDictManager.DictFrame.*; -import static com.hbm.inventory.OreNames.*; +import static com.hbm.inventory.material.MaterialShapes.*; import com.hbm.blocks.ModBlocks; import com.hbm.blocks.generic.BlockOreBasalt.EnumBasaltOreType; @@ -108,6 +108,8 @@ public class OreDictManager { /* * VANILLA */ + public static final DictFrame WOOD = new DictFrame("Wood"); + public static final DictFrame BONE = new DictFrame("Bone"); public static final DictFrame COAL = new DictFrame("Coal"); public static final DictFrame IRON = new DictFrame("Iron"); public static final DictFrame GOLD = new DictFrame("Gold"); @@ -205,6 +207,8 @@ public class OreDictManager { public static final DictFrame CMB = new DictFrame("CMBSteel"); public static final DictFrame DESH = new DictFrame("WorkersAlloy"); public static final DictFrame STAR = new DictFrame("Starmetal"); + public static final DictFrame GUNMETAL = new DictFrame("GunMetal"); + public static final DictFrame WEAPONSTEEL = new DictFrame("WeaponSteel"); public static final DictFrame BIGMT = new DictFrame("Saturnite"); public static final DictFrame FERRO = new DictFrame("Ferrouranium"); public static final DictFrame EUPH = new DictFrame("Euphemium"); @@ -409,6 +413,8 @@ public class OreDictManager { CMB .ingot(ingot_combine_steel) .dust(powder_combine_steel) .plate(plate_combine_steel) .block(block_combine_steel); DESH .nugget(nugget_desh) .ingot(ingot_desh) .dust(powder_desh) .block(block_desh); STAR .ingot(ingot_starmetal) .block(block_starmetal); + GUNMETAL .ingot(ingot_gunmetal) .plate(plate_gunmetal); + WEAPONSTEEL .ingot(ingot_weaponsteel) .plate(plate_weaponsteel); BIGMT .ingot(ingot_saturnite) .plate(plate_saturnite); FERRO .ingot(ingot_ferrouranium); EUPH .nugget(nugget_euphemium) .ingot(ingot_euphemium) .dust(powder_euphemium) .block(block_euphemium); @@ -548,6 +554,14 @@ public class OreDictManager { } if(mat.shapes.contains(MaterialShapes.FRAGMENT)) for(String name : mat.names) OreDictionary.registerOre(MaterialShapes.FRAGMENT.name() + name, new ItemStack(ModItems.bedrock_ore_fragment, 1, mat.id)); if(mat.shapes.contains(MaterialShapes.WIRE)) for(String name : mat.names) OreDictionary.registerOre(MaterialShapes.WIRE.name() + name, new ItemStack(ModItems.wire_fine, 1, mat.id)); + + if(mat.shapes.contains(MaterialShapes.LIGHTBARREL)) for(String name : mat.names) OreDictionary.registerOre(MaterialShapes.LIGHTBARREL.name() + name, new ItemStack(ModItems.part_barrel_light, 1, mat.id)); + if(mat.shapes.contains(MaterialShapes.HEAVYBARREL)) for(String name : mat.names) OreDictionary.registerOre(MaterialShapes.HEAVYBARREL.name() + name, new ItemStack(ModItems.part_barrel_heavy, 1, mat.id)); + if(mat.shapes.contains(MaterialShapes.LIGHTRECEIVER)) for(String name : mat.names) OreDictionary.registerOre(MaterialShapes.LIGHTRECEIVER.name() + name, new ItemStack(ModItems.part_receiver_light, 1, mat.id)); + if(mat.shapes.contains(MaterialShapes.HEAVYRECEIVER)) for(String name : mat.names) OreDictionary.registerOre(MaterialShapes.HEAVYRECEIVER.name() + name, new ItemStack(ModItems.part_receiver_heavy, 1, mat.id)); + if(mat.shapes.contains(MaterialShapes.MECHANISM)) for(String name : mat.names) OreDictionary.registerOre(MaterialShapes.MECHANISM.name() + name, new ItemStack(ModItems.part_mechanism, 1, mat.id)); + if(mat.shapes.contains(MaterialShapes.STOCK)) for(String name : mat.names) OreDictionary.registerOre(MaterialShapes.STOCK.name() + name, new ItemStack(ModItems.part_stock, 1, mat.id)); + if(mat.shapes.contains(MaterialShapes.GRIP)) for(String name : mat.names) OreDictionary.registerOre(MaterialShapes.GRIP.name() + name, new ItemStack(ModItems.part_grip, 1, mat.id)); } for(EnumBedrockOre ore : EnumBedrockOre.values()) { @@ -669,8 +683,8 @@ public class OreDictManager { ANY_RUBBER.addPrefix(INGOT, true); ANY_PLASTIC.addPrefix(INGOT, true).addPrefix(DUST, true).addPrefix(BLOCK, true); ANY_HARDPLASTIC.addPrefix(INGOT, true); - ANY_RESISTANTALLOY.addPrefix(INGOT, true).addPrefix(DUST, true).addPrefix(PLATECAST, true).addPrefix(PLATEWELDED, true).addPrefix(HEAVY_COMPONENT, true).addPrefix(BLOCK, true); - ANY_BISMOIDBRONZE.addPrefix(INGOT, true).addPrefix(PLATECAST, true); + ANY_RESISTANTALLOY.addPrefix(INGOT, true).addPrefix(DUST, true).addPrefix(CASTPLATE, true).addPrefix(WELDEDPLATE, true).addPrefix(HEAVY_COMPONENT, true).addPrefix(BLOCK, true); + ANY_BISMOIDBRONZE.addPrefix(INGOT, true).addPrefix(CASTPLATE, true); ANY_TAR.addPrefix(ANY, false); } @@ -737,44 +751,35 @@ public class OreDictManager { /* * Quick access methods to grab ore names for recipes. */ - public String any() { return ANY + mats[0]; } - public String nugget() { return NUGGET + mats[0]; } - public String tiny() { return TINY + mats[0]; } - public String bolt() { return BOLT + mats[0]; } - public String ingot() { return INGOT + mats[0]; } - public String dustTiny() { return DUSTTINY + mats[0]; } - public String dust() { return DUST + mats[0]; } - public String gem() { return GEM + mats[0]; } - public String crystal() { return CRYSTAL + mats[0]; } - public String plate() { return PLATE + mats[0]; } - public String plateCast() { return PLATECAST + mats[0]; } - public String plateWelded() { return PLATEWELDED + mats[0]; } - public String heavyComp() { return HEAVY_COMPONENT + mats[0]; } - public String wireFine() { return WIRE + mats[0]; } - public String wireDense() { return WIREDENSE + mats[0]; } - public String shell() { return SHELL + mats[0]; } - public String pipe() { return PIPE + mats[0]; } - public String billet() { return BILLET + mats[0]; } - public String block() { return BLOCK + mats[0]; } - public String ore() { return ORE + mats[0]; } - public String fragment() { return FRAGMENT + mats[0]; } - public String[] anys() { return appendToAll(ANY); } - public String[] nuggets() { return appendToAll(NUGGET); } - public String[] tinys() { return appendToAll(TINY); } - public String[] allNuggets() { return appendToAll(NUGGET, TINY); } - public String[] ingots() { return appendToAll(INGOT); } - public String[] dustTinys() { return appendToAll(DUSTTINY); } - public String[] dusts() { return appendToAll(DUST); } - public String[] gems() { return appendToAll(GEM); } - public String[] crystals() { return appendToAll(CRYSTAL); } - public String[] plates() { return appendToAll(PLATE); } - public String[] plateCasts() { return appendToAll(PLATECAST); } - public String[] shells() { return appendToAll(SHELL); } - public String[] pipes() { return appendToAll(PIPE); } - public String[] billets() { return appendToAll(BILLET); } - public String[] blocks() { return appendToAll(BLOCK); } - public String[] ores() { return appendToAll(ORE); } - public String[] fragments() { return appendToAll(FRAGMENT); } + public String any() { return ANY.name() + mats[0]; } + public String nugget() { return NUGGET.name() + mats[0]; } + public String tiny() { return TINY.name() + mats[0]; } + public String bolt() { return BOLT.name() + mats[0]; } + public String ingot() { return INGOT.name() + mats[0]; } + public String dustTiny() { return DUSTTINY.name() + mats[0]; } + public String dust() { return DUST.name() + mats[0]; } + public String gem() { return GEM.name() + mats[0]; } + public String crystal() { return CRYSTAL.name() + mats[0]; } + public String plate() { return PLATE.name() + mats[0]; } + public String plateCast() { return CASTPLATE.name() + mats[0]; } + public String plateWelded() { return WELDEDPLATE.name() + mats[0]; } + public String heavyComp() { return HEAVY_COMPONENT.name() + mats[0]; } + public String wireFine() { return WIRE.name() + mats[0]; } + public String wireDense() { return DENSEWIRE.name() + mats[0]; } + public String shell() { return SHELL.name() + mats[0]; } + public String pipe() { return PIPE.name() + mats[0]; } + public String billet() { return BILLET.name() + mats[0]; } + public String block() { return BLOCK.name() + mats[0]; } + public String ore() { return ORE.name() + mats[0]; } + public String fragment() { return FRAGMENT.name() + mats[0]; } + public String lightBarrel() { return LIGHTBARREL.name() + mats[0]; } + public String heavyBarrel() { return HEAVYBARREL.name() + mats[0]; } + public String lightReceiver() { return LIGHTRECEIVER.name() + mats[0]; } + public String heavyReceiver() { return HEAVYRECEIVER.name() + mats[0]; } + public String mechanism() { return MECHANISM.name() + mats[0]; } + public String stock() { return STOCK.name() + mats[0]; } + public String grip() { return GRIP.name() + mats[0]; } + public String[] all(MaterialShapes shape) { return appendToAll(shape.prefixes); } /** Returns cast (triple) plates if 528 mode is enabled or normal plates if not */ public String plate528() { return GeneralConfig.enable528 ? plateCast() : plate(); } @@ -868,7 +873,7 @@ public class OreDictManager { } public DictFrame plateCast(Object... plate) { hazMult = HazardRegistry.plateCast; - return makeObject(PLATECAST, plate); + return makeObject(CASTPLATE, plate); } public DictFrame billet(Object... billet) { hazMult = HazardRegistry.billet; @@ -888,8 +893,9 @@ public class OreDictManager { return makeObject(ORENETHER, oreNether); } - public DictFrame makeObject(String tag, Object... objects) { + public DictFrame makeObject(MaterialShapes shape, Object... objects) { + String tag = shape.name(); for(Object o : objects) { if(o instanceof Item) registerStack(tag, new ItemStack((Item) o)); if(o instanceof Block) registerStack(tag, new ItemStack((Block) o)); @@ -974,8 +980,9 @@ public class OreDictManager { * @param prefix The prefix of both the input and result of the reregistration * @return */ - public DictGroup addPrefix(String prefix, boolean inputPrefix) { + public DictGroup addPrefix(MaterialShapes shape, boolean inputPrefix) { + String prefix = shape.name(); String group = prefix + groupName; for(String name : names) { @@ -998,24 +1005,24 @@ public class OreDictManager { return this; } - public String any() { return ANY + groupName; } - public String nugget() { return NUGGET + groupName; } - public String tiny() { return TINY + groupName; } - public String bolt() { return BOLT + groupName; } - public String ingot() { return INGOT + groupName; } - public String dustTiny() { return DUSTTINY + groupName; } - public String dust() { return DUST + groupName; } - public String gem() { return GEM + groupName; } - public String crystal() { return CRYSTAL + groupName; } - public String plate() { return PLATE + groupName; } - public String plateCast() { return PLATECAST + groupName; } - public String plateWelded() { return PLATEWELDED + groupName; } - public String heavyComp() { return HEAVY_COMPONENT + groupName; } - public String wireFine() { return WIRE + groupName; } - public String wireDense() { return WIREDENSE + groupName; } - public String billet() { return BILLET + groupName; } - public String block() { return BLOCK + groupName; } - public String ore() { return ORE + groupName; } + public String any() { return ANY.name() + groupName; } + public String nugget() { return NUGGET.name() + groupName; } + public String tiny() { return TINY.name() + groupName; } + public String bolt() { return BOLT.name() + groupName; } + public String ingot() { return INGOT.name() + groupName; } + public String dustTiny() { return DUSTTINY .name() + groupName; } + public String dust() { return DUST.name() + groupName; } + public String gem() { return GEM.name() + groupName; } + public String crystal() { return CRYSTAL.name() + groupName; } + public String plate() { return PLATE.name() + groupName; } + public String plateCast() { return CASTPLATE.name() + groupName; } + public String plateWelded() { return WELDEDPLATE.name() + groupName; } + public String heavyComp() { return HEAVY_COMPONENT.name() + groupName; } + public String wireFine() { return WIRE.name() + groupName; } + public String wireDense() { return DENSEWIRE.name() + groupName; } + public String billet() { return BILLET.name() + groupName; } + public String block() { return BLOCK.name() + groupName; } + public String ore() { return ORE.name() + groupName; } } private static void addReRegistration(String original, String additional) { diff --git a/src/main/java/com/hbm/inventory/OreNames.java b/src/main/java/com/hbm/inventory/OreNames.java deleted file mode 100644 index 036d82ead..000000000 --- a/src/main/java/com/hbm/inventory/OreNames.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.hbm.inventory; - -public class OreNames { - - /* - * PREFIXES - */ - public static final String ANY = "any"; - public static final String NUGGET = "nugget"; - public static final String TINY = "tiny"; - public static final String FRAGMENT = "bedrockorefragment"; - public static final String BOLT = "bolt"; - public static final String INGOT = "ingot"; - public static final String DUSTTINY = "dustTiny"; - public static final String DUST = "dust"; - public static final String GEM = "gem"; - public static final String CRYSTAL = "crystal"; - public static final String PLATE = "plate"; - public static final String PLATECAST = "plateTriple"; //cast plates are solid plates made from 3 ingots, turns out that's literally just a GT triple plate - public static final String PLATEWELDED = "plateSextuple"; - public static final String SHELL = "shell"; - public static final String PIPE = "ntmpipe"; - public static final String WIRE = "wireFine"; - public static final String WIREDENSE = "wireDense"; - public static final String BILLET = "billet"; - public static final String BLOCK = "block"; - public static final String ORE = "ore"; - public static final String ORENETHER = "oreNether"; - public static final String HEAVY_COMPONENT = "componentHeavy"; - - public static final String[] prefixes = new String[] { - ANY, NUGGET, TINY, FRAGMENT, BOLT, INGOT, DUSTTINY, DUST, GEM, CRYSTAL, PLATE, PLATECAST, BILLET, BLOCK, ORE, ORENETHER, HEAVY_COMPONENT, WIRE, WIREDENSE - }; -} diff --git a/src/main/java/com/hbm/inventory/container/ContainerMachineRotaryFurnace.java b/src/main/java/com/hbm/inventory/container/ContainerMachineRotaryFurnace.java new file mode 100644 index 000000000..219f1f0e6 --- /dev/null +++ b/src/main/java/com/hbm/inventory/container/ContainerMachineRotaryFurnace.java @@ -0,0 +1,75 @@ +package com.hbm.inventory.container; + +import com.hbm.items.machine.IItemFluidIdentifier; +import com.hbm.tileentity.machine.TileEntityMachineRotaryFurnace; + +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.inventory.Container; +import net.minecraft.inventory.Slot; +import net.minecraft.item.ItemStack; +import net.minecraft.tileentity.TileEntityFurnace; + +public class ContainerMachineRotaryFurnace extends Container { + + private TileEntityMachineRotaryFurnace furnace; + + public ContainerMachineRotaryFurnace(InventoryPlayer invPlayer, TileEntityMachineRotaryFurnace tile) { + furnace = tile; + + //Inputs + this.addSlotToContainer(new Slot(tile, 0, 8, 18)); + this.addSlotToContainer(new Slot(tile, 1, 26, 18)); + this.addSlotToContainer(new Slot(tile, 2, 44, 18)); + //Fluid ID + this.addSlotToContainer(new Slot(tile, 3, 8, 54)); + //Solid fuel + this.addSlotToContainer(new Slot(tile, 4, 44, 54)); + + for(int i = 0; i < 3; i++) { + for(int j = 0; j < 9; j++) { + this.addSlotToContainer(new Slot(invPlayer, j + i * 9 + 9, 8 + j * 18, 104 + i * 18)); + } + } + + for(int i = 0; i < 9; i++) { + this.addSlotToContainer(new Slot(invPlayer, i, 8 + i * 18, 162)); + } + } + + @Override + public ItemStack transferStackInSlot(EntityPlayer player, int index) { + ItemStack rStack = null; + Slot slot = (Slot) this.inventorySlots.get(index); + + if(slot != null && slot.getHasStack()) { + ItemStack stack = slot.getStack(); + rStack = stack.copy(); + + if(index <= 4) { + if(!this.mergeItemStack(stack, 5, this.inventorySlots.size(), true)) return null; + } else { + if(TileEntityFurnace.isItemFuel(rStack)) { + if(!this.mergeItemStack(stack, 4, 5, false)) return null; + } else if(rStack.getItem() instanceof IItemFluidIdentifier) { + if(!this.mergeItemStack(stack, 3, 4, false)) return null; + } else { + if(!this.mergeItemStack(stack, 0, 3, false)) return null; + } + } + + if(stack.stackSize == 0) { + slot.putStack((ItemStack) null); + } else { + slot.onSlotChanged(); + } + } + + return rStack; + } + + @Override + public boolean canInteractWith(EntityPlayer player) { + return furnace.isUseableByPlayer(player); + } +} diff --git a/src/main/java/com/hbm/inventory/container/ContainerMachineShredder.java b/src/main/java/com/hbm/inventory/container/ContainerMachineShredder.java index c10e47ae7..983129533 100644 --- a/src/main/java/com/hbm/inventory/container/ContainerMachineShredder.java +++ b/src/main/java/com/hbm/inventory/container/ContainerMachineShredder.java @@ -55,12 +55,12 @@ public class ContainerMachineShredder extends Container { for(int i = 0; i < 3; i++) { for(int j = 0; j < 9; j++) { - this.addSlotToContainer(new Slot(invPlayer, j + i * 9 + 9, 8 + j * 18, 84 + i * 18 + 56)); + this.addSlotToContainer(new Slot(invPlayer, j + i * 9 + 9, 8 + j * 18, 84 + i * 18 + 67)); } } for(int i = 0; i < 9; i++) { - this.addSlotToContainer(new Slot(invPlayer, i, 8 + i * 18, 142 + 56)); + this.addSlotToContainer(new Slot(invPlayer, i, 8 + i * 18, 142 + 67)); } } diff --git a/src/main/java/com/hbm/inventory/fluid/tank/FluidTank.java b/src/main/java/com/hbm/inventory/fluid/tank/FluidTank.java index 135582280..1cbf80cc2 100644 --- a/src/main/java/com/hbm/inventory/fluid/tank/FluidTank.java +++ b/src/main/java/com/hbm/inventory/fluid/tank/FluidTank.java @@ -13,6 +13,8 @@ import com.hbm.inventory.gui.GuiInfoContainer; import com.hbm.items.ModItems; import com.hbm.items.machine.IItemFluidIdentifier; +import cpw.mods.fml.relauncher.Side; +import cpw.mods.fml.relauncher.SideOnly; import io.netty.buffer.ByteBuf; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.Tessellator; @@ -183,11 +185,11 @@ public class FluidTank { * @param width * @param height */ - public void renderTank(int x, int y, double z, int width, int height) { + @SideOnly(Side.CLIENT) public void renderTank(int x, int y, double z, int width, int height) { renderTank(x, y, z, width, height, 0); } - public void renderTank(int x, int y, double z, int width, int height, int orientation) { + @SideOnly(Side.CLIENT) public void renderTank(int x, int y, double z, int width, int height, int orientation) { GL11.glEnable(GL11.GL_BLEND); @@ -242,7 +244,7 @@ public class FluidTank { GL11.glDisable(GL11.GL_BLEND); } - public void renderTankInfo(GuiInfoContainer gui, int mouseX, int mouseY, int x, int y, int width, int height) { + @SideOnly(Side.CLIENT) public void renderTankInfo(GuiInfoContainer gui, int mouseX, int mouseY, int x, int y, int width, int height) { if(x <= mouseX && x + width > mouseX && y < mouseY && y + height >= mouseY) { List list = new ArrayList(); diff --git a/src/main/java/com/hbm/inventory/gui/GUIMachineRotaryFurnace.java b/src/main/java/com/hbm/inventory/gui/GUIMachineRotaryFurnace.java new file mode 100644 index 000000000..84a46915d --- /dev/null +++ b/src/main/java/com/hbm/inventory/gui/GUIMachineRotaryFurnace.java @@ -0,0 +1,93 @@ +package com.hbm.inventory.gui; + +import java.awt.Color; + +import org.lwjgl.input.Keyboard; +import org.lwjgl.opengl.GL11; + +import com.hbm.inventory.container.ContainerMachineRotaryFurnace; +import com.hbm.inventory.material.Mats; +import com.hbm.lib.RefStrings; +import com.hbm.tileentity.machine.TileEntityMachineRotaryFurnace; +import com.hbm.util.I18nUtil; + +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.OpenGlHelper; +import net.minecraft.client.resources.I18n; +import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.util.EnumChatFormatting; +import net.minecraft.util.ResourceLocation; + +public class GUIMachineRotaryFurnace extends GuiInfoContainer { + + private static ResourceLocation texture = new ResourceLocation(RefStrings.MODID + ":textures/gui/processing/gui_rotary_furnace.png"); + private TileEntityMachineRotaryFurnace furnace; + + public GUIMachineRotaryFurnace(InventoryPlayer playerInv, TileEntityMachineRotaryFurnace tile) { + super(new ContainerMachineRotaryFurnace(playerInv, tile)); + + this.furnace = tile; + this.xSize = 176; + this.ySize = 186; + } + + @Override + public void drawScreen(int x, int y, float interp) { + super.drawScreen(x, y, interp); + + furnace.tanks[0].renderTankInfo(this, x, y, guiLeft + 8, guiTop + 36, 52, 16); + furnace.tanks[1].renderTankInfo(this, x, y, guiLeft + 134, guiTop + 18, 16, 52); + furnace.tanks[2].renderTankInfo(this, x, y, guiLeft + 152, guiTop + 18, 16, 52); + + if(furnace.output == null) { + this.drawCustomInfoStat(x, y, guiLeft + 98, guiTop + 18, 16, 52, x, y, EnumChatFormatting.RED + "Empty"); + } else { + this.drawCustomInfoStat(x, y, guiLeft + 98, guiTop + 18, 16, 52, x, y,EnumChatFormatting.YELLOW + + I18nUtil.resolveKey(furnace.output.material.getUnlocalizedName()) + ": " + Mats.formatAmount(furnace.output.amount, Keyboard.isKeyDown(Keyboard.KEY_LSHIFT))); + } + } + + @Override + protected void drawGuiContainerForegroundLayer(int i, int j) { + String name = this.furnace.hasCustomInventoryName() ? this.furnace.getInventoryName() : I18n.format(this.furnace.getInventoryName()); + this.fontRendererObj.drawString(name, (this.xSize - 54) / 2 - this.fontRendererObj.getStringWidth(name) / 2, 6, 4210752); + this.fontRendererObj.drawString(I18n.format("container.inventory"), 8, this.ySize - 96 + 2, 4210752); + } + + @Override + protected void drawGuiContainerBackgroundLayer(float interp, int x, int y) { + GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); + Minecraft.getMinecraft().getTextureManager().bindTexture(texture); + drawTexturedModalRect(guiLeft, guiTop, 0, 0, xSize, ySize); + + int p = (int) Math.ceil(furnace.progress * 33); + drawTexturedModalRect(guiLeft + 63, guiTop + 30, 176, 0, p, 10); + + if(furnace.maxBurnTime > 0) { + int b = furnace.burnTime * 14 / furnace.maxBurnTime; + drawTexturedModalRect(guiLeft + 26, guiTop + 69 - b, 176, 24 - b, 14, b); + } + + if(furnace.output != null) { + + GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE); + + int hex = furnace.output.material.moltenColor; + int amount = furnace.output.amount * 52 / furnace.maxOutput; + Color color = new Color(hex); + GL11.glColor3f(color.getRed() / 255F, color.getGreen() / 255F, color.getBlue() / 255F); + drawTexturedModalRect(guiLeft + 98, guiTop + 70 - amount, 176, 76 - amount, 16, amount); + GL11.glEnable(GL11.GL_BLEND); + GL11.glColor4f(1F, 1F, 1F, 0.3F); + drawTexturedModalRect(guiLeft + 98, guiTop + 70 - amount, 176, 76 - amount, 16, amount); + GL11.glDisable(GL11.GL_BLEND); + + OpenGlHelper.glBlendFunc(770, 771, 1, 0); + GL11.glColor3f(255, 255, 255); + } + + furnace.tanks[0].renderTank(guiLeft + 8, guiTop + 52, this.zLevel, 52, 16, 1); + furnace.tanks[1].renderTank(guiLeft + 134, guiTop + 70, this.zLevel, 16, 52); + furnace.tanks[2].renderTank(guiLeft + 152, guiTop + 70, this.zLevel, 16, 52); + } +} diff --git a/src/main/java/com/hbm/inventory/gui/GUIMachineShredder.java b/src/main/java/com/hbm/inventory/gui/GUIMachineShredder.java index 255b789ba..ef433374e 100644 --- a/src/main/java/com/hbm/inventory/gui/GUIMachineShredder.java +++ b/src/main/java/com/hbm/inventory/gui/GUIMachineShredder.java @@ -21,7 +21,7 @@ public class GUIMachineShredder extends GuiInfoContainer { diFurnace = tedf; this.xSize = 176; - this.ySize = 222; + this.ySize = 233; } @Override diff --git a/src/main/java/com/hbm/inventory/gui/GUIMachineSolderingStation.java b/src/main/java/com/hbm/inventory/gui/GUIMachineSolderingStation.java index 1a3a3f363..7e718b9f9 100644 --- a/src/main/java/com/hbm/inventory/gui/GUIMachineSolderingStation.java +++ b/src/main/java/com/hbm/inventory/gui/GUIMachineSolderingStation.java @@ -4,11 +4,16 @@ import org.lwjgl.opengl.GL11; import com.hbm.inventory.container.ContainerMachineSolderingStation; import com.hbm.lib.RefStrings; +import com.hbm.packet.PacketDispatcher; +import com.hbm.packet.toserver.NBTControlPacket; import com.hbm.tileentity.machine.TileEntityMachineSolderingStation; import net.minecraft.client.Minecraft; +import net.minecraft.client.audio.PositionedSoundRecord; import net.minecraft.client.resources.I18n; import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.util.EnumChatFormatting; import net.minecraft.util.ResourceLocation; public class GUIMachineSolderingStation extends GuiInfoContainer { @@ -32,6 +37,24 @@ public class GUIMachineSolderingStation extends GuiInfoContainer { this.drawElectricityInfo(this, x, y, guiLeft + 152, guiTop + 18, 16, 52, solderer.getPower(), solderer.getMaxPower()); this.drawCustomInfoStat(x, y, guiLeft + 78, guiTop + 67, 8, 8, guiLeft + 78, guiTop + 67, this.getUpgradeInfo(solderer)); + + + this.drawCustomInfoStat(x, y, guiLeft + 5, guiTop + 66, 10, 10, x, y, + "Recipe Collision Prevention: " + (solderer.collisionPrevention ? EnumChatFormatting.GREEN + "ON" : EnumChatFormatting.RED + "OFF"), + "Prevents no-fluid recipes from being processed", + "when fluid is present."); + } + + @Override + protected void mouseClicked(int x, int y, int i) { + super.mouseClicked(x, y, i); + + if(guiLeft + 5 <= x && guiLeft + 5 + 10 > x && guiTop + 66 < y && guiTop + 66 + 10 >= y) { + mc.getSoundHandler().playSound(PositionedSoundRecord.func_147674_a(new ResourceLocation("gui.button.press"), 1.0F)); + NBTTagCompound data = new NBTTagCompound(); + data.setBoolean("collision", true); + PacketDispatcher.wrapper.sendToServer(new NBTControlPacket(data, solderer.xCoord, solderer.yCoord, solderer.zCoord)); + } } @Override diff --git a/src/main/java/com/hbm/inventory/material/MatDistribution.java b/src/main/java/com/hbm/inventory/material/MatDistribution.java index 12e6d4f6e..6db7f5da2 100644 --- a/src/main/java/com/hbm/inventory/material/MatDistribution.java +++ b/src/main/java/com/hbm/inventory/material/MatDistribution.java @@ -68,7 +68,7 @@ public class MatDistribution extends SerializableRecipe { registerOre(OreDictManager.COAL.ore(), MAT_CARBON, GEM.q(3), MAT_STONE, QUART.q(1)); registerOre(OreDictManager.GOLD.ore(), MAT_GOLD, INGOT.q(2), MAT_LEAD, NUGGET.q(3), MAT_STONE, QUART.q(1)); registerOre(OreDictManager.U.ore(), MAT_URANIUM, INGOT.q(2), MAT_LEAD, NUGGET.q(3), MAT_STONE, QUART.q(1)); - registerOre(OreDictManager.TH232.ore(), MAT_THORIUM, INGOT.q(2), MAT_URANIUM, NUGGET.q(3), MAT_STONE, QUART.q(1)); + for(String ore : OreDictManager.TH232.all(MaterialShapes.ORE)) registerOre(ore, MAT_THORIUM, INGOT.q(2), MAT_URANIUM, NUGGET.q(3), MAT_STONE, QUART.q(1)); registerOre(OreDictManager.CU.ore(), MAT_COPPER, INGOT.q(2), MAT_STONE, QUART.q(1)); registerOre(OreDictManager.PB.ore(), MAT_LEAD, INGOT.q(2), MAT_GOLD, NUGGET.q(1), MAT_STONE, QUART.q(1)); registerOre(OreDictManager.BE.ore(), MAT_BERYLLIUM, INGOT.q(2), MAT_STONE, QUART.q(1)); diff --git a/src/main/java/com/hbm/inventory/material/MaterialShapes.java b/src/main/java/com/hbm/inventory/material/MaterialShapes.java index a7cd59f3d..e6660ac78 100644 --- a/src/main/java/com/hbm/inventory/material/MaterialShapes.java +++ b/src/main/java/com/hbm/inventory/material/MaterialShapes.java @@ -9,8 +9,13 @@ public class MaterialShapes { public static final List allShapes = new ArrayList(); + public static final MaterialShapes ANY = new MaterialShapes(0).noAutogen(); + public static final MaterialShapes ORE = new MaterialShapes(0, "ore", "oreNether").noAutogen(); + public static final MaterialShapes ORENETHER = new MaterialShapes(0, "oreNether").noAutogen(); + public static final MaterialShapes QUANTUM = new MaterialShapes(1); // 1/72 of an ingot, allows the ingot to be divisible through 2, 4, 6, 8, 9, 12, 24 and 36 - public static final MaterialShapes NUGGET = new MaterialShapes(8, "nugget"); + public static final MaterialShapes NUGGET = new MaterialShapes(8, "nugget", "tiny"); + public static final MaterialShapes TINY = new MaterialShapes(8, "tiny").noAutogen(); public static final MaterialShapes FRAGMENT = new MaterialShapes(8, "bedrockorefragment"); public static final MaterialShapes DUSTTINY = new MaterialShapes(NUGGET.quantity, "dustTiny"); public static final MaterialShapes WIRE = new MaterialShapes(9, "wireFine"); @@ -29,28 +34,37 @@ public class MaterialShapes { public static final MaterialShapes QUART = new MaterialShapes(162); public static final MaterialShapes BLOCK = new MaterialShapes(INGOT.quantity * 9, "block"); public static final MaterialShapes HEAVY_COMPONENT = new MaterialShapes(CASTPLATE.quantity * 256, "componentHeavy"); + + public static final MaterialShapes LIGHTBARREL = new MaterialShapes(INGOT.quantity * 3, "barrelLight"); + public static final MaterialShapes HEAVYBARREL = new MaterialShapes(INGOT.quantity * 6, "barrelHeavy"); + public static final MaterialShapes LIGHTRECEIVER = new MaterialShapes(INGOT.quantity * 4, "receiverLight"); + public static final MaterialShapes HEAVYRECEIVER = new MaterialShapes(INGOT.quantity * 9, "receiverHeavy"); + public static final MaterialShapes MECHANISM = new MaterialShapes(INGOT.quantity * 4, "gunMechanism"); + public static final MaterialShapes STOCK = new MaterialShapes(INGOT.quantity * 4, "stock"); + public static final MaterialShapes GRIP = new MaterialShapes(INGOT.quantity * 2, "grip"); public static void registerCompatShapes() { if(Compat.isModLoaded(Compat.MOD_GT6)) { - new MaterialShapes(BLOCK.q(1), "blockDust"); - new MaterialShapes(BLOCK.q(1), "blockGem"); - new MaterialShapes(BLOCK.q(1), "blockIngot"); - new MaterialShapes(BLOCK.q(1), "blockSolid"); - new MaterialShapes(INGOT.q(9, 8), "crushed"); - new MaterialShapes(INGOT.q(9, 72), "crushedTiny"); - new MaterialShapes(INGOT.q(10, 8), "crushedPurified"); - new MaterialShapes(INGOT.q(10, 72), "crushedPurifiedTiny"); - new MaterialShapes(INGOT.q(11, 8), "crushedCentrifuged"); - new MaterialShapes(INGOT.q(11, 72), "crushedCentrifugedTiny"); - new MaterialShapes(INGOT.q(1, 4), "dustSmall"); - new MaterialShapes(INGOT.q(1, 72), "dustDiv72"); - new MaterialShapes(INGOT.q(10, 9), "dustImpure"); - new MaterialShapes(INGOT.q(11, 9), "dustPure"); - new MaterialShapes(INGOT.q(12, 9), "dustRefined"); + new MaterialShapes(BLOCK.q(1), "blockDust").noAutogen(); + new MaterialShapes(BLOCK.q(1), "blockGem").noAutogen(); + new MaterialShapes(BLOCK.q(1), "blockIngot").noAutogen(); + new MaterialShapes(BLOCK.q(1), "blockSolid").noAutogen(); + new MaterialShapes(INGOT.q(9, 8), "crushed").noAutogen(); + new MaterialShapes(INGOT.q(9, 72), "crushedTiny").noAutogen(); + new MaterialShapes(INGOT.q(10, 8), "crushedPurified").noAutogen(); + new MaterialShapes(INGOT.q(10, 72), "crushedPurifiedTiny").noAutogen(); + new MaterialShapes(INGOT.q(11, 8), "crushedCentrifuged").noAutogen(); + new MaterialShapes(INGOT.q(11, 72), "crushedCentrifugedTiny").noAutogen(); + new MaterialShapes(INGOT.q(1, 4), "dustSmall").noAutogen(); + new MaterialShapes(INGOT.q(1, 72), "dustDiv72").noAutogen(); + new MaterialShapes(INGOT.q(10, 9), "dustImpure").noAutogen(); + new MaterialShapes(INGOT.q(11, 9), "dustPure").noAutogen(); + new MaterialShapes(INGOT.q(12, 9), "dustRefined").noAutogen(); } } + public boolean noAutogen = false; private int quantity; public final String[] prefixes; @@ -65,6 +79,12 @@ public class MaterialShapes { allShapes.add(this); } + /** Disables recipe autogen for special cases like compatibility prefixes (TINY, ORENETHER), technical prefixes (ANY) or prefixes that have to be handled manually (ORE) */ + public MaterialShapes noAutogen() { + this.noAutogen = true; + return this; + } + public int q(int amount) { return this.quantity * amount; } @@ -76,4 +96,8 @@ public class MaterialShapes { public String name() { return (prefixes != null && prefixes.length > 0) ? prefixes[0] : "unknown"; } + + public String make(NTMMaterial mat) { + return this.name() + mat.names[0]; + } } diff --git a/src/main/java/com/hbm/inventory/material/Mats.java b/src/main/java/com/hbm/inventory/material/Mats.java index 8879a622e..11864a70c 100644 --- a/src/main/java/com/hbm/inventory/material/Mats.java +++ b/src/main/java/com/hbm/inventory/material/Mats.java @@ -47,24 +47,26 @@ public class Mats { public static final int _ES = 20_000; //Vanilla and vanilla-like - public static final NTMMaterial MAT_STONE = makeSmeltable(_VS + 00, df("Stone"), 0x7F7F7F, 0x353535, 0x4D2F23).n(); - public static final NTMMaterial MAT_CARBON = makeAdditive( 699, CARBON, 0x363636, 0x030303, 0x404040).setShapes(WIRE, INGOT, BLOCK).n(); - public static final NTMMaterial MAT_COAL = makeNonSmeltable(600, COAL, 0x363636, 0x030303, 0x404040).setConversion(MAT_CARBON, 2, 1).setShapes(FRAGMENT).n(); - public static final NTMMaterial MAT_LIGNITE = makeNonSmeltable(601, LIGNITE, 0x542D0F, 0x261508, 0x472913).setConversion(MAT_CARBON, 3, 1).setShapes(FRAGMENT).n(); - public static final NTMMaterial MAT_COALCOKE = make( 610, COALCOKE) .setConversion(MAT_CARBON, 4, 3).n(); - public static final NTMMaterial MAT_PETCOKE = make( 611, PETCOKE) .setConversion(MAT_CARBON, 4, 3).n(); - public static final NTMMaterial MAT_LIGCOKE = make( 612, LIGCOKE) .setConversion(MAT_CARBON, 4, 3).n(); - public static final NTMMaterial MAT_GRAPHITE = make( 620, GRAPHITE) .setConversion(MAT_CARBON, 1, 1).n(); - public static final NTMMaterial MAT_DIAMOND = makeNonSmeltable(1430, DIAMOND, 0xFFFFFF, 0x1B7B6B, 0x8CF4E2).setConversion(MAT_CARBON, 1, 1).setShapes(FRAGMENT).n(); - public static final NTMMaterial MAT_IRON = makeSmeltable(2600, IRON, 0xFFFFFF, 0x353535, 0xFFA259).setShapes(FRAGMENT, INGOT, DUST, PIPE, CASTPLATE, WELDEDPLATE, BLOCK).m(); - public static final NTMMaterial MAT_GOLD = makeSmeltable(7900, GOLD, 0xFFFF8B, 0xC26E00, 0xE8D754).setShapes(FRAGMENT, WIRE, NUGGET, INGOT, DUST, DENSEWIRE, CASTPLATE, BLOCK).m(); - public static final NTMMaterial MAT_REDSTONE = makeSmeltable(_VS + 01, REDSTONE, 0xE3260C, 0x700E06, 0xFF1000).setShapes(FRAGMENT).n(); - public static final NTMMaterial MAT_OBSIDIAN = makeSmeltable(_VS + 02, df("Obsidian"), 0x3D234D).n(); - public static final NTMMaterial MAT_HEMATITE = makeAdditive( 2601, HEMATITE, 0xDFB7AE, 0x5F372E, 0x6E463D).m(); - public static final NTMMaterial MAT_WROUGHTIRON = makeSmeltable(2602, df("WroughtIron"), 0xFAAB89).m(); - public static final NTMMaterial MAT_PIGIRON = makeSmeltable(2603, df("PigIron"), 0xFF8B59).m(); - public static final NTMMaterial MAT_METEORICIRON = makeSmeltable(2604, df("MeteoricIron"), 0x715347).m(); - public static final NTMMaterial MAT_MALACHITE = makeAdditive( 2901, MALACHITE, 0xA2F0C8, 0x227048, 0x61AF87).m(); + public static final NTMMaterial MAT_WOOD = makeNonSmeltable(_VS + 03, WOOD, 0x896727, 0x281E0B, 0x896727).setShapes(STOCK, GRIP).n(); + public static final NTMMaterial MAT_IVORY = makeNonSmeltable(_VS + 04, BONE, 0xFFFEEE, 0x797870, 0xEDEBCA).setShapes(GRIP).n(); + public static final NTMMaterial MAT_STONE = makeSmeltable(_VS + 00, df("Stone"), 0x7F7F7F, 0x353535, 0x4D2F23).n(); + public static final NTMMaterial MAT_CARBON = makeAdditive( 699, CARBON, 0x363636, 0x030303, 0x404040).setShapes(WIRE, INGOT, BLOCK).n(); + public static final NTMMaterial MAT_COAL = makeNonSmeltable(600, COAL, 0x363636, 0x030303, 0x404040).setConversion(MAT_CARBON, 2, 1).setShapes(FRAGMENT).n(); + public static final NTMMaterial MAT_LIGNITE = makeNonSmeltable(601, LIGNITE, 0x542D0F, 0x261508, 0x472913).setConversion(MAT_CARBON, 3, 1).setShapes(FRAGMENT).n(); + public static final NTMMaterial MAT_COALCOKE = make( 610, COALCOKE) .setConversion(MAT_CARBON, 4, 3).n(); + public static final NTMMaterial MAT_PETCOKE = make( 611, PETCOKE) .setConversion(MAT_CARBON, 4, 3).n(); + public static final NTMMaterial MAT_LIGCOKE = make( 612, LIGCOKE) .setConversion(MAT_CARBON, 4, 3).n(); + public static final NTMMaterial MAT_GRAPHITE = make( 620, GRAPHITE) .setConversion(MAT_CARBON, 1, 1).n(); + public static final NTMMaterial MAT_DIAMOND = makeNonSmeltable(1430, DIAMOND, 0xFFFFFF, 0x1B7B6B, 0x8CF4E2).setConversion(MAT_CARBON, 1, 1).setShapes(FRAGMENT).n(); + public static final NTMMaterial MAT_IRON = makeSmeltable(2600, IRON, 0xFFFFFF, 0x353535, 0xFFA259).setShapes(FRAGMENT, INGOT, DUST, PIPE, CASTPLATE, WELDEDPLATE, BLOCK).m(); + public static final NTMMaterial MAT_GOLD = makeSmeltable(7900, GOLD, 0xFFFF8B, 0xC26E00, 0xE8D754).setShapes(FRAGMENT, WIRE, NUGGET, INGOT, DUST, DENSEWIRE, CASTPLATE, BLOCK).m(); + public static final NTMMaterial MAT_REDSTONE = makeSmeltable(_VS + 01, REDSTONE, 0xE3260C, 0x700E06, 0xFF1000).setShapes(FRAGMENT).n(); + public static final NTMMaterial MAT_OBSIDIAN = makeSmeltable(_VS + 02, df("Obsidian"), 0x3D234D).n(); + public static final NTMMaterial MAT_HEMATITE = makeAdditive( 2601, HEMATITE, 0xDFB7AE, 0x5F372E, 0x6E463D).m(); + public static final NTMMaterial MAT_WROUGHTIRON = makeSmeltable(2602, df("WroughtIron"), 0xFAAB89).m(); + public static final NTMMaterial MAT_PIGIRON = makeSmeltable(2603, df("PigIron"), 0xFF8B59).m(); + public static final NTMMaterial MAT_METEORICIRON = makeSmeltable(2604, df("MeteoricIron"), 0x715347).m(); + public static final NTMMaterial MAT_MALACHITE = makeAdditive( 2901, MALACHITE, 0xA2F0C8, 0x227048, 0x61AF87).m(); //Radioactive public static final NTMMaterial MAT_URANIUM = makeSmeltable(9200, U, 0xC1C7BD, 0x2B3227, 0x9AA196).setShapes(FRAGMENT, NUGGET, BILLET, INGOT, DUST, BLOCK).m(); @@ -131,25 +133,27 @@ public class Mats { public static final NTMMaterial MAT_OSMIRIDIUM = makeSmeltable(7699, OSMIRIDIUM, 0xDBE3EF, 0x7891BE, 0xACBDD9).setShapes(NUGGET, INGOT, CASTPLATE, WELDEDPLATE).m(); //Alloys - public static final NTMMaterial MAT_STEEL = makeSmeltable(_AS + 0, STEEL, 0xAFAFAF, 0x0F0F0F, 0x4A4A4A).setShapes(DUSTTINY, BOLT, WIRE, INGOT, DUST, PLATE, CASTPLATE, WELDEDPLATE, SHELL, PIPE, BLOCK, HEAVY_COMPONENT).m(); - public static final NTMMaterial MAT_MINGRADE = makeSmeltable(_AS + 1, MINGRADE, 0xFFBA7D, 0xAF1700, 0xE44C0F).setShapes(WIRE, INGOT, DUST, BLOCK).m(); - public static final NTMMaterial MAT_ALLOY = makeSmeltable(_AS + 2, ALLOY, 0xFF8330, 0x700000, 0xFF7318).setShapes(WIRE, INGOT, DUST, DENSEWIRE, PLATE, CASTPLATE, BLOCK, HEAVY_COMPONENT).m(); - public static final NTMMaterial MAT_DURA = makeSmeltable(_AS + 3, DURA, 0x183039, 0x030B0B, 0x376373).setShapes(BOLT, INGOT, DUST, PIPE, BLOCK).m(); - public static final NTMMaterial MAT_SATURN = makeSmeltable(_AS + 4, BIGMT, 0x4DA3AF, 0x00000C, 0x4DA3AF).setShapes(INGOT, DUST, PLATE, CASTPLATE, BLOCK).m(); - public static final NTMMaterial MAT_DESH = makeSmeltable(_AS + 12, DESH, 0xFF6D6D, 0x720000, 0xF22929).setShapes(INGOT, DUST, CASTPLATE, BLOCK, HEAVY_COMPONENT).m(); - public static final NTMMaterial MAT_STAR = makeSmeltable(_AS + 5, STAR, 0xCCCCEA, 0x11111A, 0xA5A5D3).setShapes(INGOT, DUST, DENSEWIRE, BLOCK).m(); - public static final NTMMaterial MAT_FERRO = makeSmeltable(_AS + 7, FERRO, 0xB7B7C9, 0x101022, 0x6B6B8B).setShapes(INGOT).m(); - public static final NTMMaterial MAT_TCALLOY = makeSmeltable(_AS + 6, TCALLOY, 0xD4D6D6, 0x323D3D, 0x9CA6A6).setShapes(INGOT, DUST, CASTPLATE, WELDEDPLATE, HEAVY_COMPONENT).m(); - public static final NTMMaterial MAT_CDALLOY = makeSmeltable(_AS + 13, CDALLOY, 0xF7DF8F, 0x604308, 0xFBD368).setShapes(INGOT, CASTPLATE, WELDEDPLATE, HEAVY_COMPONENT).m(); - public static final NTMMaterial MAT_BBRONZE = makeSmeltable(_AS + 16, BBRONZE, 0xE19A69, 0x485353, 0x987D65).setShapes(INGOT, CASTPLATE).m(); - public static final NTMMaterial MAT_ABRONZE = makeSmeltable(_AS + 17, ABRONZE, 0xDB9462, 0x203331, 0x77644D).setShapes(INGOT, CASTPLATE).m(); - public static final NTMMaterial MAT_BSCCO = makeSmeltable(_AS + 18, BSCCO, 0x767BF1, 0x000000, 0x5E62C0).setShapes(INGOT, DENSEWIRE).m(); - public static final NTMMaterial MAT_MAGTUNG = makeSmeltable(_AS + 8, MAGTUNG, 0x22A2A2, 0x0F0F0F, 0x22A2A2).setShapes(WIRE, INGOT, DUST, DENSEWIRE, BLOCK).m(); - public static final NTMMaterial MAT_CMB = makeSmeltable(_AS + 9, CMB, 0x6F6FB4, 0x000011, 0x6F6FB4).setShapes(INGOT, DUST, PLATE, CASTPLATE, WELDEDPLATE, BLOCK).m(); - public static final NTMMaterial MAT_DNT = makeSmeltable(_AS + 15, DNT, 0x7582B9, 0x16000E, 0x455289).setShapes(INGOT, DUST, DENSEWIRE, BLOCK).m(); - public static final NTMMaterial MAT_FLUX = makeAdditive(_AS + 10, df("Flux"), 0xF1E0BB, 0x6F6256, 0xDECCAD).setShapes(DUST).n(); - public static final NTMMaterial MAT_SLAG = makeSmeltable(_AS + 11, SLAG, 0x554940, 0x34281F, 0x6C6562).setShapes(BLOCK).n(); - public static final NTMMaterial MAT_MUD = makeSmeltable(_AS + 14, MUD, 0xBCB5A9, 0x481213, 0x96783B).setShapes(INGOT).n(); + public static final NTMMaterial MAT_STEEL = makeSmeltable(_AS + 0, STEEL, 0xAFAFAF, 0x0F0F0F, 0x4A4A4A).setShapes(DUSTTINY, BOLT, WIRE, INGOT, DUST, PLATE, CASTPLATE, WELDEDPLATE, SHELL, PIPE, BLOCK, HEAVY_COMPONENT, LIGHTBARREL, HEAVYBARREL, LIGHTRECEIVER, GRIP).m(); + public static final NTMMaterial MAT_MINGRADE = makeSmeltable(_AS + 1, MINGRADE, 0xFFBA7D, 0xAF1700, 0xE44C0F).setShapes(WIRE, INGOT, DUST, BLOCK).m(); + public static final NTMMaterial MAT_ALLOY = makeSmeltable(_AS + 2, ALLOY, 0xFF8330, 0x700000, 0xFF7318).setShapes(WIRE, INGOT, DUST, DENSEWIRE, PLATE, CASTPLATE, BLOCK, HEAVY_COMPONENT).m(); + public static final NTMMaterial MAT_DURA = makeSmeltable(_AS + 3, DURA, 0x183039, 0x030B0B, 0x376373).setShapes(BOLT, INGOT, DUST, PIPE, BLOCK, LIGHTBARREL, HEAVYBARREL, LIGHTRECEIVER, GRIP).m(); + public static final NTMMaterial MAT_DESH = makeSmeltable(_AS + 12, DESH, 0xFF6D6D, 0x720000, 0xF22929).setShapes(INGOT, DUST, CASTPLATE, BLOCK, HEAVY_COMPONENT).m(); + public static final NTMMaterial MAT_STAR = makeSmeltable(_AS + 5, STAR, 0xCCCCEA, 0x11111A, 0xA5A5D3).setShapes(INGOT, DUST, DENSEWIRE, BLOCK).m(); + public static final NTMMaterial MAT_FERRO = makeSmeltable(_AS + 7, FERRO, 0xB7B7C9, 0x101022, 0x6B6B8B).setShapes(INGOT).m(); + public static final NTMMaterial MAT_TCALLOY = makeSmeltable(_AS + 6, TCALLOY, 0xD4D6D6, 0x323D3D, 0x9CA6A6).setShapes(INGOT, DUST, CASTPLATE, WELDEDPLATE, HEAVY_COMPONENT).m(); + public static final NTMMaterial MAT_CDALLOY = makeSmeltable(_AS + 13, CDALLOY, 0xF7DF8F, 0x604308, 0xFBD368).setShapes(INGOT, CASTPLATE, WELDEDPLATE, HEAVY_COMPONENT).m(); + public static final NTMMaterial MAT_BBRONZE = makeSmeltable(_AS + 16, BBRONZE, 0xE19A69, 0x485353, 0x987D65).setShapes(INGOT, CASTPLATE).m(); + public static final NTMMaterial MAT_ABRONZE = makeSmeltable(_AS + 17, ABRONZE, 0xDB9462, 0x203331, 0x77644D).setShapes(INGOT, CASTPLATE).m(); + public static final NTMMaterial MAT_BSCCO = makeSmeltable(_AS + 18, BSCCO, 0x767BF1, 0x000000, 0x5E62C0).setShapes(INGOT, DENSEWIRE).m(); + public static final NTMMaterial MAT_MAGTUNG = makeSmeltable(_AS + 8, MAGTUNG, 0x22A2A2, 0x0F0F0F, 0x22A2A2).setShapes(WIRE, INGOT, DUST, DENSEWIRE, BLOCK).m(); + public static final NTMMaterial MAT_CMB = makeSmeltable(_AS + 9, CMB, 0x6F6FB4, 0x000011, 0x6F6FB4).setShapes(INGOT, DUST, PLATE, CASTPLATE, WELDEDPLATE, BLOCK).m(); + public static final NTMMaterial MAT_DNT = makeSmeltable(_AS + 15, DNT, 0x7582B9, 0x16000E, 0x455289).setShapes(INGOT, DUST, DENSEWIRE, BLOCK).m(); + public static final NTMMaterial MAT_FLUX = makeAdditive(_AS + 10, df("Flux"), 0xF1E0BB, 0x6F6256, 0xDECCAD).setShapes(DUST).n(); + public static final NTMMaterial MAT_SLAG = makeSmeltable(_AS + 11, SLAG, 0x554940, 0x34281F, 0x6C6562).setShapes(BLOCK).n(); + public static final NTMMaterial MAT_MUD = makeSmeltable(_AS + 14, MUD, 0xBCB5A9, 0x481213, 0x96783B).setShapes(INGOT).n(); + public static final NTMMaterial MAT_GUNMETAL = makeSmeltable(_AS + 19, GUNMETAL, 0xFFEF3F, 0xAD3600, 0xF9C62C).setShapes(INGOT, LIGHTBARREL, HEAVYBARREL, LIGHTRECEIVER, HEAVYRECEIVER, MECHANISM, STOCK, GRIP).n(); + public static final NTMMaterial MAT_WEAPONSTEEL = makeSmeltable(_AS + 20, WEAPONSTEEL, 0xA0A0A0, 0x000000, 0x808080).setShapes(INGOT, LIGHTBARREL, HEAVYBARREL, LIGHTRECEIVER, HEAVYRECEIVER, MECHANISM, STOCK, GRIP).n(); + public static final NTMMaterial MAT_SATURN = makeSmeltable(_AS + 4, BIGMT, 0x3AC4DA, 0x09282C, 0x30A4B7).setShapes(INGOT, PLATE, CASTPLATE, BLOCK, LIGHTBARREL, HEAVYBARREL, LIGHTRECEIVER, HEAVYRECEIVER, MECHANISM, STOCK, GRIP).m(); //Extension public static final NTMMaterial MAT_RAREEARTH = makeNonSmeltable(_ES + 00, RAREEARTH, 0xC1BDBD, 0x384646, 0x7B7F7F).setShapes(FRAGMENT, INGOT).n(); @@ -211,7 +215,7 @@ public class Mats { List entries = materialEntries.get(new ComparableStack(stack).makeSingular()); if(entries != null) { - list.addAll(entries); + entries.forEach(x -> { if(x != null) list.add(x); }); } if(stack.getItem() == ModItems.scraps) { diff --git a/src/main/java/com/hbm/inventory/recipes/ArcFurnaceRecipes.java b/src/main/java/com/hbm/inventory/recipes/ArcFurnaceRecipes.java index c32d31a52..800bd9ac6 100644 --- a/src/main/java/com/hbm/inventory/recipes/ArcFurnaceRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/ArcFurnaceRecipes.java @@ -82,14 +82,16 @@ public class ArcFurnaceRecipes extends SerializableRecipe { NTMMaterial convert = material.smeltsInto; if(convert.smeltable == SmeltingBehavior.SMELTABLE) { for(MaterialShapes shape : MaterialShapes.allShapes) { - String name = shape.name() + material.names[0]; - if(!OreDictionary.getOres(name).isEmpty()) { - OreDictStack dict = new OreDictStack(name); - ArcFurnaceRecipe recipe = recipes.get(dict); - if(recipe == null) recipe = new ArcFurnaceRecipe(); - if(recipe.fluidOutput == null) { - recipe.fluid(new MaterialStack(convert, (int) (shape.q(1) * out / in))); - recipes.put(dict, recipe); + if(!shape.noAutogen) { + String name = shape.name() + material.names[0]; + if(!OreDictionary.getOres(name).isEmpty()) { + OreDictStack dict = new OreDictStack(name); + ArcFurnaceRecipe recipe = recipes.get(dict); + if(recipe == null) recipe = new ArcFurnaceRecipe(); + if(recipe.fluidOutput == null) { + recipe.fluid(new MaterialStack(convert, (int) (shape.q(1) * out / in))); + recipes.put(dict, recipe); + } } } } diff --git a/src/main/java/com/hbm/inventory/recipes/AssemblerRecipes.java b/src/main/java/com/hbm/inventory/recipes/AssemblerRecipes.java index af36e0fbe..01475b4ac 100644 --- a/src/main/java/com/hbm/inventory/recipes/AssemblerRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/AssemblerRecipes.java @@ -362,8 +362,8 @@ public class AssemblerRecipes extends SerializableRecipe { makeRecipe(new ComparableStack(ModItems.upgrade_overdrive_1, 1), new AStack[] { new ComparableStack(ModItems.upgrade_speed_3, 1), new ComparableStack(ModItems.upgrade_effect_3, 1), - new OreDictStack(DESH.ingot(), 16), - new ComparableStack(ModItems.crystal_lithium, 4), + new OreDictStack(BIGMT.ingot(), 16), + new OreDictStack(ANY_HARDPLASTIC.ingot(), 16), new ComparableStack(ModItems.circuit, 16, EnumCircuitType.ADVANCED), }, 200); makeRecipe(new ComparableStack(ModItems.upgrade_overdrive_2, 1), new AStack[] { @@ -371,15 +371,15 @@ public class AssemblerRecipes extends SerializableRecipe { new ComparableStack(ModItems.upgrade_speed_3, 1), new ComparableStack(ModItems.upgrade_effect_3, 1), new OreDictStack(BIGMT.ingot(), 16), - new ComparableStack(ModItems.crystal_lithium, 8), + new ComparableStack(ModItems.ingot_cft, 8), new ComparableStack(ModItems.circuit, 16, EnumCircuitType.CAPACITOR_BOARD), }, 300); makeRecipe(new ComparableStack(ModItems.upgrade_overdrive_3, 1), new AStack[] { new ComparableStack(ModItems.upgrade_overdrive_2, 1), new ComparableStack(ModItems.upgrade_speed_3, 1), new ComparableStack(ModItems.upgrade_effect_3, 1), - new OreDictStack(STAR.ingot(), 16), - new ComparableStack(ModItems.crystal_lithium, 16), + new OreDictStack(ANY_BISMOIDBRONZE.ingot(), 16), + new ComparableStack(ModItems.ingot_cft, 16), new ComparableStack(ModItems.circuit, 16, EnumCircuitType.BISMOID), }, 500); diff --git a/src/main/java/com/hbm/inventory/recipes/CentrifugeRecipes.java b/src/main/java/com/hbm/inventory/recipes/CentrifugeRecipes.java index 2c91e4e4a..4878cfb24 100644 --- a/src/main/java/com/hbm/inventory/recipes/CentrifugeRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/CentrifugeRecipes.java @@ -15,10 +15,12 @@ import com.hbm.config.GeneralConfig; import com.hbm.handler.imc.IMCCentrifuge; import static com.hbm.inventory.OreDictManager.*; import com.hbm.inventory.OreDictManager.DictFrame; +import com.hbm.inventory.OreDictManager; import com.hbm.inventory.RecipesCommon; import com.hbm.inventory.RecipesCommon.AStack; import com.hbm.inventory.RecipesCommon.ComparableStack; import com.hbm.inventory.RecipesCommon.OreDictStack; +import com.hbm.inventory.material.MaterialShapes; import com.hbm.inventory.recipes.loader.SerializableRecipe; import com.hbm.items.ItemEnums.EnumAshType; import com.hbm.items.ItemEnums.EnumChunkType; @@ -395,7 +397,7 @@ public class CentrifugeRecipes extends SerializableRecipe { lbs ? new ItemStack(ModItems.nugget_ra226, 2) : new ItemStack(ModItems.nugget_ra226, 1), new ItemStack(Blocks.gravel, 1) }); - recipes.put(new OreDictStack(TH232.ore()), new ItemStack[] { + for(String ore : OreDictManager.TH232.all(MaterialShapes.ORE)) recipes.put(new OreDictStack(ore), new ItemStack[] { new ItemStack(ModItems.powder_thorium, 1), new ItemStack(ModItems.powder_thorium, 1), new ItemStack(ModItems.powder_uranium, 1), diff --git a/src/main/java/com/hbm/inventory/recipes/CrucibleRecipes.java b/src/main/java/com/hbm/inventory/recipes/CrucibleRecipes.java index 919efab4f..fe489691e 100644 --- a/src/main/java/com/hbm/inventory/recipes/CrucibleRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/CrucibleRecipes.java @@ -258,14 +258,15 @@ public class CrucibleRecipes extends SerializableRecipe { NTMMaterial convert = material.smeltsInto; if(convert.smeltable == SmeltingBehavior.SMELTABLE || convert.smeltable == SmeltingBehavior.ADDITIVE) for(MaterialShapes shape : MaterialShapes.allShapes) { //TODO: buffer these - - String name = shape.name() + material.names[0]; - List ores = OreDictionary.getOres(name); - - if(!ores.isEmpty()) { - List stacks = new ArrayList(); - stacks.add(ItemScraps.create(new MaterialStack(convert, (int) (shape.q(1) * out / in)), true)); - map.put(new OreDictStack(name), stacks); + if(!shape.noAutogen) { + String name = shape.make(material); + List ores = OreDictionary.getOres(name); + + if(!ores.isEmpty()) { + List stacks = new ArrayList(); + stacks.add(ItemScraps.create(new MaterialStack(convert, (int) (shape.q(1) * out / in)), true)); + map.put(new OreDictStack(name), stacks); + } } } } diff --git a/src/main/java/com/hbm/inventory/recipes/CrystallizerRecipes.java b/src/main/java/com/hbm/inventory/recipes/CrystallizerRecipes.java index 5930101dd..135524cba 100644 --- a/src/main/java/com/hbm/inventory/recipes/CrystallizerRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/CrystallizerRecipes.java @@ -13,11 +13,13 @@ import com.google.gson.stream.JsonWriter; import com.hbm.blocks.ModBlocks; import com.hbm.handler.imc.IMCCrystallizer; import com.hbm.inventory.FluidStack; +import com.hbm.inventory.OreDictManager; import com.hbm.inventory.RecipesCommon.AStack; import com.hbm.inventory.RecipesCommon.ComparableStack; import com.hbm.inventory.RecipesCommon.OreDictStack; import com.hbm.inventory.fluid.FluidType; import com.hbm.inventory.fluid.Fluids; +import com.hbm.inventory.material.MaterialShapes; import com.hbm.inventory.recipes.loader.SerializableRecipe; import com.hbm.items.ItemEnums.EnumAshType; import com.hbm.items.ItemEnums.EnumPlantType; @@ -63,7 +65,7 @@ public class CrystallizerRecipes extends SerializableRecipe { registerRecipe(LAPIS.ore(), new CrystallizerRecipe(ModItems.crystal_lapis, baseTime)); registerRecipe(DIAMOND.ore(), new CrystallizerRecipe(ModItems.crystal_diamond, baseTime)); registerRecipe(U.ore(), new CrystallizerRecipe(ModItems.crystal_uranium, baseTime), sulfur); - registerRecipe(TH232.ore(), new CrystallizerRecipe(ModItems.crystal_thorium, baseTime), sulfur); + for(String ore : OreDictManager.TH232.all(MaterialShapes.ORE)) registerRecipe(ore, new CrystallizerRecipe(ModItems.crystal_thorium, baseTime), sulfur); registerRecipe(PU.ore(), new CrystallizerRecipe(ModItems.crystal_plutonium, baseTime), sulfur); registerRecipe(TI.ore(), new CrystallizerRecipe(ModItems.crystal_titanium, baseTime), sulfur); registerRecipe(S.ore(), new CrystallizerRecipe(ModItems.crystal_sulfur, baseTime)); diff --git a/src/main/java/com/hbm/inventory/recipes/PressRecipes.java b/src/main/java/com/hbm/inventory/recipes/PressRecipes.java index db090d982..a2907a600 100644 --- a/src/main/java/com/hbm/inventory/recipes/PressRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/PressRecipes.java @@ -10,7 +10,6 @@ import static com.hbm.inventory.OreDictManager.*; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.stream.JsonWriter; -import com.hbm.inventory.OreNames; import com.hbm.inventory.RecipesCommon.AStack; import com.hbm.inventory.RecipesCommon.ComparableStack; import com.hbm.inventory.RecipesCommon.OreDictStack; @@ -19,6 +18,7 @@ import com.hbm.inventory.material.Mats; import com.hbm.inventory.material.NTMMaterial; import com.hbm.inventory.recipes.loader.SerializableRecipe; import com.hbm.items.ItemEnums.EnumBriquetteType; +import com.hbm.items.ItemEnums.EnumCasingType; import com.hbm.items.ItemEnums.EnumPages; import com.hbm.items.ItemAmmoEnums.Ammo357Magnum; import com.hbm.items.ItemAmmoEnums.Ammo556mm; @@ -73,22 +73,29 @@ public class PressRecipes extends SerializableRecipe { makeRecipe(StampType.FLAT, new OreDictStack(LIGNITE.dust()), DictFrame.fromOne(ModItems.briquette, EnumBriquetteType.LIGNITE)); makeRecipe(StampType.FLAT, new ComparableStack(ModItems.powder_sawdust), DictFrame.fromOne(ModItems.briquette, EnumBriquetteType.WOOD)); - makeRecipe(StampType.PLATE, new OreDictStack(IRON.ingot()), ModItems.plate_iron); - makeRecipe(StampType.PLATE, new OreDictStack(GOLD.ingot()), ModItems.plate_gold); - makeRecipe(StampType.PLATE, new OreDictStack(TI.ingot()), ModItems.plate_titanium); - makeRecipe(StampType.PLATE, new OreDictStack(AL.ingot()), ModItems.plate_aluminium); - makeRecipe(StampType.PLATE, new OreDictStack(STEEL.ingot()), ModItems.plate_steel); - makeRecipe(StampType.PLATE, new OreDictStack(PB.ingot()), ModItems.plate_lead); - makeRecipe(StampType.PLATE, new OreDictStack(CU.ingot()), ModItems.plate_copper); - makeRecipe(StampType.PLATE, new OreDictStack(ALLOY.ingot()), ModItems.plate_advanced_alloy); - makeRecipe(StampType.PLATE, new OreDictStack(SA326.ingot()), ModItems.plate_schrabidium); - makeRecipe(StampType.PLATE, new OreDictStack(CMB.ingot()), ModItems.plate_combine_steel); - makeRecipe(StampType.PLATE, new OreDictStack(BIGMT.ingot()), ModItems.plate_saturnite); - makeRecipe(StampType.PLATE, new OreDictStack(DURA.ingot()), ModItems.plate_dura_steel); + makeRecipe(StampType.PLATE, new OreDictStack(IRON.ingot()), ModItems.plate_iron); + makeRecipe(StampType.PLATE, new OreDictStack(GOLD.ingot()), ModItems.plate_gold); + makeRecipe(StampType.PLATE, new OreDictStack(TI.ingot()), ModItems.plate_titanium); + makeRecipe(StampType.PLATE, new OreDictStack(AL.ingot()), ModItems.plate_aluminium); + makeRecipe(StampType.PLATE, new OreDictStack(STEEL.ingot()), ModItems.plate_steel); + makeRecipe(StampType.PLATE, new OreDictStack(PB.ingot()), ModItems.plate_lead); + makeRecipe(StampType.PLATE, new OreDictStack(CU.ingot()), ModItems.plate_copper); + makeRecipe(StampType.PLATE, new OreDictStack(ALLOY.ingot()), ModItems.plate_advanced_alloy); + makeRecipe(StampType.PLATE, new OreDictStack(SA326.ingot()), ModItems.plate_schrabidium); + makeRecipe(StampType.PLATE, new OreDictStack(CMB.ingot()), ModItems.plate_combine_steel); + makeRecipe(StampType.PLATE, new OreDictStack(GUNMETAL.ingot()), ModItems.plate_gunmetal); + makeRecipe(StampType.PLATE, new OreDictStack(WEAPONSTEEL.ingot()), ModItems.plate_weaponsteel); + makeRecipe(StampType.PLATE, new OreDictStack(BIGMT.ingot()), ModItems.plate_saturnite); + makeRecipe(StampType.PLATE, new OreDictStack(DURA.ingot()), ModItems.plate_dura_steel); + + makeRecipe(StampType.C9, new OreDictStack(GUNMETAL.plate()), DictFrame.fromOne(ModItems.casing, EnumCasingType.SMALL, 4)); + makeRecipe(StampType.C50, new OreDictStack(GUNMETAL.plate()), DictFrame.fromOne(ModItems.casing, EnumCasingType.LARGE, 2)); + makeRecipe(StampType.C9, new OreDictStack(WEAPONSTEEL.plate()), DictFrame.fromOne(ModItems.casing, EnumCasingType.SMALL_STEEL, 4)); + makeRecipe(StampType.C50, new OreDictStack(WEAPONSTEEL.plate()), DictFrame.fromOne(ModItems.casing, EnumCasingType.LARGE_STEEL, 2)); for(NTMMaterial mat : Mats.orderedList) { if(mat.shapes.contains(MaterialShapes.WIRE) && mat.shapes.contains(MaterialShapes.INGOT)) { - makeRecipe(StampType.WIRE, new OreDictStack(OreNames.INGOT + mat.names[0]), new ItemStack(ModItems.wire_fine, 8, mat.id)); + makeRecipe(StampType.WIRE, new OreDictStack(MaterialShapes.INGOT.make(mat)), new ItemStack(ModItems.wire_fine, 8, mat.id)); } } diff --git a/src/main/java/com/hbm/inventory/recipes/PyroOvenRecipes.java b/src/main/java/com/hbm/inventory/recipes/PyroOvenRecipes.java index 456c8af93..384783d3f 100644 --- a/src/main/java/com/hbm/inventory/recipes/PyroOvenRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/PyroOvenRecipes.java @@ -92,7 +92,7 @@ public class PyroOvenRecipes extends SerializableRecipe { .out(new FluidStack(Fluids.SYNGAS, 1_000)).out(new ItemStack(Items.coal, 1, 1))); //soot from tar recipes.add(new PyroOvenRecipe(40) - .out(new FluidStack(Fluids.HYDROGEN, 250)).in(new OreDictStack(ANY_TAR.any(), 8)) + .out(new FluidStack(Fluids.HYDROGEN, 250)).in(new OreDictStack(ANY_TAR.any(), 4)) .out(new FluidStack(Fluids.CARBONDIOXIDE, 1_000)).out(DictFrame.fromOne(ModItems.powder_ash, EnumAshType.SOOT))); //heavyoil from coal recipes.add(new PyroOvenRecipe(100) diff --git a/src/main/java/com/hbm/inventory/recipes/RotaryFurnaceRecipes.java b/src/main/java/com/hbm/inventory/recipes/RotaryFurnaceRecipes.java new file mode 100644 index 000000000..233405e7c --- /dev/null +++ b/src/main/java/com/hbm/inventory/recipes/RotaryFurnaceRecipes.java @@ -0,0 +1,188 @@ +package com.hbm.inventory.recipes; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; + +import static com.hbm.inventory.OreDictManager.*; +import static com.hbm.inventory.material.Mats.*; +import static com.hbm.inventory.material.MaterialShapes.*; + +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.stream.JsonWriter; +import com.hbm.inventory.FluidStack; +import com.hbm.inventory.RecipesCommon.AStack; +import com.hbm.inventory.RecipesCommon.ComparableStack; +import com.hbm.inventory.RecipesCommon.OreDictStack; +import com.hbm.inventory.fluid.Fluids; +import com.hbm.inventory.material.Mats; +import com.hbm.inventory.material.Mats.MaterialStack; +import com.hbm.inventory.recipes.loader.SerializableRecipe; +import com.hbm.items.ModItems; +import com.hbm.items.machine.ItemFluidIcon; +import com.hbm.items.machine.ItemScraps; + +import net.minecraft.item.ItemStack; + +public class RotaryFurnaceRecipes extends SerializableRecipe { + + public static List recipes = new ArrayList(); + + @Override + public void registerDefaults() { + + recipes.add(new RotaryFurnaceRecipe(new MaterialStack(MAT_STEEL, INGOT.q(1)), 100, 100, new OreDictStack(IRON.ingot()), new OreDictStack(COAL.gem()))); + recipes.add(new RotaryFurnaceRecipe(new MaterialStack(MAT_STEEL, INGOT.q(1)), 100, 100, new OreDictStack(IRON.ingot()), new OreDictStack(ANY_COKE.gem()))); + + recipes.add(new RotaryFurnaceRecipe(new MaterialStack(MAT_STEEL, INGOT.q(2)), 100, 100, new OreDictStack(IRON.fragment(), 9), new OreDictStack(COAL.gem()))); + recipes.add(new RotaryFurnaceRecipe(new MaterialStack(MAT_STEEL, INGOT.q(3)), 100, 100, new OreDictStack(IRON.fragment(), 9), new OreDictStack(ANY_COKE.gem()))); + recipes.add(new RotaryFurnaceRecipe(new MaterialStack(MAT_STEEL, INGOT.q(4)), 200, 100, new OreDictStack(IRON.fragment(), 9), new OreDictStack(ANY_COKE.gem()), new ComparableStack(ModItems.powder_flux))); + + recipes.add(new RotaryFurnaceRecipe(new MaterialStack(MAT_DESH, INGOT.q(1)), 100, 200, new FluidStack(Fluids.LIGHTOIL, 100), new ComparableStack(ModItems.powder_desh_ready))); + recipes.add(new RotaryFurnaceRecipe(new MaterialStack(MAT_SATURN, INGOT.q(2)), 200, 400, new FluidStack(Fluids.HEATINGOIL, 250), new OreDictStack(DURA.dust(), 2), new OreDictStack(CU.dust()))); + + recipes.add(new RotaryFurnaceRecipe(new MaterialStack(MAT_GUNMETAL, INGOT.q(4)), 200, 100, new OreDictStack(CU.ingot(), 3), new OreDictStack(AL.ingot(), 1))); + recipes.add(new RotaryFurnaceRecipe(new MaterialStack(MAT_WEAPONSTEEL, INGOT.q(1)), 200, 400, new FluidStack(Fluids.GAS_COKER, 100), new OreDictStack(STEEL.ingot(), 1), new ComparableStack(ModItems.powder_flux, 2))); + } + + public static HashMap getRecipes() { + + HashMap recipes = new HashMap(); + + for(RotaryFurnaceRecipe recipe : RotaryFurnaceRecipes.recipes) { + + int size = recipe.ingredients.length + (recipe.fluid != null ? 1 : 0); + Object[] array = new Object[size]; + + for(int i = 0; i < recipe.ingredients.length; i++) { + array[i] = recipe.ingredients[i]; + } + + if(recipe.fluid != null) array[size - 1] = ItemFluidIcon.make(recipe.fluid); + + recipes.put(array, ItemScraps.create(recipe.output, true)); + } + + return recipes; + } + + public static RotaryFurnaceRecipe getRecipe(ItemStack... inputs) { + + outer: + for(RotaryFurnaceRecipe recipe : recipes) { + + List recipeList = new ArrayList(); + for(AStack ingredient : recipe.ingredients) recipeList.add(ingredient); + + for(int i = 0; i < inputs.length; i++) { + + ItemStack inputStack = inputs[i]; + + if(inputStack != null) { + + boolean hasMatch = false; + Iterator iterator = recipeList.iterator(); + + while(iterator.hasNext()) { + AStack recipeStack = iterator.next(); + + if(recipeStack.matchesRecipe(inputStack, true) && inputStack.stackSize >= recipeStack.stacksize) { + hasMatch = true; + recipeList.remove(recipeStack); + break; + } + } + + if(!hasMatch) { + continue outer; + } + } + } + + if(recipeList.isEmpty()) return recipe; + } + + return null; + } + + @Override + public String getFileName() { + return "hbmRotaryFurnace.json"; + } + + @Override + public Object getRecipeObject() { + return recipes; + } + + @Override + public void deleteRecipes() { + recipes.clear(); + } + + @Override + public void readRecipe(JsonElement recipe) { + JsonObject obj = (JsonObject) recipe; + + AStack[] inputs = this.readAStackArray(obj.get("inputs").getAsJsonArray()); + FluidStack fluid = obj.has("fluid") ? this.readFluidStack(obj.get("fluid").getAsJsonArray()) : null; + + JsonArray array = obj.get("output").getAsJsonArray(); + MaterialStack stack = new MaterialStack(Mats.matByName.get(array.get(0).getAsString()), array.get(1).getAsInt()); + + int duration = obj.get("duration").getAsInt(); + int steam = obj.get("steam").getAsInt(); + + recipes.add(new RotaryFurnaceRecipe(stack, duration, steam, fluid, inputs)); + } + + @Override + public void writeRecipe(Object obj, JsonWriter writer) throws IOException { + RotaryFurnaceRecipe recipe = (RotaryFurnaceRecipe) obj; + + writer.name("inputs").beginArray(); + for(AStack aStack : recipe.ingredients) { + this.writeAStack(aStack, writer); + } + writer.endArray(); + + if(recipe.fluid != null) { + writer.name("fluid"); + this.writeFluidStack(recipe.fluid, writer); + } + + writer.name("output").beginArray(); + writer.setIndent(""); + writer.value(recipe.output.material.names[0]).value(recipe.output.amount); + writer.endArray(); + writer.setIndent(" "); + + writer.name("duration").value(recipe.duration); + writer.name("steam").value(recipe.steam); + } + + public static class RotaryFurnaceRecipe { + + public AStack[] ingredients; + public FluidStack fluid; + public MaterialStack output; + public int duration; + public int steam; + + public RotaryFurnaceRecipe(MaterialStack output, int duration, int steam, FluidStack fluid, AStack... ingredients) { + this.ingredients = ingredients; + this.fluid = fluid; + this.output = output; + this.duration = duration; + this.steam = steam; + } + + public RotaryFurnaceRecipe(MaterialStack output, int duration, int steam, AStack... ingredients) { + this(output, duration, steam, null, ingredients); + } + } +} diff --git a/src/main/java/com/hbm/inventory/recipes/SILEXRecipes.java b/src/main/java/com/hbm/inventory/recipes/SILEXRecipes.java index 5858ff359..6263d0800 100644 --- a/src/main/java/com/hbm/inventory/recipes/SILEXRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/SILEXRecipes.java @@ -20,6 +20,7 @@ import com.hbm.util.WeightedRandomObject; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.ItemStack; +import net.minecraft.item.Item; import net.minecraftforge.oredict.OreDictionary; public class SILEXRecipes { @@ -642,6 +643,15 @@ public class SILEXRecipes { recipes.put(new ComparableStack(ModItems.fluid_icon, 1, Fluids.FULLERENE.getID()), new SILEXRecipe(1_000, 1_000, EnumWavelengths.UV).addOut(DictFrame.fromOne(ModItems.powder_ash, EnumAshType.FULLERENE), 1)); } + + private static final HashMap tinyWasteTranslation = new HashMap(); + + static { + tinyWasteTranslation.put(ModItems.nuclear_waste_short_tiny, ModItems.nuclear_waste_short); + tinyWasteTranslation.put(ModItems.nuclear_waste_long_tiny, ModItems.nuclear_waste_long); + tinyWasteTranslation.put(ModItems.nuclear_waste_short_depleted_tiny, ModItems.nuclear_waste_short_depleted); + tinyWasteTranslation.put(ModItems.nuclear_waste_long_depleted_tiny, ModItems.nuclear_waste_long_depleted); + } public static SILEXRecipe getOutput(ItemStack stack) { @@ -656,11 +666,27 @@ public class SILEXRecipes { String[] dictKeys = comp.getDictKeys(); for(String key : dictKeys) { - String translation = translateDict(key); if(recipes.containsKey(translation)) return recipes.get(translation); } + + if(tinyWasteTranslation.containsKey(comp.item)) { + SILEXRecipe result = getOutput(new ItemStack(tinyWasteTranslation.get(comp.item), comp.stacksize, comp.meta)); + + if(result != null) { + // This way it rounds down if somehow the recipe's fluid produced is not divisible by 900 + int fluidProduced = (result.fluidProduced / 900) * 100; + SILEXRecipe tinyVersion = new SILEXRecipe(fluidProduced, result.fluidConsumed, result.laserStrength); + // Shared ownership shouldn't be an issue since the resulting recipe isn't modified by the caller + tinyVersion.outputs = result.outputs; + + // TODO: Cache? Might break saving recipes, IDK + // recipes.put(comp, tinyVersion); + + return tinyVersion; + } + } return null; } diff --git a/src/main/java/com/hbm/inventory/recipes/anvil/AnvilRecipes.java b/src/main/java/com/hbm/inventory/recipes/anvil/AnvilRecipes.java index 8ca863583..ff6591a4a 100644 --- a/src/main/java/com/hbm/inventory/recipes/anvil/AnvilRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/anvil/AnvilRecipes.java @@ -6,7 +6,6 @@ import java.util.List; import com.hbm.blocks.ModBlocks; import com.hbm.config.GeneralConfig; import com.hbm.inventory.OreDictManager; -import com.hbm.inventory.OreNames; import com.hbm.inventory.OreDictManager.DictFrame; import static com.hbm.inventory.OreDictManager.*; @@ -110,8 +109,8 @@ public class AnvilRecipes { new ItemStack(ModItems.stamp_titanium_flat), new ItemStack(ModItems.stamp_obsidian_flat) })); - smithingRecipes.add(new AnvilSmithingMold(8, new OreDictStack(STEEL.shell()), new OreDictStack(OreNames.SHELL))); - smithingRecipes.add(new AnvilSmithingMold(9, new OreDictStack(STEEL.pipe()), new OreDictStack(OreNames.PIPE))); + smithingRecipes.add(new AnvilSmithingMold(8, new OreDictStack(STEEL.shell()), new OreDictStack(MaterialShapes.SHELL.name()))); + smithingRecipes.add(new AnvilSmithingMold(9, new OreDictStack(STEEL.pipe()), new OreDictStack(MaterialShapes.PIPE.name()))); smithingRecipes.add(new AnvilSmithingMold(10, new OreDictStack(IRON.ingot(), 9), new OreDictStack("ingot", 9))); smithingRecipes.add(new AnvilSmithingMold(11, new OreDictStack(IRON.plate(), 9), new OreDictStack("plate", 9))); smithingRecipes.add(new AnvilSmithingMold(12, new OreDictStack(IRON.block()), new OreDictStack("block"))); @@ -152,7 +151,7 @@ public class AnvilRecipes { for(NTMMaterial mat : Mats.orderedList) { if(mat.shapes.contains(MaterialShapes.WIRE) && mat.shapes.contains(MaterialShapes.INGOT)) { - constructionRecipes.add(new AnvilConstructionRecipe(new OreDictStack(OreNames.INGOT + mat.names[0]), new AnvilOutput(new ItemStack(ModItems.wire_fine, 8, mat.id))).setTier(4)); + constructionRecipes.add(new AnvilConstructionRecipe(new OreDictStack(MaterialShapes.INGOT.name() + mat.names[0]), new AnvilOutput(new ItemStack(ModItems.wire_fine, 8, mat.id))).setTier(4)); } } @@ -307,6 +306,14 @@ public class AnvilRecipes { new OreDictStack(KEY_BRICK, 16) }, new AnvilOutput(new ItemStack(ModBlocks.furnace_combination))).setTier(2)); + constructionRecipes.add(new AnvilConstructionRecipe( + new AStack[] { + new ComparableStack(Blocks.stonebrick, 8), + new ComparableStack(ModItems.ingot_firebrick, 16), + new OreDictStack(IRON.ingot(), 4), + new OreDictStack(CU.plate(), 8), + }, new AnvilOutput(new ItemStack(ModBlocks.machine_rotary_furnace))).setTier(2)); + constructionRecipes.add(new AnvilConstructionRecipe( new AStack[] { new OreDictStack(KEY_PLANKS, 16), @@ -562,6 +569,14 @@ public class AnvilRecipes { } public static void registerConstructionAmmo() { + + constructionRecipes.add(new AnvilConstructionRecipe(new AStack[]{new ComparableStack(ModItems.mold_base), new OreDictStack(STEEL.ingot(), 4)}, new AnvilOutput(new ItemStack(ModItems.mold, 1, 22))).setTier(2)); + constructionRecipes.add(new AnvilConstructionRecipe(new AStack[]{new ComparableStack(ModItems.mold_base), new OreDictStack(STEEL.ingot(), 4)}, new AnvilOutput(new ItemStack(ModItems.mold, 1, 23))).setTier(2)); + constructionRecipes.add(new AnvilConstructionRecipe(new AStack[]{new ComparableStack(ModItems.mold_base), new OreDictStack(STEEL.ingot(), 4)}, new AnvilOutput(new ItemStack(ModItems.mold, 1, 24))).setTier(2)); + constructionRecipes.add(new AnvilConstructionRecipe(new AStack[]{new ComparableStack(ModItems.mold_base), new OreDictStack(STEEL.ingot(), 4)}, new AnvilOutput(new ItemStack(ModItems.mold, 1, 25))).setTier(2)); + constructionRecipes.add(new AnvilConstructionRecipe(new AStack[]{new ComparableStack(ModItems.mold_base), new OreDictStack(STEEL.ingot(), 4)}, new AnvilOutput(new ItemStack(ModItems.mold, 1, 26))).setTier(2)); + constructionRecipes.add(new AnvilConstructionRecipe(new AStack[]{new ComparableStack(ModItems.mold_base), new OreDictStack(STEEL.ingot(), 4)}, new AnvilOutput(new ItemStack(ModItems.mold, 1, 27))).setTier(2)); + constructionRecipes.add(new AnvilConstructionRecipe(new AStack[]{new ComparableStack(ModItems.mold_base), new OreDictStack(STEEL.ingot(), 4)}, new AnvilOutput(new ItemStack(ModItems.mold, 1, 28))).setTier(2)); constructionRecipes.add(new AnvilConstructionRecipe(new OreDictStack(CU.plate()), new AnvilOutput(new ItemStack(ModItems.casing_357))).setTier(1)); constructionRecipes.add(new AnvilConstructionRecipe(new OreDictStack(CU.plate()), new AnvilOutput(new ItemStack(ModItems.casing_44))).setTier(1)); diff --git a/src/main/java/com/hbm/inventory/recipes/anvil/AnvilSmithingMold.java b/src/main/java/com/hbm/inventory/recipes/anvil/AnvilSmithingMold.java index 5dd1bef82..11a1693a3 100644 --- a/src/main/java/com/hbm/inventory/recipes/anvil/AnvilSmithingMold.java +++ b/src/main/java/com/hbm/inventory/recipes/anvil/AnvilSmithingMold.java @@ -2,10 +2,10 @@ package com.hbm.inventory.recipes.anvil; import java.util.List; -import com.hbm.inventory.OreNames; import com.hbm.inventory.RecipesCommon.AStack; import com.hbm.inventory.RecipesCommon.ComparableStack; import com.hbm.inventory.RecipesCommon.OreDictStack; +import com.hbm.inventory.material.MaterialShapes; import com.hbm.items.ModItems; import com.hbm.util.ItemStackUtil; @@ -34,7 +34,7 @@ public class AnvilSmithingMold extends AnvilSmithingRecipe { for(String name : names) { - for(String otherPrefix : OreNames.prefixes) { + for(MaterialShapes shape : MaterialShapes.allShapes) for(String otherPrefix : shape.prefixes) { if(otherPrefix.length() > matchesPrefix.name.length() && name.startsWith(otherPrefix)) { return false; //ignore if there's a longer prefix that matches (i.e. a more accurate match) } diff --git a/src/main/java/com/hbm/inventory/recipes/loader/SerializableRecipe.java b/src/main/java/com/hbm/inventory/recipes/loader/SerializableRecipe.java index ab0d5e9cf..3652216d0 100644 --- a/src/main/java/com/hbm/inventory/recipes/loader/SerializableRecipe.java +++ b/src/main/java/com/hbm/inventory/recipes/loader/SerializableRecipe.java @@ -37,6 +37,8 @@ public abstract class SerializableRecipe { public static final Gson gson = new Gson(); public static List recipeHandlers = new ArrayList(); + public boolean modified = false; + /* * INIT */ @@ -69,6 +71,7 @@ public abstract class SerializableRecipe { recipeHandlers.add(new ElectrolyserFluidRecipes()); recipeHandlers.add(new ElectrolyserMetalRecipes()); recipeHandlers.add(new ArcWelderRecipes()); + recipeHandlers.add(new RotaryFurnaceRecipes()); recipeHandlers.add(new ExposureChamberRecipes()); recipeHandlers.add(new AssemblerRecipes()); @@ -100,6 +103,7 @@ public abstract class SerializableRecipe { if(recFile.exists() && recFile.isFile()) { MainRegistry.logger.info("Reading recipe file " + recFile.getName()); recipe.readRecipeFile(recFile); + recipe.modified = true; } else { MainRegistry.logger.info("No recipe file found, registering defaults for " + recipe.getFileName()); recipe.registerDefaults(); @@ -107,6 +111,7 @@ public abstract class SerializableRecipe { File recTemplate = new File(recDir.getAbsolutePath() + File.separatorChar + "_" + recipe.getFileName()); MainRegistry.logger.info("Writing template file " + recTemplate.getName()); recipe.writeTemplateFile(recTemplate); + recipe.modified = false; } recipe.registerPost(); diff --git a/src/main/java/com/hbm/itempool/ItemPoolsPile.java b/src/main/java/com/hbm/itempool/ItemPoolsPile.java index 254016416..c296003dc 100644 --- a/src/main/java/com/hbm/itempool/ItemPoolsPile.java +++ b/src/main/java/com/hbm/itempool/ItemPoolsPile.java @@ -98,7 +98,7 @@ public class ItemPoolsPile { //makeshift gun new ItemPool(POOL_PILE_MAKESHIFT_GUN) {{ this.pool = new WeightedRandomChestContent[] { weighted(ModItems.gun_lever_action, 0, 1, 1, 10) }; }}; new ItemPool(POOL_PILE_MAKESHIFT_WRENCH) {{ this.pool = new WeightedRandomChestContent[] { weighted(ModItems.wrench, 0, 1, 1, 10) }; }}; - new ItemPool(POOL_PILE_MAKESHIFT_PLATES) {{ this.pool = new WeightedRandomChestContent[] { weighted(ModItems.plate_combine_steel, 0, 1, 1, 10) }; }}; + new ItemPool(POOL_PILE_MAKESHIFT_PLATES) {{ this.pool = new WeightedRandomChestContent[] { weighted(ModItems.plate_steel, 0, 1, 1, 10) }; }}; new ItemPool(POOL_PILE_MAKESHIFT_WIRE) {{ this.pool = new WeightedRandomChestContent[] { weighted(ModItems.wire_fine, Mats.MAT_ALUMINIUM.id, 1, 1, 10) }; }}; new ItemPool(POOL_PILE_NUKE_STORAGE) {{ diff --git a/src/main/java/com/hbm/items/ItemCustomLore.java b/src/main/java/com/hbm/items/ItemCustomLore.java index b8598c288..15dab0dd7 100644 --- a/src/main/java/com/hbm/items/ItemCustomLore.java +++ b/src/main/java/com/hbm/items/ItemCustomLore.java @@ -51,23 +51,27 @@ public class ItemCustomLore extends Item { if(this == ModItems.undefined) { - if(player.worldObj.rand.nextInt(10) == 0) { - list.add(EnumChatFormatting.DARK_RED + "UNDEFINED"); - } else { - Random rand = new Random(System.currentTimeMillis() / 500); - - if(setSize == 0) - setSize = Item.itemRegistry.getKeys().size(); - - int r = rand.nextInt(setSize); - - Item item = Item.getItemById(r); - - if(item != null) { - list.add(new ItemStack(item).getDisplayName()); + try { + if(player.worldObj.rand.nextInt(10) == 0) { + list.add(EnumChatFormatting.DARK_RED + "UNDEFINED"); } else { - list.add(EnumChatFormatting.RED + "ERROR #" + r); + Random rand = new Random(System.currentTimeMillis() / 500); + + if(setSize == 0) + setSize = Item.itemRegistry.getKeys().size(); + + int r = rand.nextInt(setSize); + + Item item = Item.getItemById(r); + + if(item != null) { + list.add(new ItemStack(item).getDisplayName()); + } else { + list.add(EnumChatFormatting.RED + "ERROR #" + r); + } } + } catch(Exception ex) { + list.add(EnumChatFormatting.DARK_RED + "UNDEFINED"); } } } diff --git a/src/main/java/com/hbm/items/ItemEnums.java b/src/main/java/com/hbm/items/ItemEnums.java index 8e4592d72..97d817daa 100644 --- a/src/main/java/com/hbm/items/ItemEnums.java +++ b/src/main/java/com/hbm/items/ItemEnums.java @@ -79,4 +79,8 @@ public class ItemEnums { public static enum EnumSecretType { CANISTER, CONTROLLER } + + public static enum EnumCasingType { + SMALL, LARGE, SMALL_STEEL, LARGE_STEEL, SHOTSHELL, BUCKSHOT + } } diff --git a/src/main/java/com/hbm/items/ModItems.java b/src/main/java/com/hbm/items/ModItems.java index c863f051b..3fc1a625e 100644 --- a/src/main/java/com/hbm/items/ModItems.java +++ b/src/main/java/com/hbm/items/ModItems.java @@ -191,6 +191,10 @@ public class ModItems { public static Item nugget_tetraneutronium; public static Item powder_tetraneutronium; public static Item ingot_starmetal; + public static Item ingot_gunmetal; + public static Item plate_gunmetal; + public static Item ingot_weaponsteel; + public static Item plate_weaponsteel; public static Item ingot_saturnite; public static Item plate_saturnite; public static Item ingot_ferrouranium; @@ -640,6 +644,8 @@ public class ModItems { public static Item assembly_nuke; public static Item assembly_luna; + public static Item casing; + public static Item folly_shell; public static Item folly_bullet; public static Item folly_bullet_nuclear; @@ -768,6 +774,13 @@ public class ModItems { public static Item heavy_component; public static Item wire_fine; public static Item wire_dense; + public static Item part_barrel_light; + public static Item part_barrel_heavy; + public static Item part_receiver_light; + public static Item part_receiver_heavy; + public static Item part_mechanism; + public static Item part_stock; + public static Item part_grip; public static Item part_lithium; public static Item part_beryllium; @@ -1519,7 +1532,6 @@ public class ModItems { public static Item gun_panzerschreck; public static Item gun_quadro; public static Item gun_hk69; - public static Item gun_congolake; public static Item gun_stinger; public static Item gun_skystinger; public static Item gun_revolver; @@ -1612,6 +1624,21 @@ public class ModItems { public static Item gun_debug; public static Item ammo_debug; + + public static Item gun_pepperbox; + public static Item gun_light_revolver; + public static Item gun_light_revolver_dani; + public static Item gun_henry; + public static Item gun_greasegun; + public static Item gun_maresleg; + public static Item gun_flaregun; + public static Item gun_heavy_revolver; + public static Item gun_carbine; + public static Item gun_am180; + public static Item gun_liberator; + public static Item gun_congolake; + + public static Item ammo_standard; public static Item crucible; @@ -2616,6 +2643,10 @@ public class ModItems { nugget_dineutronium = new ItemCustomLore().setUnlocalizedName("nugget_dineutronium").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":nugget_dineutronium"); powder_dineutronium = new ItemCustomLore().setUnlocalizedName("powder_dineutronium").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":powder_dineutronium"); ingot_starmetal = new ItemStarmetal().setUnlocalizedName("ingot_starmetal").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":ingot_starmetal"); + ingot_gunmetal = new Item().setUnlocalizedName("ingot_gunmetal").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":ingot_gunmetal"); + plate_gunmetal = new Item().setUnlocalizedName("plate_gunmetal").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":plate_gunmetal"); + ingot_weaponsteel = new Item().setUnlocalizedName("ingot_weaponsteel").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":ingot_gunsteel"); + plate_weaponsteel = new Item().setUnlocalizedName("plate_weaponsteel").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":plate_gunsteel"); ingot_saturnite = new ItemCustomLore().setRarity(EnumRarity.rare).setUnlocalizedName("ingot_saturnite").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":ingot_saturnite"); plate_saturnite = new ItemCustomLore().setRarity(EnumRarity.rare).setUnlocalizedName("plate_saturnite").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":plate_saturnite"); ingot_ferrouranium = new ItemCustomLore().setUnlocalizedName("ingot_ferrouranium").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":ingot_ferrouranium"); @@ -3054,6 +3085,7 @@ public class ModItems { folly_bullet = new Item().setUnlocalizedName("folly_bullet").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":folly_bullet"); folly_bullet_nuclear = new Item().setUnlocalizedName("folly_bullet_nuclear").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":folly_bullet_nuclear"); folly_bullet_du = new Item().setUnlocalizedName("folly_bullet_du").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":folly_bullet_du"); + casing = new ItemEnumMulti(ItemEnums.EnumCasingType.class, true, true).setUnlocalizedName("casing").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":casing"); wiring_red_copper = new ItemWiring().setUnlocalizedName("wiring_red_copper").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":wiring_red_copper"); @@ -3193,6 +3225,14 @@ public class ModItems { .aot(Mats.MAT_CARBON, "wire_carbon").aot(Mats.MAT_SCHRABIDIUM, "wire_schrabidium") .aot(Mats.MAT_MAGTUNG, "wire_magnetized_tungsten").setUnlocalizedName("wire_fine").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":wire_fine"); wire_dense = new ItemAutogen(MaterialShapes.DENSEWIRE).setUnlocalizedName("wire_dense").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":wire_dense"); + + part_barrel_light = new ItemAutogen(MaterialShapes.LIGHTBARREL).setUnlocalizedName("part_barrel_light").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":part_barrel_light"); + part_barrel_heavy = new ItemAutogen(MaterialShapes.HEAVYBARREL).setUnlocalizedName("part_barrel_heavy").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":part_barrel_heavy"); + part_receiver_light = new ItemAutogen(MaterialShapes.LIGHTRECEIVER).setUnlocalizedName("part_receiver_light").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":part_receiver_light"); + part_receiver_heavy = new ItemAutogen(MaterialShapes.HEAVYRECEIVER).setUnlocalizedName("part_receiver_heavy").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":part_receiver_heavy"); + part_mechanism = new ItemAutogen(MaterialShapes.MECHANISM).setUnlocalizedName("part_mechanism").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":part_mechanism"); + part_stock = new ItemAutogen(MaterialShapes.STOCK).setUnlocalizedName("part_stock").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":part_stock"); + part_grip = new ItemAutogen(MaterialShapes.GRIP).setUnlocalizedName("part_grip").setCreativeTab(MainRegistry.partsTab).setTextureName(RefStrings.MODID + ":part_grip"); part_lithium = new Item().setUnlocalizedName("part_lithium").setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":part_lithium"); part_beryllium = new Item().setUnlocalizedName("part_beryllium").setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":part_beryllium"); @@ -4070,7 +4110,7 @@ public class ModItems { gun_panzerschreck = new ItemGunBase(GunRocketFactory.getPanzConfig()).setUnlocalizedName("gun_panzerschreck").setCreativeTab(MainRegistry.weaponTab).setTextureName(RefStrings.MODID + ":gun_panzerschreck"); gun_quadro = new ItemGunBase(GunRocketFactory.getQuadroConfig()).setUnlocalizedName("gun_quadro").setCreativeTab(MainRegistry.weaponTab).setTextureName(RefStrings.MODID + ":gun_quadro"); gun_hk69 = new ItemGunBase(GunGrenadeFactory.getHK69Config()).setUnlocalizedName("gun_hk69").setCreativeTab(MainRegistry.weaponTab).setTextureName(RefStrings.MODID + ":gun_hk69"); - gun_congolake = new ItemGunBase(GunGrenadeFactory.getCongoConfig()).setUnlocalizedName("gun_congolake").setCreativeTab(MainRegistry.weaponTab).setTextureName(RefStrings.MODID + ":gun_congolake"); + //gun_congolake = new ItemGunBase(GunGrenadeFactory.getCongoConfig()).setUnlocalizedName("gun_congolake").setCreativeTab(MainRegistry.weaponTab).setTextureName(RefStrings.MODID + ":gun_congolake"); gun_stinger = new ItemGunBase(GunRocketHomingFactory.getStingerConfig()).setUnlocalizedName("gun_stinger").setCreativeTab(MainRegistry.weaponTab).setTextureName(RefStrings.MODID + ":gun_stinger"); gun_skystinger = new ItemGunBase(GunRocketHomingFactory.getSkyStingerConfig()).setUnlocalizedName("gun_skystinger").setCreativeTab(MainRegistry.weaponTab).setTextureName(RefStrings.MODID + ":gun_skystinger"); gun_revolver = new ItemGunBase(Gun357MagnumFactory.getRevolverConfig()).setUnlocalizedName("gun_revolver").setCreativeTab(MainRegistry.weaponTab).setTextureName(RefStrings.MODID + ":gun_revolver"); @@ -5581,6 +5621,8 @@ public class ModItems { GameRegistry.registerItem(ingot_desh, ingot_desh.getUnlocalizedName()); GameRegistry.registerItem(ingot_ferrouranium, ingot_ferrouranium.getUnlocalizedName()); GameRegistry.registerItem(ingot_starmetal, ingot_starmetal.getUnlocalizedName()); + GameRegistry.registerItem(ingot_gunmetal, ingot_gunmetal.getUnlocalizedName()); + GameRegistry.registerItem(ingot_weaponsteel, ingot_weaponsteel.getUnlocalizedName()); GameRegistry.registerItem(ingot_saturnite, ingot_saturnite.getUnlocalizedName()); GameRegistry.registerItem(ingot_euphemium, ingot_euphemium.getUnlocalizedName()); GameRegistry.registerItem(ingot_dineutronium, ingot_dineutronium.getUnlocalizedName()); @@ -5948,6 +5990,8 @@ public class ModItems { GameRegistry.registerItem(plate_schrabidium, plate_schrabidium.getUnlocalizedName()); GameRegistry.registerItem(plate_combine_steel, plate_combine_steel.getUnlocalizedName()); GameRegistry.registerItem(plate_mixed, plate_mixed.getUnlocalizedName()); + GameRegistry.registerItem(plate_gunmetal, plate_gunmetal.getUnlocalizedName()); + GameRegistry.registerItem(plate_weaponsteel, plate_weaponsteel.getUnlocalizedName()); GameRegistry.registerItem(plate_saturnite, plate_saturnite.getUnlocalizedName()); GameRegistry.registerItem(plate_paa, plate_paa.getUnlocalizedName()); GameRegistry.registerItem(plate_polymer, plate_polymer.getUnlocalizedName()); @@ -6014,15 +6058,9 @@ public class ModItems { GameRegistry.registerItem(motor_desh, motor_desh.getUnlocalizedName()); GameRegistry.registerItem(motor_bismuth, motor_bismuth.getUnlocalizedName()); GameRegistry.registerItem(centrifuge_element, centrifuge_element.getUnlocalizedName()); - //GameRegistry.registerItem(centrifuge_tower, centrifuge_tower.getUnlocalizedName()); - //GameRegistry.registerItem(magnet_dee, magnet_dee.getUnlocalizedName()); GameRegistry.registerItem(magnet_circular, magnet_circular.getUnlocalizedName()); - //GameRegistry.registerItem(cyclotron_tower, cyclotron_tower.getUnlocalizedName()); GameRegistry.registerItem(reactor_core, reactor_core.getUnlocalizedName()); GameRegistry.registerItem(rtg_unit, rtg_unit.getUnlocalizedName()); - //GameRegistry.registerItem(thermo_unit_empty, thermo_unit_empty.getUnlocalizedName()); - //GameRegistry.registerItem(thermo_unit_endo, thermo_unit_endo.getUnlocalizedName()); - //GameRegistry.registerItem(thermo_unit_exo, thermo_unit_exo.getUnlocalizedName()); GameRegistry.registerItem(levitation_unit, levitation_unit.getUnlocalizedName()); GameRegistry.registerItem(pipes_steel, pipes_steel.getUnlocalizedName()); GameRegistry.registerItem(drill_titanium, drill_titanium.getUnlocalizedName()); @@ -6037,6 +6075,13 @@ public class ModItems { GameRegistry.registerItem(parts_legendary, parts_legendary.getUnlocalizedName()); GameRegistry.registerItem(gear_large, gear_large.getUnlocalizedName()); GameRegistry.registerItem(sawblade, sawblade.getUnlocalizedName()); + GameRegistry.registerItem(part_barrel_light, part_barrel_light.getUnlocalizedName()); + GameRegistry.registerItem(part_barrel_heavy, part_barrel_heavy.getUnlocalizedName()); + GameRegistry.registerItem(part_receiver_light, part_receiver_light.getUnlocalizedName()); + GameRegistry.registerItem(part_receiver_heavy, part_receiver_heavy.getUnlocalizedName()); + GameRegistry.registerItem(part_mechanism, part_mechanism.getUnlocalizedName()); + GameRegistry.registerItem(part_stock, part_stock.getUnlocalizedName()); + GameRegistry.registerItem(part_grip, part_grip.getUnlocalizedName()); //Plant Products GameRegistry.registerItem(plant_item, plant_item.getUnlocalizedName()); @@ -6136,6 +6181,8 @@ public class ModItems { GameRegistry.registerItem(casing_50, casing_50.getUnlocalizedName()); GameRegistry.registerItem(casing_buckshot, casing_buckshot.getUnlocalizedName()); + GameRegistry.registerItem(casing, casing.getUnlocalizedName()); + //Bullet Assemblies GameRegistry.registerItem(assembly_iron, assembly_iron.getUnlocalizedName()); GameRegistry.registerItem(assembly_steel, assembly_steel.getUnlocalizedName()); @@ -6950,7 +6997,6 @@ public class ModItems { GameRegistry.registerItem(gun_panzerschreck, gun_panzerschreck.getUnlocalizedName()); GameRegistry.registerItem(gun_quadro, gun_quadro.getUnlocalizedName()); GameRegistry.registerItem(gun_hk69, gun_hk69.getUnlocalizedName()); - GameRegistry.registerItem(gun_congolake, gun_congolake.getUnlocalizedName()); GameRegistry.registerItem(gun_stinger, gun_stinger.getUnlocalizedName()); GameRegistry.registerItem(gun_fatman, gun_fatman.getUnlocalizedName()); GameRegistry.registerItem(gun_proto, gun_proto.getUnlocalizedName()); @@ -7010,6 +7056,21 @@ public class ModItems { GameRegistry.registerItem(gun_debug, gun_debug.getUnlocalizedName()); GameRegistry.registerItem(ammo_debug, ammo_debug.getUnlocalizedName()); + GameRegistry.registerItem(gun_pepperbox, gun_pepperbox.getUnlocalizedName()); + GameRegistry.registerItem(gun_light_revolver, gun_light_revolver.getUnlocalizedName()); + GameRegistry.registerItem(gun_light_revolver_dani, gun_light_revolver_dani.getUnlocalizedName()); + GameRegistry.registerItem(gun_henry, gun_henry.getUnlocalizedName()); + GameRegistry.registerItem(gun_greasegun, gun_greasegun.getUnlocalizedName()); + GameRegistry.registerItem(gun_maresleg, gun_maresleg.getUnlocalizedName()); + GameRegistry.registerItem(gun_flaregun, gun_flaregun.getUnlocalizedName()); + GameRegistry.registerItem(gun_heavy_revolver, gun_heavy_revolver.getUnlocalizedName()); + GameRegistry.registerItem(gun_carbine, gun_carbine.getUnlocalizedName()); + GameRegistry.registerItem(gun_am180, gun_am180.getUnlocalizedName()); + GameRegistry.registerItem(gun_liberator, gun_liberator.getUnlocalizedName()); + GameRegistry.registerItem(gun_congolake, gun_congolake.getUnlocalizedName()); + + GameRegistry.registerItem(ammo_standard, ammo_standard.getUnlocalizedName()); + //Ammo GameRegistry.registerItem(gun_b92_ammo, gun_b92_ammo.getUnlocalizedName()); GameRegistry.registerItem(gun_xvl1456_ammo, gun_xvl1456_ammo.getUnlocalizedName()); diff --git a/src/main/java/com/hbm/items/machine/ItemMold.java b/src/main/java/com/hbm/items/machine/ItemMold.java index 81b8fb0b8..b6467c310 100644 --- a/src/main/java/com/hbm/items/machine/ItemMold.java +++ b/src/main/java/com/hbm/items/machine/ItemMold.java @@ -80,6 +80,14 @@ public class ItemMold extends Item { registerMold(new MoldSingle( 16, S, "c9", new ItemStack(ModItems.casing_9), Mats.MAT_COPPER, MaterialShapes.PLATE.q(1))); registerMold(new MoldSingle( 17, S, "c50", new ItemStack(ModItems.casing_50), Mats.MAT_COPPER, MaterialShapes.PLATE.q(1))); registerMold(new MoldSingle( 18, S, "cbuckshot", new ItemStack(ModItems.casing_buckshot), Mats.MAT_COPPER, MaterialShapes.PLATE.q(1))); + + registerMold(new MoldShape( 22, S, "barrel_light", MaterialShapes.LIGHTBARREL)); + registerMold(new MoldShape( 23, S, "barrel_heavy", MaterialShapes.HEAVYBARREL)); + registerMold(new MoldShape( 24, S, "receiver_light", MaterialShapes.LIGHTRECEIVER)); + registerMold(new MoldShape( 25, S, "receiver_heavy", MaterialShapes.HEAVYRECEIVER)); + registerMold(new MoldShape( 26, S, "mechanism", MaterialShapes.MECHANISM)); + registerMold(new MoldShape( 27, S, "stock", MaterialShapes.STOCK)); + registerMold(new MoldShape( 28, S, "grip", MaterialShapes.GRIP)); } public void registerMold(Mold mold) { diff --git a/src/main/java/com/hbm/items/special/ItemBedrockOreBase.java b/src/main/java/com/hbm/items/special/ItemBedrockOreBase.java index a20220d8e..4204013b5 100644 --- a/src/main/java/com/hbm/items/special/ItemBedrockOreBase.java +++ b/src/main/java/com/hbm/items/special/ItemBedrockOreBase.java @@ -38,7 +38,7 @@ public class ItemBedrockOreBase extends Item { for(BedrockOreType type : BedrockOreType.values()) { double amount = this.getOreAmount(stack, type); String typeName = StatCollector.translateToLocalFormatted("item.bedrock_ore.type." + type.suffix + ".name"); - list.add(typeName + ": " + ((int) (amount * 100)) / 100D + " (" + ItemOreDensityScanner.translateDensity(amount) + EnumChatFormatting.RESET + ")"); + list.add(typeName + ": " + ((int) (amount * 100)) / 100D + " (" + StatCollector.translateToLocalFormatted(ItemOreDensityScanner.translateDensity(amount)) + EnumChatFormatting.RESET + ")"); } } diff --git a/src/main/java/com/hbm/items/tool/ItemBoltgun.java b/src/main/java/com/hbm/items/tool/ItemBoltgun.java index 16eb83a0b..837eb7207 100644 --- a/src/main/java/com/hbm/items/tool/ItemBoltgun.java +++ b/src/main/java/com/hbm/items/tool/ItemBoltgun.java @@ -127,7 +127,7 @@ public class ItemBoltgun extends Item implements IAnimatedItem { public BusAnimation getAnimation(NBTTagCompound data, ItemStack stack) { return new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(1, 0, 1, 50) - .addKeyframePosition(0, 0, 1, 100)); + .addPos(1, 0, 1, 50) + .addPos(0, 0, 1, 100)); } } diff --git a/src/main/java/com/hbm/items/weapon/ItemCoilgun.java b/src/main/java/com/hbm/items/weapon/ItemCoilgun.java index af245c5d2..86e8dc937 100644 --- a/src/main/java/com/hbm/items/weapon/ItemCoilgun.java +++ b/src/main/java/com/hbm/items/weapon/ItemCoilgun.java @@ -22,16 +22,16 @@ public class ItemCoilgun extends ItemGunBase { if(type == AnimType.CYCLE) { return new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 100) - .addKeyframePosition(0, 0, 0, 200)); + .addPos(1, 0, 0, 100) + .addPos(0, 0, 0, 200)); } if(type == AnimType.RELOAD) { return new BusAnimation() .addBus("RELOAD", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 250) - .addKeyframePosition(1, 0, 0, 500) - .addKeyframePosition(0, 0, 0, 250)); + .addPos(1, 0, 0, 250) + .addPos(1, 0, 0, 500) + .addPos(0, 0, 0, 250)); } GunConfiguration config = ((ItemGunBase) stack.getItem()).mainConfig; diff --git a/src/main/java/com/hbm/items/weapon/ItemGunBio.java b/src/main/java/com/hbm/items/weapon/ItemGunBio.java index 1e7184e84..5ba412702 100644 --- a/src/main/java/com/hbm/items/weapon/ItemGunBio.java +++ b/src/main/java/com/hbm/items/weapon/ItemGunBio.java @@ -69,54 +69,54 @@ public class ItemGunBio extends ItemGunBase { lastShot = System.currentTimeMillis(); return new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 50) - .addKeyframePosition(0, 0, -3, 50) - .addKeyframePosition(0, 0, 0, 250) + .addPos(0, 0, 0, 50) + .addPos(0, 0, -3, 50) + .addPos(0, 0, 0, 250) ) .addBus("HAMMER", new BusAnimationSequence() - .addKeyframePosition(0, 0, 1, 50) - .addKeyframePosition(0, 0, 1, 300) - .addKeyframePosition(0, 0, 0, 200) + .addPos(0, 0, 1, 50) + .addPos(0, 0, 1, 300) + .addPos(0, 0, 0, 200) ) .addBus("DRUM", new BusAnimationSequence() - .addKeyframePosition(0, 0, 1, 50) + .addPos(0, 0, 1, 50) ); } if(type == AnimType.RELOAD) { return new BusAnimation() .addBus("LATCH", new BusAnimationSequence() - .addKeyframePosition(0, 0, 90, 300) - .addKeyframePosition(0, 0, 90, 2000) - .addKeyframePosition(0, 0, 0, 150) + .addPos(0, 0, 90, 300) + .addPos(0, 0, 90, 2000) + .addPos(0, 0, 0, 150) ) .addBus("FRONT", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 200) - .addKeyframePosition(0, 0, 45, 150) - .addKeyframePosition(0, 0, 45, 2000) - .addKeyframePosition(0, 0, 0, 75) + .addPos(0, 0, 0, 200) + .addPos(0, 0, 45, 150) + .addPos(0, 0, 45, 2000) + .addPos(0, 0, 0, 75) ) .addBus("RELOAD_ROT", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 300) - .addKeyframePosition(60, 0, 0, 500) - .addKeyframePosition(60, 0, 0, 500) - .addKeyframePosition(0, -90, -90, 0) - .addKeyframePosition(0, -90, -90, 600) - .addKeyframePosition(0, 0, 0, 300) - .addKeyframePosition(0, 0, 0, 100) - .addKeyframePosition(-45, 0, 0, 50) - .addKeyframePosition(-45, 0, 0, 100) - .addKeyframePosition(0, 0, 0, 300) + .addPos(0, 0, 0, 300) + .addPos(60, 0, 0, 500) + .addPos(60, 0, 0, 500) + .addPos(0, -90, -90, 0) + .addPos(0, -90, -90, 600) + .addPos(0, 0, 0, 300) + .addPos(0, 0, 0, 100) + .addPos(-45, 0, 0, 50) + .addPos(-45, 0, 0, 100) + .addPos(0, 0, 0, 300) ) .addBus("RELOAD_MOVE", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 300) - .addKeyframePosition(0, -15, 0, 1000) - .addKeyframePosition(0, 0, 0, 450) + .addPos(0, 0, 0, 300) + .addPos(0, -15, 0, 1000) + .addPos(0, 0, 0, 450) ) .addBus("DRUM_PUSH", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 1600) - .addKeyframePosition(0, 0, -5, 0) - .addKeyframePosition(0, 0, 0, 300) + .addPos(0, 0, 0, 1600) + .addPos(0, 0, -5, 0) + .addPos(0, 0, 0, 300) ); } diff --git a/src/main/java/com/hbm/items/weapon/ItemGunPip.java b/src/main/java/com/hbm/items/weapon/ItemGunPip.java index c6ed8aaf9..5e0e636ca 100644 --- a/src/main/java/com/hbm/items/weapon/ItemGunPip.java +++ b/src/main/java/com/hbm/items/weapon/ItemGunPip.java @@ -64,7 +64,7 @@ public class ItemGunPip extends ItemGunBase { if(type == AnimType.EQUIP) { return new BusAnimation() .addBus("ROTATE", new BusAnimationSequence() - .addKeyframePosition(-360, 0, 0, 350) + .addPos(-360, 0, 0, 350) ); } @@ -73,17 +73,17 @@ public class ItemGunPip extends ItemGunBase { int s = 1; return new BusAnimation() .addBus("RECOIL", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 50 * s) - .addKeyframePosition(0, 0, -3, 50 * s) - .addKeyframePosition(0, 0, 0, 250 * s) + .addPos(0, 0, 0, 50 * s) + .addPos(0, 0, -3, 50 * s) + .addPos(0, 0, 0, 250 * s) ) .addBus("HAMMER", new BusAnimationSequence() - .addKeyframePosition(0, 0, 1, 50 * s) - .addKeyframePosition(0, 0, 1, 300 * s) - .addKeyframePosition(0, 0, 0, 200 * s) + .addPos(0, 0, 1, 50 * s) + .addPos(0, 0, 1, 300 * s) + .addPos(0, 0, 0, 200 * s) ) .addBus("DRUM", new BusAnimationSequence() - .addKeyframePosition(0, 0, 1, 50 * s) + .addPos(0, 0, 1, 50 * s) ); } @@ -91,44 +91,44 @@ public class ItemGunPip extends ItemGunBase { int s = 1; return new BusAnimation() .addBus("RELAOD_TILT", new BusAnimationSequence() - .addKeyframePosition(-15, 0, 0, 100 * s) - .addKeyframePosition(65, 0, 0, 100 * s) //200 - .addKeyframePosition(45, 0, 0, 50 * s) //250 - .addKeyframePosition(0, 0, 0, 200 * s) //450 - .addKeyframePosition(0, 0, 0, 1450 * s) //1900 - .addKeyframePosition(-80, 0, 0, 100 * s) //2000 - .addKeyframePosition(-80, 0, 0, 100 * s) //2100 - .addKeyframePosition(0, 0, 0, 200 * s) //2300 + .addPos(-15, 0, 0, 100 * s) + .addPos(65, 0, 0, 100 * s) //200 + .addPos(45, 0, 0, 50 * s) //250 + .addPos(0, 0, 0, 200 * s) //450 + .addPos(0, 0, 0, 1450 * s) //1900 + .addPos(-80, 0, 0, 100 * s) //2000 + .addPos(-80, 0, 0, 100 * s) //2100 + .addPos(0, 0, 0, 200 * s) //2300 ) .addBus("RELOAD_CYLINDER", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 200 * s) - .addKeyframePosition(90, 0, 0, 100 * s) //300 - .addKeyframePosition(90, 0, 0, 1700 * s) //2000 - .addKeyframePosition(0, 0, 0, 70 * s) //2100 + .addPos(0, 0, 0, 200 * s) + .addPos(90, 0, 0, 100 * s) //300 + .addPos(90, 0, 0, 1700 * s) //2000 + .addPos(0, 0, 0, 70 * s) //2100 ) .addBus("RELOAD_LIFT", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 350 * s) - .addKeyframePosition(-45, 0, 0, 250 * s) //600 - .addKeyframePosition(-45, 0, 0, 350 * s) //950 - .addKeyframePosition(-15, 0, 0, 200 * s) //1150 - .addKeyframePosition(-15, 0, 0, 1050 * s) //2200 - .addKeyframePosition(0, 0, 0, 100 * s) //2300 + .addPos(0, 0, 0, 350 * s) + .addPos(-45, 0, 0, 250 * s) //600 + .addPos(-45, 0, 0, 350 * s) //950 + .addPos(-15, 0, 0, 200 * s) //1150 + .addPos(-15, 0, 0, 1050 * s) //2200 + .addPos(0, 0, 0, 100 * s) //2300 ) .addBus("RELOAD_JOLT", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 600 * s) - .addKeyframePosition(2, 0, 0, 50 * s) //650 - .addKeyframePosition(0, 0, 0, 100 * s) //750 + .addPos(0, 0, 0, 600 * s) + .addPos(2, 0, 0, 50 * s) //650 + .addPos(0, 0, 0, 100 * s) //750 ) .addBus("RELOAD_BULLETS", new BusAnimationSequence() - .addKeyframePosition(0, 0, 0, 650 * s) - .addKeyframePosition(10, 0, 0, 300 * s) //950 - .addKeyframePosition(10, 0, 0, 200 * s) //1150 - .addKeyframePosition(0, 0, 0, 700 * s) //1850 + .addPos(0, 0, 0, 650 * s) + .addPos(10, 0, 0, 300 * s) //950 + .addPos(10, 0, 0, 200 * s) //1150 + .addPos(0, 0, 0, 700 * s) //1850 ) .addBus("RELOAD_BULLETS_CON", new BusAnimationSequence() - .addKeyframePosition(1, 0, 0, 0 * s) - .addKeyframePosition(1, 0, 0, 950 * s) - .addKeyframePosition(0, 0, 0, 1 * s) + .addPos(1, 0, 0, 0 * s) + .addPos(1, 0, 0, 950 * s) + .addPos(0, 0, 0, 1 * s) ); } diff --git a/src/main/java/com/hbm/items/weapon/sedna/BulletConfig.java b/src/main/java/com/hbm/items/weapon/sedna/BulletConfig.java index 9a43ef50b..419b29f25 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/BulletConfig.java +++ b/src/main/java/com/hbm/items/weapon/sedna/BulletConfig.java @@ -2,10 +2,21 @@ package com.hbm.items.weapon.sedna; import java.util.ArrayList; import java.util.List; +import java.util.function.BiConsumer; +import java.util.function.Consumer; +import com.hbm.entity.projectile.EntityBulletBaseMK4; import com.hbm.inventory.RecipesCommon.ComparableStack; +import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.factory.GunFactory.EnumAmmo; +import com.hbm.lib.ModDamageSource; +import com.hbm.particle.SpentCasing; +import net.minecraft.entity.EntityLivingBase; import net.minecraft.item.Item; +import net.minecraft.util.DamageSource; +import net.minecraft.util.EntityDamageSourceIndirect; +import net.minecraft.util.MovingObjectPosition; public class BulletConfig { @@ -14,32 +25,89 @@ public class BulletConfig { public final int id; public ComparableStack ammo; + /** How much ammo is added to a standard mag when loading one item */ public int ammoReloadCount = 1; - public float velocity = 5F; + public float velocity = 10F; public float spread = 0F; public float wear = 1F; public int projectilesMin = 1; public int projectilesMax = 1; public float damageMult = 1.0F; + public float armorPiercingPercent = 0.0F; public float headshotMult = 1.0F; + public String damageType = ModDamageSource.s_bullet; + public boolean dmgProj = true; + public boolean dmgFire = false; + public boolean dmgExplosion = false; + public boolean dmgBypass = false; + + public float ricochetAngle = 5F; + public int maxRicochetCount = 2; + /** Whether damage dealt to an entity is subtracted from the projectile's damage on penetration */ + public boolean damageFalloffByPen = true; + + public Consumer onUpdate; + public BiConsumer onImpact; + public double gravity = 0; - public int expires = 100; + public int expires = 30; + public boolean impactsEntities = true; + public boolean doesPenetrate = false; + /** Whether projectiles ignore blocks entirely */ + public boolean isSpectral = false; + public int selfDamageDelay = 2; + + public boolean renderRotations = true; + public SpentCasing casing; + public BiConsumer renderer; public BulletConfig() { this.id = configs.size(); configs.add(this); } - public BulletConfig setItem(Item ammo) { this.ammo = new ComparableStack(ammo); return this; } - public BulletConfig setReloadCount(int ammoReloadCount) { this.ammoReloadCount = ammoReloadCount; return this; } - public BulletConfig setVel(float velocity) { this.velocity = velocity; return this; } - public BulletConfig setSpread(float spread) { this.spread = spread; return this; } - public BulletConfig setWear(float wear) { this.wear = wear; return this; } - public BulletConfig setProjectiles(int min, int max) { this.projectilesMin = min; this.projectilesMax = max; return this; } - public BulletConfig setDamage(float damageMult) { this.damageMult = damageMult; return this; } - public BulletConfig setHeadshot(float headshotMult) { this.headshotMult = headshotMult; return this; } - public BulletConfig setGrav(double gravity) { this.gravity = gravity; return this; } - public BulletConfig setLife(int expires) { this.expires = expires; return this; } + public BulletConfig setItem(Item ammo) { this.ammo = new ComparableStack(ammo); return this; } + public BulletConfig setItem(EnumAmmo ammo) { this.ammo = new ComparableStack(ModItems.ammo_standard, 1, ammo.ordinal()); return this; } + public BulletConfig setReloadCount(int ammoReloadCount) { this.ammoReloadCount = ammoReloadCount; return this; } + public BulletConfig setVel(float velocity) { this.velocity = velocity; return this; } + public BulletConfig setSpread(float spread) { this.spread = spread; return this; } + public BulletConfig setWear(float wear) { this.wear = wear; return this; } + public BulletConfig setProjectiles(int min, int max) { this.projectilesMin = min; this.projectilesMax = max; return this; } + public BulletConfig setDamage(float damageMult) { this.damageMult = damageMult; return this; } + public BulletConfig setArmorPiercing(float armorPiercingPercent) { this.armorPiercingPercent = armorPiercingPercent; return this; } + public BulletConfig setHeadshot(float headshotMult) { this.headshotMult = headshotMult; return this; } + public BulletConfig setDamageType(String type) { this.damageType = type; return this; } + public BulletConfig setupDamageClass(boolean proj, boolean fire, boolean explosion, boolean bypass) { this.dmgProj = proj; this.dmgFire = fire; this.dmgExplosion = explosion; this.dmgBypass = bypass; return this; } + public BulletConfig setRicochetAngle(float angle) { this.ricochetAngle = angle; return this; } + public BulletConfig setRicochetCount(int count) { this.maxRicochetCount = count; return this; } + public BulletConfig setDamageFalloutByPen(boolean falloff) { this.damageFalloffByPen = falloff; return this; } + public BulletConfig setGrav(double gravity) { this.gravity = gravity; return this; } + public BulletConfig setLife(int expires) { this.expires = expires; return this; } + public BulletConfig setImpactsEntities(boolean impact) { this.impactsEntities = impact; return this; } + public BulletConfig setDoesPenetrate(boolean pen) { this.doesPenetrate = pen; return this; } + public BulletConfig setSpectral(boolean spectral) { this.isSpectral = spectral; return this; } + public BulletConfig setSelfDamageDelay(int delay) { this.selfDamageDelay = delay; return this; } + public BulletConfig setRenderRotations(boolean rot) { this.renderRotations = rot; return this; } + public BulletConfig setCasing(SpentCasing casing) { this.casing = casing; return this; } + public BulletConfig setRenderer(BiConsumer renderer) { this.renderer = renderer; return this; } + + public BulletConfig setOnUpdate(Consumer lambda) { this.onUpdate = lambda; return this; } + public BulletConfig setOnImpact(BiConsumer lambda) { this.onImpact = lambda; return this; } + + public DamageSource getDamage(EntityBulletBaseMK4 bullet, EntityLivingBase shooter, boolean bypass) { + + DamageSource dmg; + + if(shooter != null) dmg = new EntityDamageSourceIndirect(damageType, bullet, shooter); + else dmg = new DamageSource(damageType); + + if(this.dmgProj) dmg.setProjectile(); + if(this.dmgFire) dmg.setFireDamage(); + if(this.dmgExplosion) dmg.setExplosion(); + if(this.dmgBypass || bypass) dmg.setDamageBypassesArmor(); + + return dmg; + } } diff --git a/src/main/java/com/hbm/items/weapon/sedna/GunConfig.java b/src/main/java/com/hbm/items/weapon/sedna/GunConfig.java index e0388871c..828032f10 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/GunConfig.java +++ b/src/main/java/com/hbm/items/weapon/sedna/GunConfig.java @@ -1,9 +1,15 @@ package com.hbm.items.weapon.sedna; +import java.util.ArrayList; +import java.util.List; import java.util.function.BiConsumer; import java.util.function.BiFunction; import com.hbm.items.weapon.sedna.ItemGunBaseNT.LambdaContext; +import com.hbm.items.weapon.sedna.ItemGunBaseNT.SmokeNode; +import com.hbm.items.weapon.sedna.factory.GunStateDecider; +import com.hbm.items.weapon.sedna.factory.Lego; +import com.hbm.items.weapon.sedna.hud.IHUDComponent; import com.hbm.render.anim.BusAnimation; import com.hbm.render.anim.HbmAnimations.AnimType; @@ -17,11 +23,16 @@ import net.minecraft.item.ItemStack; * */ public class GunConfig { + public List smokeNodes = new ArrayList(); + public static final String O_RECEIVERS = "O_RECEIVERS"; public static final String F_DURABILITY = "F_DURABILITY"; public static final String I_DRAWDURATION = "I_DRAWDURATION"; + public static final String I_INSPECTDURATION = "I_INSPECTDURATION"; public static final String O_CROSSHAIR = "O_CROSSHAIR"; public static final String B_RELOADANIMATIONSEQUENTIAL = "B_RELOADANIMATIONSEQUENTIAL"; + public static final String CON_SMOKE = "CON_SMOKE"; + public static final String CON_ORCHESTRA = "CON_ORCHESTRA"; public static final String CON_ONPRESSPRIMARY = "CON_ONPRESSPRIMARY"; public static final String CON_ONPRESSSECONDARY = "CON_ONPRESSSECONDARY"; public static final String CON_ONPRESSTERTIARY = "CON_ONPRESSTERTIARY"; @@ -32,6 +43,7 @@ public class GunConfig { public static final String CON_ONRELEASERELOAD = "CON_ONRELEASERELOAD"; public static final String CON_DECIDER = "CON_DECIDER"; public static final String FUN_ANIMNATIONS = "FUN_ANIMNATIONS"; + public static final String O_HUDCOMPONENTS = "O_HUDCOMPONENTS"; /* FIELDS */ @@ -39,8 +51,13 @@ public class GunConfig { protected Receiver[] receivers_DNA; protected float durability_DNA; protected int drawDuration_DNA = 0; + protected int inspectDuration_DNA = 0; protected Crosshair crosshair_DNA; protected boolean reloadAnimationsSequential_DNA; + /** Handles smoke clientside */ + protected BiConsumer smokeHandler_DNA; + /** This piece only triggers during reloads, playing sounds depending on the reload's progress making reload sounds easier and synced to animations */ + protected BiConsumer orchestra_DNA; /** Lambda functions for clicking shit */ protected BiConsumer onPressPrimary_DNA; protected BiConsumer onPressSecondary_DNA; @@ -55,14 +72,18 @@ public class GunConfig { protected BiConsumer decider_DNA; /** Lambda that returns the relevant animation for the given params */ protected BiFunction animations_DNA; + protected IHUDComponent[] hudComponents_DNA; /* GETTERS */ - public Receiver[] getReceivers(ItemStack stack) { return WeaponUpgradeManager.eval(receivers_DNA, stack, O_RECEIVERS, this); } - public float getDurability(ItemStack stack) { return WeaponUpgradeManager.eval(durability_DNA, stack, F_DURABILITY, this); } - public int getDrawDuration(ItemStack stack) { return WeaponUpgradeManager.eval(drawDuration_DNA, stack, I_DRAWDURATION, this); } - public Crosshair getCrosshair(ItemStack stack) { return WeaponUpgradeManager.eval(crosshair_DNA, stack, O_CROSSHAIR, this); } - public boolean getReloadAnimSequential(ItemStack stack) { return WeaponUpgradeManager.eval(reloadAnimationsSequential_DNA, stack, B_RELOADANIMATIONSEQUENTIAL, this); } + public Receiver[] getReceivers(ItemStack stack) { return WeaponUpgradeManager.eval(receivers_DNA, stack, O_RECEIVERS, this); } + public float getDurability(ItemStack stack) { return WeaponUpgradeManager.eval(durability_DNA, stack, F_DURABILITY, this); } + public int getDrawDuration(ItemStack stack) { return WeaponUpgradeManager.eval(drawDuration_DNA, stack, I_DRAWDURATION, this); } + public int getInspectDuration(ItemStack stack) { return WeaponUpgradeManager.eval(inspectDuration_DNA, stack, I_INSPECTDURATION, this); } + public Crosshair getCrosshair(ItemStack stack) { return WeaponUpgradeManager.eval(crosshair_DNA, stack, O_CROSSHAIR, this); } + public boolean getReloadAnimSequential(ItemStack stack) { return WeaponUpgradeManager.eval(reloadAnimationsSequential_DNA, stack, B_RELOADANIMATIONSEQUENTIAL, this); } + public BiConsumer getSmokeHandler(ItemStack stack) { return WeaponUpgradeManager.eval(smokeHandler_DNA, stack, CON_SMOKE, this); } + public BiConsumer getOrchestra(ItemStack stack) { return WeaponUpgradeManager.eval(this.orchestra_DNA, stack, CON_ORCHESTRA, this); } public BiConsumer getPressPrimary(ItemStack stack) { return WeaponUpgradeManager.eval(this.onPressPrimary_DNA, stack, CON_ONPRESSPRIMARY, this); } public BiConsumer getPressSecondary(ItemStack stack) { return WeaponUpgradeManager.eval(this.onPressSecondary_DNA, stack, CON_ONPRESSSECONDARY, this); } @@ -77,13 +98,19 @@ public class GunConfig { public BiConsumer getDecider(ItemStack stack) { return WeaponUpgradeManager.eval(this.decider_DNA, stack, CON_DECIDER, this); } public BiFunction getAnims(ItemStack stack) { return WeaponUpgradeManager.eval(this.animations_DNA, stack, FUN_ANIMNATIONS, this); } + public IHUDComponent[] getHUDComponents(ItemStack stack) { return WeaponUpgradeManager.eval(this.hudComponents_DNA, stack, O_HUDCOMPONENTS, this); } /* SETTERS */ public GunConfig rec(Receiver... receivers) { this.receivers_DNA = receivers; return this; } public GunConfig dura(float dura) { this.durability_DNA = dura; return this; } public GunConfig draw(int draw) { this.drawDuration_DNA = draw; return this; } + public GunConfig inspect(int inspect) { this.inspectDuration_DNA = inspect; return this; } public GunConfig crosshair(Crosshair crosshair) { this.crosshair_DNA = crosshair; return this; } + public GunConfig reloadSequential(boolean flag) { this.reloadAnimationsSequential_DNA = flag; return this; } + + public GunConfig smoke(BiConsumer smoke) { this.smokeHandler_DNA = smoke; return this; } + public GunConfig orchestra(BiConsumer orchestra) { this.orchestra_DNA = orchestra; return this; } //press public GunConfig pp(BiConsumer lambda) { this.onPressPrimary_DNA = lambda; return this; } @@ -100,6 +127,17 @@ public class GunConfig { //decider public GunConfig decider(BiConsumer lambda) { this.decider_DNA = lambda; return this; } - //anims - public GunConfig anim(BiFunction lambda) { this.animations_DNA = lambda; return this; } + //client + public GunConfig anim(BiFunction lambda) { this.animations_DNA = lambda; return this; } + public GunConfig hud(IHUDComponent... components) { this.hudComponents_DNA = components; return this; } + + /** Standard package for keybind handling and decider using LEGO prefabs: Primary fire on LMB, + * reload on R, aiming on MMB and the standard decider which includes jamming and auto fire handling*/ + public GunConfig setupStandardConfiguration() { + this.pp(Lego.LAMBDA_STANDARD_CLICK_PRIMARY); + this.pr(Lego.LAMBDA_STANDARD_RELOAD); + this.pt(Lego.LAMBDA_TOGGLE_AIM); + this.decider(GunStateDecider.LAMBDA_STANDARD_DECIDER); + return this; + } } diff --git a/src/main/java/com/hbm/items/weapon/sedna/ItemGunBaseNT.java b/src/main/java/com/hbm/items/weapon/sedna/ItemGunBaseNT.java index 36a3e9bfa..1d1aff580 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/ItemGunBaseNT.java +++ b/src/main/java/com/hbm/items/weapon/sedna/ItemGunBaseNT.java @@ -1,16 +1,22 @@ package com.hbm.items.weapon.sedna; +import java.util.function.BiConsumer; + +import com.hbm.handler.CasingEjector; import com.hbm.handler.HbmKeybinds.EnumKeybind; import com.hbm.interfaces.IItemHUD; import com.hbm.items.IEquipReceiver; import com.hbm.items.IKeybindReceiver; +import com.hbm.items.weapon.sedna.hud.IHUDComponent; import com.hbm.main.MainRegistry; import com.hbm.packet.PacketDispatcher; +import com.hbm.packet.toclient.AuxParticlePacketNT; import com.hbm.packet.toclient.GunAnimationPacket; import com.hbm.render.anim.HbmAnimations.AnimType; import com.hbm.render.util.RenderScreenOverlay; import com.hbm.util.EnumUtil; +import cpw.mods.fml.common.network.NetworkRegistry.TargetPoint; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.client.Minecraft; @@ -27,30 +33,46 @@ import net.minecraftforge.client.event.RenderGameOverlayEvent.Pre; public class ItemGunBaseNT extends Item implements IKeybindReceiver, IEquipReceiver, IItemHUD { - public static final String O_GUNCONFIG = "O_GUNCONFIG"; + /** Timestamp for rendering smoke nodes and muzzle flashes */ + public long[] lastShot; + /** [0;1] randomized every shot for various rendering applications */ + public double shotRand = 0D; + + public static float recoilVertical = 0; + public static float recoilHorizontal = 0; + public static float offsetVertical = 0; + public static float offsetHorizontal = 0; + + public static final String O_GUNCONFIG = "O_GUNCONFIG_"; public static final String KEY_DRAWN = "drawn"; public static final String KEY_AIMING = "aiming"; - public static final String KEY_TIMER = "timer"; - public static final String KEY_STATE = "state"; - public static final String KEY_PRIMARY = "mouse1"; - public static final String KEY_SECONDARY = "mouse2"; - public static final String KEY_TERTIARY = "mouse3"; - public static final String KEY_RELOAD = "reload"; + public static final String KEY_WEAR = "wear_"; + public static final String KEY_TIMER = "timer_"; + public static final String KEY_STATE = "state_"; + public static final String KEY_PRIMARY = "mouse1_"; + public static final String KEY_SECONDARY = "mouse2_"; + public static final String KEY_TERTIARY = "mouse3_"; + public static final String KEY_RELOAD = "reload_"; + public static final String KEY_LASTANIM = "lastanim_"; + public static final String KEY_ANIMTIMER = "animtimer_"; public static float prevAimingProgress; public static float aimingProgress; /** NEVER ACCESS DIRECTLY - USE GETTER */ - private GunConfig config_DNA; + private GunConfig[] configs_DNA; - public GunConfig getConfig(ItemStack stack) { - return WeaponUpgradeManager.eval(config_DNA, stack, O_GUNCONFIG, this); + public GunConfig getConfig(ItemStack stack, int index) { + GunConfig cfg = configs_DNA[index]; + return WeaponUpgradeManager.eval(cfg, stack, O_GUNCONFIG + index, this); } - public ItemGunBaseNT(GunConfig cfg) { + public ItemGunBaseNT(GunConfig... cfg) { this.setMaxStackSize(1); - this.config_DNA = cfg; + this.configs_DNA = cfg; + this.lastShot = new long[cfg.length]; + this.setCreativeTab(MainRegistry.weaponTab); } public static enum GunState { @@ -58,7 +80,8 @@ public class ItemGunBaseNT extends Item implements IKeybindReceiver, IEquipRecei IDLE, //gun can be fired or reloaded WINDUP, //fire button is down, added delay before fire COOLDOWN, //gun has been fired, cooldown - RELOADING //gun is currently reloading + RELOADING, //gun is currently reloading + JAMMED, //gun is jammed, either after reloading or while firing } @Override @@ -69,29 +92,48 @@ public class ItemGunBaseNT extends Item implements IKeybindReceiver, IEquipRecei @Override public void handleKeybind(EntityPlayer player, ItemStack stack, EnumKeybind keybind, boolean newState) { - GunConfig config = getConfig(stack); - LambdaContext ctx = new LambdaContext(config, player); - - if(keybind == EnumKeybind.GUN_PRIMARY && newState && !getPrimary(stack)) { if(config.getPressPrimary(stack) != null) config.getPressPrimary(stack).accept(stack, ctx); this.setPrimary(stack, newState); return; } - if(keybind == EnumKeybind.GUN_PRIMARY && !newState && getPrimary(stack)) { if(config.getReleasePrimary(stack) != null) config.getReleasePrimary(stack).accept(stack, ctx); this.setPrimary(stack, newState); return; } - if(keybind == EnumKeybind.GUN_SECONDARY && newState && !getSecondary(stack)) { if(config.getPressSecondary(stack) != null) config.getPressSecondary(stack).accept(stack, ctx); this.setSecondary(stack, newState); return; } - if(keybind == EnumKeybind.GUN_SECONDARY && !newState && getSecondary(stack)) { if(config.getReleaseSecondary(stack) != null) config.getReleaseSecondary(stack).accept(stack, ctx); this.setSecondary(stack, newState); return; } - if(keybind == EnumKeybind.GUN_TERTIARY && newState && !getTertiary(stack)) { if(config.getPressTertiary(stack) != null) config.getPressTertiary(stack).accept(stack, ctx); this.setTertiary(stack, newState); return; } - if(keybind == EnumKeybind.GUN_TERTIARY && !newState && getTertiary(stack)) { if(config.getReleaseTertiary(stack) != null) config.getReleaseTertiary(stack).accept(stack, ctx); this.setTertiary(stack, newState); return; } - if(keybind == EnumKeybind.RELOAD && newState && !getReloadKey(stack)) { if(config.getPressReload(stack) != null) config.getPressReload(stack).accept(stack, ctx); this.setReloadKey(stack, newState); return; } - if(keybind == EnumKeybind.RELOAD && !newState && getReloadKey(stack)) { if(config.getReleaseReload(stack) != null) config.getReleaseReload(stack).accept(stack, ctx); this.setReloadKey(stack, newState); return; } + int configs = this.configs_DNA.length; + + for(int i = 0; i < configs; i++) { + GunConfig config = getConfig(stack, i); + LambdaContext ctx = new LambdaContext(config, player, i); + + if(keybind == EnumKeybind.GUN_PRIMARY && newState && !getPrimary(stack, i)) { if(config.getPressPrimary(stack) != null) config.getPressPrimary(stack).accept(stack, ctx); this.setPrimary(stack, i, newState); continue; } + if(keybind == EnumKeybind.GUN_PRIMARY && !newState && getPrimary(stack, i)) { if(config.getReleasePrimary(stack) != null) config.getReleasePrimary(stack).accept(stack, ctx); this.setPrimary(stack, i, newState); continue; } + if(keybind == EnumKeybind.GUN_SECONDARY && newState && !getSecondary(stack, i)) { if(config.getPressSecondary(stack) != null) config.getPressSecondary(stack).accept(stack, ctx); this.setSecondary(stack, i, newState); continue; } + if(keybind == EnumKeybind.GUN_SECONDARY && !newState && getSecondary(stack, i)) { if(config.getReleaseSecondary(stack) != null) config.getReleaseSecondary(stack).accept(stack, ctx); this.setSecondary(stack, i, newState); continue; } + if(keybind == EnumKeybind.GUN_TERTIARY && newState && !getTertiary(stack, i)) { if(config.getPressTertiary(stack) != null) config.getPressTertiary(stack).accept(stack, ctx); this.setTertiary(stack, i, newState); continue; } + if(keybind == EnumKeybind.GUN_TERTIARY && !newState && getTertiary(stack, i)) { if(config.getReleaseTertiary(stack) != null) config.getReleaseTertiary(stack).accept(stack, ctx); this.setTertiary(stack, i, newState); continue; } + if(keybind == EnumKeybind.RELOAD && newState && !getReloadKey(stack, i)) { if(config.getPressReload(stack) != null) config.getPressReload(stack).accept(stack, ctx); this.setReloadKey(stack, i, newState); continue; } + if(keybind == EnumKeybind.RELOAD && !newState && getReloadKey(stack, i)) { if(config.getReleaseReload(stack) != null) config.getReleaseReload(stack).accept(stack, ctx); this.setReloadKey(stack, i, newState); continue; } + } } @Override public void onEquip(EntityPlayer player, ItemStack stack) { - if(player instanceof EntityPlayerMP) PacketDispatcher.wrapper.sendTo(new GunAnimationPacket(AnimType.EQUIP.ordinal()), (EntityPlayerMP) player); + for(int i = 0; i < this.configs_DNA.length; i++) playAnimation(player, stack, AnimType.EQUIP, i); + } + + public static void playAnimation(EntityPlayer player, ItemStack stack, AnimType type, int index) { + if(player instanceof EntityPlayerMP) { + PacketDispatcher.wrapper.sendTo(new GunAnimationPacket(type.ordinal(), 0, index), (EntityPlayerMP) player); + setLastAnim(stack, index, type); + setAnimTimer(stack, index, 0); + } } @Override public void onUpdate(ItemStack stack, World world, Entity entity, int slot, boolean isHeld) { if(!(entity instanceof EntityPlayer)) return; - EntityPlayer player = (EntityPlayer) entity; + EntityPlayer player = entity instanceof EntityPlayer ? (EntityPlayer) entity : null; + int confNo = this.configs_DNA.length; + GunConfig[] configs = new GunConfig[confNo]; + LambdaContext[] ctx = new LambdaContext[confNo]; + for(int i = 0; i < confNo; i++) { + configs[i] = this.getConfig(stack, i); + ctx[i] = new LambdaContext(configs[i], player, i); + } if(world.isRemote) { @@ -103,66 +145,103 @@ public class ItemGunBaseNT extends Item implements IKeybindReceiver, IEquipRecei offset.rotateAroundY(-entity.rotationYaw / 180F * (float) Math.PI); world.spawnParticle("flame", entity.posX + offset.xCoord, entity.posY + entity.getEyeHeight() + offset.yCoord, entity.posZ + offset.zCoord, 0, 0, 0);*/ + /// AIMING /// prevAimingProgress = aimingProgress; boolean aiming = this.getIsAiming(stack); float aimSpeed = 0.25F; if(aiming && aimingProgress < 1F) aimingProgress += aimSpeed; if(!aiming && aimingProgress > 0F) aimingProgress -= aimSpeed; aimingProgress = MathHelper.clamp_float(aimingProgress, 0F, 1F); + + /// SMOKE NODES /// + for(int i = 0; i < confNo; i++) if(configs[i].getSmokeHandler(stack) != null) { + configs[i].getSmokeHandler(stack).accept(stack, ctx[i]); + } } return; } - GunConfig config = this.getConfig(stack); - + /// RESET WHEN NOT EQUIPPED /// if(!isHeld) { - this.setState(stack, GunState.DRAWING); - this.setTimer(stack, config.getDrawDuration(stack)); + for(int i = 0; i < confNo; i++) { + GunState current = this.getState(stack, i); + if(current != GunState.JAMMED) { + this.setState(stack, i, GunState.DRAWING); + this.setTimer(stack, i, configs[i].getDrawDuration(stack)); + } + } this.setIsAiming(stack, false); return; } - int timer = this.getTimer(stack); - if(timer > 0) this.setTimer(stack, timer - 1); - if(timer <= 1) nextState(player, stack); + for(int i = 0; i < confNo; i++) { + BiConsumer orchestra = configs[i].getOrchestra(stack); + if(orchestra != null) orchestra.accept(stack, ctx[i]); + + setAnimTimer(stack, i, getAnimTimer(stack, i) + 1); + + /// STTATE MACHINE /// + int timer = this.getTimer(stack, i); + if(timer > 0) this.setTimer(stack, i, timer - 1); + if(timer <= 1) configs[i].getDecider(stack).accept(stack, ctx[i]); + } } - public void nextState(EntityPlayer player, ItemStack stack) { - GunConfig cfg = this.getConfig(stack); - cfg.getDecider(stack).accept(stack, new LambdaContext(cfg, player)); + public static void trySpawnCasing(Entity entity, CasingEjector ejector, BulletConfig bullet, ItemStack stack) { + + if(ejector == null) return; //abort if the gun can't eject bullets at all + if(bullet == null) return; //abort if there's no valid bullet cfg + if(bullet.casing == null) return; //abort if the bullet is caseless + + NBTTagCompound data = new NBTTagCompound(); + data.setString("type", "casing"); + data.setFloat("pitch", (float) Math.toRadians(entity.rotationPitch)); + data.setFloat("yaw", (float) Math.toRadians(entity.rotationYaw)); + data.setBoolean("crouched", entity.isSneaking()); + data.setString("name", bullet.casing.getName()); + data.setInteger("ej", ejector.getId()); + PacketDispatcher.wrapper.sendToAllAround(new AuxParticlePacketNT(data, entity.posX, entity.posY + entity.getEyeHeight(), entity.posZ), new TargetPoint(entity.dimension, entity.posX, entity.posY, entity.posZ, 50)); } // GUN DRAWN // public static boolean getIsDrawn(ItemStack stack) { return getValueBool(stack, KEY_DRAWN); } public static void setIsDrawn(ItemStack stack, boolean value) { setValueBool(stack, KEY_DRAWN, value); } - // GUN STATE TIMER // - public static int getTimer(ItemStack stack) { return getValueInt(stack, KEY_TIMER); } - public static void setTimer(ItemStack stack, int value) { setValueInt(stack, KEY_TIMER, value); } - + public static int getTimer(ItemStack stack, int index) { return getValueInt(stack, KEY_TIMER + index); } + public static void setTimer(ItemStack stack, int index, int value) { setValueInt(stack, KEY_TIMER + index, value); } // GUN STATE // - public static GunState getState(ItemStack stack) { return EnumUtil.grabEnumSafely(GunState.class, getValueByte(stack, KEY_STATE)); } - public static void setState(ItemStack stack, GunState value) { setValueByte(stack, KEY_STATE, (byte) value.ordinal()); } - + public static GunState getState(ItemStack stack, int index) { return EnumUtil.grabEnumSafely(GunState.class, getValueByte(stack, KEY_STATE + index)); } + public static void setState(ItemStack stack, int index, GunState value) { setValueByte(stack, KEY_STATE + index, (byte) value.ordinal()); } // GUN AIMING // public static boolean getIsAiming(ItemStack stack) { return getValueBool(stack, KEY_AIMING); } public static void setIsAiming(ItemStack stack, boolean value) { setValueBool(stack, KEY_AIMING, value); } + // GUN AIMING // + public static float getWear(ItemStack stack, int index) { return getValueFloat(stack, KEY_WEAR + index); } + public static void setWear(ItemStack stack, int index, float value) { setValueFloat(stack, KEY_WEAR + index, value); } + // ANIM TRACKING // + public static AnimType getLastAnim(ItemStack stack, int index) { return EnumUtil.grabEnumSafely(AnimType.class, getValueInt(stack, KEY_LASTANIM + index)); } + public static void setLastAnim(ItemStack stack, int index, AnimType value) { setValueInt(stack, KEY_LASTANIM + index, value.ordinal()); } + public static int getAnimTimer(ItemStack stack, int index) { return getValueInt(stack, KEY_ANIMTIMER + index); } + public static void setAnimTimer(ItemStack stack, int index, int value) { setValueInt(stack, KEY_ANIMTIMER + index, value); } // BUTTON STATES // - public static boolean getPrimary(ItemStack stack) { return getValueBool(stack, KEY_PRIMARY); } - public static void setPrimary(ItemStack stack, boolean value) { setValueBool(stack, KEY_PRIMARY, value); } - public static boolean getSecondary(ItemStack stack) { return getValueBool(stack, KEY_SECONDARY); } - public static void setSecondary(ItemStack stack, boolean value) { setValueBool(stack, KEY_SECONDARY, value); } - public static boolean getTertiary(ItemStack stack) { return getValueBool(stack, KEY_TERTIARY); } - public static void setTertiary(ItemStack stack, boolean value) { setValueBool(stack, KEY_TERTIARY, value); } - public static boolean getReloadKey(ItemStack stack) { return getValueBool(stack, KEY_RELOAD); } - public static void setReloadKey(ItemStack stack, boolean value) { setValueBool(stack, KEY_RELOAD, value); } + public static boolean getPrimary(ItemStack stack, int index) { return getValueBool(stack, KEY_PRIMARY + index); } + public static void setPrimary(ItemStack stack, int index, boolean value) { setValueBool(stack, KEY_PRIMARY + index, value); } + public static boolean getSecondary(ItemStack stack, int index) { return getValueBool(stack, KEY_SECONDARY + index); } + public static void setSecondary(ItemStack stack, int index, boolean value) { setValueBool(stack, KEY_SECONDARY + index, value); } + public static boolean getTertiary(ItemStack stack, int index) { return getValueBool(stack, KEY_TERTIARY + index); } + public static void setTertiary(ItemStack stack, int index, boolean value) { setValueBool(stack, KEY_TERTIARY + index, value); } + public static boolean getReloadKey(ItemStack stack, int index) { return getValueBool(stack, KEY_RELOAD + index); } + public static void setReloadKey(ItemStack stack, int index, boolean value) { setValueBool(stack, KEY_RELOAD + index, value); } /// UTIL /// public static int getValueInt(ItemStack stack, String name) { if(stack.hasTagCompound()) return stack.getTagCompound().getInteger(name); return 0; } public static void setValueInt(ItemStack stack, String name, int value) { if(!stack.hasTagCompound()) stack.stackTagCompound = new NBTTagCompound(); stack.getTagCompound().setInteger(name, value); } + public static float getValueFloat(ItemStack stack, String name) { if(stack.hasTagCompound()) return stack.getTagCompound().getFloat(name); return 0; } + public static void setValueFloat(ItemStack stack, String name, float value) { if(!stack.hasTagCompound()) stack.stackTagCompound = new NBTTagCompound(); stack.getTagCompound().setFloat(name, value); } + public static byte getValueByte(ItemStack stack, String name) { if(stack.hasTagCompound()) return stack.getTagCompound().getByte(name); return 0; } public static void setValueByte(ItemStack stack, String name, byte value) { if(!stack.hasTagCompound()) stack.stackTagCompound = new NBTTagCompound(); stack.getTagCompound().setByte(name, value); } @@ -173,21 +252,48 @@ public class ItemGunBaseNT extends Item implements IKeybindReceiver, IEquipRecei public static class LambdaContext { public final GunConfig config; public final EntityPlayer player; + public final int configIndex; - public LambdaContext(GunConfig config, EntityPlayer player) { + public LambdaContext(GunConfig config, EntityPlayer player, int configIndex) { this.config = config; this.player = player; + this.configIndex = configIndex; } } @Override @SideOnly(Side.CLIENT) public void renderHUD(Pre event, ElementType type, EntityPlayer player, ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + if(type == ElementType.CROSSHAIRS) { event.setCanceled(true); if(aimingProgress >= 1F) return; - ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); - RenderScreenOverlay.renderCustomCrosshairs(event.resolution, Minecraft.getMinecraft().ingameGUI, gun.getConfig(stack).getCrosshair(stack)); + RenderScreenOverlay.renderCustomCrosshairs(event.resolution, Minecraft.getMinecraft().ingameGUI, gun.getConfig(stack, 0).getCrosshair(stack)); + } + + int confNo = this.configs_DNA.length; + + for(int i = 0; i < confNo; i++) { + IHUDComponent[] components = gun.getConfig(stack, i).getHUDComponents(stack); + + if(components != null) for(IHUDComponent component : components) { + int bottomOffset = 0; + component.renderHUDComponent(event, type, player, stack, bottomOffset, i); + bottomOffset += component.getComponentHeight(player, stack); + } } } + + public static class SmokeNode { + + public double forward = 0D; + public double side = 0D; + public double lift = 0D; + public double alpha; + public double width = 1D; + + public SmokeNode(double alpha) { this.alpha = alpha; } + } } diff --git a/src/main/java/com/hbm/items/weapon/sedna/Receiver.java b/src/main/java/com/hbm/items/weapon/sedna/Receiver.java index 7c9ad2e14..8cd22f19d 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/Receiver.java +++ b/src/main/java/com/hbm/items/weapon/sedna/Receiver.java @@ -3,11 +3,11 @@ package com.hbm.items.weapon.sedna; import java.util.function.BiConsumer; import java.util.function.BiFunction; -import com.hbm.handler.CasingEjector; import com.hbm.items.weapon.sedna.ItemGunBaseNT.LambdaContext; import com.hbm.items.weapon.sedna.mags.IMagazine; import net.minecraft.item.ItemStack; +import net.minecraft.util.Vec3; /** * Receivers are the gun's "moving parts", i.e. they determine things like base damage, spread, the ejector and the magazine. Think of this class like the @@ -17,16 +17,27 @@ import net.minecraft.item.ItemStack; */ public class Receiver { - public static final String F_BASEDAMAGE = "F_BASEDAMAGE"; - public static final String I_DELAYAFTERFIRE = "I_DELAYAFTERFIRE"; - public static final String I_ROUNDSPERCYCLE = "I_ROUNDSPERCYCLE"; - public static final String F_SPREADMOD = "F_SPREADMOD"; - public static final String B_REFIREONHOLD = "B_REFIREONHOLD"; - public static final String O_EJECTOR = "O_EJECTOR"; - public static final String I_RELOADDURATION = "I_RELOADDURATION"; - public static final String O_MAGAZINE = "O_MAGAZINE"; - public static final String FUN_CANFIRE = "FUN_CANFIRE"; - public static final String CON_ONFIRE = "CON_ONFIRE"; + public static final String F_BASEDAMAGE = "F_BASEDAMAGE"; + public static final String I_DELAYAFTERFIRE = "I_DELAYAFTERFIRE"; + public static final String I_DELAYAFTERDRYFIRE = "I_DELAYAFTERDRYFIRE"; + public static final String I_ROUNDSPERCYCLE = "I_ROUNDSPERCYCLE"; + public static final String F_SPREADMOD = "F_SPREADMOD"; + public static final String B_REFIREONHOLD = "B_REFIREONHOLD"; + public static final String B_DOESDRYFIRE = "B_DOESDRYFIRE"; + public static final String B_EJECTONFIRE = "B_EJECTONFIRE"; + public static final String I_RELOADBEGINDURATION = "I_RELOADBEGINDURATION"; + public static final String I_RELOADCYCLEDURATION = "I_RELOADCYCLEDURATION"; + public static final String I_RELOADENDDURATION = "I_RELOADENDDURATION"; + public static final String I_RELOADCOCKONEMPTY = "I_RELOADCOCKONEMPTY"; + public static final String I_JAMDURATION = "I_JAMDURATION"; + public static final String S_FIRESOUND = "S_FIRESOUND"; + public static final String F_FIREVOLUME = "F_FIREVOLUME"; + public static final String F_FIREPITCH = "F_FIREPITCH"; + public static final String O_MAGAZINE = "O_MAGAZINE"; + public static final String O_PROJECTILEOFFSET = "O_PROJECTILEOFFSET"; + public static final String FUN_CANFIRE = "FUN_CANFIRE"; + public static final String CON_ONFIRE = "CON_ONFIRE"; + public static final String CON_ONRECOIL = "CON_ONRECOIL"; public Receiver(int index) { this.index = index; @@ -35,38 +46,82 @@ public class Receiver { protected int index; protected float baseDamage_DNA; protected int delayAfterFire_DNA; + protected int delayAfterDryFire_DNA; protected int roundsPerCycle_DNA = 1; - protected float spreadMod_DNA = 1F; + protected float spreadModExtra_DNA = 0F; protected boolean refireOnHold_DNA = false; - protected CasingEjector ejector_DNA = null; - protected int reloadDuration_DNA; + protected boolean doesDryFire_DNA = true; + protected boolean ejectOnFire_DNA = true; + protected int reloadBeginDuration_DNA; + protected int reloadCycleDuration_DNA; + protected int reloadEndDuration_DNA; + protected int reloadCockOnEmpty_DNA; + protected int jamDuration_DNA = 0; + protected String fireSound_DNA; + protected float fireVolume_DNA = 1.0F; + protected float firePitch_DNA = 1.0F; protected IMagazine magazine_DNA; + protected Vec3 projectileOffset_DNA = Vec3.createVectorHelper(0, 0, 0); protected BiFunction canFire_DNA; protected BiConsumer onFire_DNA; + protected BiConsumer onRecoil_DNA; /* GETTERS */ - public float getBaseDamage(ItemStack stack) { return WeaponUpgradeManager.eval(this.baseDamage_DNA, stack, F_BASEDAMAGE, this); } - public int getDelayAfterFire(ItemStack stack) { return WeaponUpgradeManager.eval(this.delayAfterFire_DNA, stack, I_DELAYAFTERFIRE, this); } - public int getRoundsPerCycle(ItemStack stack) { return WeaponUpgradeManager.eval(this.roundsPerCycle_DNA, stack, I_ROUNDSPERCYCLE, this); } - public float getSpreadMod(ItemStack stack) { return WeaponUpgradeManager.eval(this.spreadMod_DNA, stack, F_SPREADMOD, this); } - public boolean getRefireOnHold(ItemStack stack) { return WeaponUpgradeManager.eval(this.refireOnHold_DNA, stack, B_REFIREONHOLD, this); } - public CasingEjector getEjector(ItemStack stack) { return WeaponUpgradeManager.eval(this.ejector_DNA, stack, O_EJECTOR, this); } - public int getReloadDuration(ItemStack stack) { return WeaponUpgradeManager.eval(this.reloadDuration_DNA, stack, I_RELOADDURATION, this); } - public IMagazine getMagazine(ItemStack stack) { return WeaponUpgradeManager.eval(this.magazine_DNA, stack, O_MAGAZINE, this); } + public float getBaseDamage(ItemStack stack) { return WeaponUpgradeManager.eval(this.baseDamage_DNA, stack, F_BASEDAMAGE, this); } + public int getDelayAfterFire(ItemStack stack) { return WeaponUpgradeManager.eval(this.delayAfterFire_DNA, stack, I_DELAYAFTERFIRE, this); } + public int getDelayAfterDryFire(ItemStack stack) { return WeaponUpgradeManager.eval(this.delayAfterDryFire_DNA, stack, I_DELAYAFTERDRYFIRE, this); } + public int getRoundsPerCycle(ItemStack stack) { return WeaponUpgradeManager.eval(this.roundsPerCycle_DNA, stack, I_ROUNDSPERCYCLE, this); } + public float getGunSpread(ItemStack stack) { return WeaponUpgradeManager.eval(this.spreadModExtra_DNA, stack, F_SPREADMOD, this); } + public boolean getRefireOnHold(ItemStack stack) { return WeaponUpgradeManager.eval(this.refireOnHold_DNA, stack, B_REFIREONHOLD, this); } + public boolean getDoesDryFire(ItemStack stack) { return WeaponUpgradeManager.eval(this.doesDryFire_DNA, stack, B_DOESDRYFIRE, this); } + public boolean getEjectOnFire(ItemStack stack) { return WeaponUpgradeManager.eval(this.ejectOnFire_DNA, stack, B_EJECTONFIRE, this); } + public int getReloadBeginDuration(ItemStack stack) { return WeaponUpgradeManager.eval(this.reloadBeginDuration_DNA, stack, I_RELOADBEGINDURATION, this); } + public int getReloadCycleDuration(ItemStack stack) { return WeaponUpgradeManager.eval(this.reloadCycleDuration_DNA, stack, I_RELOADCYCLEDURATION, this); } + public int getReloadEndDuration(ItemStack stack) { return WeaponUpgradeManager.eval(this.reloadEndDuration_DNA, stack, I_RELOADENDDURATION, this); } + public int getReloadCockOnEmpty(ItemStack stack) { return WeaponUpgradeManager.eval(this.reloadCockOnEmpty_DNA, stack, I_RELOADCOCKONEMPTY, this); } + public int getJamDuration(ItemStack stack) { return WeaponUpgradeManager.eval(this.jamDuration_DNA, stack, I_JAMDURATION, this); } + public String getFireSound(ItemStack stack) { return WeaponUpgradeManager.eval(this.fireSound_DNA, stack, S_FIRESOUND, this); } + public float getFireVolume(ItemStack stack) { return WeaponUpgradeManager.eval(this.fireVolume_DNA, stack, F_FIREVOLUME, this); } + public float getFirePitch(ItemStack stack) { return WeaponUpgradeManager.eval(this.firePitch_DNA, stack, F_FIREPITCH, this); } + public IMagazine getMagazine(ItemStack stack) { return WeaponUpgradeManager.eval(this.magazine_DNA, stack, O_MAGAZINE, this); } + public Vec3 getProjectileOffset(ItemStack stack) { return WeaponUpgradeManager.eval(this.projectileOffset_DNA, stack, O_PROJECTILEOFFSET, this); } public BiFunction getCanFire(ItemStack stack) { return WeaponUpgradeManager.eval(this.canFire_DNA, stack, FUN_CANFIRE, this); } public BiConsumer getOnFire(ItemStack stack) { return WeaponUpgradeManager.eval(this.onFire_DNA, stack, CON_ONFIRE, this); } + public BiConsumer getRecoil(ItemStack stack) { return WeaponUpgradeManager.eval(this.onRecoil_DNA, stack, CON_ONRECOIL, this); } /* SETTERS */ - public Receiver dmg(float dmg) { this.baseDamage_DNA = dmg; return this; } - public Receiver delay(int delay) { this.delayAfterFire_DNA = delay; return this; } - public Receiver rounds(int rounds) { this.roundsPerCycle_DNA = rounds; return this; } - public Receiver spread(int spread) { this.spreadMod_DNA = spread; return this; } - public Receiver auto(boolean auto) { this.refireOnHold_DNA = auto; return this; } - public Receiver burst(CasingEjector ejector) { this.ejector_DNA = ejector; return this; } - public Receiver reload(int delay) { this.reloadDuration_DNA = delay; return this; } - public Receiver mag(IMagazine magazine) { this.magazine_DNA = magazine; return this; } + public Receiver dmg(float dmg) { this.baseDamage_DNA = dmg; return this; } + public Receiver delay(int delay) { this.delayAfterFire_DNA = this.delayAfterDryFire_DNA = delay; return this; } + public Receiver dry(int delay) { this.delayAfterDryFire_DNA = delay; return this; } + public Receiver rounds(int rounds) { this.roundsPerCycle_DNA = rounds; return this; } + public Receiver spread(float spread) { this.spreadModExtra_DNA = spread; return this; } + public Receiver auto(boolean auto) { this.refireOnHold_DNA = auto; return this; } + public Receiver dryfire(boolean dryfire) { this.doesDryFire_DNA = dryfire; return this; } + public Receiver ejectOnFire(boolean eject) { this.ejectOnFire_DNA = eject; return this; } + public Receiver mag(IMagazine magazine) { this.magazine_DNA = magazine; return this; } + public Receiver offset(double f, double u, double s) { this.projectileOffset_DNA = Vec3.createVectorHelper(f, u, s); return this; } + public Receiver jam(int jam) { this.jamDuration_DNA = jam; return this; } + public Receiver reload(int delay) { + return reload(delay, delay, 0, 0); + } + public Receiver reload(int begin, int cycle, int end, int cock) { + this.reloadBeginDuration_DNA = begin; + this.reloadCycleDuration_DNA = cycle; + this.reloadEndDuration_DNA = end; + this.reloadCockOnEmpty_DNA = cock; + return this; + } + public Receiver canFire(BiFunction lambda) { this.canFire_DNA = lambda; return this; } public Receiver fire(BiConsumer lambda) { this.onFire_DNA = lambda; return this; } + public Receiver recoil(BiConsumer lambda) { this.onRecoil_DNA = lambda; return this; } + + public Receiver sound(String sound, float volume, float pitch) { + this.fireSound_DNA = sound; + this.fireVolume_DNA = volume; + this.firePitch_DNA = pitch; + return this; + } } diff --git a/src/main/java/com/hbm/items/weapon/sedna/WeaponUpgradeManager.java b/src/main/java/com/hbm/items/weapon/sedna/WeaponUpgradeManager.java index 4674ee866..4f0602a0f 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/WeaponUpgradeManager.java +++ b/src/main/java/com/hbm/items/weapon/sedna/WeaponUpgradeManager.java @@ -10,13 +10,18 @@ import net.minecraft.item.ItemStack; */ public class WeaponUpgradeManager { + //TODO: add caching so this doesn't have to run 15 times per single action + + public static ItemStack[] getUpgrades(ItemStack stack) { return null; // TBI } /** Scrapes all upgrades, iterates over them and evaluates the given value. The parent (i.e. holder of the base value) - * is passed for context (so upgrades can differentiate primary and secondary receivers for example) */ + * is passed for context (so upgrades can differentiate primary and secondary receivers for example). Passing a null + * stack causes the base value to be returned. */ public static T eval(T base, ItemStack stack, String key, Object parent) { + if(stack == null) return base; ItemStack[] upgrades = getUpgrades(stack); if(upgrades != null) for(ItemStack upgradeStack : upgrades) { diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/GunFactory.java b/src/main/java/com/hbm/items/weapon/sedna/factory/GunFactory.java index 434bf5949..b73a6c27c 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/factory/GunFactory.java +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/GunFactory.java @@ -1,35 +1,71 @@ package com.hbm.items.weapon.sedna.factory; +import com.hbm.items.ItemEnumMulti; import com.hbm.items.ModItems; import com.hbm.items.weapon.sedna.BulletConfig; import com.hbm.items.weapon.sedna.Crosshair; import com.hbm.items.weapon.sedna.GunConfig; import com.hbm.items.weapon.sedna.ItemGunBaseNT; import com.hbm.items.weapon.sedna.Receiver; -import com.hbm.items.weapon.sedna.mags.MagazineRevolverDrum; +import com.hbm.items.weapon.sedna.mags.MagazineFullReload; import com.hbm.lib.RefStrings; import com.hbm.main.MainRegistry; +import com.hbm.particle.SpentCasing; +import com.hbm.particle.SpentCasing.CasingType; import net.minecraft.item.Item; public class GunFactory { + public static BulletConfig ammo_debug; + public static BulletConfig ammo_debug_buckshot; + + public static SpentCasing CASING44 = new SpentCasing(CasingType.STRAIGHT).setScale(1.5F, 1.0F, 1.5F).setBounceMotion(0.01F, 0.05F).setColor(SpentCasing.COLOR_CASE_44); + public static void init() { + /// AMMO ITEMS /// ModItems.ammo_debug = new Item().setUnlocalizedName("ammo_debug").setTextureName(RefStrings.MODID + ":ammo_45"); - - BulletConfig ammo_debug = new BulletConfig().setItem(ModItems.ammo_debug).setSpread(0.01F); - + ModItems.ammo_standard = new ItemEnumMulti(EnumAmmo.class, true, true).setUnlocalizedName("ammo_standard").setTextureName(RefStrings.MODID + ":ammo_standard"); + + /// BULLLET CFGS /// + ammo_debug = new BulletConfig().setItem(ModItems.ammo_debug).setSpread(0.01F).setRicochetAngle(45).setCasing(CASING44.clone().register("DEBUG0")); + ammo_debug_buckshot = new BulletConfig().setItem(ModItems.ammo_12gauge).setSpread(0.1F).setRicochetAngle(45).setProjectiles(6, 6).setCasing(CASING44.clone().register("DEBUG1")); + + /// GUNS /// ModItems.gun_debug = new ItemGunBaseNT(new GunConfig() - .dura(600).draw(15).crosshair(Crosshair.L_CLASSIC) + .dura(600F).draw(15).inspect(23).crosshair(Crosshair.L_CLASSIC).smoke(Lego.LAMBDA_STANDARD_SMOKE).orchestra(Orchestras.DEBUG_ORCHESTRA) .rec(new Receiver(0) - .dmg(10F).delay(12).mag(new MagazineRevolverDrum(0, 6).addConfigs(ammo_debug)) - .canFire(Lego.LAMBDA_DEBUG_CAN_FIRE).fire(Lego.LAMBDA_DEBUG_FIRE)) - .pr(Lego.LAMBDA_STANDARD_RELOAD) - .pp(Lego.LAMBDA_STANDARD_FIRE) - .pt(Lego.LAMBDA_TOGGLE_AIM) + .dmg(10F).delay(14).reload(46).jam(23).sound("hbm:weapon.44Shoot", 1.0F, 1.0F) + .mag(new MagazineFullReload(0, 12).addConfigs(ammo_debug, ammo_debug_buckshot)) + .offset(0.75, -0.0625, -0.3125D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE)) + .pp(Lego.LAMBDA_STANDARD_CLICK_PRIMARY) .pr(Lego.LAMBDA_STANDARD_RELOAD) .pt(Lego.LAMBDA_TOGGLE_AIM) .decider(GunStateDecider.LAMBDA_STANDARD_DECIDER) .anim(Lego.LAMBDA_DEBUG_ANIMS) - ).setUnlocalizedName("gun_debug").setCreativeTab(MainRegistry.weaponTab).setTextureName(RefStrings.MODID + ":gun_darter"); + ).setUnlocalizedName("gun_debug").setTextureName(RefStrings.MODID + ":gun_darter"); + + XFactoryBlackPowder.init(); + XFactory357.init(); + XFactory44.init(); + XFactory9mm.init(); + XFactory12ga.init(); + XFactory40mm.init(); + XFactory762mm.init(); + XFactory22lr.init(); + + /// PROXY BULLSHIT /// + MainRegistry.proxy.registerGunCfg(); + } + + public static enum EnumAmmo { + STONE, STONE_AP, STONE_IRON, STONE_SHOT, + M357_SP, M357_FMJ, M357_JHP, M357_AP, M357_EXPRESS, + M44_SP, M44_FMJ, M44_JHP, M44_AP, M44_EXPRESS, + P22_SP, P22_FMJ, P22_JHP, P22_AP, + P9_SP, P9_FMJ, P9_JHP, P9_AP, + G12_BP, G12_BP_MAGNUM, G12_BP_SLUG, G12, + R762_SP, R762_FMJ, R762_JHP, R762_AP, R762_DU, + G40_FLARE, G40, } } diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/GunFactoryClient.java b/src/main/java/com/hbm/items/weapon/sedna/factory/GunFactoryClient.java new file mode 100644 index 000000000..c2e43b673 --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/GunFactoryClient.java @@ -0,0 +1,83 @@ +package com.hbm.items.weapon.sedna.factory; + +import static com.hbm.items.weapon.sedna.factory.GunFactory.*; +import static com.hbm.items.weapon.sedna.factory.XFactory12ga.*; +import static com.hbm.items.weapon.sedna.factory.XFactory22lr.*; +import static com.hbm.items.weapon.sedna.factory.XFactory357.*; +import static com.hbm.items.weapon.sedna.factory.XFactory40mm.*; +import static com.hbm.items.weapon.sedna.factory.XFactory44.*; +import static com.hbm.items.weapon.sedna.factory.XFactory762mm.*; +import static com.hbm.items.weapon.sedna.factory.XFactory9mm.*; + +import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.render.item.weapon.sedna.*; + +import net.minecraftforge.client.MinecraftForgeClient; + +public class GunFactoryClient { + + public static void init() { + //GUNS + MinecraftForgeClient.registerItemRenderer(ModItems.gun_debug, new ItemRenderDebug()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_pepperbox, new ItemRenderPepperbox()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_light_revolver, new ItemRenderAtlas()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_light_revolver_dani, new ItemRenderDANI()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_henry, new ItemRenderHenry()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_greasegun, new ItemRenderGreasegun()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_maresleg, new ItemRenderMaresleg()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_flaregun, new ItemRenderFlaregun()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_heavy_revolver, new ItemRenderHeavyRevolver()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_carbine, new ItemRenderCarbine()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_am180, new ItemRenderAm180()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_liberator, new ItemRenderLiberator()); + MinecraftForgeClient.registerItemRenderer(ModItems.gun_congolake, new ItemRenderCongoLake()); + //PROJECTILES + ammo_debug.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + ammo_debug_buckshot.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + m357_sp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + m357_fmj.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + m357_jhp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + m357_ap.setRenderer(LegoClient.RENDER_AP_BULLET); + m357_express.setRenderer(LegoClient.RENDER_EXPRESS_BULLET); + m44_sp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + m44_fmj.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + m44_jhp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + m44_ap.setRenderer(LegoClient.RENDER_AP_BULLET); + m44_express.setRenderer(LegoClient.RENDER_EXPRESS_BULLET); + p9_sp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + p9_fmj.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + p9_jhp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + p9_ap.setRenderer(LegoClient.RENDER_AP_BULLET); + g12_bp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + g12_bp_magnum.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + g12_bp_slug.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + g12.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + r762_sp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + r762_fmj.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + r762_jhp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + r762_ap.setRenderer(LegoClient.RENDER_AP_BULLET); + r762_du.setRenderer(LegoClient.RENDER_DU_BULLET); + p22_sp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + p22_fmj.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + p22_jhp.setRenderer(LegoClient.RENDER_STANDARD_BULLET); + p22_ap.setRenderer(LegoClient.RENDER_AP_BULLET); + g40_flare.setRenderer(LegoClient.RENDER_FLARE); + g40.setRenderer(LegoClient.RENDER_GRENADE); + //HUDS + ((ItemGunBaseNT) ModItems.gun_debug) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_pepperbox) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_light_revolver) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_henry) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_greasegun) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_maresleg) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_flaregun) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_heavy_revolver) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_carbine) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_am180) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_liberator) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_congolake) .getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + ((ItemGunBaseNT) ModItems.gun_light_revolver_dani).getConfig(null, 0).hud(LegoClient.HUD_COMPONENT_DURABILITY_MIRROR, LegoClient.HUD_COMPONENT_AMMO_MIRROR); + ((ItemGunBaseNT) ModItems.gun_light_revolver_dani).getConfig(null, 1).hud(LegoClient.HUD_COMPONENT_DURABILITY, LegoClient.HUD_COMPONENT_AMMO); + } +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/GunStateDecider.java b/src/main/java/com/hbm/items/weapon/sedna/factory/GunStateDecider.java index 3fc55d712..f9a805144 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/factory/GunStateDecider.java +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/GunStateDecider.java @@ -6,8 +6,10 @@ import java.util.function.BooleanSupplier; import com.hbm.items.weapon.sedna.GunConfig; import com.hbm.items.weapon.sedna.ItemGunBaseNT; import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.mags.IMagazine; import com.hbm.items.weapon.sedna.ItemGunBaseNT.GunState; import com.hbm.items.weapon.sedna.ItemGunBaseNT.LambdaContext; +import com.hbm.render.anim.HbmAnimations.AnimType; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; @@ -20,50 +22,82 @@ public class GunStateDecider { * It supports draw delays as well as semi and auto fire */ public static BiConsumer LAMBDA_STANDARD_DECIDER = (stack, ctx) -> { - GunState lastState = ItemGunBaseNT.getState(stack); - deciderStandardFinishDraw(stack, lastState); - deciderStandardReload(stack, ctx, lastState, 0); - deciderAutoRefire(stack, ctx, lastState, 0, () -> { return ItemGunBaseNT.getPrimary(stack); }); + int index = ctx.configIndex; + GunState lastState = ItemGunBaseNT.getState(stack, index); + deciderStandardFinishDraw(stack, lastState, index); + deciderStandardClearJam(stack, lastState, index); + deciderStandardReload(stack, ctx, lastState, 0, index); + deciderAutoRefire(stack, ctx, lastState, 0, index, () -> { return ItemGunBaseNT.getPrimary(stack, index); }); }; /** Transitions the gun from DRAWING to IDLE */ - public static void deciderStandardFinishDraw(ItemStack stack, GunState lastState) { + public static void deciderStandardFinishDraw(ItemStack stack, GunState lastState, int index) { //transition to idle if(lastState == GunState.DRAWING) { - ItemGunBaseNT.setState(stack, GunState.IDLE); - ItemGunBaseNT.setTimer(stack, 0); + ItemGunBaseNT.setState(stack, index, GunState.IDLE); + ItemGunBaseNT.setTimer(stack, index, 0); + } + } + + /** Transitions the gun from DRAWING to IDLE */ + public static void deciderStandardClearJam(ItemStack stack, GunState lastState, int index) { + + //transition to idle + if(lastState == GunState.JAMMED) { + ItemGunBaseNT.setState(stack, index, GunState.IDLE); + ItemGunBaseNT.setTimer(stack, index, 0); } } /** Triggers a reload action on the first receiver. If the mag is not full and reloading is still possible, set to RELOADING, otherwise IDLE */ - public static void deciderStandardReload(ItemStack stack, LambdaContext ctx, GunState lastState, int recIndex) { + public static void deciderStandardReload(ItemStack stack, LambdaContext ctx, GunState lastState, int recIndex, int gunIndex) { if(lastState == GunState.RELOADING) { EntityPlayer player = ctx.player; GunConfig cfg = ctx.config; Receiver rec = cfg.getReceivers(stack)[recIndex]; + IMagazine mag = rec.getMagazine(stack); - rec.getMagazine(stack).reloadAction(stack, player); + mag.reloadAction(stack, player); //if after reloading the gun can still reload, assume a tube mag and resume reloading - if(cfg.getReceivers(stack)[recIndex].getMagazine(stack).canReload(stack, player)) { - ItemGunBaseNT.setState(stack, GunState.RELOADING); - ItemGunBaseNT.setTimer(stack, cfg.getReceivers(stack)[recIndex].getReloadDuration(stack)); + if(mag.canReload(stack, player)) { + ItemGunBaseNT.setState(stack, gunIndex, GunState.RELOADING); + ItemGunBaseNT.setTimer(stack, gunIndex, rec.getReloadCycleDuration(stack)); + ItemGunBaseNT.playAnimation(player, stack, AnimType.RELOAD_CYCLE, gunIndex); //if no more reloading can be done, go idle } else { - ItemGunBaseNT.setState(stack, GunState.IDLE); - ItemGunBaseNT.setTimer(stack, 0); + + if(getStandardJamChance(stack, cfg, gunIndex) > player.getRNG().nextFloat()) { + ItemGunBaseNT.setState(stack, gunIndex, GunState.JAMMED); + ItemGunBaseNT.setTimer(stack, gunIndex, rec.getJamDuration(stack)); + ItemGunBaseNT.playAnimation(player, stack, AnimType.JAMMED, gunIndex); + } else { + ItemGunBaseNT.setState(stack, gunIndex, GunState.DRAWING); + int duration = rec.getReloadEndDuration(stack) + (mag.getAmountBeforeReload(stack) <= 0 ? rec.getReloadCockOnEmpty(stack) : 0); + ItemGunBaseNT.setTimer(stack, gunIndex, duration); + ItemGunBaseNT.playAnimation(player, stack, AnimType.RELOAD_END, gunIndex); + } } + + mag.setAmountAfterReload(stack, mag.getAmount(stack)); } } + public static float getStandardJamChance(ItemStack stack, GunConfig config, int index) { + float percent = (float) ItemGunBaseNT.getWear(stack, index) / config.getDurability(stack); + if(percent < 0.66F) return 0F; + return Math.min((percent - 0.66F) * 4F, 1F); + } + /** Triggers a re-fire of the primary if the fire delay has expired, the left mouse button is down and re-firing is enabled, otherwise switches to IDLE */ - public static void deciderAutoRefire(ItemStack stack, LambdaContext ctx, GunState lastState, int recIndex, BooleanSupplier refireCondition) { + public static void deciderAutoRefire(ItemStack stack, LambdaContext ctx, GunState lastState, int recIndex, int gunIndex, BooleanSupplier refireCondition) { if(lastState == GunState.COOLDOWN) { + EntityPlayer player = ctx.player; GunConfig cfg = ctx.config; Receiver rec = cfg.getReceivers(stack)[recIndex]; @@ -72,17 +106,26 @@ public class GunStateDecider { //if there's a bullet loaded, fire again if(rec.getCanFire(stack).apply(stack, ctx)) { rec.getOnFire(stack).accept(stack, ctx); - ItemGunBaseNT.setState(stack, GunState.COOLDOWN); - ItemGunBaseNT.setTimer(stack, rec.getDelayAfterFire(stack)); + ItemGunBaseNT.setState(stack, gunIndex, GunState.COOLDOWN); + ItemGunBaseNT.setTimer(stack, gunIndex, rec.getDelayAfterFire(stack)); + + player.worldObj.playSoundEffect(player.posX, player.posY, player.posZ, rec.getFireSound(stack), rec.getFireVolume(stack), rec.getFirePitch(stack)); + + int remaining = rec.getRoundsPerCycle(stack) - 1; + for(int i = 0; i < remaining; i++) if(rec.getCanFire(stack).apply(stack, ctx)) rec.getOnFire(stack).accept(stack, ctx); //if not, revert to idle + } else if(rec.getDoesDryFire(stack)) { + ItemGunBaseNT.setState(stack, gunIndex, GunState.DRAWING); + ItemGunBaseNT.setTimer(stack, gunIndex, rec.getDelayAfterDryFire(stack)); + ItemGunBaseNT.playAnimation(player, stack, AnimType.CYCLE_DRY, gunIndex); } else { - ItemGunBaseNT.setState(stack, GunState.IDLE); - ItemGunBaseNT.setTimer(stack, 0); + ItemGunBaseNT.setState(stack, gunIndex, GunState.IDLE); + ItemGunBaseNT.setTimer(stack, gunIndex, 0); } //if not, go idle } else { - ItemGunBaseNT.setState(stack, GunState.IDLE); - ItemGunBaseNT.setTimer(stack, 0); + ItemGunBaseNT.setState(stack, gunIndex, GunState.IDLE); + ItemGunBaseNT.setTimer(stack, gunIndex, 0); } } } diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/Lego.java b/src/main/java/com/hbm/items/weapon/sedna/factory/Lego.java index 8546cfa39..943b39532 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/factory/Lego.java +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/Lego.java @@ -1,23 +1,31 @@ package com.hbm.items.weapon.sedna.factory; +import java.util.List; +import java.util.Random; import java.util.function.BiConsumer; import java.util.function.BiFunction; import com.hbm.entity.projectile.EntityBulletBaseMK4; +import com.hbm.explosion.vanillant.ExplosionVNT; +import com.hbm.explosion.vanillant.standard.EntityProcessorCrossSmooth; +import com.hbm.explosion.vanillant.standard.ExplosionEffectStandard; +import com.hbm.explosion.vanillant.standard.PlayerProcessorStandard; import com.hbm.items.weapon.sedna.BulletConfig; +import com.hbm.items.weapon.sedna.GunConfig; import com.hbm.items.weapon.sedna.ItemGunBaseNT; import com.hbm.items.weapon.sedna.ItemGunBaseNT.GunState; import com.hbm.items.weapon.sedna.ItemGunBaseNT.LambdaContext; +import com.hbm.items.weapon.sedna.ItemGunBaseNT.SmokeNode; import com.hbm.items.weapon.sedna.Receiver; -import com.hbm.packet.PacketDispatcher; -import com.hbm.packet.toclient.GunAnimationPacket; +import com.hbm.items.weapon.sedna.mags.IMagazine; import com.hbm.render.anim.BusAnimation; import com.hbm.render.anim.BusAnimationSequence; import com.hbm.render.anim.HbmAnimations.AnimType; import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; import net.minecraft.item.ItemStack; +import net.minecraft.util.MovingObjectPosition; +import net.minecraft.util.Vec3; /** * "LEGO" - i.e. standardized building blocks which can be used to set up gun configs easily. @@ -26,27 +34,106 @@ import net.minecraft.item.ItemStack; */ public class Lego { + public static final Random ANIM_RAND = new Random(); + /** * If IDLE and the mag of receiver 0 can be loaded, set state to RELOADING. Used by keybinds. */ public static BiConsumer LAMBDA_STANDARD_RELOAD = (stack, ctx) -> { - if(ItemGunBaseNT.getState(stack) == GunState.IDLE && ctx.config.getReceivers(stack)[0].getMagazine(stack).canReload(stack, ctx.player)) { - ItemGunBaseNT.setState(stack, GunState.RELOADING); - ItemGunBaseNT.setTimer(stack, ctx.config.getReceivers(stack)[0].getReloadDuration(stack)); + EntityPlayer player = ctx.player; + Receiver rec = ctx.config.getReceivers(stack)[0]; + GunState state = ItemGunBaseNT.getState(stack, ctx.configIndex); + + if(state == GunState.IDLE) { + + ItemGunBaseNT.setIsAiming(stack, false); + IMagazine mag = rec.getMagazine(stack); + + if(mag.canReload(stack, ctx.player)) { + mag.setAmountBeforeReload(stack, mag.getAmount(stack)); + ItemGunBaseNT.setState(stack, ctx.configIndex, GunState.RELOADING); + ItemGunBaseNT.setTimer(stack, ctx.configIndex, rec.getReloadBeginDuration(stack)); + ItemGunBaseNT.playAnimation(player, stack, AnimType.RELOAD, ctx.configIndex); + } else { + ItemGunBaseNT.playAnimation(player, stack, AnimType.INSPECT, ctx.configIndex); + } } }; /** * If IDLE and ammo is loaded, fire and set to JUST_FIRED. */ - public static BiConsumer LAMBDA_STANDARD_FIRE = (stack, ctx) -> { + public static BiConsumer LAMBDA_STANDARD_CLICK_PRIMARY = (stack, ctx) -> { + + EntityPlayer player = ctx.player; + Receiver rec = ctx.config.getReceivers(stack)[0]; + int index = ctx.configIndex; + GunState state = ItemGunBaseNT.getState(stack, index); - if(ItemGunBaseNT.getState(stack) == GunState.IDLE && ctx.config.getReceivers(stack)[0].getCanFire(stack).apply(stack, ctx)) { - ItemGunBaseNT.setState(stack, GunState.COOLDOWN); - ItemGunBaseNT.setTimer(stack, ctx.config.getReceivers(stack)[0].getDelayAfterFire(stack)); - ctx.config.getReceivers(stack)[0].getOnFire(stack).accept(stack, ctx); + if(state == GunState.IDLE) { + + if(rec.getCanFire(stack).apply(stack, ctx)) { + rec.getOnFire(stack).accept(stack, ctx); + + player.worldObj.playSoundEffect(player.posX, player.posY, player.posZ, rec.getFireSound(stack), rec.getFireVolume(stack), rec.getFirePitch(stack)); + + int remaining = rec.getRoundsPerCycle(stack) - 1; + for(int i = 0; i < remaining; i++) if(rec.getCanFire(stack).apply(stack, ctx)) rec.getOnFire(stack).accept(stack, ctx); + + ItemGunBaseNT.setState(stack, index, GunState.COOLDOWN); + ItemGunBaseNT.setTimer(stack, index, rec.getDelayAfterFire(stack)); + } else { + + if(rec.getDoesDryFire(stack)) { + ItemGunBaseNT.playAnimation(player, stack, AnimType.CYCLE_DRY, index); + ItemGunBaseNT.setState(stack, index, GunState.DRAWING); + ItemGunBaseNT.setTimer(stack, index, rec.getDelayAfterDryFire(stack)); + } + } } }; + /** Toggles isAiming. Used by keybinds. */ + public static BiConsumer LAMBDA_STANDARD_RECOIL = (stack, ctx) -> { + //ItemGunBaseNT.recoilVertical += 10; + //ItemGunBaseNT.recoilHorizontal += ctx.player.getRNG().nextGaussian() * 1.5; + }; + + /** Default smoke. */ + public static BiConsumer LAMBDA_STANDARD_SMOKE = (stack, ctx) -> { + handleStandardSmoke(ctx.player, stack, 2000, 0.025D, 1.15D, ctx.configIndex); + }; + + public static void handleStandardSmoke(EntityPlayer player, ItemStack stack, int smokeDuration, double alphaDecay, double widthGrowth, int index) { + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + long lastShot = gun.lastShot[index]; + List smokeNodes = gun.getConfig(stack, index).smokeNodes; + + boolean smoking = lastShot + smokeDuration > System.currentTimeMillis(); + if(!smoking && !smokeNodes.isEmpty()) smokeNodes.clear(); + + if(smoking) { + Vec3 prev = Vec3.createVectorHelper(-player.motionX, -player.motionY, -player.motionZ); + prev.rotateAroundY((float) (player.rotationYaw * Math.PI / 180D)); + double accel = 15D; + double side = (player.rotationYaw - player.prevRotationYawHead) * 0.1D; + double waggle = 0.025D; + + for(SmokeNode node : smokeNodes) { + node.forward += -prev.zCoord * accel + player.worldObj.rand.nextGaussian() * waggle; + node.lift += prev.yCoord + 1.5D; + node.side += prev.xCoord * accel + player.worldObj.rand.nextGaussian() * waggle + side; + if(node.alpha > 0) node.alpha -= alphaDecay; + node.width *= widthGrowth; + } + + double alpha = (System.currentTimeMillis() - lastShot) / (double) smokeDuration; + alpha = (1 - alpha) * 0.5D; + + if(gun.getState(stack, index) == GunState.RELOADING || smokeNodes.size() == 0) alpha = 0; + smokeNodes.add(new SmokeNode(alpha)); + } + } + /** Toggles isAiming. Used by keybinds. */ public static BiConsumer LAMBDA_TOGGLE_AIM = (stack, ctx) -> { ItemGunBaseNT.setIsAiming(stack, !ItemGunBaseNT.getIsAiming(stack)); }; @@ -59,44 +146,82 @@ public class Lego { /** JUMPER - bypasses mag testing and just allows constant fire */ public static BiFunction LAMBDA_DEBUG_CAN_FIRE = (stack, ctx) -> { return true; }; - /** simply plays a sound to indicate that the keybind has triggered */ - public static BiConsumer LAMBDA_DEBUG_FIRE = (stack, ctx) -> { + /** Spawns an EntityBulletBaseMK4 with the loaded bulletcfg */ + public static BiConsumer LAMBDA_STANDARD_FIRE = (stack, ctx) -> { EntityPlayer player = ctx.player; - if(player instanceof EntityPlayerMP) PacketDispatcher.wrapper.sendTo(new GunAnimationPacket(AnimType.CYCLE.ordinal()), (EntityPlayerMP) player); + int index = ctx.configIndex; + ItemGunBaseNT.playAnimation(player, stack, AnimType.CYCLE, ctx.configIndex); - double sideOffset = ItemGunBaseNT.getIsAiming(stack) ? 0 : -0.2D; float aim = ItemGunBaseNT.getIsAiming(stack) ? 0.25F : 1F; Receiver primary = ctx.config.getReceivers(stack)[0]; + IMagazine mag = primary.getMagazine(stack); + BulletConfig config = (BulletConfig) mag.getType(stack); - EntityBulletBaseMK4 mk4 = new EntityBulletBaseMK4(player, (BulletConfig) primary.getMagazine(stack).getType(stack), primary.getBaseDamage(stack), primary.getSpreadMod(stack) * aim, sideOffset, -0.1, 0.75); - player.worldObj.spawnEntityInWorld(mk4); - player.worldObj.playSoundEffect(player.posX, player.posY, player.posZ, "hbm:weapon.shotgunShoot", 1F, 1F); + Vec3 offset = primary.getProjectileOffset(stack); + double forwardOffset = offset.xCoord; + double heightOffset = offset.yCoord; + double sideOffset = ItemGunBaseNT.getIsAiming(stack) ? 0 : offset.zCoord; + + /*forwardOffset = 1; + heightOffset = -0.0625 * 1.5; + sideOffset = -0.1875D;*/ + + int projectiles = config.projectilesMin; + if(config.projectilesMax > config.projectilesMin) projectiles += player.getRNG().nextInt(config.projectilesMax - config.projectilesMin + 1); + + for(int i = 0; i < projectiles; i++) { + float damage = primary.getBaseDamage(stack) * getStandardWearDamage(stack, ctx.config, index); + float spread = primary.getGunSpread(stack) * aim + getStandardWearSpread(stack, ctx.config, index) * 0.125F; + EntityBulletBaseMK4 mk4 = new EntityBulletBaseMK4(player, config, damage, spread, sideOffset, heightOffset, forwardOffset); + player.worldObj.spawnEntityInWorld(mk4); + } + + mag.setAmount(stack, mag.getAmount(stack) - 1); + ItemGunBaseNT.setWear(stack, index, Math.min(ItemGunBaseNT.getWear(stack, index) + config.wear, ctx.config.getDurability(stack))); }; - /** No reload, simply play inspect animation */ - public static BiConsumer LAMBDA_DEBUG_RELOAD = (stack, ctx) -> { - EntityPlayer player = ctx.player; - if(player instanceof EntityPlayerMP) PacketDispatcher.wrapper.sendTo(new GunAnimationPacket(AnimType.INSPECT.ordinal()), (EntityPlayerMP) player); - }; + public static float getStandardWearSpread(ItemStack stack, GunConfig config, int index) { + float percent = (float) ItemGunBaseNT.getWear(stack, index) / config.getDurability(stack); + if(percent < 0.5F) return 0F; + return (percent - 0.5F) * 2F; + } + + public static float getStandardWearDamage(ItemStack stack, GunConfig config, int index) { + float percent = (float) ItemGunBaseNT.getWear(stack, index) / config.getDurability(stack); + if(percent < 0.75F) return 1F; + return 1F - (percent - 0.75F) * 2F; + } + + public static void standardExplode(EntityBulletBaseMK4 bullet, MovingObjectPosition mop, float range) { + ExplosionVNT vnt = new ExplosionVNT(bullet.worldObj, mop.hitVec.xCoord, mop.hitVec.yCoord, mop.hitVec.zCoord, range); + vnt.setEntityProcessor(new EntityProcessorCrossSmooth(1, bullet.damage)); + vnt.setPlayerProcessor(new PlayerProcessorStandard()); + vnt.setSFX(new ExplosionEffectStandard()); + vnt.explode(); + } /** anims for the DEBUG revolver, mostly a copy of the li'lpip but with some fixes regarding the cylinder movement */ - public static BiFunction LAMBDA_DEBUG_ANIMS = (stack, type) -> { + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_DEBUG_ANIMS = (stack, type) -> { switch(type) { - case CYCLE: - return new BusAnimation() - .addBus("RECOIL", new BusAnimationSequence().addKeyframePosition(0, 0, 0, 50).addKeyframePosition(0, 0, -3, 50).addKeyframePosition(0, 0, 0, 250)) - .addBus("HAMMER", new BusAnimationSequence().addKeyframePosition(0, 0, 1, 50).addKeyframePosition(0, 0, 1, 300 + 100).addKeyframePosition(0, 0, 0, 200)) - .addBus("DRUM", new BusAnimationSequence().addKeyframePosition(0, 0, 0, 350 + 100).addKeyframePosition(0, 0, 1, 200)); - case CYCLE_EMPTY: break; - case ALT_CYCLE: break; - case EQUIP: return new BusAnimation().addBus("ROTATE", new BusAnimationSequence().addKeyframePosition(-360, 0, 0, 350)); - case RELOAD: break; - case RELOAD_CYCLE: break; - case RELOAD_EMPTY: break; - case RELOAD_END: break; - case SPINDOWN: break; - case SPINUP: break; - case INSPECT: break; + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, 0, 50).addPos(0, 0, -3, 50).addPos(0, 0, 0, 250)) + .addBus("HAMMER", new BusAnimationSequence().addPos(0, 0, 1, 50).addPos(0, 0, 1, 400).addPos(0, 0, 0, 200)) + .addBus("DRUM", new BusAnimationSequence().addPos(0, 0, 0, 450).addPos(0, 0, 1, 200)); + case CYCLE_DRY: return new BusAnimation() + .addBus("HAMMER", new BusAnimationSequence().addPos(0, 0, 1, 50).addPos(0, 0, 1, 300 + 100).addPos(0, 0, 0, 200)) + .addBus("DRUM", new BusAnimationSequence().addPos(0, 0, 0, 450).addPos(0, 0, 1, 200)); + case EQUIP: return new BusAnimation().addBus("ROTATE", new BusAnimationSequence().addPos(-360, 0, 0, 350)); + case RELOAD: return new BusAnimation() + .addBus("RELAOD_TILT", new BusAnimationSequence().addPos(-15, 0, 0, 100).addPos(65, 0, 0, 100).addPos(45, 0, 0, 50).addPos(0, 0, 0, 200).addPos(0, 0, 0, 1450).addPos(-80, 0, 0, 100).addPos(-80, 0, 0, 100).addPos(0, 0, 0, 200)) + .addBus("RELOAD_CYLINDER", new BusAnimationSequence().addPos(0, 0, 0, 200).addPos(90, 0, 0, 100).addPos(90, 0, 0, 1700).addPos(0, 0, 0, 70)) + .addBus("RELOAD_LIFT", new BusAnimationSequence().addPos(0, 0, 0, 350).addPos(-45, 0, 0, 250).addPos(-45, 0, 0, 350).addPos(-15, 0, 0, 200).addPos(-15, 0, 0, 1050).addPos(0, 0, 0, 100)) + .addBus("RELOAD_JOLT", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(2, 0, 0, 50).addPos(0, 0, 0, 100)) + .addBus("RELOAD_BULLETS", new BusAnimationSequence().addPos(0, 0, 0, 650).addPos(10, 0, 0, 300).addPos(10, 0, 0, 200).addPos(0, 0, 0, 700)) + .addBus("RELOAD_BULLETS_CON", new BusAnimationSequence().addPos(1, 0, 0, 0).addPos(1, 0, 0, 950).addPos(0, 0, 0, 1 ) ); + case INSPECT: //if(ANIM_RAND.nextBoolean()) return new BusAnimation().addBus("ROTATE", new BusAnimationSequence().addPos(-360 * 5, 0, 0, 350 * 5)); + case JAMMED: return new BusAnimation() + .addBus("RELAOD_TILT", new BusAnimationSequence().addPos(-15, 0, 0, 100).addPos(65, 0, 0, 100).addPos(45, 0, 0, 50).addPos(0, 0, 0, 200).addPos(0, 0, 0, 200).addPos(-80, 0, 0, 100).addPos(-80, 0, 0, 100).addPos(0, 0, 0, 200)) + .addBus("RELOAD_CYLINDER", new BusAnimationSequence().addPos(0, 0, 0, 200).addPos(90, 0, 0, 100).addPos(90, 0, 0, 450).addPos(0, 0, 0, 70)); } return null; diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/LegoClient.java b/src/main/java/com/hbm/items/weapon/sedna/factory/LegoClient.java new file mode 100644 index 000000000..f9f1f349e --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/LegoClient.java @@ -0,0 +1,162 @@ +package com.hbm.items.weapon.sedna.factory; + +import java.util.function.BiConsumer; + +import org.lwjgl.opengl.GL11; + +import com.hbm.entity.projectile.EntityBulletBaseMK4; +import com.hbm.items.weapon.sedna.hud.HUDComponentAmmoCounter; +import com.hbm.items.weapon.sedna.hud.HUDComponentDurabilityBar; +import com.hbm.lib.RefStrings; +import com.hbm.main.ResourceManager; + +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.ActiveRenderInfo; +import net.minecraft.client.renderer.RenderHelper; +import net.minecraft.client.renderer.Tessellator; +import net.minecraft.util.ResourceLocation; + +public class LegoClient { + + public static HUDComponentDurabilityBar HUD_COMPONENT_DURABILITY = new HUDComponentDurabilityBar(); + public static HUDComponentDurabilityBar HUD_COMPONENT_DURABILITY_MIRROR = new HUDComponentDurabilityBar(true); + public static HUDComponentAmmoCounter HUD_COMPONENT_AMMO = new HUDComponentAmmoCounter(0); + public static HUDComponentAmmoCounter HUD_COMPONENT_AMMO_MIRROR = new HUDComponentAmmoCounter(0, true); + + public static BiConsumer RENDER_STANDARD_BULLET = (bullet, interp) -> { + double length = bullet.prevVelocity + (bullet.velocity - bullet.prevVelocity) * interp; + if(length <= 0) return; + renderBulletStandard(Tessellator.instance, 0xFFBF00, 0xFFFFFF, length, false); + }; + + public static BiConsumer RENDER_AP_BULLET = (bullet, interp) -> { + double length = bullet.prevVelocity + (bullet.velocity - bullet.prevVelocity) * interp; + if(length <= 0) return; + renderBulletStandard(Tessellator.instance, 0xFF6A00, 0xFFE28D, length, false); + }; + + public static BiConsumer RENDER_EXPRESS_BULLET = (bullet, interp) -> { + double length = bullet.prevVelocity + (bullet.velocity - bullet.prevVelocity) * interp; + if(length <= 0) return; + renderBulletStandard(Tessellator.instance, 0x9E082E, 0xFF8A79, length, false); + }; + + public static BiConsumer RENDER_DU_BULLET = (bullet, interp) -> { + double length = bullet.prevVelocity + (bullet.velocity - bullet.prevVelocity) * interp; + if(length <= 0) return; + renderBulletStandard(Tessellator.instance, 0x5CCD41, 0xE9FF8D, length, false); + }; + + public static BiConsumer RENDER_TRACER_BULLET = (bullet, interp) -> { + double length = bullet.prevVelocity + (bullet.velocity - bullet.prevVelocity) * interp; + if(length <= 0) return; + renderBulletStandard(Tessellator.instance, 0x9E082E, 0xFF8A79, length, true); + }; + + public static void renderBulletStandard(Tessellator tess, int dark, int light, double length, boolean fullbright) { renderBulletStandard(tess, dark, light, length, 0.03125D, 0.03125D * 0.25D, fullbright); } + + public static void renderBulletStandard(Tessellator tess, int dark, int light, double length, double widthF, double widthB, boolean fullbright) { + + GL11.glDisable(GL11.GL_TEXTURE_2D); + GL11.glDisable(GL11.GL_CULL_FACE); + GL11.glDisable(GL11.GL_LIGHTING); + GL11.glShadeModel(GL11.GL_SMOOTH); + GL11.glColor4f(1F, 1F, 1F, 1F); + + tess.startDrawingQuads(); + if(fullbright) tess.setBrightness(240); + tess.setNormal(0F, 1F, 0F); + tess.setColorOpaque_I(dark); + tess.addVertex(length, widthB, -widthB); tess.addVertex(length, widthB, widthB); + tess.setColorOpaque_I(light); + tess.addVertex(0, widthF, widthF); tess.addVertex(0, widthF, -widthF); + tess.setColorOpaque_I(dark); + tess.addVertex(length, -widthB, -widthB); tess.addVertex(length, -widthB, widthB); + tess.setColorOpaque_I(light); + tess.addVertex(0, -widthF, widthF); tess.addVertex(0, -widthF, -widthF); + tess.setColorOpaque_I(dark); + tess.addVertex(length, -widthB, widthB); tess.addVertex(length, widthB, widthB); + tess.setColorOpaque_I(light); + tess.addVertex(0, widthF, widthF); tess.addVertex(0, -widthF, widthF); + tess.setColorOpaque_I(dark); + tess.addVertex(length, -widthB, -widthB); tess.addVertex(length, widthB, -widthB); + tess.setColorOpaque_I(light); + tess.addVertex(0, widthF, -widthF); tess.addVertex(0, -widthF, -widthF); + tess.setColorOpaque_I(dark); + tess.addVertex(length, widthB, widthB); tess.addVertex(length, widthB, -widthB); + tess.addVertex(length, -widthB, -widthB); tess.addVertex(length, -widthB, widthB); + tess.setColorOpaque_I(light); + tess.addVertex(0, widthF, widthF); tess.addVertex(0, widthF, -widthF); + tess.addVertex(0, -widthF, -widthF); tess.addVertex(0, -widthF, widthF); + tess.draw(); + + GL11.glShadeModel(GL11.GL_FLAT); + GL11.glEnable(GL11.GL_LIGHTING); + GL11.glEnable(GL11.GL_CULL_FACE); + GL11.glEnable(GL11.GL_TEXTURE_2D); + } + + private static final ResourceLocation flare = new ResourceLocation(RefStrings.MODID + ":textures/particle/flare.png"); + public static BiConsumer RENDER_FLARE = (bullet, interp) -> { + + if(bullet.ticksExisted < 2) return; + + GL11.glPushMatrix(); + GL11.glEnable(GL11.GL_BLEND); + GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE); + GL11.glAlphaFunc(GL11.GL_GREATER, 0); + GL11.glDisable(GL11.GL_ALPHA_TEST); + GL11.glDepthMask(false); + RenderHelper.disableStandardItemLighting(); + + Minecraft.getMinecraft().getTextureManager().bindTexture(flare); + + Tessellator tess = Tessellator.instance; + tess.startDrawingQuads(); + + float f1 = ActiveRenderInfo.rotationX; + float f2 = ActiveRenderInfo.rotationZ; + float f3 = ActiveRenderInfo.rotationYZ; + float f4 = ActiveRenderInfo.rotationXY; + float f5 = ActiveRenderInfo.rotationXZ; + + double posX = 0; + double posY = 0; + double posZ = 0; + double scale = Math.min(5, (bullet.ticksExisted + interp - 2) * 0.5) * (0.8 + bullet.worldObj.rand.nextDouble() * 0.4); + + tess.setColorRGBA_F(1F, 0.5F, 0.5F, 0.5F); + tess.addVertexWithUV((double) (posX - f1 * scale - f3 * scale), (double) (posY - f5 * scale), (double) (posZ - f2 * scale - f4 * scale), 1, 1); + tess.addVertexWithUV((double) (posX - f1 * scale + f3 * scale), (double) (posY + f5 * scale), (double) (posZ - f2 * scale + f4 * scale), 1, 0); + tess.addVertexWithUV((double) (posX + f1 * scale + f3 * scale), (double) (posY + f5 * scale), (double) (posZ + f2 * scale + f4 * scale), 0, 0); + tess.addVertexWithUV((double) (posX + f1 * scale - f3 * scale), (double) (posY - f5 * scale), (double) (posZ + f2 * scale - f4 * scale), 0, 1); + + scale *= 0.5D; + + tess.setColorRGBA_F(1F, 1F, 1F, 0.75F); + tess.addVertexWithUV((double) (posX - f1 * scale - f3 * scale), (double) (posY - f5 * scale), (double) (posZ - f2 * scale - f4 * scale), 1, 1); + tess.addVertexWithUV((double) (posX - f1 * scale + f3 * scale), (double) (posY + f5 * scale), (double) (posZ - f2 * scale + f4 * scale), 1, 0); + tess.addVertexWithUV((double) (posX + f1 * scale + f3 * scale), (double) (posY + f5 * scale), (double) (posZ + f2 * scale + f4 * scale), 0, 0); + tess.addVertexWithUV((double) (posX + f1 * scale - f3 * scale), (double) (posY - f5 * scale), (double) (posZ + f2 * scale - f4 * scale), 0, 1); + + tess.draw(); + + GL11.glDepthMask(true); + GL11.glEnable(GL11.GL_ALPHA_TEST); + RenderHelper.enableStandardItemLighting(); + GL11.glAlphaFunc(GL11.GL_GREATER, 0.1F); + GL11.glDisable(GL11.GL_BLEND); + GL11.glPopMatrix(); + }; + + public static BiConsumer RENDER_GRENADE = (bullet, interp) -> { + + GL11.glScalef(0.25F, 0.25F, 0.25F); + GL11.glRotated(90, 0, 0, 1); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().getTextureManager().bindTexture(ResourceManager.grenade_tex); + ResourceManager.projectiles.renderPart("Grenade"); + GL11.glShadeModel(GL11.GL_FLAT); + }; +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/Orchestras.java b/src/main/java/com/hbm/items/weapon/sedna/factory/Orchestras.java new file mode 100644 index 000000000..49525d3d0 --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/Orchestras.java @@ -0,0 +1,422 @@ +package com.hbm.items.weapon.sedna.factory; + +import java.util.function.BiConsumer; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.ItemGunBaseNT.LambdaContext; +import com.hbm.items.weapon.sedna.mags.IMagazine; +import com.hbm.particle.SpentCasing; +import com.hbm.particle.helper.CasingCreator; +import com.hbm.render.anim.HbmAnimations.AnimType; + +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.item.ItemStack; + +/** Orchestras are server-side components that run along client-side animations. + * The orchestra only knows what animation is or was playing and how long it started, but not if it is still active. + * Orchestras are useful for things like playing server-side sound, spawning casings or sending particle packets.*/ +public class Orchestras { + + public static BiConsumer DEBUG_ORCHESTRA = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + + if(type == AnimType.RELOAD) { + if(timer == 3) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 1F); + if(timer == 10) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 1F); + if(timer == 34) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + if(timer == 40) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + + if(timer == 16) { + Receiver rec = ctx.config.getReceivers(stack)[0]; + IMagazine mag = rec.getMagazine(stack); + SpentCasing casing = mag.getCasing(stack); + for(int i = 0; i < mag.getCapacity(stack); i++) CasingCreator.composeEffect(player.worldObj, player, 0.25, -0.125, -0.125, -0.05, 0, 0, 0.01, casing.getName()); + } + } + if(type == AnimType.CYCLE) { + if(timer == 11) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 1F); + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 1F); + if(timer == 11) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 1F); + } + if(type == AnimType.INSPECT) { + if(timer == 3) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 1F); + if(timer == 16) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + } + }; + + public static BiConsumer ORCHESTRA_PEPPERBOX = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + + if(type == AnimType.RELOAD) { + if(timer == 24) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + if(timer == 55) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverSpin", 1F, 1F); + } + if(type == AnimType.CYCLE) { + if(timer == 21) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.6F); + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 0.8F); + if(timer == 11) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.6F); + } + if(type == AnimType.INSPECT) { + if(timer == 3) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverSpin", 1F, 1F); + } + if(type == AnimType.JAMMED) { + if(timer == 28) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 0.75F); + if(timer == 45) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 0.6F); + } + }; + + public static BiConsumer ORCHESTRA_ATLAS = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + + if(type == AnimType.RELOAD) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 1F); + if(timer == 36) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + if(timer == 44) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + } + if(type == AnimType.CYCLE) { + if(timer == 14) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.9F); + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 1F); + if(timer == 14) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.9F); + } + if(type == AnimType.INSPECT) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 1F); + if(timer == 24) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + } + if(type == AnimType.JAMMED) { + if(timer == 12) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 1F); + if(timer == 34) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + } + }; + + public static BiConsumer ORCHESTRA_DANI = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + + if(type == AnimType.RELOAD) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 1F); + if(timer == 36) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + if(timer == 44) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + } + if(type == AnimType.CYCLE) { + if(timer == 9) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.9F); + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 1F); + if(timer == 9) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.9F); + } + if(type == AnimType.INSPECT) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 1F); + if(timer == 24) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + } + if(type == AnimType.JAMMED) { + if(timer == 12) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 1F); + if(timer == 34) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + } + }; + + public static BiConsumer ORCHESTRA_HENRY = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + boolean aiming = ItemGunBaseNT.getIsAiming(stack); + + if(type == AnimType.RELOAD) { + if(timer == 8) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 1F); + if(timer == 16) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + } + if(type == AnimType.RELOAD_CYCLE) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + } + if(type == AnimType.RELOAD_END) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 0.9F); + if(timer == 12 && ctx.config.getReceivers(stack)[0].getMagazine(stack).getAmountBeforeReload(stack) <= 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.leverCock", 1F, 1F); + } + if(type == AnimType.JAMMED) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 0.9F); + if(timer == 12) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.leverCock", 1F, 1F); + if(timer == 36) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.leverCock", 1F, 1F); + if(timer == 44) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.leverCock", 1F, 1F); + } + if(type == AnimType.CYCLE) { + if(timer == 14) { + SpentCasing casing = ctx.config.getReceivers(stack)[0].getMagazine(stack).getCasing(stack); + CasingCreator.composeEffect(player.worldObj, player, 0.5, -0.125, aiming ? -0.125 : -0.375D, 0, 0.12, -0.12, 0.01, casing.getName(), true, 60, 0.5D, 20); + } + if(timer == 12) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.leverCock", 1F, 1F); + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 1F); + if(timer == 12) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.leverCock", 1F, 1F); + } + }; + + public static BiConsumer ORCHESTRA_GREASEGUN = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + boolean aiming = ItemGunBaseNT.getIsAiming(stack); + + if(type == AnimType.EQUIP) { + if(timer == 5) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.openLatch", 1F, 1F); + } + if(type == AnimType.CYCLE) { + if(timer == 2) { + SpentCasing casing = ctx.config.getReceivers(stack)[0].getMagazine(stack).getCasing(stack); + CasingCreator.composeEffect(player.worldObj, player, 0.55, aiming ? 0 : -0.125, aiming ? 0 : -0.25D, 0, 0.18, -0.12, 0.01, casing.getName()); + } + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 0.8F); + if(timer == 11) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.8F); + + } + if(type == AnimType.RELOAD) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magRemove", 1F, 1F); + if(timer == 24) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magInsert", 1F, 1F); + if(timer == 36) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.8F); + } + if(type == AnimType.INSPECT) { + if(timer == 5) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.8F); + if(timer == 26) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1.25F); + } + if(type == AnimType.JAMMED) { + if(timer == 11) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.8F); + if(timer == 26) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.8F); + } + }; + + public static BiConsumer ORCHESTRA_MARESLEG = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + boolean aiming = ItemGunBaseNT.getIsAiming(stack); + + if(type == AnimType.RELOAD) { + if(timer == 8) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.8F); + if(timer == 16) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.shotgunReload", 1F, 1F); + } + if(type == AnimType.RELOAD_CYCLE) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.shotgunReload", 1F, 1F); + } + if(type == AnimType.RELOAD_END) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.7F); + } + if(type == AnimType.JAMMED) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.7F); + if(timer == 17) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.leverCock", 1F, 0.8F); + if(timer == 29) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.leverCock", 1F, 0.8F); + } + if(type == AnimType.CYCLE) { + if(timer == 14) { + SpentCasing casing = ctx.config.getReceivers(stack)[0].getMagazine(stack).getCasing(stack); + CasingCreator.composeEffect(player.worldObj, player, 0.3125, -0.125, aiming ? -0.125 : -0.375D, 0, 0.18, -0.12, 0.01, casing.getName(), true, 60, 0.5D, 20); + } + if(timer == 8) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.leverCock", 1F, 0.8F); + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 1F); + if(timer == 8) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.leverCock", 1F, 0.8F); + } + }; + + public static BiConsumer ORCHESTRA_FLAREGUN = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + boolean aiming = ItemGunBaseNT.getIsAiming(stack); + + if(type == AnimType.RELOAD) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 0.8F); + if(timer == 4) { + SpentCasing casing = ctx.config.getReceivers(stack)[0].getMagazine(stack).getCasing(stack); + CasingCreator.composeEffect(player.worldObj, player, 0.625, -0.125, aiming ? -0.125 : -0.375D, -0.12, 0.18, 0, 0.01, casing.getName(), true, 60, 0.5D, 20); + } + if(timer == 16) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.insertCanister", 1F, 1F); + if(timer == 24) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + } + if(type == AnimType.JAMMED) { + if(timer == 10) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 0.8F); + if(timer == 29) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + } + if(type == AnimType.CYCLE) { + if(timer == 12) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 1F); + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 1F); + if(timer == 12) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 1F); + } + }; + + public static BiConsumer ORCHESTRA_NOPIP = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + + if(type == AnimType.RELOAD) { + if(timer == 3) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 1F); + if(timer == 10) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallRemove", 1F, 1F); + if(timer == 34) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + if(timer == 40) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + + if(timer == 16) { + Receiver rec = ctx.config.getReceivers(stack)[0]; + IMagazine mag = rec.getMagazine(stack); + SpentCasing casing = mag.getCasing(stack); + for(int i = 0; i < mag.getCapacity(stack); i++) CasingCreator.composeEffect(player.worldObj, player, 0.25, -0.125, -0.125, -0.05, 0, 0, 0.01, casing.getName()); + } + } + if(type == AnimType.CYCLE) { + if(timer == 11) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 1F); + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 1F); + if(timer == 11) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 1F); + } + if(type == AnimType.INSPECT) { + if(timer == 3) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 1F); + if(timer == 16) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + } + }; + + public static BiConsumer ORCHESTRA_CARBIBE = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + boolean aiming = ItemGunBaseNT.getIsAiming(stack); + + if(type == AnimType.CYCLE) { + if(timer == 2) { + SpentCasing casing = ctx.config.getReceivers(stack)[0].getMagazine(stack).getCasing(stack); + CasingCreator.composeEffect(player.worldObj, player, 0.3125, aiming ? 0 : -0.125, aiming ? 0 : -0.25D, 0, 0.18, -0.06, 0.01, casing.getName(), true, 60, 0.5D, 20); + } + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 1F); + if(timer == 8) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.8F); + } + if(type == AnimType.RELOAD) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magRemove", 1F, 1F); + if(timer == 26) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magInsert", 1F, 1F); + } + if(type == AnimType.RELOAD_END) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.8F); + } + if(type == AnimType.JAMMED) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.8F); + if(timer == 31) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.8F); + } + if(type == AnimType.INSPECT) { + if(timer == 6) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 1F); + if(timer == 30) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 0.9F); + } + }; + + public static BiConsumer ORCHESTRA_AM180 = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + boolean aiming = ItemGunBaseNT.getIsAiming(stack); + + if(type == AnimType.CYCLE) { + if(timer == 0) { + SpentCasing casing = ctx.config.getReceivers(stack)[0].getMagazine(stack).getCasing(stack); + CasingCreator.composeEffect(player.worldObj, player, 0.4375, aiming ? 0 : -0.125, aiming ? 0 : -0.25D, 0, -0.06, 0, 0.01, casing.getName()); + } + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 1F); + if(timer == 6) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.9F); + } + if(type == AnimType.RELOAD) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magRemove", 1F, 1F); + if(timer == 20) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.impact", 0.25F, 1F); + if(timer == 32) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magInsert", 1F, 1F); + if(timer == 40) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.9F); + } + if(type == AnimType.JAMMED) { + if(timer == 15) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.pistolCock", 1F, 0.8F); + } + if(type == AnimType.INSPECT) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magRemove", 1F, 1F); + if(timer == 35) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magInsert", 1F, 1F); + } + }; + + public static BiConsumer ORCHESTRA_LIBERATOR = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + + if(type == AnimType.RELOAD) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.75F); + if(timer == 4) { + IMagazine mag = ctx.config.getReceivers(stack)[0].getMagazine(stack); + int toEject = mag.getAmountAfterReload(stack) - mag.getAmount(stack); + SpentCasing casing = mag.getCasing(stack); + for(int i = 0; i < toEject; i++) CasingCreator.composeEffect(player.worldObj, player, 0.625, -0.1875, -0.375D, -0.12, 0.18, 0, 0.01, casing.getName(), true, 60, 0.5D, 20); + } + if(timer == 15) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + } + if(type == AnimType.RELOAD_CYCLE) { + if(timer == 5) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.magSmallInsert", 1F, 1F); + } + if(type == AnimType.RELOAD_END) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 0.9F); + } + if(type == AnimType.JAMMED) { + if(timer == 2) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 0.9F); + if(timer == 12) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.75F); + if(timer == 26) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 0.9F); + } + if(type == AnimType.CYCLE_DRY) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.dryFireClick", 1F, 1F); + } + if(type == AnimType.INSPECT) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverCock", 1F, 0.75F); + IMagazine mag = ctx.config.getReceivers(stack)[0].getMagazine(stack); + int toEject = mag.getAmountAfterReload(stack) - mag.getAmount(stack); + if(timer == 4 && toEject <= 0) { + SpentCasing casing = mag.getCasing(stack); + for(int i = 0; i < toEject; i++) CasingCreator.composeEffect(player.worldObj, player, 0.625, -0.1875, -0.375D, -0.12, 0.18, 0, 0.01, casing.getName(), true, 60, 0.5D, 20); + mag.setAmountAfterReload(stack, 0); + } + if(timer == 20) player.worldObj.playSoundAtEntity(player, "hbm:weapon.reload.revolverClose", 1F, 0.9F); + } + }; + + public static BiConsumer ORCHESTRA_CONGOLAKE = (stack, ctx) -> { + EntityPlayer player = ctx.player; + AnimType type = ItemGunBaseNT.getLastAnim(stack, ctx.configIndex); + int timer = ItemGunBaseNT.getAnimTimer(stack, ctx.configIndex); + boolean aiming = ItemGunBaseNT.getIsAiming(stack); + + if(type == AnimType.CYCLE) { + if(timer == 15) { + IMagazine mag = ctx.config.getReceivers(stack)[0].getMagazine(stack); + SpentCasing casing = mag.getCasing(stack); + CasingCreator.composeEffect(player.worldObj, player, 0.625, aiming ? -0.0625 : -0.25, aiming ? 0 : -0.375D, 0, 0.18, 0.12, 0.01, casing.getName(), true, 60, 0.5D, 20); + } + } + if(type == AnimType.RELOAD || type == AnimType.RELOAD_CYCLE) { + if(timer == 0) player.worldObj.playSoundAtEntity(player, "hbm:weapon.glReload", 1F, 1F); + } + if(type == AnimType.INSPECT) { + if(timer == 9) player.worldObj.playSoundAtEntity(player, "hbm:weapon.glOpen", 1F, 1F); + if(timer == 27) player.worldObj.playSoundAtEntity(player, "hbm:weapon.glClose", 1F, 1F); + } + }; +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory12ga.java b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory12ga.java new file mode 100644 index 000000000..b5c856062 --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory12ga.java @@ -0,0 +1,200 @@ +package com.hbm.items.weapon.sedna.factory; + +import java.util.function.BiFunction; + +import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.BulletConfig; +import com.hbm.items.weapon.sedna.Crosshair; +import com.hbm.items.weapon.sedna.GunConfig; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.factory.GunFactory.EnumAmmo; +import com.hbm.items.weapon.sedna.mags.MagazineSingleReload; +import com.hbm.lib.RefStrings; +import com.hbm.particle.SpentCasing; +import com.hbm.particle.SpentCasing.CasingType; +import com.hbm.render.anim.BusAnimation; +import com.hbm.render.anim.BusAnimationSequence; +import com.hbm.render.anim.BusAnimationKeyframe.IType; +import com.hbm.render.anim.HbmAnimations.AnimType; + +import net.minecraft.item.ItemStack; + +public class XFactory12ga { + + public static BulletConfig g12_bp; + public static BulletConfig g12_bp_magnum; + public static BulletConfig g12_bp_slug; + public static BulletConfig g12; + + public static void init() { + + g12_bp = new BulletConfig().setItem(EnumAmmo.G12_BP).setProjectiles(8, 8).setSpread(0.05F).setRicochetAngle(15).setCasing(new SpentCasing(CasingType.STRAIGHT).setColor(SpentCasing.COLOR_CASE_BRASS).setScale(1.5F).register("12GA_BP")); + g12_bp_magnum = new BulletConfig().setItem(EnumAmmo.G12_BP_MAGNUM).setProjectiles(4, 4).setSpread(0.05F).setRicochetAngle(25).setCasing(new SpentCasing(CasingType.STRAIGHT).setColor(SpentCasing.COLOR_CASE_BRASS).setScale(1.5F).register("12GA_BP_MAGNUM")); + g12_bp_slug = new BulletConfig().setItem(EnumAmmo.G12_BP_SLUG).setSpread(0.01F).setRicochetAngle(5).setCasing(new SpentCasing(CasingType.STRAIGHT).setColor(SpentCasing.COLOR_CASE_BRASS).setScale(1.5F).register("12GA_BP_SLUG")); + g12 = new BulletConfig().setItem(EnumAmmo.G12).setProjectiles(8, 8).setSpread(0.05F).setRicochetAngle(15).setCasing(new SpentCasing(CasingType.SHOTGUN).setColor(0xB52B2B, SpentCasing.COLOR_CASE_BRASS).setScale(0.75F).register("12GA")); + + ModItems.gun_maresleg = new ItemGunBaseNT(new GunConfig() + .dura(600).draw(20).inspect(39).reloadSequential(true).crosshair(Crosshair.L_CIRCLE).smoke(Lego.LAMBDA_STANDARD_SMOKE) + .rec(new Receiver(0) + .dmg(12F).delay(20).reload(22, 10, 13, 0).jam(24).sound("hbm:weapon.fire.blackPowder", 1.0F, 1.0F) + .mag(new MagazineSingleReload(0, 6).addConfigs(g12_bp, g12_bp_magnum, g12_bp_slug, g12)) + .offset(0.75, -0.0625, -0.1875D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .setupStandardConfiguration() + .anim(LAMBDA_MARESLEG_ANIMS).orchestra(Orchestras.ORCHESTRA_MARESLEG) + ).setUnlocalizedName("gun_maresleg").setTextureName(RefStrings.MODID + ":gun_darter"); + + ModItems.gun_liberator = new ItemGunBaseNT(new GunConfig() + .dura(200).draw(20).inspect(21).reloadSequential(true).crosshair(Crosshair.L_CIRCLE).smoke(Lego.LAMBDA_STANDARD_SMOKE) + .rec(new Receiver(0) + .dmg(12F).delay(20).rounds(4).reload(25, 15, 7, 0).jam(45).sound("hbm:weapon.fire.blackPowder", 1.0F, 1.0F) + .mag(new MagazineSingleReload(0, 4).addConfigs(g12_bp, g12_bp_magnum, g12_bp_slug, g12)) + .offset(0.75, -0.0625, -0.1875D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .setupStandardConfiguration() + .anim(LAMBDA_LIBERATOR_ANIMS).orchestra(Orchestras.ORCHESTRA_LIBERATOR) + ).setUnlocalizedName("gun_liberator").setTextureName(RefStrings.MODID + ":gun_darter"); + } + + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_MARESLEG_ANIMS = (stack, type) -> { + switch(type) { + case EQUIP: return new BusAnimation() + .addBus("EQUIP", new BusAnimationSequence().addPos(-60, 0, 0, 0).addPos(0, 0, -3, 500, IType.SIN_DOWN)); + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, 0, 50).addPos(0, 0, -1, 50).addPos(0, 0, 0, 250)) + .addBus("SIGHT", new BusAnimationSequence().addPos(35, 0, 0, 100, IType.SIN_DOWN).addPos(0, 0, 0, 100, IType.SIN_FULL)) + .addBus("LEVER", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(-85, 0, 0, 200).addPos(0, 0, 0, 200)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(0, 0, 45, 200, IType.SIN_DOWN).addPos(0, 0, 0, 200, IType.SIN_UP)) + .addBus("HAMMER", new BusAnimationSequence().addPos(30, 0, 0, 50).addPos(30, 0, 0, 550).addPos(0, 0, 0, 200)); + case CYCLE_DRY: return new BusAnimation() + .addBus("LEVER", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(-90, 0, 0, 200).addPos(0, 0, 0, 200)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(0, 0, 45, 200, IType.SIN_DOWN).addPos(0, 0, 0, 200, IType.SIN_UP)) + .addBus("HAMMER", new BusAnimationSequence().addPos(30, 0, 0, 50).addPos(30, 0, 0, 550).addPos(0, 0, 0, 200)); + case RELOAD: + boolean empty = ((ItemGunBaseNT) stack.getItem()).getConfig(stack, 0).getReceivers(stack)[0].getMagazine(stack).getAmount(stack) <= 0; + return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(30, 0, 0, 400, IType.SIN_FULL)) + .addBus("LEVER", new BusAnimationSequence().addPos(0, 0, 0, 400).addPos(-85, 0, 0, 200)) + .addBus("SHELL", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(0, 0.25, -3, 0).addPos(0, empty ? 0.25 : 0.125, -1.5, 150, IType.SIN_UP).addPos(0, empty ? 0.25 : -0.25, 0, 150, IType.SIN_DOWN)) + .addBus("FLAG", new BusAnimationSequence().addPos(0, 0, 0, empty ? 900 : 0).addPos(1, 1, 1, 0)); + case RELOAD_CYCLE: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(30, 0, 0, 0)) + .addBus("LEVER", new BusAnimationSequence().addPos(-85, 0, 0, 0)) + .addBus("SHELL", new BusAnimationSequence().addPos(0, 0.25, -3, 0).addPos(0, 0.125, -1.5, 150, IType.SIN_UP).addPos(0, -0.125, 0, 150, IType.SIN_DOWN)) + .addBus("FLAG", new BusAnimationSequence().addPos(1, 1, 1, 0)); + case RELOAD_END: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(30, 0, 0, 0).addPos(30, 0, 0, 250).addPos(0, 0, 0, 400, IType.SIN_FULL)) + .addBus("LEVER", new BusAnimationSequence().addPos(-85, 0, 0, 0).addPos(0, 0, 0, 200)) + .addBus("FLAG", new BusAnimationSequence().addPos(1, 1, 1, 0)); + case JAMMED: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(30, 0, 0, 0).addPos(30, 0, 0, 250).addPos(0, 0, 0, 400, IType.SIN_FULL)) + .addBus("LEVER", new BusAnimationSequence().addPos(-85, 0, 0, 0).addPos(-15, 0, 0, 200).addPos(-15, 0, 0, 650).addPos(-85, 0, 0, 200).addPos(-15, 0, 0, 200).addPos(-15, 0, 0, 200).addPos(-85, 0, 0, 200).addPos(0, 0, 0, 200)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 850).addPos(0, 0, 45, 200, IType.SIN_DOWN).addPos(0, 0, 45, 800).addPos(0, 0, 0, 200, IType.SIN_UP)) + .addBus("FLAG", new BusAnimationSequence().addPos(1, 1, 1, 0)); + case INSPECT: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(-35, 0, 0, 300, IType.SIN_FULL).addPos(-35, 0, 0, 1150).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 450).addPos(0, 0, -90, 500, IType.SIN_FULL).addPos(0, 0, -90, 500).addPos(0, 0, 0, 500, IType.SIN_FULL)); + } + + return null; + }; + + /** This fucking sucks */ + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_LIBERATOR_ANIMS = (stack, type) -> { + int ammo = ((ItemGunBaseNT) stack.getItem()).getConfig(stack, 0).getReceivers(stack)[0].getMagazine(stack).getAmount(stack); + switch(type) { + case EQUIP: return new BusAnimation() + .addBus("EQUIP", new BusAnimationSequence().addPos(60, 0, 0, 0).addPos(0, 0, 0, 500, IType.SIN_DOWN)); + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, -2.5, 50, IType.SIN_DOWN).addPos(0, 0, 0, 350, IType.SIN_FULL)); + case CYCLE_DRY: return new BusAnimation(); + case RELOAD: if(ammo == 0) return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(15, 0, 0, 100)) + .addBus("BREAK", new BusAnimationSequence().addPos(0, 0, 0, 100).addPos(60, 0, 0, 350, IType.SIN_DOWN)) + .addBus("SHELL1", new BusAnimationSequence().addPos(2, -4, -2, 0).addPos(2, -4, -2, 400).addPos(0, 0, -2, 450, IType.SIN_FULL).addPos(0, 0, 0, 50, IType.SIN_UP)) + .addBus("SHELL2", new BusAnimationSequence().addPos(2, -4, -2, 0)) + .addBus("SHELL3", new BusAnimationSequence().addPos(2, -4, -2, 0)) + .addBus("SHELL4", new BusAnimationSequence().addPos(2, -4, -2, 0)); + if(ammo == 1) return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(15, 0, 0, 100)) + .addBus("BREAK", new BusAnimationSequence().addPos(0, 0, 0, 100).addPos(60, 0, 0, 350, IType.SIN_DOWN)) + .addBus("SHELL1", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL2", new BusAnimationSequence().addPos(2, -4, -2, 0).addPos(2, -4, -2, 400).addPos(0, 0, -2, 450, IType.SIN_FULL).addPos(0, 0, 0, 50, IType.SIN_UP)) + .addBus("SHELL3", new BusAnimationSequence().addPos(2, -4, -2, 0)) + .addBus("SHELL4", new BusAnimationSequence().addPos(2, -4, -2, 0)); + if(ammo == 2) return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(15, 0, 0, 100)) + .addBus("BREAK", new BusAnimationSequence().addPos(0, 0, 0, 100).addPos(60, 0, 0, 350, IType.SIN_DOWN)) + .addBus("SHELL1", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL2", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL3", new BusAnimationSequence().addPos(2, -4, -2, 0).addPos(2, -4, -2, 400).addPos(0, 0, -2, 450, IType.SIN_FULL).addPos(0, 0, 0, 50, IType.SIN_UP)) + .addBus("SHELL4", new BusAnimationSequence().addPos(2, -4, -2, 0)); + if(ammo == 3) return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(15, 0, 0, 100)) + .addBus("BREAK", new BusAnimationSequence().addPos(0, 0, 0, 100).addPos(60, 0, 0, 350, IType.SIN_DOWN)) + .addBus("SHELL1", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL2", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL3", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL4", new BusAnimationSequence().addPos(2, -4, -2, 0).addPos(2, -4, -2, 400).addPos(0, 0, -2, 450, IType.SIN_FULL).addPos(0, 0, 0, 50, IType.SIN_UP)); + case RELOAD_CYCLE: + if(ammo == 0) return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(15, 0, 0, 0)) + .addBus("BREAK", new BusAnimationSequence().addPos(60, 0, 0, 0)) + .addBus("SHELL1", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL2", new BusAnimationSequence().addPos(2, -4, -2, 0).addPos(0, 0, -2, 450, IType.SIN_FULL).addPos(0, 0, 0, 50, IType.SIN_UP)) + .addBus("SHELL3", new BusAnimationSequence().addPos(2, -4, -2, 0)) + .addBus("SHELL4", new BusAnimationSequence().addPos(2, -4, -2, 0)); + if(ammo == 1) return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(15, 0, 0, 0)) + .addBus("BREAK", new BusAnimationSequence().addPos(60, 0, 0, 0)) + .addBus("SHELL1", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL2", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL3", new BusAnimationSequence().addPos(2, -4, -2, 0).addPos(0, 0, -2, 450, IType.SIN_FULL).addPos(0, 0, 0, 50, IType.SIN_UP)) + .addBus("SHELL4", new BusAnimationSequence().addPos(2, -4, -2, 0)); + if(ammo == 2) return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(15, 0, 0, 0)) + .addBus("BREAK", new BusAnimationSequence().addPos(60, 0, 0, 0)) + .addBus("SHELL1", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL2", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL3", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus("SHELL4", new BusAnimationSequence().addPos(2, -4, -2, 0).addPos(0, 0, -2, 450, IType.SIN_FULL).addPos(0, 0, 0, 50, IType.SIN_UP)); + return null; + case RELOAD_END: return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(15, 0, 0, 0).addPos(15, 0, 0, 250).addPos(0, 0, 0, 50)) + .addBus("BREAK", new BusAnimationSequence().addPos(60, 0, 0, 0).addPos(0, 0, 0, 250, IType.SIN_UP)) + .addBus(ammo >= 0 ? "SHELL1" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo >= 1 ? "SHELL2" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo >= 2 ? "SHELL3" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo >= 3 ? "SHELL4" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo < 0 ? "SHELL1" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)) + .addBus(ammo < 1 ? "SHELL2" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)) + .addBus(ammo < 2 ? "SHELL3" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)) + .addBus(ammo < 3 ? "SHELL4" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)); + case JAMMED: return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(15, 0, 0, 0).addPos(15, 0, 0, 250).addPos(0, 0, 0, 50).addPos(0, 0, 0, 550).addPos(15, 0, 0, 100).addPos(15, 0, 0, 600).addPos(0, 0, 0, 50)) + .addBus("BREAK", new BusAnimationSequence().addPos(60, 0, 0, 0).addPos(0, 0, 0, 250, IType.SIN_UP).addPos(0, 0, 0, 600).addPos(45, 0, 0, 250, IType.SIN_DOWN).addPos(45, 0, 0, 300).addPos(0, 0, 0, 150, IType.SIN_UP)) + .addBus(ammo >= 0 ? "SHELL1" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo >= 1 ? "SHELL2" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo >= 2 ? "SHELL3" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo >= 3 ? "SHELL4" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo < 0 ? "SHELL1" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)) + .addBus(ammo < 1 ? "SHELL2" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)) + .addBus(ammo < 2 ? "SHELL3" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)) + .addBus(ammo < 3 ? "SHELL4" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)); + case INSPECT: return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(15, 0, 0, 100).addPos(15, 0, 0, 1100).addPos(0, 0, 0, 50)) + .addBus("BREAK", new BusAnimationSequence().addPos(0, 0, 0, 100).addPos(60, 0, 0, 350, IType.SIN_DOWN).addPos(60, 0, 0, 500).addPos(0, 0, 0, 250, IType.SIN_UP)) + .addBus(ammo > 0 ? "SHELL1" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo > 1 ? "SHELL2" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo > 2 ? "SHELL3" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo > 3 ? "SHELL4" : "NULL", new BusAnimationSequence().addPos(0, 0, 0, 0)) + .addBus(ammo < 1 ? "SHELL1" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)) + .addBus(ammo < 2 ? "SHELL2" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)) + .addBus(ammo < 3 ? "SHELL3" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)) + .addBus(ammo < 4 ? "SHELL4" : "NULL", new BusAnimationSequence().addPos(2, -8, -2, 0)); + } + + return null; + }; +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory22lr.java b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory22lr.java new file mode 100644 index 000000000..94e90441f --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory22lr.java @@ -0,0 +1,85 @@ +package com.hbm.items.weapon.sedna.factory; + +import java.util.function.BiConsumer; +import java.util.function.BiFunction; + +import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.BulletConfig; +import com.hbm.items.weapon.sedna.Crosshair; +import com.hbm.items.weapon.sedna.GunConfig; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.ItemGunBaseNT.LambdaContext; +import com.hbm.items.weapon.sedna.factory.GunFactory.EnumAmmo; +import com.hbm.items.weapon.sedna.mags.MagazineFullReload; +import com.hbm.lib.RefStrings; +import com.hbm.particle.SpentCasing; +import com.hbm.particle.SpentCasing.CasingType; +import com.hbm.render.anim.BusAnimation; +import com.hbm.render.anim.BusAnimationSequence; +import com.hbm.render.anim.BusAnimationKeyframe.IType; +import com.hbm.render.anim.HbmAnimations.AnimType; + +import net.minecraft.item.ItemStack; + +public class XFactory22lr { + + public static BulletConfig p22_sp; + public static BulletConfig p22_fmj; + public static BulletConfig p22_jhp; + public static BulletConfig p22_ap; + + public static void init() { + SpentCasing casing22 = new SpentCasing(CasingType.STRAIGHT).setColor(SpentCasing.COLOR_CASE_BRASS).setScale(0.5F); + p22_sp = new BulletConfig().setItem(EnumAmmo.P22_SP) + .setCasing(casing22.clone().register("p22")); + p22_fmj = new BulletConfig().setItem(EnumAmmo.P22_FMJ).setDamage(0.8F).setArmorPiercing(0.1F) + .setCasing(casing22.clone().register("p22fmj")); + p22_jhp = new BulletConfig().setItem(EnumAmmo.P22_JHP).setDamage(1.5F).setArmorPiercing(-0.25F) + .setCasing(casing22.clone().register("p22jhp")); + p22_ap = new BulletConfig().setItem(EnumAmmo.P22_AP).setDoesPenetrate(true).setDamageFalloutByPen(false).setDamage(1.5F).setArmorPiercing(0.15F) + .setCasing(casing22.clone().setColor(SpentCasing.COLOR_CASE_44).register("p22ap")); + + ModItems.gun_am180 = new ItemGunBaseNT(new GunConfig() + .dura(177 * 25).draw(15).inspect(38).crosshair(Crosshair.L_CIRCLE).smoke(LAMBDA_SMOKE) + .rec(new Receiver(0) + .dmg(5F).delay(1).dry(10).auto(true).spread(0.02F).reload(53).jam(55).sound("hbm:weapon.fire.blackPowder", 1.0F, 1.0F) + .mag(new MagazineFullReload(0, 177).addConfigs(p22_sp, p22_fmj, p22_jhp, p22_ap)) + .offset(1, -0.0625 * 1.5, -0.1875D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .setupStandardConfiguration() + .anim(LAMBDA_AM180_ANIMS).orchestra(Orchestras.ORCHESTRA_AM180) + ).setUnlocalizedName("gun_am180").setTextureName(RefStrings.MODID + ":gun_darter"); + } + + public static BiConsumer LAMBDA_SMOKE = (stack, ctx) -> { + Lego.handleStandardSmoke(ctx.player, stack, 3000, 0.05D, 1.1D, 0); + }; + + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_AM180_ANIMS = (stack, type) -> { + switch(type) { + case EQUIP: return new BusAnimation() + .addBus("EQUIP", new BusAnimationSequence().addPos(45, 0, 0, 0).addPos(0, 0, 0, 500, IType.SIN_FULL)); + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, ItemGunBaseNT.getIsAiming(stack) ? -0.125 : -0.25, 15, IType.SIN_DOWN).addPos(0, 0, 0, 35, IType.SIN_FULL)); + case CYCLE_DRY: return new BusAnimation() + .addBus("BOLT", new BusAnimationSequence().addPos(0, 0, 0, 550).addPos(0, 0, -1.5, 100, IType.SIN_UP).addPos(0, 0, 0, 100, IType.SIN_UP)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 300).addPos(0, 0, 15, 250, IType.SIN_FULL).addPos(0, 0, 15, 400).addPos(0, 0, 0, 250, IType.SIN_FULL)); + case RELOAD: + return new BusAnimation() + .addBus("MAGTURN", new BusAnimationSequence().addPos(15, 0, 0, 250, IType.SIN_FULL).addPos(15, 0, 0, 250).addPos(15, 0, 70, 300, IType.SIN_FULL).addPos(15, 0, 0, 0).addPos(15, 0, 0, 750).addPos(0, 0, 0, 250, IType.SIN_FULL)) + .addBus("MAG", new BusAnimationSequence().addPos(0, 0, 0, 250).addPos(2, 0, -4, 250, IType.SIN_FULL).addPos(-10, 2, -4, 300, IType.SIN_UP).addPos(3, -6, -4, 0).addPos(2, 0, -4, 500, IType.SIN_FULL).addPos(0, 0, 0, 250, IType.SIN_FULL)) + .addBus("BOLT", new BusAnimationSequence().addPos(0, 0, 0, 2250).addPos(0, 0, -1.5, 100, IType.SIN_UP).addPos(0, 0, 0, 100, IType.SIN_UP)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 2000).addPos(0, 0, 15, 250, IType.SIN_FULL).addPos(0, 0, 15, 400).addPos(0, 0, 0, 250, IType.SIN_FULL)); + case JAMMED: return new BusAnimation() + .addBus("BOLT", new BusAnimationSequence().addPos(0, 0, 0, 750).addPos(0, 0, -1.5, 100, IType.SIN_UP).addPos(0, 0, 0, 100, IType.SIN_UP)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, 45, 250, IType.SIN_FULL).addPos(0, 0, 45, 400).addPos(0, 0, 0, 250, IType.SIN_FULL)); + case INSPECT: return new BusAnimation() + .addBus("MAGTURN", new BusAnimationSequence().addPos(15, 0, 0, 250, IType.SIN_FULL).addPos(15, 0, 0, 1400).addPos(0, 0, 0, 250, IType.SIN_FULL)) + .addBus("MAG", new BusAnimationSequence().addPos(0, 0, 0, 200).addPos(4, -1, -4, 200, IType.SIN_FULL).addPos(4, -1.5, -4, 50).addPos(4, 0, -4, 100).addPos(4, 6, -4, 250, IType.SIN_DOWN).addPos(4, 0, -4, 150, IType.SIN_UP).addPos(4, -1, -4, 100, IType.SIN_DOWN).addPos(4, -1, -4, 250).addPos(0, 0, 0, 250, IType.SIN_FULL)) + .addBus("MAGSPIN", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(-400, 0, 0, 500, IType.SIN_FULL).addPos(-400, 0, 0, 250).addPos(-360, 0, 0, 250)); + } + + return null; + }; +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory357.java b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory357.java new file mode 100644 index 000000000..12c5f5b17 --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory357.java @@ -0,0 +1,115 @@ +package com.hbm.items.weapon.sedna.factory; + +import java.util.function.BiFunction; + +import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.BulletConfig; +import com.hbm.items.weapon.sedna.Crosshair; +import com.hbm.items.weapon.sedna.GunConfig; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.factory.GunFactory.EnumAmmo; +import com.hbm.items.weapon.sedna.mags.MagazineFullReload; +import com.hbm.lib.RefStrings; +import com.hbm.render.anim.BusAnimation; +import com.hbm.render.anim.BusAnimationKeyframe.IType; +import com.hbm.render.anim.BusAnimationSequence; +import com.hbm.render.anim.HbmAnimations.AnimType; + +import net.minecraft.item.ItemStack; + +public class XFactory357 { + + public static BulletConfig m357_sp; + public static BulletConfig m357_fmj; + public static BulletConfig m357_jhp; + public static BulletConfig m357_ap; + public static BulletConfig m357_express; + + public static void init() { + m357_sp = new BulletConfig().setItem(EnumAmmo.M357_SP); + m357_fmj = new BulletConfig().setItem(EnumAmmo.M357_FMJ).setDamage(0.8F).setArmorPiercing(0.1F); + m357_jhp = new BulletConfig().setItem(EnumAmmo.M357_JHP).setDamage(1.5F).setArmorPiercing(-0.25F); + m357_ap = new BulletConfig().setItem(EnumAmmo.M357_AP).setDoesPenetrate(true).setDamageFalloutByPen(false).setDamage(1.5F).setArmorPiercing(0.15F); + m357_express = new BulletConfig().setItem(EnumAmmo.M357_EXPRESS).setDoesPenetrate(true).setDamage(1.5F).setArmorPiercing(0.1F).setWear(1.5F); + + ModItems.gun_light_revolver = new ItemGunBaseNT(new GunConfig() + .dura(300).draw(4).inspect(23).crosshair(Crosshair.CIRCLE).smoke(Lego.LAMBDA_STANDARD_SMOKE) + .rec(new Receiver(0) + .dmg(10F).delay(16).reload(55).jam(45).sound("hbm:weapon.fire.blackPowder", 1.0F, 1.0F) + .mag(new MagazineFullReload(0, 6).addConfigs(m357_sp, m357_fmj, m357_jhp, m357_ap, m357_express)) + .offset(0.75, -0.0625, -0.3125D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .setupStandardConfiguration() + .anim(LAMBDA_ATLAS_ANIMS).orchestra(Orchestras.ORCHESTRA_ATLAS) + ).setUnlocalizedName("gun_light_revolver").setTextureName(RefStrings.MODID + ":gun_darter"); + + ModItems.gun_light_revolver_dani = new ItemGunBaseNT( + new GunConfig().dura(30_000).draw(20).inspect(23).crosshair(Crosshair.CIRCLE).smoke(Lego.LAMBDA_STANDARD_SMOKE) + .rec(new Receiver(0) + .dmg(10F).delay(11).reload(55).jam(45).sound("hbm:weapon.fire.blackPowder", 1.0F, 1.0F) + .mag(new MagazineFullReload(0, 6).addConfigs(m357_sp, m357_fmj, m357_jhp, m357_ap, m357_express)) + .offset(0.75, -0.0625, 0.3125D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .pp(Lego.LAMBDA_STANDARD_CLICK_PRIMARY).pr(Lego.LAMBDA_STANDARD_RELOAD) + .decider(GunStateDecider.LAMBDA_STANDARD_DECIDER) + .anim(LAMBDA_DANI_ANIMS).orchestra(Orchestras.ORCHESTRA_DANI), + new GunConfig().dura(30_000).draw(20).inspect(23).crosshair(Crosshair.CIRCLE).smoke(Lego.LAMBDA_STANDARD_SMOKE) + .rec(new Receiver(0) + .dmg(10F).delay(11).reload(55).jam(45).sound("hbm:weapon.fire.blackPowder", 1.0F, 1.0F) + .mag(new MagazineFullReload(1, 6).addConfigs(m357_sp, m357_fmj, m357_jhp, m357_ap, m357_express)) + .offset(0.75, -0.0625, -0.3125D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .ps(Lego.LAMBDA_STANDARD_CLICK_PRIMARY).pr(Lego.LAMBDA_STANDARD_RELOAD) + .decider(GunStateDecider.LAMBDA_STANDARD_DECIDER) + .anim(LAMBDA_DANI_ANIMS).orchestra(Orchestras.ORCHESTRA_DANI) + ).setUnlocalizedName("gun_light_revolver_dani").setTextureName(RefStrings.MODID + ":gun_darter"); + } + + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_ATLAS_ANIMS = (stack, type) -> { + switch(type) { + case EQUIP: return new BusAnimation() + .addBus("EQUIP", new BusAnimationSequence().addPos(-90, 0, 0, 0).addPos(0, 0, 0, 350, IType.SIN_DOWN)); + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, 0, 50).addPos(0, 0, -3, 50).addPos(0, 0, 0, 250)) + .addBus("HAMMER", new BusAnimationSequence().addPos(0, 0, 1, 50).addPos(0, 0, 1, 550).addPos(0, 0, 0, 200)) + .addBus("DRUM", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(0, 0, 1, 200)); + case CYCLE_DRY: return new BusAnimation() + .addBus("HAMMER", new BusAnimationSequence().addPos(0, 0, 1, 50).addPos(0, 0, 1, 550).addPos(0, 0, 0, 200)) + .addBus("DRUM", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(0, 0, 1, 200)); + case RELOAD: return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(0, 0, 90, 300).addPos(0, 0, 90, 2000).addPos(0, 0, 0, 150)) + .addBus("FRONT", new BusAnimationSequence().addPos(0, 0, 0, 200).addPos(0, 0, 45, 150).addPos(0, 0, 45, 2000).addPos(0, 0, 0, 75)) + .addBus("RELOAD_ROT", new BusAnimationSequence().addPos(0, 0, 0, 300).addPos(60, 0, 0, 500).addPos(60, 0, 0, 500).addPos(0, -90, -90, 0).addPos(0, -90, -90, 600).addPos(0, 0, 0, 300).addPos(0, 0, 0, 100).addPos(-45, 0, 0, 50).addPos(-45, 0, 0, 100).addPos(0, 0, 0, 300)) + .addBus("RELOAD_MOVE", new BusAnimationSequence().addPos(0, 0, 0, 300).addPos(0, -15, 0, 1000).addPos(0, 0, 0, 450)) + .addBus("DRUM_PUSH", new BusAnimationSequence().addPos(0, 0, 0, 1600).addPos(0, 0, -5, 0).addPos(0, 0, 0, 300)); + case INSPECT: return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(0, 0, 90, 300).addPos(0, 0, 90, 1000).addPos(0, 0, 0, 150)) + .addBus("FRONT", new BusAnimationSequence().addPos(0, 0, 0, 200).addPos(0, 0, 45, 150).addPos(0, 0, 45, 1000).addPos(0, 0, 0, 75)) + .addBus("RELOAD_ROT", new BusAnimationSequence().addPos(0, 0, 0, 300).addPos(45, 0, 0, 500, IType.SIN_FULL).addPos(45, 0, 0, 500).addPos(-45, 0, 0, 50).addPos(-45, 0, 0, 100).addPos(0, 0, 0, 300)) + .addBus("RELOAD_MOVE", new BusAnimationSequence().addPos(0, 0, 0, 300).addPos(0, -2.5, 0, 500, IType.SIN_FULL).addPos(0, -2.5, 0, 500).addPos(0, 0, 0, 350)); + case JAMMED: return new BusAnimation() + .addBus("LATCH", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, 90, 300).addPos(0, 0, 90, 1000).addPos(0, 0, 0, 150)) + .addBus("FRONT", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, 0, 200).addPos(0, 0, 45, 150).addPos(0, 0, 45, 1000).addPos(0, 0, 0, 75)) + .addBus("RELOAD_ROT", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, 0, 300).addPos(45, 0, 0, 500, IType.SIN_FULL).addPos(45, 0, 0, 500).addPos(-45, 0, 0, 50).addPos(-45, 0, 0, 100).addPos(0, 0, 0, 300)) + .addBus("RELOAD_MOVE", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, 0, 300).addPos(0, -2.5, 0, 500, IType.SIN_FULL).addPos(0, -2.5, 0, 500).addPos(0, 0, 0, 350)); + } + + return null; + }; + + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_DANI_ANIMS = (stack, type) -> { + switch(type) { + case EQUIP: return new BusAnimation().addBus("EQUIP", new BusAnimationSequence().addPos(360 * 3, 0, 0, 1000, IType.SIN_DOWN)); + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, 0, 50).addPos(0, 0, -3, 50).addPos(0, 0, 0, 250)) + .addBus("HAMMER", new BusAnimationSequence().addPos(0, 0, 1, 50).addPos(0, 0, 1, 300).addPos(0, 0, 0, 200)) + .addBus("DRUM", new BusAnimationSequence().addPos(0, 0, 0, 350).addPos(0, 0, 1, 200)); + case CYCLE_DRY: return new BusAnimation() + .addBus("HAMMER", new BusAnimationSequence().addPos(0, 0, 1, 50).addPos(0, 0, 1, 200).addPos(0, 0, 0, 200)) + .addBus("DRUM", new BusAnimationSequence().addPos(0, 0, 0, 350).addPos(0, 0, 1, 200)); + } + + return LAMBDA_ATLAS_ANIMS.apply(stack, type); + }; +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory40mm.java b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory40mm.java new file mode 100644 index 000000000..c555e08e9 --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory40mm.java @@ -0,0 +1,106 @@ +package com.hbm.items.weapon.sedna.factory; + +import java.util.function.BiConsumer; +import java.util.function.BiFunction; + +import com.hbm.entity.projectile.EntityBulletBaseMK4; +import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.BulletConfig; +import com.hbm.items.weapon.sedna.Crosshair; +import com.hbm.items.weapon.sedna.GunConfig; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.ItemGunBaseNT.LambdaContext; +import com.hbm.items.weapon.sedna.factory.GunFactory.EnumAmmo; +import com.hbm.items.weapon.sedna.mags.MagazineSingleReload; +import com.hbm.lib.RefStrings; +import com.hbm.main.ResourceManager; +import com.hbm.particle.SpentCasing; +import com.hbm.particle.SpentCasing.CasingType; +import com.hbm.render.anim.BusAnimation; +import com.hbm.render.anim.BusAnimationSequence; +import com.hbm.render.anim.BusAnimationKeyframe.IType; +import com.hbm.render.anim.HbmAnimations.AnimType; + +import net.minecraft.item.ItemStack; +import net.minecraft.util.MovingObjectPosition; + +public class XFactory40mm { + + public static BulletConfig g40_flare; + public static BulletConfig g40; + + public static BiConsumer LAMBDA_STANDARD_EXPLODE = (bullet, mop) -> { + Lego.standardExplode(bullet, mop, 5F); bullet.setDead(); + }; + + public static void init() { + + g40_flare = new BulletConfig().setItem(EnumAmmo.G40_FLARE).setLife(100).setVel(2F).setGrav(0.035D).setRenderRotations(false).setCasing(new SpentCasing(CasingType.STRAIGHT).setColor(0x9E1616).setScale(2F).register("G40Flare")); + g40 = new BulletConfig().setItem(EnumAmmo.G40).setLife(200).setOnImpact(LAMBDA_STANDARD_EXPLODE).setVel(2F).setGrav(0.035D).setCasing(new SpentCasing(CasingType.STRAIGHT).setColor(SpentCasing.COLOR_CASE_40MM).setScale(2, 2F, 1.5F).register("G40")); + + ModItems.gun_flaregun = new ItemGunBaseNT(new GunConfig() + .dura(100).draw(7).inspect(39).crosshair(Crosshair.L_CIRCUMFLEX).smoke(LAMBDA_SMOKE) + .rec(new Receiver(0) + .dmg(15F).delay(20).reload(28).jam(33).sound("hbm:weapon.hkShoot", 1.0F, 1.0F) + .mag(new MagazineSingleReload(0, 1).addConfigs(g40_flare)) + .offset(0.75, -0.0625, -0.1875D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .setupStandardConfiguration() + .anim(LAMBDA_FLAREGUN_ANIMS).orchestra(Orchestras.ORCHESTRA_FLAREGUN) + ).setUnlocalizedName("gun_flaregun").setTextureName(RefStrings.MODID + ":gun_darter"); + + ModItems.gun_congolake = new ItemGunBaseNT(new GunConfig() + .dura(400).draw(7).inspect(39).reloadSequential(true).crosshair(Crosshair.L_CIRCUMFLEX).smoke(LAMBDA_SMOKE) + .rec(new Receiver(0) + .dmg(30F).delay(24).reload(16, 16, 16, 0).jam(0).sound("hbm:weapon.glShoot", 1.0F, 1.0F) + .mag(new MagazineSingleReload(0, 4).addConfigs(g40, g40_flare)) + .offset(0.75, -0.0625, -0.1875D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .setupStandardConfiguration() + .anim(LAMBDA_CONGOLAKE_ANIMS).orchestra(Orchestras.ORCHESTRA_CONGOLAKE) + ).setUnlocalizedName("gun_congolake").setTextureName(RefStrings.MODID + ":gun_darter"); + } + + public static BiConsumer LAMBDA_SMOKE = (stack, ctx) -> { + Lego.handleStandardSmoke(ctx.player, stack, 1500, 0.025D, 1.05D, 0); + }; + + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_FLAREGUN_ANIMS = (stack, type) -> { + switch(type) { + case EQUIP: return new BusAnimation() + .addBus("EQUIP", new BusAnimationSequence().addPos(-90, 0, 0, 0).addPos(0, 0, 0, 350, IType.SIN_DOWN)); + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, 0, 50).addPos(0, 0, -3, 50).addPos(0, 0, 0, 250)) + .addBus("HAMMER", new BusAnimationSequence().addPos(15, 0, 0, 50).addPos(15, 0, 0, 550).addPos(0, 0, 0, 100)); + case CYCLE_DRY: return new BusAnimation() + .addBus("HAMMER", new BusAnimationSequence().addPos(15, 0, 0, 50).addPos(15, 0, 0, 550).addPos(0, 0, 0, 100)); + case RELOAD: return new BusAnimation() + .addBus("OPEN", new BusAnimationSequence().addPos(45, 0, 0, 200, IType.SIN_FULL).addPos(45, 0, 0, 750).addPos(0, 0, 0, 200, IType.SIN_UP)) + .addBus("SHELL", new BusAnimationSequence().addPos(4, -8, -4, 0).addPos(4, -8, -4, 200).addPos(0, 0, -5, 500, IType.SIN_DOWN).addPos(0, 0, 0, 200, IType.SIN_UP)) + .addBus("FLIP", new BusAnimationSequence().addPos(0, 0, 0, 200).addPos(25, 0, 0, 200, IType.SIN_DOWN).addPos(25, 0, 0, 800).addPos(0, 0, 0, 200, IType.SIN_DOWN)); + case JAMMED: return new BusAnimation() + .addBus("OPEN", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(45, 0, 0, 200, IType.SIN_FULL).addPos(45, 0, 0, 500).addPos(0, 0, 0, 200, IType.SIN_UP)) + .addBus("FLIP", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, 0, 200).addPos(25, 0, 0, 200, IType.SIN_DOWN).addPos(25, 0, 0, 550).addPos(0, 0, 0, 200, IType.SIN_DOWN)); + case INSPECT: return new BusAnimation() + .addBus("FLIP", new BusAnimationSequence().addPos(-360 * 3, 0, 0, 1500, IType.SIN_FULL)); + } + + return null; + }; + + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_CONGOLAKE_ANIMS = (stack, type) -> { + int ammo = ((ItemGunBaseNT) stack.getItem()).getConfig(stack, 0).getReceivers(stack)[0].getMagazine(stack).getAmount(stack); + switch(type) { + case EQUIP: return ResourceManager.congolake_anim.get("Equip"); + case CYCLE: return ResourceManager.congolake_anim.get(ammo <= 1 ? "FireEmpty" : "Fire"); + case RELOAD: return ResourceManager.congolake_anim.get(ammo == 0 ? "ReloadEmpty": "ReloadStart"); + case RELOAD_CYCLE: return ResourceManager.congolake_anim.get("Reload"); + case RELOAD_END: return ResourceManager.congolake_anim.get("ReloadEnd"); + case JAMMED: return ResourceManager.congolake_anim.get("Jammed"); + case INSPECT: return ResourceManager.congolake_anim.get("Inspect"); + } + + return null; + }; +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory44.java b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory44.java new file mode 100644 index 000000000..8d4e7e124 --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory44.java @@ -0,0 +1,136 @@ +package com.hbm.items.weapon.sedna.factory; + +import java.util.function.BiFunction; + +import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.BulletConfig; +import com.hbm.items.weapon.sedna.Crosshair; +import com.hbm.items.weapon.sedna.GunConfig; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.factory.GunFactory.EnumAmmo; +import com.hbm.items.weapon.sedna.mags.MagazineFullReload; +import com.hbm.items.weapon.sedna.mags.MagazineSingleReload; +import com.hbm.lib.RefStrings; +import com.hbm.particle.SpentCasing; +import com.hbm.particle.SpentCasing.CasingType; +import com.hbm.render.anim.BusAnimation; +import com.hbm.render.anim.BusAnimationSequence; +import com.hbm.render.anim.BusAnimationKeyframe.IType; +import com.hbm.render.anim.HbmAnimations.AnimType; + +import net.minecraft.item.ItemStack; + +public class XFactory44 { + + public static BulletConfig m44_sp; + public static BulletConfig m44_fmj; + public static BulletConfig m44_jhp; + public static BulletConfig m44_ap; + public static BulletConfig m44_express; + + public static void init() { + SpentCasing casing44 = new SpentCasing(CasingType.STRAIGHT).setColor(SpentCasing.COLOR_CASE_BRASS).setupSmoke(1F, 0.5D, 60, 20); + m44_sp = new BulletConfig().setItem(EnumAmmo.M44_SP) + .setCasing(casing44.clone().register("m44")); + m44_fmj = new BulletConfig().setItem(EnumAmmo.M44_FMJ).setDamage(0.8F).setArmorPiercing(0.1F) + .setCasing(casing44.clone().register("m44fmj")); + m44_jhp = new BulletConfig().setItem(EnumAmmo.M44_JHP).setDamage(1.5F).setArmorPiercing(-0.25F) + .setCasing(casing44.clone().register("m44jhp")); + m44_ap = new BulletConfig().setItem(EnumAmmo.M44_AP).setDoesPenetrate(true).setDamageFalloutByPen(false).setDamage(1.5F).setArmorPiercing(0.15F) + .setCasing(casing44.clone().setColor(SpentCasing.COLOR_CASE_44).register("m44ap")); + m44_express = new BulletConfig().setItem(EnumAmmo.M44_EXPRESS).setDoesPenetrate(true).setDamage(1.5F).setArmorPiercing(0.1F).setWear(1.5F) + .setCasing(casing44.clone().register("m44express")); + + ModItems.gun_henry = new ItemGunBaseNT(new GunConfig() + .dura(300).draw(15).inspect(23).reloadSequential(true).crosshair(Crosshair.CIRCLE).smoke(Lego.LAMBDA_STANDARD_SMOKE) + .rec(new Receiver(0) + .dmg(12F).delay(20).reload(25, 11, 14, 8).jam(45).sound("hbm:weapon.fire.blackPowder", 1.0F, 1.0F) + .mag(new MagazineSingleReload(0, 14).addConfigs(m44_sp, m44_fmj, m44_jhp, m44_ap, m44_express)) + .offset(0.75, -0.0625, -0.1875D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .setupStandardConfiguration() + .anim(LAMBDA_HENRY_ANIMS).orchestra(Orchestras.ORCHESTRA_HENRY) + ).setUnlocalizedName("gun_henry").setTextureName(RefStrings.MODID + ":gun_darter"); + + ModItems.gun_heavy_revolver = new ItemGunBaseNT(new GunConfig() + .dura(600F).draw(10).inspect(23).crosshair(Crosshair.L_CLASSIC).smoke(Lego.LAMBDA_STANDARD_SMOKE) + .rec(new Receiver(0) + .dmg(10F).delay(14).reload(46).jam(23).sound("hbm:weapon.44Shoot", 1.0F, 1.0F) + .mag(new MagazineFullReload(0, 6).addConfigs(m44_sp, m44_fmj, m44_jhp, m44_ap, m44_express)) + .offset(0.75, -0.0625, -0.3125D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE)) + .pp(Lego.LAMBDA_STANDARD_CLICK_PRIMARY) .pr(Lego.LAMBDA_STANDARD_RELOAD) .pt(Lego.LAMBDA_TOGGLE_AIM) + .decider(GunStateDecider.LAMBDA_STANDARD_DECIDER) + .anim(LAMBDA_NOPIP_ANIMS).orchestra(Orchestras.ORCHESTRA_NOPIP) + ).setUnlocalizedName("gun_heavy_revolver").setTextureName(RefStrings.MODID + ":gun_darter"); + } + + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_HENRY_ANIMS = (stack, type) -> { + switch(type) { + case EQUIP: return new BusAnimation() + .addBus("EQUIP", new BusAnimationSequence().addPos(-90, 0, 0, 0).addPos(0, 0, -3, 350, IType.SIN_DOWN)) + .addBus("SIGHT", new BusAnimationSequence().addPos(80, 0, 0, 0).addPos(80, 0, 0, 500).addPos(0, 0, -3, 250, IType.SIN_DOWN)); + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, 0, 50).addPos(0, 0, -1, 50).addPos(0, 0, 0, 250)) + .addBus("SIGHT", new BusAnimationSequence().addPos(35, 0, 0, 100, IType.SIN_DOWN).addPos(0, 0, 0, 100, IType.SIN_FULL)) + .addBus("LEVER", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(-90, 0, 0, 200).addPos(0, 0, 0, 200)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(0, 0, 45, 200, IType.SIN_DOWN).addPos(0, 0, 0, 200, IType.SIN_UP)) + .addBus("HAMMER", new BusAnimationSequence().addPos(30, 0, 0, 50).addPos(30, 0, 0, 550).addPos(0, 0, 0, 200)); + case CYCLE_DRY: return new BusAnimation() + .addBus("LEVER", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(-90, 0, 0, 200).addPos(0, 0, 0, 200)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(0, 0, 45, 200, IType.SIN_DOWN).addPos(0, 0, 0, 200, IType.SIN_UP)) + .addBus("HAMMER", new BusAnimationSequence().addPos(30, 0, 0, 50).addPos(30, 0, 0, 550).addPos(0, 0, 0, 200)); + case RELOAD: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(-60, 0, 0, 400, IType.SIN_FULL)) + .addBus("TWIST", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, -90, 200, IType.SIN_FULL)) + .addBus("BULLET", new BusAnimationSequence().addPos(0, 0, 0, 700).addPos(3, 0, -6, 0).addPos(0, 0, 1, 300, IType.SIN_FULL).addPos(0, 0, 0, 250, IType.SIN_FULL)); + case RELOAD_CYCLE: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(-60, 0, 0, 0)) + .addBus("TWIST", new BusAnimationSequence().addPos(0, 0, -90, 0)) + .addBus("BULLET", new BusAnimationSequence().addPos(3, 0, -6, 0).addPos(0, 0, 1, 300, IType.SIN_FULL).addPos(0, 0, 0, 250, IType.SIN_FULL)); + case RELOAD_END: + boolean empty = ((ItemGunBaseNT) stack.getItem()).getConfig(stack, 0).getReceivers(stack)[0].getMagazine(stack).getAmountBeforeReload(stack) <= 0; + return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(-60, 0, 0, 0).addPos(-60, 0, 0, 300).addPos(0, 0, 0, 400, IType.SIN_FULL)) + .addBus("TWIST", new BusAnimationSequence().addPos(0, 0, -90, 0).addPos(0, 0, 0, 200, IType.SIN_FULL)) + .addBus("LEVER", new BusAnimationSequence().addPos(0, 0, 0, 700).addPos(empty ? -90 : 0, 0, 0, 200).addPos(0, 0, 0, 200)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 700).addPos(0, 0, empty ? 45 : 0, 200, IType.SIN_DOWN).addPos(0, 0, 0, 200, IType.SIN_UP)); + case JAMMED: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(-60, 0, 0, 0).addPos(-60, 0, 0, 300).addPos(0, 0, 0, 400, IType.SIN_FULL)) + .addBus("TWIST", new BusAnimationSequence().addPos(0, 0, -90, 0).addPos(0, 0, 0, 200, IType.SIN_FULL)) + .addBus("LEVER", new BusAnimationSequence().addPos(0, 0, 0, 700).addPos(-90, 0, 0, 200).addPos(0, 0, 0, 200).addPos(0, 0, 0, 500).addPos(-90, 0, 0, 200).addPos(0, 0, 0, 200).addPos(0, 0, 0, 200).addPos(-90, 0, 0, 200).addPos(0, 0, 0, 200)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 700).addPos(0, 0, 45, 200, IType.SIN_DOWN).addPos(0, 0, 0, 200, IType.SIN_UP).addPos(0, 0, 0, 500).addPos(0, 0, 45, 200, IType.SIN_FULL).addPos(0, 0, 45, 600).addPos(0, 0, 0, 200, IType.SIN_FULL)); + case INSPECT: return new BusAnimation() + .addBus("YEET", new BusAnimationSequence().addPos(0, 2, 0, 200, IType.SIN_DOWN).addPos(0, 0, 0, 200, IType.SIN_UP)) + .addBus("ROLL", new BusAnimationSequence().addPos(0, 0, 360, 400)); + } + + return null; + }; + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_NOPIP_ANIMS = (stack, type) -> { + switch(type) { + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, 0, 50).addPos(0, 0, -3, 50).addPos(0, 0, 0, 250)) + .addBus("HAMMER", new BusAnimationSequence().addPos(0, 0, 1, 50).addPos(0, 0, 1, 400).addPos(0, 0, 0, 200)) + .addBus("DRUM", new BusAnimationSequence().addPos(0, 0, 0, 450).addPos(0, 0, 1, 200)); + case CYCLE_DRY: return new BusAnimation() + .addBus("HAMMER", new BusAnimationSequence().addPos(0, 0, 1, 50).addPos(0, 0, 1, 300 + 100).addPos(0, 0, 0, 200)) + .addBus("DRUM", new BusAnimationSequence().addPos(0, 0, 0, 450).addPos(0, 0, 1, 200)); + case EQUIP: return new BusAnimation().addBus("ROTATE", new BusAnimationSequence().addPos(90, 0, 0, 0).addPos(0, 0, 0, 500, IType.SIN_DOWN)); + case RELOAD: return new BusAnimation() + .addBus("RELAOD_TILT", new BusAnimationSequence().addPos(-15, 0, 0, 100).addPos(65, 0, 0, 100).addPos(45, 0, 0, 50).addPos(0, 0, 0, 200).addPos(0, 0, 0, 1450).addPos(-80, 0, 0, 100).addPos(-80, 0, 0, 100).addPos(0, 0, 0, 200)) + .addBus("RELOAD_CYLINDER", new BusAnimationSequence().addPos(0, 0, 0, 200).addPos(90, 0, 0, 100).addPos(90, 0, 0, 1700).addPos(0, 0, 0, 70)) + .addBus("RELOAD_LIFT", new BusAnimationSequence().addPos(0, 0, 0, 350).addPos(-45, 0, 0, 250).addPos(-45, 0, 0, 350).addPos(-15, 0, 0, 200).addPos(-15, 0, 0, 1050).addPos(0, 0, 0, 100)) + .addBus("RELOAD_JOLT", new BusAnimationSequence().addPos(0, 0, 0, 600).addPos(2, 0, 0, 50).addPos(0, 0, 0, 100)) + .addBus("RELOAD_BULLETS", new BusAnimationSequence().addPos(0, 0, 0, 650).addPos(10, 0, 0, 300).addPos(10, 0, 0, 200).addPos(0, 0, 0, 700)) + .addBus("RELOAD_BULLETS_CON", new BusAnimationSequence().addPos(1, 0, 0, 0).addPos(1, 0, 0, 950).addPos(0, 0, 0, 1 ) ); + case INSPECT: + case JAMMED: return new BusAnimation() + .addBus("RELAOD_TILT", new BusAnimationSequence().addPos(-15, 0, 0, 100).addPos(65, 0, 0, 100).addPos(45, 0, 0, 50).addPos(0, 0, 0, 200).addPos(0, 0, 0, 200).addPos(-80, 0, 0, 100).addPos(-80, 0, 0, 100).addPos(0, 0, 0, 200)) + .addBus("RELOAD_CYLINDER", new BusAnimationSequence().addPos(0, 0, 0, 200).addPos(90, 0, 0, 100).addPos(90, 0, 0, 450).addPos(0, 0, 0, 70)); + } + + return null; + }; +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory762mm.java b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory762mm.java new file mode 100644 index 000000000..fc4398ebb --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory762mm.java @@ -0,0 +1,93 @@ +package com.hbm.items.weapon.sedna.factory; + +import java.util.function.BiConsumer; +import java.util.function.BiFunction; + +import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.BulletConfig; +import com.hbm.items.weapon.sedna.Crosshair; +import com.hbm.items.weapon.sedna.GunConfig; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.ItemGunBaseNT.LambdaContext; +import com.hbm.items.weapon.sedna.factory.GunFactory.EnumAmmo; +import com.hbm.items.weapon.sedna.mags.MagazineFullReload; +import com.hbm.lib.RefStrings; +import com.hbm.particle.SpentCasing; +import com.hbm.particle.SpentCasing.CasingType; +import com.hbm.render.anim.BusAnimation; +import com.hbm.render.anim.BusAnimationSequence; +import com.hbm.render.anim.BusAnimationKeyframe.IType; +import com.hbm.render.anim.HbmAnimations.AnimType; + +import net.minecraft.item.ItemStack; + +public class XFactory762mm { + + public static BulletConfig r762_sp; + public static BulletConfig r762_fmj; + public static BulletConfig r762_jhp; + public static BulletConfig r762_ap; + public static BulletConfig r762_du; + + public static void init() { + SpentCasing casing9 = new SpentCasing(CasingType.BOTTLENECK).setColor(SpentCasing.COLOR_CASE_BRASS); + r762_sp = new BulletConfig().setItem(EnumAmmo.R762_SP) + .setCasing(casing9.clone().register("r762")); + r762_fmj = new BulletConfig().setItem(EnumAmmo.R762_FMJ).setDamage(0.8F).setArmorPiercing(0.1F) + .setCasing(casing9.clone().register("r762fmj")); + r762_jhp = new BulletConfig().setItem(EnumAmmo.R762_JHP).setDamage(1.5F).setArmorPiercing(-0.25F) + .setCasing(casing9.clone().register("r762jhp")); + r762_ap = new BulletConfig().setItem(EnumAmmo.R762_AP).setDoesPenetrate(true).setDamageFalloutByPen(false).setDamage(1.5F).setArmorPiercing(0.15F) + .setCasing(casing9.clone().setColor(SpentCasing.COLOR_CASE_44).register("r762ap")); + r762_du = new BulletConfig().setItem(EnumAmmo.R762_DU).setDoesPenetrate(true).setDamageFalloutByPen(false).setDamage(2.5F).setArmorPiercing(0.25F) + .setCasing(casing9.clone().setColor(SpentCasing.COLOR_CASE_44).register("r762du")); + + ModItems.gun_carbine = new ItemGunBaseNT(new GunConfig() + .dura(3_000).draw(10).inspect(31).reloadSequential(true).crosshair(Crosshair.CIRCLE).smoke(LAMBDA_SMOKE) + .rec(new Receiver(0) + .dmg(5F).delay(5).dry(15).spread(0.0F).reload(30, 0, 15, 0).jam(60).sound("hbm:weapon.fire.blackPowder", 1.0F, 1.0F) + .mag(new MagazineFullReload(0, 14).addConfigs(r762_sp, r762_fmj, r762_jhp, r762_ap, r762_du)) + .offset(1, -0.0625 * 2.5, -0.25D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .setupStandardConfiguration() + .anim(LAMBDA_CARBINE_ANIMS).orchestra(Orchestras.ORCHESTRA_CARBIBE) + ).setUnlocalizedName("gun_carbine").setTextureName(RefStrings.MODID + ":gun_darter"); + } + + public static BiConsumer LAMBDA_SMOKE = (stack, ctx) -> { + Lego.handleStandardSmoke(ctx.player, stack, 1500, 0.075D, 1.1D, 0); + }; + + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_CARBINE_ANIMS = (stack, type) -> { + boolean empty = ((ItemGunBaseNT) stack.getItem()).getConfig(stack, 0).getReceivers(stack)[0].getMagazine(stack).getAmount(stack) <= 0; + switch(type) { + case EQUIP: return new BusAnimation() + .addBus("EQUIP", new BusAnimationSequence().addPos(45, 0, 0, 0).addPos(0, 0, 0, 500, IType.SIN_FULL)); + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, ItemGunBaseNT.getIsAiming(stack) ? -0.25 : -0.5, 50, IType.SIN_DOWN).addPos(0, 0, 0, 100, IType.SIN_FULL)) + .addBus("SLIDE", new BusAnimationSequence().addPos(0, 0, -1, 50, IType.SIN_DOWN).addPos(0, 0, 0, 100, IType.SIN_UP)) + .addBus(empty ? "NULL" : "REL", new BusAnimationSequence().addPos(0, 0, 0.25, 50).addPos(0, 0.125, 1.25, 100, IType.SIN_UP)); + case CYCLE_DRY: return new BusAnimation() + .addBus("SLIDE", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, -1, 100, IType.SIN_DOWN).addPos(0, 0, -1, 50).addPos(0, 0, 0, 100, IType.SIN_UP)); + case RELOAD: return new BusAnimation() + .addBus("MAG", new BusAnimationSequence().addPos(0, -4, 0, 250, IType.SIN_UP).addPos(0, -4, 0, 750).addPos(0, 0, 0, 500, IType.SIN_DOWN)) + .addBus("LIFT", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(-25, 0, 0, 250, IType.SIN_FULL).addPos(-25, 0, 0, 1000)) + .addBus("BULLET", new BusAnimationSequence().addPos(empty ? 1 : 0, 0, 0, 0).addPos(0, 0, 0, 1000)); + case RELOAD_END: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(-25, 0, 0, 0).addPos(-25, 0, 0, 750).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("SLIDE", new BusAnimationSequence().addPos(0, 0, 0, 250).addPos(0, 0, -1, 100, IType.SIN_DOWN).addPos(0, 0, -1, 50).addPos(0, 0, 0, 100, IType.SIN_UP)) + .addBus("REL", new BusAnimationSequence().addPos(0, 0, 0, 250).addPos(0, 0, 0.25, 150).addPos(0, 0.125, 1.25, 100, IType.SIN_UP)); + case JAMMED: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(-25, 0, 0, 0).addPos(-25, 0, 0, 750).addPos(0, 0, 0, 500, IType.SIN_FULL).addPos(0, 0, 0, 250).addPos(-25, 0, 0, 250, IType.SIN_FULL).addPos(-25, 0, 0, 750).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("SLIDE", new BusAnimationSequence().addPos(0, 0, 0, 250).addPos(0, 0, -1, 100, IType.SIN_DOWN).addPos(0, 0, -1, 50).addPos(0, 0, -0.25, 100, IType.SIN_UP).addPos(0, 0, -0.25, 1250).addPos(0, 0, -1, 100, IType.SIN_DOWN).addPos(0, 0, -1, 50).addPos(0, 0, 0, 100, IType.SIN_UP)) + .addBus("REL", new BusAnimationSequence().addPos(0, 0, 0, 250).addPos(0, 0, 0.25, 150).addPos(0, 0.125, 1, 100, IType.SIN_UP).addPos(0, 0.125, 1, 1250).addPos(0, 0.125, 0.25, 100, IType.SIN_DOWN).addPos(0, 0.125, 1, 100, IType.SIN_UP)); + case INSPECT: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(-25, 0, 0, 250, IType.SIN_FULL).addPos(-25, 0, 0, 1500).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("SLIDE", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, -0.75, 150, IType.SIN_DOWN).addPos(0, 0, -0.75, 1000).addPos(0, 0, 0, 100, IType.SIN_UP)) + .addBus(empty ? "NULL" : "REL", new BusAnimationSequence().addPos(0, 0.125, 1.25, 0).addPos(0, 0.125, 1.25, 500).addPos(0, 0.125, 0.5, 150, IType.SIN_DOWN).addPos(0, 0.125, 0.5, 1000).addPos(0, 0.125, 1.25, 100, IType.SIN_UP)); + } + + return null; + }; +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory9mm.java b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory9mm.java new file mode 100644 index 000000000..e7c93bff9 --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactory9mm.java @@ -0,0 +1,90 @@ +package com.hbm.items.weapon.sedna.factory; + +import java.util.function.BiConsumer; +import java.util.function.BiFunction; + +import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.BulletConfig; +import com.hbm.items.weapon.sedna.Crosshair; +import com.hbm.items.weapon.sedna.GunConfig; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.ItemGunBaseNT.LambdaContext; +import com.hbm.items.weapon.sedna.factory.GunFactory.EnumAmmo; +import com.hbm.items.weapon.sedna.mags.MagazineFullReload; +import com.hbm.lib.RefStrings; +import com.hbm.particle.SpentCasing; +import com.hbm.particle.SpentCasing.CasingType; +import com.hbm.render.anim.BusAnimation; +import com.hbm.render.anim.BusAnimationSequence; +import com.hbm.render.anim.BusAnimationKeyframe.IType; +import com.hbm.render.anim.HbmAnimations.AnimType; + +import net.minecraft.item.ItemStack; + +public class XFactory9mm { + + public static BulletConfig p9_sp; + public static BulletConfig p9_fmj; + public static BulletConfig p9_jhp; + public static BulletConfig p9_ap; + + public static void init() { + SpentCasing casing9 = new SpentCasing(CasingType.STRAIGHT).setColor(SpentCasing.COLOR_CASE_BRASS); + p9_sp = new BulletConfig().setItem(EnumAmmo.P9_SP) + .setCasing(casing9.clone().register("p9")); + p9_fmj = new BulletConfig().setItem(EnumAmmo.P9_FMJ).setDamage(0.8F).setArmorPiercing(0.1F) + .setCasing(casing9.clone().register("p9fmj")); + p9_jhp = new BulletConfig().setItem(EnumAmmo.P9_JHP).setDamage(1.5F).setArmorPiercing(-0.25F) + .setCasing(casing9.clone().register("p9jhp")); + p9_ap = new BulletConfig().setItem(EnumAmmo.P9_AP).setDoesPenetrate(true).setDamageFalloutByPen(false).setDamage(1.5F).setArmorPiercing(0.15F) + .setCasing(casing9.clone().setColor(SpentCasing.COLOR_CASE_44).register("p9ap")); + + ModItems.gun_greasegun = new ItemGunBaseNT(new GunConfig() + .dura(3_000).draw(15).inspect(31).crosshair(Crosshair.L_CIRCLE).smoke(LAMBDA_SMOKE) + .rec(new Receiver(0) + .dmg(5F).delay(4).dry(40).auto(true).spread(0.015F).reload(60).jam(55).sound("hbm:weapon.fire.blackPowder", 1.0F, 1.0F) + .mag(new MagazineFullReload(0, 30).addConfigs(p9_sp, p9_fmj, p9_jhp, p9_ap)) + .offset(1, -0.0625 * 2.5, -0.25D) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .setupStandardConfiguration() + .anim(LAMBDA_GREASEGUN_ANIMS).orchestra(Orchestras.ORCHESTRA_GREASEGUN) + ).setUnlocalizedName("gun_greasegun").setTextureName(RefStrings.MODID + ":gun_darter"); + } + + public static BiConsumer LAMBDA_SMOKE = (stack, ctx) -> { + Lego.handleStandardSmoke(ctx.player, stack, 2000, 0.05D, 1.1D, 0); + }; + + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_GREASEGUN_ANIMS = (stack, type) -> { + switch(type) { + case EQUIP: return new BusAnimation() + .addBus("EQUIP", new BusAnimationSequence().addPos(80, 0, 0, 0).addPos(80, 0, 0, 500).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("STOCK", new BusAnimationSequence().addPos(0, 0, -4, 0).addPos(0, 0, -4, 200).addPos(0, 0, 0, 300, IType.SIN_FULL)); + case CYCLE: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, ItemGunBaseNT.getIsAiming(stack) ? -0.25 : -0.5, 50, IType.SIN_DOWN).addPos(0, 0, 0, 100, IType.SIN_FULL)) + .addBus("FLAP", new BusAnimationSequence().addPos(0, 0, 15, 100, IType.SIN_DOWN).addPos(0, 0, -5, 100, IType.SIN_FULL).addPos(0, 0, 0, 50, IType.SIN_FULL)); + case CYCLE_DRY: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(-25, 0, 0, 250, IType.SIN_FULL).addPos(-25, 0, 0, 750).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, -45, 250, IType.SIN_FULL).addPos(0, 0, -45, 750).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("HANDLE", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, 0, 250).addPos(-90, 0, 0, 250, IType.SIN_FULL).addPos(0, 0, 0, 250, IType.SIN_FULL)); + case RELOAD: + boolean empty = ((ItemGunBaseNT) stack.getItem()).getConfig(stack, 0).getReceivers(stack)[0].getMagazine(stack).getAmountBeforeReload(stack) <= 0; + return new BusAnimation() + .addBus("MAG", new BusAnimationSequence().addPos(0, -8, 0, 250, IType.SIN_UP).addPos(0, -8, 0, 750).addPos(0, 0, 0, 500, IType.SIN_DOWN)) + .addBus("LIFT", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(-25, 0, 0, 250, IType.SIN_FULL).addPos(-25, 0, 0, 1750).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 1750).addPos(0, 0, -45, 250, IType.SIN_FULL).addPos(0, 0, -45, 500).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("HANDLE", new BusAnimationSequence().addPos(0, 0, 0, 2000).addPos(-90, 0, 0, 250, IType.SIN_FULL).addPos(0, 0, 0, 250, IType.SIN_FULL)) + .addBus("BULLET", new BusAnimationSequence().addPos(empty ? 1 : 0, 0, 0, 0).addPos(0, 0, 0, 1000)); + case JAMMED: return new BusAnimation() + .addBus("LIFT", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(-25, 0, 0, 250, IType.SIN_FULL).addPos(-25, 0, 0, 1500).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, -45, 250, IType.SIN_FULL).addPos(0, 0, -45, 1500).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("HANDLE", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 0, 0, 250).addPos(-90, 0, 0, 250, IType.SIN_FULL).addPos(0, 0, 0, 250, IType.SIN_FULL).addPos(0, 0, 0, 250).addPos(-90, 0, 0, 250, IType.SIN_FULL).addPos(0, 0, 0, 250, IType.SIN_FULL)); + case INSPECT: return new BusAnimation() + .addBus("TURN", new BusAnimationSequence().addPos(0, 0, -45, 150).addPos(0, 0, 45, 150).addPos(0, 0, 45, 50).addPos(0, 0, 0, 250).addPos(0, 0, 0, 500).addPos(0, 0, 45, 150).addPos(0, 0, -45, 150).addPos(0, 0, 0, 150)) + .addBus("FLAP", new BusAnimationSequence().addPos(0, 0, 0, 300).addPos(0, 0, 180, 150).addPos(0, 0, 180, 850).addPos(0, 0, 0, 150)); + } + + return null; + }; +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/factory/XFactoryBlackPowder.java b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactoryBlackPowder.java new file mode 100644 index 000000000..dea104d5c --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/factory/XFactoryBlackPowder.java @@ -0,0 +1,71 @@ +package com.hbm.items.weapon.sedna.factory; + +import java.util.function.BiFunction; + +import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.BulletConfig; +import com.hbm.items.weapon.sedna.Crosshair; +import com.hbm.items.weapon.sedna.GunConfig; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.factory.GunFactory.EnumAmmo; +import com.hbm.items.weapon.sedna.mags.MagazineFullReload; +import com.hbm.lib.RefStrings; +import com.hbm.render.anim.BusAnimation; +import com.hbm.render.anim.BusAnimationSequence; +import com.hbm.render.anim.BusAnimationKeyframe.IType; +import com.hbm.render.anim.HbmAnimations.AnimType; + +import net.minecraft.item.ItemStack; + +public class XFactoryBlackPowder { + + public static void init() { + + BulletConfig stone = new BulletConfig().setItem(EnumAmmo.STONE).setSpread(0.025F).setRicochetAngle(15); + BulletConfig flint = new BulletConfig().setItem(EnumAmmo.STONE_AP).setSpread(0.01F).setRicochetAngle(5).setDoesPenetrate(true).setDamage(1.75F); + BulletConfig iron = new BulletConfig().setItem(EnumAmmo.STONE_IRON).setSpread(0F).setRicochetAngle(90).setRicochetCount(5).setDoesPenetrate(true).setDamageFalloutByPen(false).setDamage(2F); + BulletConfig shot = new BulletConfig().setItem(EnumAmmo.STONE_SHOT).setSpread(0.1F).setRicochetAngle(45).setProjectiles(6, 6).setDamage(0.5F); + + ModItems.gun_pepperbox = new ItemGunBaseNT(new GunConfig() + .dura(300).draw(4).inspect(23).crosshair(Crosshair.CIRCLE).smoke(Lego.LAMBDA_STANDARD_SMOKE) + .rec(new Receiver(0) + .dmg(5F).delay(27).reload(67).jam(58).sound("hbm:weapon.fire.blackPowder", 1.0F, 1.0F) + .mag(new MagazineFullReload(0, 6).addConfigs(stone, flint, iron, shot)) + .canFire(Lego.LAMBDA_STANDARD_CAN_FIRE).fire(Lego.LAMBDA_STANDARD_FIRE).recoil(Lego.LAMBDA_STANDARD_RECOIL)) + .setupStandardConfiguration() + .anim(LAMBDA_PEPPERBOX_ANIMS).orchestra(Orchestras.ORCHESTRA_PEPPERBOX) + ).setUnlocalizedName("gun_pepperbox").setTextureName(RefStrings.MODID + ":gun_darter"); + } + + @SuppressWarnings("incomplete-switch") public static BiFunction LAMBDA_PEPPERBOX_ANIMS = (stack, type) -> { + switch(type) { + case CYCLE: return new BusAnimation() + .addBus("ROTATE", new BusAnimationSequence().addPos(0, 0, 0, 1025).addPos(60, 0, 0, 250)) + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, 0, 50).addPos(45, 0, 0, 150, IType.SIN_DOWN).addPos(45, 0, 0, 50).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("HAMMER", new BusAnimationSequence().addPos(80, 0, 0, 25).addPos(80, 0, 0, 1000).addPos(0, 0, 0, 250)) + .addBus("TRIGGER", new BusAnimationSequence().addPos(1, 0, 0, 25).addPos(1, 0, 0, 250).addPos(0, 0, 0, 100)); + case CYCLE_DRY: return new BusAnimation() + .addBus("ROTATE", new BusAnimationSequence().addPos(0, 0, 0, 525).addPos(60, 0, 0, 250)) + .addBus("HAMMER", new BusAnimationSequence().addPos(80, 0, 0, 25).addPos(80, 0, 0, 500).addPos(0, 0, 0, 250)) + .addBus("TRIGGER", new BusAnimationSequence().addPos(1, 0, 0, 25).addPos(1, 0, 0, 250).addPos(0, 0, 0, 100)); + case EQUIP: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(-45, 0, 0, 0).addPos(0, 0, 0, 200, IType.SIN_DOWN)); + case RELOAD: return new BusAnimation() + .addBus("RECOIL", new BusAnimationSequence().addPos(90, 0, 0, 500, IType.SIN_FULL).addPos(90, 0, 0, 1600).addPos(0, 0, 0, 500, IType.SIN_FULL).addPos(-5, 0, 0, 200, IType.SIN_UP).addPos(0, 0, 0, 200, IType.SIN_DOWN)) + .addBus("TRANSLATE", new BusAnimationSequence().addPos(0, -12, 5, 500, IType.SIN_FULL).addPos(0, -12, 5, 700).addPos(0, -13, 5, 200).addPos(0, -12, 5, 200).addPos(0, -12, 5, 500).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("LOADER", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, 5, -5, 0).addPos(0, 0, -0.1, 500, IType.SIN_FULL).addPos(0, 0, -1, 200).addPos(0, 0, -1, 200).addPos(0, 0, -0.1, 200).addPos(0, 5, -5, 500, IType.SIN_FULL).addPos(0, 0, 0, 0)) + .addBus("ROTATE", new BusAnimationSequence().addPos(0, 0, 0, 2600).addPos(-360 * 1, 0, 0, 750, IType.SIN_FULL)) + .addBus("SHOT", new BusAnimationSequence().addPos(1, 0, 0, 1400).addPos(0, 0, 0, 0)); + case INSPECT: return new BusAnimation() + .addBus("ROTATE", new BusAnimationSequence().addPos(-360 * 1, 0, 0, 750, IType.SIN_FULL)) + .addBus("RECOIL", new BusAnimationSequence().addPos(-5, 0, 0, 200, IType.SIN_UP).addPos(0, 0, 0, 200, IType.SIN_DOWN)); + case JAMMED: return new BusAnimation() + .addBus("ROTATE", new BusAnimationSequence().addPos(0, 0, 0, 1300).addPos(60, 0, 0, 500, IType.SIN_FULL).addPos(60, 0, 0, 400).addPos(0, 0, 0, 500, IType.SIN_FULL)) + .addBus("TRANSLATE", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(0, -6, 0, 400, IType.SIN_FULL).addPos(0, -6, 0, 2000).addPos(0, 0, 0, 400, IType.SIN_FULL)) + .addBus("RECOIL", new BusAnimationSequence().addPos(0, 0, 0, 500).addPos(45, 0, 0, 400, IType.SIN_FULL).addPos(45, 0, 0, 2000).addPos(0, 0, 0, 400, IType.SIN_FULL)); + } + + return null; + }; +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/hud/HUDComponentAmmoCounter.java b/src/main/java/com/hbm/items/weapon/sedna/hud/HUDComponentAmmoCounter.java new file mode 100644 index 000000000..ba61b9baa --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/hud/HUDComponentAmmoCounter.java @@ -0,0 +1,59 @@ +package com.hbm.items.weapon.sedna.hud; + +import org.lwjgl.opengl.GL11; +import org.lwjgl.opengl.GL12; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.mags.IMagazine; + +import net.minecraft.client.Minecraft; +import net.minecraft.client.gui.ScaledResolution; +import net.minecraft.client.renderer.RenderHelper; +import net.minecraft.client.renderer.entity.RenderItem; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.item.ItemStack; +import net.minecraftforge.client.event.RenderGameOverlayEvent.ElementType; +import net.minecraftforge.client.event.RenderGameOverlayEvent.Pre; + +public class HUDComponentAmmoCounter implements IHUDComponent { + + protected static final RenderItem itemRenderer = RenderItem.getInstance(); + protected int receiver; + protected boolean mirrored; + + public HUDComponentAmmoCounter(int receiver) { + this(receiver, false); + } + + public HUDComponentAmmoCounter(int receiver, boolean mirror) { + this.receiver = receiver; + this.mirrored = mirror; + } + + @Override + public int getComponentHeight(EntityPlayer player, ItemStack stack){ + return 22; + } + + @Override + public void renderHUDComponent(Pre event, ElementType type, EntityPlayer player, ItemStack stack, int bottomOffset, int gunIndex) { + + ScaledResolution resolution = event.resolution; + Minecraft mc = Minecraft.getMinecraft(); + + int pX = resolution.getScaledWidth() / 2 + (mirrored ? -(62 + 36 + 52) : (62 + 36)); + int pZ = resolution.getScaledHeight() - bottomOffset - 21; + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + IMagazine mag = gun.getConfig(stack, gunIndex).getReceivers(stack)[this.receiver].getMagazine(stack); + + mc.fontRenderer.drawString(mag.reportAmmoStateForHUD(stack), pX + 17, pZ + 6, 0xFFFFFF); + + GL11.glDisable(GL11.GL_BLEND); + GL11.glEnable(GL12.GL_RESCALE_NORMAL); + RenderHelper.enableGUIStandardItemLighting(); + itemRenderer.renderItemAndEffectIntoGUI(mc.fontRenderer, mc.getTextureManager(), mag.getIconForHUD(stack), pX, pZ); + RenderHelper.disableStandardItemLighting(); + GL11.glEnable(GL11.GL_ALPHA_TEST); + GL11.glDisable(GL12.GL_RESCALE_NORMAL); + } +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/hud/HUDComponentDurabilityBar.java b/src/main/java/com/hbm/items/weapon/sedna/hud/HUDComponentDurabilityBar.java new file mode 100644 index 000000000..0afc6462e --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/hud/HUDComponentDurabilityBar.java @@ -0,0 +1,52 @@ +package com.hbm.items.weapon.sedna.hud; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.lib.RefStrings; + +import net.minecraft.client.Minecraft; +import net.minecraft.client.gui.ScaledResolution; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.item.ItemStack; +import net.minecraft.util.ResourceLocation; +import net.minecraftforge.client.event.RenderGameOverlayEvent.ElementType; +import net.minecraftforge.client.event.RenderGameOverlayEvent.Pre; + +public class HUDComponentDurabilityBar implements IHUDComponent { + + private static final ResourceLocation misc = new ResourceLocation(RefStrings.MODID + ":textures/misc/overlay_misc.png"); + + protected boolean mirrored = false; + + public HUDComponentDurabilityBar() { + this(false); + } + public HUDComponentDurabilityBar(boolean mirror) { + this.mirrored = mirror; + } + + @Override + public int getComponentHeight(EntityPlayer player, ItemStack stack) { + return 5; + } + + @Override + public void renderHUDComponent(Pre event, ElementType type, EntityPlayer player, ItemStack stack, int bottomOffset, int gunIndex) { + + ScaledResolution resolution = event.resolution; + Minecraft mc = Minecraft.getMinecraft(); + + int pX = resolution.getScaledWidth() / 2 + (mirrored ? -(62 + 36 + 52) : (62 + 36)); + int pZ = resolution.getScaledHeight() - 21; + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + int dura = (int) (50 * gun.getWear(stack, gunIndex) / gun.getConfig(stack, gunIndex).getDurability(stack)); + + GL11.glColor4f(1F, 1F, 1F, 1F); + + mc.renderEngine.bindTexture(misc); + mc.ingameGUI.drawTexturedModalRect(pX, pZ + 16, 94, 0, 52, 3); + mc.ingameGUI.drawTexturedModalRect(pX + 1, pZ + 16, 95, 3, 50 - dura, 3); + } +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/hud/IHUDComponent.java b/src/main/java/com/hbm/items/weapon/sedna/hud/IHUDComponent.java new file mode 100644 index 000000000..071ad0ad6 --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/hud/IHUDComponent.java @@ -0,0 +1,12 @@ +package com.hbm.items.weapon.sedna.hud; + +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.item.ItemStack; +import net.minecraftforge.client.event.RenderGameOverlayEvent.ElementType; +import net.minecraftforge.client.event.RenderGameOverlayEvent.Pre; + +public interface IHUDComponent { + + public int getComponentHeight(EntityPlayer player, ItemStack stack); + public void renderHUDComponent(Pre event, ElementType type, EntityPlayer player, ItemStack stack, int bottomOffset, int gunIndex); +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/mags/IMagazine.java b/src/main/java/com/hbm/items/weapon/sedna/mags/IMagazine.java index 55d7d4bb7..f36e9767f 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/mags/IMagazine.java +++ b/src/main/java/com/hbm/items/weapon/sedna/mags/IMagazine.java @@ -1,5 +1,7 @@ package com.hbm.items.weapon.sedna.mags; +import com.hbm.particle.SpentCasing; + import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; @@ -9,12 +11,12 @@ import net.minecraft.item.ItemStack; * * @author hbm */ -public interface IMagazine { +public interface IMagazine { /** What ammo is loaded currently */ - public Object getType(ItemStack stack); + public T getType(ItemStack stack); /** Sets the mag's ammo type */ - public void setType(ItemStack stack, Object type); + public void setType(ItemStack stack, T type); /** How much ammo this mag can carry */ public int getCapacity(ItemStack stack); /** How much ammo is currently loaded */ @@ -26,5 +28,18 @@ public interface IMagazine { /** The action done at the end of one reload cycle, either loading one shell or replacing the whole mag */ public void reloadAction(ItemStack stack, EntityPlayer player); /** The stack that should be displayed for the ammo HUD */ - public ItemStack getIcon(ItemStack stack); + public ItemStack getIconForHUD(ItemStack stack); + /** It explains itself */ + public String reportAmmoStateForHUD(ItemStack stack); + /** Casing config to use then ejecting */ + public SpentCasing getCasing(ItemStack stack); + /** When reloading, remember the amount before reload is initiated */ + public void setAmountBeforeReload(ItemStack stack, int amount); + /** Amount of rounds before reload has started. Do note that the NBT stack sync likely arrives + * after the animation packets, so for RELOAD type anims, use the live ammo count instead! */ + public int getAmountBeforeReload(ItemStack stack); + /** Sets amount of ammo after each reload operation */ + public void setAmountAfterReload(ItemStack stack, int amount); + /** Cached amount of ammo after the most recent reload */ + public int getAmountAfterReload(ItemStack stack); } diff --git a/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineRevolverDrum.java b/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineFullReload.java similarity index 83% rename from src/main/java/com/hbm/items/weapon/sedna/mags/MagazineRevolverDrum.java rename to src/main/java/com/hbm/items/weapon/sedna/mags/MagazineFullReload.java index 628d1a73d..473958f62 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineRevolverDrum.java +++ b/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineFullReload.java @@ -6,9 +6,9 @@ import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; /** Uses individual bullets which are loaded all at once */ -public class MagazineRevolverDrum extends MagazineStandardBase { +public class MagazineFullReload extends MagazineSingleTypeBase { - public MagazineRevolverDrum(int index, int capacity) { + public MagazineFullReload(int index, int capacity) { super(index, capacity); } @@ -16,6 +16,8 @@ public class MagazineRevolverDrum extends MagazineStandardBase { @Override public boolean canReload(ItemStack stack, EntityPlayer player) { + if(this.getAmount(stack) >= this.getCapacity(stack)) return false; + for(ItemStack slot : player.inventory.mainInventory) { if(slot != null) { @@ -24,7 +26,7 @@ public class MagazineRevolverDrum extends MagazineStandardBase { if(config.ammo.matchesRecipe(slot, true)) return true; } } else { - BulletConfig config = (BulletConfig) this.getType(stack); + BulletConfig config = this.getType(stack); if(config == null) { config = this.acceptedBullets.get(0); this.setType(stack, config); } if(config.ammo.matchesRecipe(slot, true)) return true; } @@ -57,7 +59,7 @@ public class MagazineRevolverDrum extends MagazineStandardBase { } //mag has a type set, only load that } else { - BulletConfig config = (BulletConfig) this.getType(stack); + BulletConfig config = this.getType(stack); if(config == null) { config = this.acceptedBullets.get(0); this.setType(stack, config); } //fixing broken NBT if(config.ammo.matchesRecipe(slot, true)) { @@ -70,13 +72,4 @@ public class MagazineRevolverDrum extends MagazineStandardBase { } } } - - @Override - public ItemStack getIcon(ItemStack stack) { - Object o = this.getType(stack); - if(o instanceof BulletConfig) { - return ((BulletConfig) o).ammo.toStack(); - } - return null; - } } diff --git a/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineSingleReload.java b/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineSingleReload.java new file mode 100644 index 000000000..c44175632 --- /dev/null +++ b/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineSingleReload.java @@ -0,0 +1,74 @@ +package com.hbm.items.weapon.sedna.mags; + +import com.hbm.items.weapon.sedna.BulletConfig; + +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.item.ItemStack; + +/** Uses individual bullets which are loaded one by one */ +public class MagazineSingleReload extends MagazineSingleTypeBase { + + public MagazineSingleReload(int index, int capacity) { + super(index, capacity); + } + + /** Returns true if the player has the same ammo if partially loaded, or any valid ammo if not */ + @Override + public boolean canReload(ItemStack stack, EntityPlayer player) { + + if(this.getAmount(stack) >= this.getCapacity(stack)) return false; + + for(ItemStack slot : player.inventory.mainInventory) { + + if(slot != null) { + if(this.getAmount(stack) == 0) { + for(BulletConfig config : this.acceptedBullets) { + if(config.ammo.matchesRecipe(slot, true)) return true; + } + } else { + BulletConfig config = this.getType(stack); + if(config == null) { config = this.acceptedBullets.get(0); this.setType(stack, config); } + if(config.ammo.matchesRecipe(slot, true)) return true; + } + } + } + + return false; + } + + /** Reloads all rounds at once. If the mag is empty, the mag's type will change to the first valid ammo type */ + @Override + public void reloadAction(ItemStack stack, EntityPlayer player) { + + for(int i = 0; i < player.inventory.mainInventory.length; i++) { + ItemStack slot = player.inventory.mainInventory[i]; + + if(slot != null) { + + //mag is empty, assume next best type + if(this.getAmount(stack) == 0) { + + for(BulletConfig config : this.acceptedBullets) { + if(config.ammo.matchesRecipe(slot, true)) { + this.setType(stack, config); + this.setAmount(stack, 1); + player.inventory.decrStackSize(i, 1); + return; + } + } + //mag has a type set, only load that + } else { + BulletConfig config = this.getType(stack); + if(config == null) { config = this.acceptedBullets.get(0); this.setType(stack, config); } //fixing broken NBT + + if(config.ammo.matchesRecipe(slot, true)) { + int alreadyLoaded = this.getAmount(stack); + this.setAmount(stack, alreadyLoaded + 1); + player.inventory.decrStackSize(i, 1); + return; + } + } + } + } + } +} diff --git a/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineStandardBase.java b/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineSingleTypeBase.java similarity index 51% rename from src/main/java/com/hbm/items/weapon/sedna/mags/MagazineStandardBase.java rename to src/main/java/com/hbm/items/weapon/sedna/mags/MagazineSingleTypeBase.java index 874d14195..52ebea6e3 100644 --- a/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineStandardBase.java +++ b/src/main/java/com/hbm/items/weapon/sedna/mags/MagazineSingleTypeBase.java @@ -5,14 +5,17 @@ import java.util.List; import com.hbm.items.weapon.sedna.BulletConfig; import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.particle.SpentCasing; import net.minecraft.item.ItemStack; -/** Base class for typical magazines, i.e. ones that hold bullets, shells, grenades, etc, any ammo item. Type methods deal with BulletConfigs */ -public abstract class MagazineStandardBase implements IMagazine { +/** Base class for typical magazines, i.e. ones that hold bullets, shells, grenades, etc, any ammo item. Stores a single type of BulletConfigs */ +public abstract class MagazineSingleTypeBase implements IMagazine { public static final String KEY_MAG_COUNT = "magcount"; public static final String KEY_MAG_TYPE = "magtype"; + public static final String KEY_MAG_PREV = "magprev"; + public static final String KEY_MAG_AFTER = "magafter"; protected List acceptedBullets = new ArrayList(); @@ -21,32 +24,55 @@ public abstract class MagazineStandardBase implements IMagazine { /** How much ammo this mag can hold */ public int capacity; - public MagazineStandardBase(int index, int capacity) { + public MagazineSingleTypeBase(int index, int capacity) { this.index = index; this.capacity = capacity; } - public MagazineStandardBase addConfigs(BulletConfig... cfgs) { for(BulletConfig cfg : cfgs) acceptedBullets.add(cfg); return this; } + public MagazineSingleTypeBase addConfigs(BulletConfig... cfgs) { for(BulletConfig cfg : cfgs) acceptedBullets.add(cfg); return this; } @Override - public Object getType(ItemStack stack) { + public BulletConfig getType(ItemStack stack) { int type = getMagType(stack, index); if(type >= 0 && type < BulletConfig.configs.size()) { - return BulletConfig.configs.get(type); + BulletConfig cfg = BulletConfig.configs.get(type); + if(acceptedBullets.contains(cfg)) return cfg; + return acceptedBullets.get(0); } return null; } @Override - public void setType(ItemStack stack, Object type) { - if(!(type instanceof BulletConfig)) return; + public void setType(ItemStack stack, BulletConfig type) { int i = BulletConfig.configs.indexOf(type); if(i >= 0) setMagType(stack, index, i); } + @Override + public ItemStack getIconForHUD(ItemStack stack) { + BulletConfig config = this.getType(stack); + if(config != null) return config.ammo.toStack(); + return null; + } + + @Override + public String reportAmmoStateForHUD(ItemStack stack) { + return getAmount(stack) + " / " + getCapacity(stack); + } + + @Override + public SpentCasing getCasing(ItemStack stack) { + return this.getType(stack).casing; + } + @Override public int getCapacity(ItemStack stack) { return capacity; } @Override public int getAmount(ItemStack stack) { return getMagCount(stack, index); } @Override public void setAmount(ItemStack stack, int amount) { setMagCount(stack, index, amount); } + + @Override public void setAmountBeforeReload(ItemStack stack, int amount) { ItemGunBaseNT.setValueInt(stack, KEY_MAG_PREV + index, amount); } + @Override public int getAmountBeforeReload(ItemStack stack) { return ItemGunBaseNT.getValueInt(stack, KEY_MAG_PREV + index); } + @Override public void setAmountAfterReload(ItemStack stack, int amount) { ItemGunBaseNT.setValueInt(stack, KEY_MAG_AFTER + index, amount); } + @Override public int getAmountAfterReload(ItemStack stack) { return ItemGunBaseNT.getValueInt(stack, KEY_MAG_AFTER + index); } // MAG TYPE // public static int getMagType(ItemStack stack, int index) { return ItemGunBaseNT.getValueInt(stack, KEY_MAG_TYPE + index); } //TODO: replace with named tags to avoid ID shifting diff --git a/src/main/java/com/hbm/lib/HbmWorldGen.java b/src/main/java/com/hbm/lib/HbmWorldGen.java index e17c1b0fd..e060239d9 100644 --- a/src/main/java/com/hbm/lib/HbmWorldGen.java +++ b/src/main/java/com/hbm/lib/HbmWorldGen.java @@ -403,14 +403,16 @@ public class HbmWorldGen implements IWorldGenerator { int x = i + rand.nextInt(16) + 8; int z = j + rand.nextInt(16) + 8; int y = world.getHeightValue(x, z); - - if(world.getBlock(x, y - 1, z).canPlaceTorchOnTop(world, x, y - 1, z)) { - world.setBlock(x, y, z, ModBlocks.mine_ap); - TileEntityLandmine landmine = (TileEntityLandmine) world.getTileEntity(x, y, z); - landmine.waitingForPlayer = true; - - if(GeneralConfig.enableDebugMode) - MainRegistry.logger.info("[Debug] Successfully spawned landmine at " + x + " " + (y) + " " + z); + + for(int g = y + 2; g >= y; g--) { + + if(world.getBlock(x, g - 1, z).canPlaceTorchOnTop(world, x, g - 1, z)) { + world.setBlock(x, g, z, ModBlocks.mine_ap); + TileEntityLandmine landmine = (TileEntityLandmine) world.getTileEntity(x, g, z); + landmine.waitingForPlayer = true; + if(GeneralConfig.enableDebugMode) MainRegistry.logger.info("[Debug] Successfully spawned landmine at " + x + " " + g + " " + z); + break; + } } } diff --git a/src/main/java/com/hbm/main/ClientProxy.java b/src/main/java/com/hbm/main/ClientProxy.java index f7d519d68..be61cfd2b 100644 --- a/src/main/java/com/hbm/main/ClientProxy.java +++ b/src/main/java/com/hbm/main/ClientProxy.java @@ -86,10 +86,10 @@ import com.hbm.handler.ImpactWorldHandler; import com.hbm.handler.HbmKeybinds.EnumKeybind; import com.hbm.items.IAnimatedItem; import com.hbm.items.ModItems; +import com.hbm.items.weapon.sedna.factory.GunFactoryClient; import com.hbm.lib.RefStrings; import com.hbm.particle.*; -import com.hbm.particle.helper.ExplosionCreator; -import com.hbm.particle.helper.IParticleCreator; +import com.hbm.particle.helper.*; import com.hbm.particle.psys.engine.EventHandlerParticleEngine; import com.hbm.render.anim.*; import com.hbm.render.anim.HbmAnimations.Animation; @@ -104,7 +104,6 @@ import com.hbm.render.item.*; import com.hbm.render.item.ItemRenderMissileGeneric.RenderMissileType; import com.hbm.render.item.block.*; import com.hbm.render.item.weapon.*; -import com.hbm.render.item.weapon.sedna.*; import com.hbm.render.loader.HmfModelLoader; import com.hbm.render.model.ModelPigeon; import com.hbm.render.tileentity.*; @@ -170,6 +169,11 @@ public class ClientProxy extends ServerProxy { public void handleNHNEICompat(){ IMCHandlerNHNEI.IMCSender(); } + + @Override + public void registerGunCfg() { + GunFactoryClient.init(); + } @Override public void registerTileEntitySpecialRenderer() { @@ -268,6 +272,7 @@ public class ClientProxy extends ServerProxy { ClientRegistry.bindTileEntitySpecialRenderer(TileEntityReactorResearch.class, new RenderSmallReactor()); ClientRegistry.bindTileEntitySpecialRenderer(TileEntityTesla.class, new RenderTesla()); ClientRegistry.bindTileEntitySpecialRenderer(TileEntityBarrel.class, new RenderFluidBarrel()); + ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineRotaryFurnace.class, new RenderRotaryFurnace()); ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineCrystallizer.class, new RenderCrystallizer()); ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMicrowave.class, new RenderMicrowave()); ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineRTG.class, new RenderRTG()); @@ -601,9 +606,6 @@ public class ClientProxy extends ServerProxy { MinecraftForgeClient.registerItemRenderer(ModItems.gun_uac_pistol, new ItemRenderUACPistol()); MinecraftForgeClient.registerItemRenderer(ModItems.gun_coilgun, new ItemRenderWeaponCoilgun()); MinecraftForgeClient.registerItemRenderer(ModItems.gun_cryocannon, new ItemRenderWeaponCryoCannon()); - MinecraftForgeClient.registerItemRenderer(ModItems.gun_congolake, new ItemRenderWeaponCongo()); - //SEDNA - MinecraftForgeClient.registerItemRenderer(ModItems.gun_debug, new ItemRenderDebug()); //multitool MinecraftForgeClient.registerItemRenderer(ModItems.multitool_dig, new ItemRenderMultitool()); MinecraftForgeClient.registerItemRenderer(ModItems.multitool_silk, new ItemRenderMultitool()); @@ -626,6 +628,7 @@ public class ClientProxy extends ServerProxy { RenderingRegistry.registerEntityRenderingHandler(EntitySchrab.class, new RenderFlare()); RenderingRegistry.registerEntityRenderingHandler(EntityBullet.class, new RenderRocket()); RenderingRegistry.registerEntityRenderingHandler(EntityBulletBaseNT.class, new RenderBullet()); + RenderingRegistry.registerEntityRenderingHandler(EntityBulletBaseMK4.class, new RenderBulletMK4()); RenderingRegistry.registerEntityRenderingHandler(EntityRainbow.class, new RenderRainbow()); RenderingRegistry.registerEntityRenderingHandler(EntityNightmareBlast.class, new RenderOminousBullet()); RenderingRegistry.registerEntityRenderingHandler(EntityFire.class, new RenderFireball(ModItems.nothing)); @@ -836,7 +839,6 @@ public class ClientProxy extends ServerProxy { RenderingRegistry.registerBlockHandler(new RenderSteelBeam()); RenderingRegistry.registerBlockHandler(new RenderSteelWall()); RenderingRegistry.registerBlockHandler(new RenderSteelCorner()); - RenderingRegistry.registerBlockHandler(new RenderScaffoldDynamic()); RenderingRegistry.registerBlockHandler(new RenderBarrel()); RenderingRegistry.registerBlockHandler(new RenderFence()); RenderingRegistry.registerBlockHandler(new RenderBarbedWire()); @@ -985,6 +987,7 @@ public class ClientProxy extends ServerProxy { static { particleCreators.put("explosionLarge", new ExplosionCreator()); + particleCreators.put("casingNT", new CasingCreator()); } //mk3, only use this one @@ -1815,11 +1818,11 @@ public class ClientProxy extends ServerProxy { BusAnimation animation = new BusAnimation() .addBus("GUARD_ROT", new BusAnimationSequence() - .addKeyframePosition(90, 0, 1, 0) - .addKeyframePosition(90, 0, 1, 800) - .addKeyframePosition(0, 0, 1, 50)); + .addPos(90, 0, 1, 0) + .addPos(90, 0, 1, 800) + .addPos(0, 0, 1, 50)); - HbmAnimations.hotbar[player.inventory.currentItem] = new Animation(player.getHeldItem().getItem().getUnlocalizedName(), System.currentTimeMillis(), animation); + HbmAnimations.hotbar[player.inventory.currentItem][0] = new Animation(player.getHeldItem().getItem().getUnlocalizedName(), System.currentTimeMillis(), animation); } /* crucible swing */ @@ -1831,17 +1834,17 @@ public class ClientProxy extends ServerProxy { BusAnimation animation = new BusAnimation() .addBus("SWING_ROT", new BusAnimationSequence() - .addKeyframePosition(90 - offset, 90 - offset, 35, 75) - .addKeyframePosition(90 + offset, 90 - offset, -45, 150) - .addKeyframePosition(0, 0, 0, 500)) + .addPos(90 - offset, 90 - offset, 35, 75) + .addPos(90 + offset, 90 - offset, -45, 150) + .addPos(0, 0, 0, 500)) .addBus("SWING_TRANS", new BusAnimationSequence() - .addKeyframePosition(-3, 0, 0, 75) - .addKeyframePosition(8, 0, 0, 150) - .addKeyframePosition(0, 0, 0, 500)); + .addPos(-3, 0, 0, 75) + .addPos(8, 0, 0, 150) + .addPos(0, 0, 0, 500)); Minecraft.getMinecraft().getSoundHandler().playSound(PositionedSoundRecord.func_147674_a(new ResourceLocation("hbm:weapon.cSwing"), 0.8F + player.getRNG().nextFloat() * 0.2F)); - HbmAnimations.hotbar[player.inventory.currentItem] = new Animation(player.getHeldItem().getItem().getUnlocalizedName(), System.currentTimeMillis(), animation); + HbmAnimations.hotbar[player.inventory.currentItem][0] = new Animation(player.getHeldItem().getItem().getUnlocalizedName(), System.currentTimeMillis(), animation); } } @@ -1856,16 +1859,16 @@ public class ClientProxy extends ServerProxy { BusAnimation animation = new BusAnimation() .addBus("SWING_ROT", new BusAnimationSequence() - .addKeyframePosition(0, 0, 90, forward) - .addKeyframePosition(45, 0, 90, sideways) - .addKeyframePosition(0, 0, 0, retire)) + .addPos(0, 0, 90, forward) + .addPos(45, 0, 90, sideways) + .addPos(0, 0, 0, retire)) .addBus("SWING_TRANS", new BusAnimationSequence() - .addKeyframePosition(0, 0, 3, forward) - .addKeyframePosition(2, 0, 2, sideways) - .addKeyframePosition(0, 0, 0, retire)); + .addPos(0, 0, 3, forward) + .addPos(2, 0, 2, sideways) + .addPos(0, 0, 0, retire)); - HbmAnimations.hotbar[player.inventory.currentItem] = new Animation(player.getHeldItem().getItem().getUnlocalizedName(), System.currentTimeMillis(), animation); + HbmAnimations.hotbar[player.inventory.currentItem][0] = new Animation(player.getHeldItem().getItem().getUnlocalizedName(), System.currentTimeMillis(), animation); } else { @@ -1876,17 +1879,17 @@ public class ClientProxy extends ServerProxy { BusAnimation animation = new BusAnimation() .addBus("SWING_ROT", new BusAnimationSequence() - .addKeyframePosition(rot[0], rot[1], rot[2], 0) - .addKeyframePosition(0, 0, 90, forward) - .addKeyframePosition(45, 0, 90, sideways) - .addKeyframePosition(0, 0, 0, retire)) + .addPos(rot[0], rot[1], rot[2], 0) + .addPos(0, 0, 90, forward) + .addPos(45, 0, 90, sideways) + .addPos(0, 0, 0, retire)) .addBus("SWING_TRANS", new BusAnimationSequence() - .addKeyframePosition(trans[0], trans[1], trans[2], 0) - .addKeyframePosition(0, 0, 3, forward) - .addKeyframePosition(2, 0, 2, sideways) - .addKeyframePosition(0, 0, 0, retire)); + .addPos(trans[0], trans[1], trans[2], 0) + .addPos(0, 0, 3, forward) + .addPos(2, 0, 2, sideways) + .addPos(0, 0, 0, retire)); - HbmAnimations.hotbar[player.inventory.currentItem] = new Animation(player.getHeldItem().getItem().getUnlocalizedName(), System.currentTimeMillis(), animation); + HbmAnimations.hotbar[player.inventory.currentItem][0] = new Animation(player.getHeldItem().getItem().getUnlocalizedName(), System.currentTimeMillis(), animation); } } @@ -1898,7 +1901,7 @@ public class ClientProxy extends ServerProxy { BusAnimation anim = item.getAnimation(data, stack); if(anim != null) { - HbmAnimations.hotbar[player.inventory.currentItem] = new Animation(player.getHeldItem().getItem().getUnlocalizedName(), System.currentTimeMillis(), anim); + HbmAnimations.hotbar[player.inventory.currentItem][0] = new Animation(player.getHeldItem().getItem().getUnlocalizedName(), System.currentTimeMillis(), anim); } } } diff --git a/src/main/java/com/hbm/main/CraftingManager.java b/src/main/java/com/hbm/main/CraftingManager.java index b4dc3b87f..cce77298b 100644 --- a/src/main/java/com/hbm/main/CraftingManager.java +++ b/src/main/java/com/hbm/main/CraftingManager.java @@ -79,6 +79,7 @@ public class CraftingManager { RecipeSorter.register("hbm:cargo", CargoShellCraftingHandler.class, RecipeSorter.Category.SHAPELESS, "after:minecraft:shapeless"); RecipeSorter.register("hbm:scraps", ScrapsCraftingHandler.class, RecipeSorter.Category.SHAPELESS, "after:minecraft:shapeless"); RecipeSorter.register("hbm:mku", MKUCraftingHandler.class, RecipeSorter.Category.SHAPED, "after:minecraft:shaped before:minecraft:shapeless"); + RecipeSorter.register("hbm:containerupgrade", ContainerUpgradeCraftingHandler.class, RecipeSorter.Category.SHAPED, "after:minecraft:shaped before:minecraft:shapeless"); } public static void AddCraftingRec() { @@ -282,13 +283,17 @@ public class CraftingManager { addRecipeAuto(new ItemStack(ModBlocks.crate_template, 1), new Object[] { "IPI", "P P", "IPI", 'I', IRON.ingot(), 'P', Items.paper }); addRecipeAuto(new ItemStack(ModBlocks.crate_iron, 1), new Object[] { "PPP", "I I", "III", 'P', IRON.plate(), 'I', IRON.ingot() }); addRecipeAuto(new ItemStack(ModBlocks.crate_steel, 1), new Object[] { "PPP", "I I", "III", 'P', STEEL.plate(), 'I', STEEL.ingot() }); - addRecipeAuto(new ItemStack(ModBlocks.crate_desh, 1), new Object[] { " D ", "DSD", " D ", 'D', ModItems.plate_desh, 'S', ModBlocks.crate_steel }); - addRecipeAuto(new ItemStack(ModBlocks.crate_tungsten, 1), new Object[] { "BPB", "PCP", "BPB", 'B', W.block(), 'P', CU.plateCast(), 'C', ModBlocks.crate_steel }); - addRecipeAuto(new ItemStack(ModBlocks.safe, 1), new Object[] { "LAL", "ACA", "LAL", 'L', PB.plate(), 'A', ALLOY.plate(), 'C', ModBlocks.crate_steel }); + + GameRegistry.addRecipe(new ContainerUpgradeCraftingHandler(new ItemStack(ModBlocks.crate_desh, 1), new Object[] { " D ", "DSD", " D ", 'D', ModItems.plate_desh, 'S', ModBlocks.crate_steel })); + GameRegistry.addRecipe(new ContainerUpgradeCraftingHandler(new ItemStack(ModBlocks.crate_tungsten, 1), new Object[] { "BPB", "PCP", "BPB", 'B', W.block(), 'P', CU.plateCast(), 'C', ModBlocks.crate_steel })); + // Note: voids the last few slots when placed, because a safe's inventory is smaller than a crate's one + GameRegistry.addRecipe(new ContainerUpgradeCraftingHandler(new ItemStack(ModBlocks.safe, 1), new Object[] { "LAL", "ACA", "LAL", 'L', PB.plate(), 'A', ALLOY.plate(), 'C', ModBlocks.crate_steel })); + // Note: doesn't preserve storage because a crate's contents are different items, but a mass storage's is just one addRecipeAuto(new ItemStack(ModBlocks.mass_storage, 1, 0), new Object[] { "ICI", "CLC", "ICI", 'I', TI.ingot(), 'C', ModBlocks.crate_steel, 'L', DictFrame.fromOne(ModItems.circuit, EnumCircuitType.VACUUM_TUBE) }); - addRecipeAuto(new ItemStack(ModBlocks.mass_storage, 1, 1), new Object[] { "PCP", "PMP", "PPP", 'P', DESH.ingot(), 'C', DictFrame.fromOne(ModItems.circuit, EnumCircuitType.CHIP), 'M', new ItemStack(ModBlocks.mass_storage, 1, 0) }); - addRecipeAuto(new ItemStack(ModBlocks.mass_storage, 1, 2), new Object[] { "PCP", "PMP", "PPP", 'P', ANY_RESISTANTALLOY.ingot(), 'C', DictFrame.fromOne(ModItems.circuit, EnumCircuitType.ADVANCED), 'M', new ItemStack(ModBlocks.mass_storage, 1, 1) }); - addRecipeAuto(new ItemStack(ModBlocks.mass_storage, 1, 3), new Object[] { "PPP", "PIP", "PPP", 'P', KEY_PLANKS, 'I', IRON.plate() }); + GameRegistry.addRecipe(new ContainerUpgradeCraftingHandler(new ItemStack(ModBlocks.mass_storage, 1, 1), new Object[] { "PCP", "PMP", "PPP", 'P', DESH.ingot(), 'C', DictFrame.fromOne(ModItems.circuit, EnumCircuitType.CHIP), 'M', new ItemStack(ModBlocks.mass_storage, 1, 0) })); + GameRegistry.addRecipe(new ContainerUpgradeCraftingHandler(new ItemStack(ModBlocks.mass_storage, 1, 2), new Object[] { "PCP", "PMP", "PPP", 'P', ANY_RESISTANTALLOY.ingot(), 'C', DictFrame.fromOne(ModItems.circuit, EnumCircuitType.ADVANCED), 'M', new ItemStack(ModBlocks.mass_storage, 1, 1) })); + GameRegistry.addRecipe(new ContainerUpgradeCraftingHandler(new ItemStack(ModBlocks.mass_storage, 1, 3), new Object[] { "PPP", "PIP", "PPP", 'P', KEY_PLANKS, 'I', IRON.plate() })); + addRecipeAuto(new ItemStack(ModBlocks.machine_autocrafter, 1), new Object[] { "SCS", "MWM", "SCS", 'S', STEEL.plate(), 'C', DictFrame.fromOne(ModItems.circuit, EnumCircuitType.VACUUM_TUBE), 'M', ModItems.motor, 'W', Blocks.crafting_table }); addRecipeAuto(new ItemStack(ModBlocks.machine_funnel, 1), new Object[] { "S S", "SRS", " S ", 'S', STEEL.ingot(), 'R', REDSTONE.dust() }); addRecipeAuto(new ItemStack(ModBlocks.machine_waste_drum, 1), new Object[] { "LRL", "BRB", "LRL", 'L', PB.ingot(), 'B', Blocks.iron_bars, 'R', ModItems.rod_quad_empty }); diff --git a/src/main/java/com/hbm/main/MainRegistry.java b/src/main/java/com/hbm/main/MainRegistry.java index acdda9f2e..d2d5155ad 100644 --- a/src/main/java/com/hbm/main/MainRegistry.java +++ b/src/main/java/com/hbm/main/MainRegistry.java @@ -246,6 +246,7 @@ public class MainRegistry { @EventHandler public void PreLoad(FMLPreInitializationEvent PreEvent) { + CrashHelper.init(); startupTime = System.currentTimeMillis(); configDir = PreEvent.getModConfigurationDirectory(); diff --git a/src/main/java/com/hbm/main/ModEventHandlerClient.java b/src/main/java/com/hbm/main/ModEventHandlerClient.java index e6c66ceb8..bafb52c23 100644 --- a/src/main/java/com/hbm/main/ModEventHandlerClient.java +++ b/src/main/java/com/hbm/main/ModEventHandlerClient.java @@ -321,19 +321,21 @@ public class ModEventHandlerClient { /// HANLDE ANIMATION BUSES /// for(int i = 0; i < HbmAnimations.hotbar.length; i++) { - - Animation animation = HbmAnimations.hotbar[i]; - - if(animation == null) - continue; - - if(animation.holdLastFrame) - continue; - - long time = System.currentTimeMillis() - animation.startMillis; - - if(time > animation.animation.getDuration()) - HbmAnimations.hotbar[i] = null; + for(int j = 0; j < HbmAnimations.hotbar[i].length; j++) { + + Animation animation = HbmAnimations.hotbar[i][j]; + + if(animation == null) + continue; + + if(animation.holdLastFrame) + continue; + + long time = System.currentTimeMillis() - animation.startMillis; + + if(time > animation.animation.getDuration()) + HbmAnimations.hotbar[i][j] = null; + } } if(!ducked && Keyboard.isKeyDown(Keyboard.KEY_O) && Minecraft.getMinecraft().currentScreen == null) { @@ -907,7 +909,7 @@ public class ModEventHandlerClient { } } - if(Keyboard.isKeyDown(Keyboard.KEY_F1)) { + if(Keyboard.isKeyDown(Keyboard.KEY_F1) && Minecraft.getMinecraft().currentScreen != null) { ComparableStack comp = canneryTimestamp > System.currentTimeMillis() - 100 ? lastCannery : null; @@ -972,9 +974,10 @@ public class ModEventHandlerClient { } else { isRenderingItems = false; } + + EntityPlayer player = mc.thePlayer; if(event.phase == Phase.START) { - EntityPlayer player = mc.thePlayer; float discriminator = 0.003F; float defaultStepSize = 0.5F; @@ -991,6 +994,26 @@ public class ModEventHandlerClient { for(int i = 1; i < 4; i++) if(player.stepHeight == i + discriminator) player.stepHeight = defaultStepSize; } } + + if(event.phase == Phase.END) { + + ItemGunBaseNT.offsetVertical += ItemGunBaseNT.recoilVertical; + ItemGunBaseNT.offsetHorizontal += ItemGunBaseNT.recoilHorizontal; + player.rotationPitch -= ItemGunBaseNT.recoilVertical; + player.rotationYaw -= ItemGunBaseNT.recoilHorizontal; + + float decay = 0.75F; + float rebound = 0.25F; + ItemGunBaseNT.recoilVertical *= decay; + ItemGunBaseNT.recoilHorizontal *= decay; + float dV = ItemGunBaseNT.offsetVertical * rebound; + float dH = ItemGunBaseNT.offsetHorizontal * rebound; + + ItemGunBaseNT.offsetVertical -= dV; + ItemGunBaseNT.offsetHorizontal -= dH; + player.rotationPitch += dV; + player.rotationYaw += dH; + } } public static ItemStack getMouseOverStack() { diff --git a/src/main/java/com/hbm/main/ModEventHandlerRenderer.java b/src/main/java/com/hbm/main/ModEventHandlerRenderer.java index 03e7834bd..f5745092d 100644 --- a/src/main/java/com/hbm/main/ModEventHandlerRenderer.java +++ b/src/main/java/com/hbm/main/ModEventHandlerRenderer.java @@ -1,6 +1,7 @@ package com.hbm.main; import org.lwjgl.opengl.GL11; +import org.lwjgl.opengl.GL12; import org.lwjgl.opengl.GLContext; import com.hbm.blocks.ICustomBlockHighlight; @@ -8,6 +9,7 @@ import com.hbm.config.RadiationConfig; import com.hbm.handler.pollution.PollutionHandler.PollutionType; import com.hbm.items.armor.IArmorDisableModel; import com.hbm.items.armor.IArmorDisableModel.EnumPlayerPart; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; import com.hbm.packet.PermaSyncHandler; import com.hbm.render.item.weapon.sedna.ItemRenderWeaponBase; import com.hbm.render.model.ModelMan; @@ -19,6 +21,8 @@ import cpw.mods.fml.common.gameevent.TickEvent.WorldTickEvent; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.client.Minecraft; +import net.minecraft.client.entity.AbstractClientPlayer; +import net.minecraft.client.model.ModelBiped; import net.minecraft.client.model.ModelRenderer; import net.minecraft.client.renderer.RenderBlocks; import net.minecraft.client.renderer.entity.RenderManager; @@ -56,6 +60,7 @@ public class ModEventHandlerRenderer { EntityPlayer player = event.entityPlayer; RenderPlayer renderer = event.renderer; + ItemStack held = player.getHeldItem(); boolean isManly = PermaSyncHandler.boykissers.contains(player.getEntityId()); @@ -71,6 +76,18 @@ public class ModEventHandlerRenderer { } } + if(held != null) { + IItemRenderer customRenderer = MinecraftForgeClient.getItemRenderer(held, IItemRenderer.ItemRenderType.EQUIPPED); + if(customRenderer instanceof ItemRenderWeaponBase) { + ItemRenderWeaponBase renderGun = (ItemRenderWeaponBase) customRenderer; + if(renderGun.isAkimbo()) { + partsHidden[EnumPlayerPart.LEFT_ARM.ordinal()] = true; + ModelRenderer box = getBoxFromType(renderer, EnumPlayerPart.LEFT_ARM); + box.isHidden = true; + } + } + } + if(isManly) { return; } @@ -98,8 +115,33 @@ public class ModEventHandlerRenderer { EntityPlayer player = event.entityPlayer; RenderPlayer renderer = event.renderer; + + boolean akimbo = false; + + ItemStack held = player.getHeldItem(); + + if(held != null) { + IItemRenderer customRenderer = MinecraftForgeClient.getItemRenderer(held, IItemRenderer.ItemRenderType.EQUIPPED); + if(customRenderer instanceof ItemRenderWeaponBase) { + ItemRenderWeaponBase renderGun = (ItemRenderWeaponBase) customRenderer; + if(renderGun.isAkimbo()) { + akimbo = true; + } + } + } boolean isManly = PermaSyncHandler.boykissers.contains(player.getEntityId()); + + if(akimbo) { + ModelBiped biped = renderer.modelBipedMain; + biped.bipedLeftArm.rotateAngleY = 0.1F + biped.bipedHead.rotateAngleY; + if(!isManly) { + AbstractClientPlayer acp = (AbstractClientPlayer) player; + Minecraft.getMinecraft().getTextureManager().bindTexture(acp.getLocationSkin()); + biped.bipedLeftArm.isHidden = false; + biped.bipedLeftArm.render(0.0625F); + } + } if(isManly) { if(manlyModel == null) @@ -115,6 +157,7 @@ public class ModEventHandlerRenderer { if(f6 > 1.0F) { f6 = 1.0F; } + manlyModel.render(event.entityPlayer, f7, f6, yawWrapped, yaw, pitch, 0.0625F, renderer); } } @@ -131,6 +174,58 @@ public class ModEventHandlerRenderer { } } } + + @SubscribeEvent + public void onRenderHeldGun(RenderPlayerEvent.Pre event) { + + EntityPlayer player = event.entityPlayer; + RenderPlayer renderer = event.renderer; + + if(player.getHeldItem() != null && player.getHeldItem().getItem() instanceof ItemGunBaseNT) { + renderer.modelBipedMain.aimedBow = true; + renderer.modelArmor.aimedBow = true; + renderer.modelArmorChestplate.aimedBow = true; + } + } + + @SubscribeEvent + public void onRenderAkimbo(RenderPlayerEvent.Specials.Pre event) { + + EntityPlayer player = event.entityPlayer; + RenderPlayer renderer = event.renderer; + ItemStack held = player.getHeldItem(); + if(held == null) return; + + IItemRenderer customRenderer = MinecraftForgeClient.getItemRenderer(held, IItemRenderer.ItemRenderType.EQUIPPED); + + if(customRenderer instanceof ItemRenderWeaponBase) { + ItemRenderWeaponBase renderWeapon = (ItemRenderWeaponBase) customRenderer; + if(renderWeapon.isAkimbo()) { + GL11.glPushMatrix(); + renderer.modelBipedMain.bipedLeftArm.isHidden = false; + renderer.modelBipedMain.bipedLeftArm.postRender(0.0625F); + //vanilla bullshit + GL11.glTranslatef(-0.0625F, 0.4375F, 0.0625F); + float scale = 0.375F; + GL11.glTranslatef(0.25F, 0.1875F, -0.1875F); + GL11.glScalef(scale, scale, scale); + GL11.glRotatef(60.0F, 0.0F, 0.0F, 1.0F); + GL11.glRotatef(-90.0F, 1.0F, 0.0F, 0.0F); + GL11.glRotatef(20.0F, 0.0F, 0.0F, 1.0F); + // forge bullshit + GL11.glEnable(GL12.GL_RESCALE_NORMAL); + GL11.glTranslatef(0.0F, -0.3F, 0.0F); + GL11.glScalef(1.5F, 1.5F, 1.5F); + GL11.glRotatef(50.0F, 0.0F, 1.0F, 0.0F); + GL11.glRotatef(335.0F, 0.0F, 0.0F, 1.0F); + GL11.glTranslatef(-0.9375F, -0.0625F, 0.0F); + renderWeapon.setupThirdPersonAkimbo(held); + renderWeapon.renderEquippedAkimbo(held); + GL11.glDisable(GL12.GL_RESCALE_NORMAL); + GL11.glPopMatrix(); + } + } + } @SubscribeEvent public void onRenderHeldItem(RenderPlayerEvent.Specials.Pre event) { @@ -139,9 +234,7 @@ public class ModEventHandlerRenderer { //RenderPlayer renderer = event.renderer; boolean isManly = PermaSyncHandler.boykissers.contains(player.getEntityId()); - - if(!isManly) - return; + if(!isManly) return; if(manlyModel == null) manlyModel = new ModelMan(); @@ -169,8 +262,8 @@ public class ModEventHandlerRenderer { enumaction = held.getItemUseAction(); } - net.minecraftforge.client.IItemRenderer customRenderer = net.minecraftforge.client.MinecraftForgeClient.getItemRenderer(held, net.minecraftforge.client.IItemRenderer.ItemRenderType.EQUIPPED); - boolean is3D = (customRenderer != null && customRenderer.shouldUseRenderHelper(net.minecraftforge.client.IItemRenderer.ItemRenderType.EQUIPPED, held, net.minecraftforge.client.IItemRenderer.ItemRendererHelper.BLOCK_3D)); + IItemRenderer customRenderer = MinecraftForgeClient.getItemRenderer(held, IItemRenderer.ItemRenderType.EQUIPPED); + boolean is3D = (customRenderer != null && customRenderer.shouldUseRenderHelper(IItemRenderer.ItemRenderType.EQUIPPED, held, IItemRenderer.ItemRendererHelper.BLOCK_3D)); if(is3D || held.getItem() instanceof ItemBlock && RenderBlocks.renderItemIn3d(Block.getBlockFromItem(held.getItem()).getRenderType())) { f2 = 0.5F; diff --git a/src/main/java/com/hbm/main/NEIRegistry.java b/src/main/java/com/hbm/main/NEIRegistry.java index 8db11642a..3899820c8 100644 --- a/src/main/java/com/hbm/main/NEIRegistry.java +++ b/src/main/java/com/hbm/main/NEIRegistry.java @@ -66,6 +66,7 @@ public class NEIRegistry { handlers.add(new ExposureChamberHandler()); handlers.add(new ArcFurnaceSolidHandler()); handlers.add(new ArcFurnaceFluidHandler()); + handlers.add(new RotaryFurnaceHandler()); //this shit comes last handlers.add(new FluidRecipeHandler()); diff --git a/src/main/java/com/hbm/main/ResourceManager.java b/src/main/java/com/hbm/main/ResourceManager.java index 285cd917e..647053d3c 100644 --- a/src/main/java/com/hbm/main/ResourceManager.java +++ b/src/main/java/com/hbm/main/ResourceManager.java @@ -267,8 +267,8 @@ public class ResourceManager { public static final IModelCustom bomb_solinium = AdvancedModelLoader.loadModel(new ResourceLocation(RefStrings.MODID, "models/bombs/ufp.obj")); public static final IModelCustom n2 = AdvancedModelLoader.loadModel(new ResourceLocation(RefStrings.MODID, "models/bombs/n2.obj")); public static final IModelCustom bomb_multi = AdvancedModelLoader.loadModel(new ResourceLocation(RefStrings.MODID, "models/BombGeneric.obj")); - public static final IModelCustom fstbmb = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/bombs/fstbmb.obj")); - public static final IModelCustom dud = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/BalefireCrashed.obj")); + public static final IModelCustom fstbmb = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/bombs/fstbmb.obj")).asVBO(); + public static final IModelCustom dud = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/BalefireCrashed.obj")).asVBO(); //Satellites public static final IModelCustom sat_base = AdvancedModelLoader.loadModel(new ResourceLocation(RefStrings.MODID, "models/sat_base.obj")); @@ -285,7 +285,7 @@ public class ResourceManager { public static final IModelCustom satDock = AdvancedModelLoader.loadModel(new ResourceLocation(RefStrings.MODID, "models/sat_dock.obj")); //Solar Tower - public static final IModelCustom solar_boiler = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/machines/solar_boiler.obj")); + public static final IModelCustom solar_boiler = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/machines/solar_boiler.obj")).asVBO(); public static final IModelCustom solar_mirror = AdvancedModelLoader.loadModel(new ResourceLocation(RefStrings.MODID, "models/machines/solar_mirror.obj")); //Drain @@ -364,8 +364,8 @@ public class ResourceManager { public static final IModelCustom drone = AdvancedModelLoader.loadModel(new ResourceLocation(RefStrings.MODID, "models/mobs/quadcopter.obj")); //ZIRNOX - public static final IModelCustom zirnox = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/zirnox.obj")); - public static final IModelCustom zirnox_destroyed = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/zirnox_destroyed.obj")); + public static final IModelCustom zirnox = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/zirnox.obj")).asVBO(); + public static final IModelCustom zirnox_destroyed = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/zirnox_destroyed.obj")).asVBO(); //Belt public static final IModelCustom arrow = AdvancedModelLoader.loadModel(new ResourceLocation(RefStrings.MODID, "models/blocks/arrow.obj")); @@ -379,8 +379,11 @@ public class ResourceManager { //Radiolysis public static final IModelCustom radiolysis = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/radiolysis.obj")); + //RotaryFurnace + public static final IModelCustom rotary_furnace = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/machines/rotary_furnace.obj")).asVBO(); + //Electrolyser - public static final IModelCustom electrolyser = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/machines/electrolyser.obj")); + public static final IModelCustom electrolyser = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/machines/electrolyser.obj")).asVBO(); //Charging Station public static final IModelCustom charger = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/blocks/charger.obj")); @@ -781,6 +784,9 @@ public class ResourceManager { //Radiolysis public static final ResourceLocation radiolysis_tex = new ResourceLocation(RefStrings.MODID, "textures/models/radiolysis.png"); + //Rotary Furnace + public static final ResourceLocation rotary_furnace_tex = new ResourceLocation(RefStrings.MODID, "textures/models/machines/rotary_furnace.png"); + //Electrolyser public static final ResourceLocation electrolyser_tex = new ResourceLocation(RefStrings.MODID, "textures/models/machines/electrolyser.png"); @@ -832,7 +838,6 @@ public class ResourceManager { public static final IModelCustom spas_12 = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/spas-12.obj")); public static final IModelCustom nightmare_dark = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/nightmare_dark.obj")); public static final IModelCustom glass_cannon = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/glass_cannon.obj")); - public static final IModelCustom bio_revolver = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/bio_revolver.obj")); public static final IModelCustom chemthrower = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/chemthrower.obj")).asVBO(); public static final IModelCustom novac = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/novac.obj")); public static final IModelCustom m2 = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/m2_browning.obj")).asVBO(); //large fella should be a display list @@ -845,6 +850,16 @@ public class ResourceManager { public static final IModelCustom congolake = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/congolake.obj")).asVBO(); public static final IModelCustom lilmac = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/lilmac.obj")).asVBO(); + public static final IModelCustom pepperbox = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/pepperbox.obj")).asVBO(); + public static final IModelCustom bio_revolver = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/bio_revolver.obj")).asVBO(); + public static final IModelCustom henry = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/henry.obj")).asVBO(); + public static final IModelCustom greasegun = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/greasegun.obj")).asVBO(); + public static final IModelCustom maresleg = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/maresleg.obj")).asVBO(); + public static final IModelCustom flaregun = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/flaregun.obj")).asVBO(); + public static final IModelCustom carbine = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/carbine.obj")).asVBO(); + public static final IModelCustom am180 = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/am180.obj")).asVBO(); + public static final IModelCustom liberator = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/weapons/liberator.obj")).asVBO(); + public static final HashMap python_anim = AnimationLoader.load(new ResourceLocation(RefStrings.MODID, "models/weapons/animations/python.json")); public static final HashMap cursed_anim = AnimationLoader.load(new ResourceLocation(RefStrings.MODID, "models/weapons/animations/cursed.json")); public static final HashMap novac_anim = AnimationLoader.load(new ResourceLocation(RefStrings.MODID, "models/weapons/animations/novac.json")); @@ -935,7 +950,6 @@ public class ResourceManager { public static final ResourceLocation remington_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/remington.png"); public static final ResourceLocation spas_12_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/spas-12.png"); public static final ResourceLocation glass_cannon_panel_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/glass_cannon_panel.png"); - public static final ResourceLocation bio_revolver_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/bio_revolver.png"); public static final ResourceLocation chemthrower_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/chemthrower.png"); public static final ResourceLocation novac_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/novac.png"); public static final ResourceLocation novac_scope_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/novac_scope.png"); @@ -953,7 +967,20 @@ public class ResourceManager { public static final ResourceLocation congolake_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/congolake.png"); public static final ResourceLocation lilmac_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/lilmac.png"); public static final ResourceLocation lilmac_scope_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/lilmac_scope.png"); + public static final ResourceLocation debug_gun_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/debug_gun.png"); + public static final ResourceLocation pepperbox_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/pepperbox.png"); + public static final ResourceLocation bio_revolver_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/bio_revolver.png"); + public static final ResourceLocation dani_celestial_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/dani_celestial.png"); + public static final ResourceLocation dani_lunar_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/dani_lunar.png"); + public static final ResourceLocation henry_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/henry.png"); + public static final ResourceLocation greasegun_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/greasegun.png"); + public static final ResourceLocation maresleg_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/maresleg.png"); + public static final ResourceLocation flaregun_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/flaregun.png"); + public static final ResourceLocation heavy_revolver_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/heavy_revolver.png"); + public static final ResourceLocation carbine_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/huntsman.png"); + public static final ResourceLocation am180_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/am180.png"); + public static final ResourceLocation liberator_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/liberator.png"); public static final ResourceLocation lance_tex = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/lance.png"); diff --git a/src/main/java/com/hbm/main/ServerProxy.java b/src/main/java/com/hbm/main/ServerProxy.java index 3e48b8e15..530bf6c59 100644 --- a/src/main/java/com/hbm/main/ServerProxy.java +++ b/src/main/java/com/hbm/main/ServerProxy.java @@ -34,6 +34,7 @@ public class ServerProxy { public void registerItemRenderer() { } public void registerEntityRenderer() { } public void registerBlockRenderer() { } + public void registerGunCfg() { } public void handleNHNEICompat() { } public void particleControl(double x, double y, double z, int type) { } diff --git a/src/main/java/com/hbm/packet/toclient/BiomeSyncPacket.java b/src/main/java/com/hbm/packet/toclient/BiomeSyncPacket.java index 3f529e1c3..aee64d099 100644 --- a/src/main/java/com/hbm/packet/toclient/BiomeSyncPacket.java +++ b/src/main/java/com/hbm/packet/toclient/BiomeSyncPacket.java @@ -1,5 +1,9 @@ package com.hbm.packet.toclient; +import cpw.mods.fml.common.Loader; +import com.hbm.util.Compat; +import com.hbm.world.WorldUtil; + import cpw.mods.fml.common.network.simpleimpl.IMessage; import cpw.mods.fml.common.network.simpleimpl.IMessageHandler; import cpw.mods.fml.common.network.simpleimpl.MessageContext; @@ -16,18 +20,26 @@ public class BiomeSyncPacket implements IMessage { int chunkZ; byte blockX; byte blockZ; - byte biome; - byte[] biomeArray; + short biome; + short[] biomeArray; public BiomeSyncPacket() { } - + public BiomeSyncPacket(int chunkX, int chunkZ, byte[] biomeArray) { + this(chunkX, chunkZ, bytesToShorts(biomeArray)); + } + + public BiomeSyncPacket(int blockX, int blockZ, byte biome) { + this(blockX, blockZ, (short) biome); + } + + public BiomeSyncPacket(int chunkX, int chunkZ, short[] biomeArray) { this.chunkX = chunkX; this.chunkZ = chunkZ; this.biomeArray = biomeArray; } - public BiomeSyncPacket(int blockX, int blockZ, byte biome) { + public BiomeSyncPacket(int blockX, int blockZ, short biome) { this.chunkX = blockX >> 4; this.chunkZ = blockZ >> 4; this.blockX = (byte) (blockX & 15); @@ -42,13 +54,13 @@ public class BiomeSyncPacket implements IMessage { if(this.biomeArray == null) { buf.writeBoolean(false); - buf.writeByte(this.biome); + buf.writeShort(this.biome); buf.writeByte(this.blockX); buf.writeByte(this.blockZ); } else { buf.writeBoolean(true); for(int i = 0; i < 256; i++) { - buf.writeByte(this.biomeArray[i]); + buf.writeShort(this.biomeArray[i]); } } } @@ -59,17 +71,27 @@ public class BiomeSyncPacket implements IMessage { this.chunkZ = buf.readInt(); if(!buf.readBoolean()) { - this.biome = buf.readByte(); + this.biome = buf.readShort(); this.blockX = buf.readByte(); this.blockZ = buf.readByte(); } else { - this.biomeArray = new byte[256]; + this.biomeArray = new short[256]; for(int i = 0; i < 256; i++) { - this.biomeArray[i] = buf.readByte(); + this.biomeArray[i] = buf.readShort(); } } } + private final static short[] bytesToShorts(byte[] byteArray) { + int size = byteArray.length; + short[] shortArray = new short[size]; + + for(int index = 0; index < size; index++) + shortArray[index] = (short) byteArray[index]; + + return shortArray; + } + public static class Handler implements IMessageHandler { @Override @@ -80,14 +102,28 @@ public class BiomeSyncPacket implements IMessage { if(!world.getChunkProvider().chunkExists(m.chunkX, m.chunkZ)) return null; Chunk chunk = world.getChunkFromChunkCoords(m.chunkX, m.chunkZ); chunk.isModified = true; - - if(m.biomeArray == null) { - chunk.getBiomeArray()[(m.blockZ & 15) << 4 | (m.blockX & 15)] = m.biome; - world.markBlockRangeForRenderUpdate(m.chunkX << 4, 0, m.chunkZ << 4, m.chunkX << 4, 255, m.chunkZ << 4); + + if(Loader.isModLoaded(Compat.MOD_EIDS)) { + short[] target = WorldUtil.getBiomeShortArray(chunk); + if(m.biomeArray == null) { + target[(m.blockZ & 15) << 4 | m.blockX & 15] = m.biome; + world.markBlockRangeForRenderUpdate(m.chunkX << 4, 0, m.chunkZ << 4, m.chunkX << 4, 255, m.chunkZ << 4); + } else { + for(int i = 0; i < 255; ++i) { + target[i] = m.biomeArray[i]; + world.markBlockRangeForRenderUpdate(m.chunkX << 4, 0, m.chunkZ << 4, (m.chunkX << 4) + 15, 255, (m.chunkZ << 4) + 15); + } + } } else { - for(int i = 0; i < 256; i++) { - chunk.getBiomeArray()[i] = m.biomeArray[i]; - world.markBlockRangeForRenderUpdate(m.chunkX << 4, 0, m.chunkZ << 4, (m.chunkX << 4) + 15, 255, (m.chunkZ << 4) + 15); + byte[] target = chunk.getBiomeArray(); + if(m.biomeArray == null) { + target[(m.blockZ & 15) << 4 | (m.blockX & 15)] = (byte) m.biome; + world.markBlockRangeForRenderUpdate(m.chunkX << 4, 0, m.chunkZ << 4, m.chunkX << 4, 255, m.chunkZ << 4); + } else { + for(int i = 0; i < 256; i++) { + target[i] = (byte) m.biomeArray[i]; + world.markBlockRangeForRenderUpdate(m.chunkX << 4, 0, m.chunkZ << 4, (m.chunkX << 4) + 15, 255, (m.chunkZ << 4) + 15); + } } } diff --git a/src/main/java/com/hbm/packet/toclient/GunAnimationPacket.java b/src/main/java/com/hbm/packet/toclient/GunAnimationPacket.java index 377ac340b..0b3c5e5e8 100644 --- a/src/main/java/com/hbm/packet/toclient/GunAnimationPacket.java +++ b/src/main/java/com/hbm/packet/toclient/GunAnimationPacket.java @@ -1,10 +1,13 @@ package com.hbm.packet.toclient; +import java.util.function.BiConsumer; import java.util.function.BiFunction; import com.hbm.items.weapon.ItemGunBase; import com.hbm.items.weapon.sedna.GunConfig; import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.Receiver; +import com.hbm.items.weapon.sedna.ItemGunBaseNT.LambdaContext; import com.hbm.render.anim.BusAnimation; import com.hbm.render.anim.HbmAnimations; import com.hbm.render.anim.HbmAnimations.AnimType; @@ -22,22 +25,42 @@ import net.minecraft.item.ItemStack; public class GunAnimationPacket implements IMessage { - int type; + public short type; + public int receiverIndex; + public int gunIndex; public GunAnimationPacket() { } public GunAnimationPacket(int type) { - this.type = type; + this.type = (short) type; + this.receiverIndex = 0; + this.gunIndex = 0; + } + + public GunAnimationPacket(int type, int rec) { + this.type = (short) type; + this.receiverIndex = rec; + this.gunIndex = 0; + } + + public GunAnimationPacket(int type, int rec, int gun) { + this.type = (short) type; + this.receiverIndex = rec; + this.gunIndex = gun; } @Override public void fromBytes(ByteBuf buf) { - type = buf.readInt(); + type = buf.readShort(); + receiverIndex = buf.readInt(); + gunIndex = buf.readInt(); } @Override public void toBytes(ByteBuf buf) { - buf.writeInt(type); + buf.writeShort(type); + buf.writeInt(receiverIndex); + buf.writeInt(gunIndex); } public static class Handler implements IMessageHandler { @@ -55,8 +78,8 @@ public class GunAnimationPacket implements IMessage { if(stack == null) return null; - if(stack.getItem() instanceof com.hbm.items.weapon.sedna.ItemGunBaseNT) { - handleSedna(player, stack, slot, AnimType.values()[m.type]); + if(stack.getItem() instanceof ItemGunBaseNT) { + handleSedna(player, stack, slot, AnimType.values()[m.type], m.receiverIndex, m.gunIndex); } if(!(stack.getItem() instanceof ItemGunBase)) @@ -82,7 +105,7 @@ public class GunAnimationPacket implements IMessage { if(animation != null) { boolean isReloadAnimation = type == AnimType.RELOAD || type == AnimType.RELOAD_CYCLE || type == AnimType.RELOAD_EMPTY; - HbmAnimations.hotbar[slot] = new Animation(stack.getItem().getUnlocalizedName(), System.currentTimeMillis(), animation, isReloadAnimation && base.mainConfig.reloadAnimationsSequential); + HbmAnimations.hotbar[slot][0] = new Animation(stack.getItem().getUnlocalizedName(), System.currentTimeMillis(), animation, isReloadAnimation && base.mainConfig.reloadAnimationsSequential); } } catch(Exception x) { } @@ -90,9 +113,21 @@ public class GunAnimationPacket implements IMessage { return null; } - public static void handleSedna(EntityPlayer player, ItemStack stack, int slot, AnimType type) { + public static void handleSedna(EntityPlayer player, ItemStack stack, int slot, AnimType type, int receiverIndex, int gunIndex) { ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); - GunConfig config = gun.getConfig(stack); + GunConfig config = gun.getConfig(stack, gunIndex); + + if(type == AnimType.CYCLE) { + if(gunIndex < gun.lastShot.length) gun.lastShot[gunIndex] = System.currentTimeMillis(); + gun.shotRand = player.worldObj.rand.nextDouble(); + + Receiver[] receivers = config.getReceivers(stack); + if(receiverIndex >= 0 && receiverIndex < receivers.length) { + Receiver rec = receivers[receiverIndex]; + BiConsumer onRecoil= rec.getRecoil(stack); + if(onRecoil != null) onRecoil.accept(stack, new LambdaContext(config, player, receiverIndex)); + } + } BiFunction anims = config.getAnims(stack); BusAnimation animation = anims.apply(stack, type); @@ -108,7 +143,7 @@ public class GunAnimationPacket implements IMessage { Minecraft.getMinecraft().entityRenderer.itemRenderer.resetEquippedProgress(); Minecraft.getMinecraft().entityRenderer.itemRenderer.itemToRender = stack; boolean isReloadAnimation = type == AnimType.RELOAD || type == AnimType.RELOAD_CYCLE || type == AnimType.RELOAD_EMPTY; - HbmAnimations.hotbar[slot] = new Animation(stack.getItem().getUnlocalizedName(), System.currentTimeMillis(), animation, isReloadAnimation && config.getReloadAnimSequential(stack)); + HbmAnimations.hotbar[slot][gunIndex] = new Animation(stack.getItem().getUnlocalizedName(), System.currentTimeMillis(), animation, isReloadAnimation && config.getReloadAnimSequential(stack)); } } } diff --git a/src/main/java/com/hbm/particle/ParticleSpentCasing.java b/src/main/java/com/hbm/particle/ParticleSpentCasing.java index 59e6ae201..a21aad162 100644 --- a/src/main/java/com/hbm/particle/ParticleSpentCasing.java +++ b/src/main/java/com/hbm/particle/ParticleSpentCasing.java @@ -42,10 +42,8 @@ public class ParticleSpentCasing extends EntityFX { private boolean isSmoking; private float momentumPitch, momentumYaw; - private boolean onGroundPreviously = false; - private double maxHeight; - public ParticleSpentCasing(TextureManager textureManager, World world, double x, double y, double z, double mx, double my, double mz, float momentumPitch, float momentumYaw, SpentCasing config) { + public ParticleSpentCasing(TextureManager textureManager, World world, double x, double y, double z, double mx, double my, double mz, float momentumPitch, float momentumYaw, SpentCasing config, boolean smoking, int smokeLife, double smokeLift, int nodeLife) { super(world, x, y, z, 0, 0, 0); this.textureManager = textureManager; this.momentumPitch = momentumPitch; @@ -53,10 +51,11 @@ public class ParticleSpentCasing extends EntityFX { this.config = config; this.particleMaxAge = config.getMaxAge(); - this.isSmoking = rand.nextFloat() < config.getSmokeChance(); - this.maxSmokeGen = config.getSmokeDuration(); - this.smokeLift = config.getSmokeLift(); - this.nodeLife = config.getSmokeNodeLife(); + + this.isSmoking = smoking; + this.maxSmokeGen = smokeLife; + this.smokeLift = smokeLift; + this.nodeLife = nodeLife; this.prevPosX = x; this.prevPosY = y; @@ -66,9 +65,7 @@ public class ParticleSpentCasing extends EntityFX { this.motionY = my; this.motionZ = mz; - particleGravity = 8F; - - maxHeight = y; + particleGravity = 1F; } @Override @@ -78,24 +75,34 @@ public class ParticleSpentCasing extends EntityFX { @Override public void onUpdate() { - super.onUpdate(); + + this.prevPosX = this.posX; + this.prevPosY = this.posY; + this.prevPosZ = this.posZ; - if(motionY > 0 && posY > maxHeight) - maxHeight = posY; + if(this.particleAge++ >= this.particleMaxAge) { + this.setDead(); + } - if(!onGroundPreviously && onGround) - tryPlayBounceSound(); + this.motionY -= 0.04D * (double) this.particleGravity; + double prevMotionY = this.motionY; + this.moveEntity(this.motionX, this.motionY, this.motionZ); + this.motionX *= 0.98D; + this.motionY *= 0.98D; + this.motionZ *= 0.98D; - if(!onGroundPreviously && onGround) { + if(this.onGround) { + this.motionX *= 0.7D; + this.motionZ *= 0.7D; + } + + if(onGround) { + this.onGround = false; + motionY = prevMotionY * -0.5; + this.rotationPitch = 0; + //momentumPitch = (float) rand.nextGaussian() * config.getBouncePitch(); + //momentumYaw = (float) rand.nextGaussian() * config.getBounceYaw(); - onGroundPreviously = true; - motionY = Math.log10(maxHeight - posY + 2); - momentumPitch = (float) rand.nextGaussian() * config.getBouncePitch(); - momentumYaw = (float) rand.nextGaussian() * config.getBounceYaw(); - maxHeight = posY; - - } else if(onGroundPreviously && !onGround) { - onGroundPreviously = false; } if(particleAge > maxSmokeGen && !smokeNodes.isEmpty()) @@ -193,8 +200,6 @@ public class ParticleSpentCasing extends EntityFX { GL11.glPushMatrix(); GL11.glTranslated(pX - dX, pY - dY - this.height / 4, pZ - dZ); - //GL11.glScalef(dScale, dScale, dScale); - //GL11.glScalef(config.getScaleX(), config.getScaleY(), config.getScaleZ()); if(!smokeNodes.isEmpty()) { tessellator.startDrawingQuads(); @@ -271,24 +276,15 @@ public class ParticleSpentCasing extends EntityFX { @Override @SideOnly(Side.CLIENT) public int getBrightnessForRender(float p_70070_1_) { - int i = MathHelper.floor_double(this.posX); - int j = MathHelper.floor_double(this.posZ); + int x = MathHelper.floor_double(this.posX); + int z = MathHelper.floor_double(this.posZ); - if(this.worldObj.blockExists(i, 0, j)) { + if(this.worldObj.blockExists(x, 0, z)) { double d0 = (this.boundingBox.maxY - this.boundingBox.minY) * 0.66D; - int k = MathHelper.floor_double(this.posY - (double) this.yOffset + d0); - return this.worldObj.getLightBrightnessForSkyBlocks(i, k, j, 0); + int y = MathHelper.floor_double(this.posY - (double) this.yOffset + d0); + return this.worldObj.getLightBrightnessForSkyBlocks(x, y, z, 0); } else { return 0; - } - } - - private void tryPlayBounceSound() { - - String sound = config.getSound(); - - if(sound != null && !sound.isEmpty()) { - worldObj.playSoundAtEntity(this, sound, 2, 1); } } } \ No newline at end of file diff --git a/src/main/java/com/hbm/particle/SpentCasing.java b/src/main/java/com/hbm/particle/SpentCasing.java index 200f12893..616042d34 100644 --- a/src/main/java/com/hbm/particle/SpentCasing.java +++ b/src/main/java/com/hbm/particle/SpentCasing.java @@ -39,10 +39,6 @@ public class SpentCasing implements Cloneable { private int[] colors; private CasingType type; private String bounceSound; - private float smokeChance; - private int smokeDuration; - private double smokeLift; - private int smokeNodeLife; private float bounceYaw = 0F; private float bouncePitch = 0F; private int maxAge = 240; @@ -83,13 +79,7 @@ public class SpentCasing implements Cloneable { return this; } - public SpentCasing setupSmoke(float chance, double lift, int duration, int nodeLife) { - this.smokeChance = chance; - this.smokeDuration = duration; - this.smokeLift = lift; - this.smokeNodeLife = nodeLife; - return this; - } + @Deprecated public SpentCasing setupSmoke(float chance, double lift, int duration, int nodeLife) { return this; } public static SpentCasing fromName(String name) { return casingMap.get(name); @@ -113,13 +103,9 @@ public class SpentCasing implements Cloneable { public int[] getColors() { return this.colors; } public CasingType getType() { return this.type; } public String getSound() { return this.bounceSound; } - public float getSmokeChance() { return this.smokeChance; } public float getBounceYaw() { return this.bounceYaw; } public float getBouncePitch() { return this.bouncePitch; } public int getMaxAge() { return this.maxAge; } - public int getSmokeDuration() { return this.smokeDuration; } - public double getSmokeLift() { return this.smokeLift; } - public int getSmokeNodeLife() { return this.smokeNodeLife; } @Override public SpentCasing clone() { diff --git a/src/main/java/com/hbm/particle/helper/CasingCreator.java b/src/main/java/com/hbm/particle/helper/CasingCreator.java new file mode 100644 index 000000000..10da330e3 --- /dev/null +++ b/src/main/java/com/hbm/particle/helper/CasingCreator.java @@ -0,0 +1,78 @@ +package com.hbm.particle.helper; + +import java.util.Random; + +import com.hbm.particle.ParticleSpentCasing; +import com.hbm.particle.SpentCasing; + +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.texture.TextureManager; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.util.Vec3; +import net.minecraft.world.World; + +public class CasingCreator implements IParticleCreator { + + /** Casing without smoke */ + public static void composeEffect(World world, EntityPlayer player, double frontOffset, double heightOffset, double sideOffset, double frontMotion, double heightMotion, double sideMotion, double motionVariance, String casing) { + composeEffect(world, player, frontOffset, heightOffset, sideOffset, frontMotion, heightMotion, sideMotion, motionVariance, casing, false, 0, 0, 0); + } + + public static void composeEffect(World world, EntityPlayer player, double frontOffset, double heightOffset, double sideOffset, double frontMotion, double heightMotion, double sideMotion, double motionVariance, String casing, boolean smoking, int smokeLife, double smokeLift, int nodeLife) { + + if(player.isSneaking()) heightOffset -= 0.075F; + + Vec3 offset = Vec3.createVectorHelper(sideOffset, heightOffset, frontOffset); + offset.rotateAroundX(-player.rotationPitch / 180F * (float) Math.PI); + offset.rotateAroundY(-player.rotationYaw / 180F * (float) Math.PI); + + double x = player.posX + offset.xCoord; + double y = player.posY + player.getEyeHeight() + offset.yCoord; + double z = player.posZ + offset.zCoord; + + Vec3 motion = Vec3.createVectorHelper(sideMotion, heightMotion, frontMotion); + motion.rotateAroundX(-player.rotationPitch / 180F * (float) Math.PI); + motion.rotateAroundY(-player.rotationYaw / 180F * (float) Math.PI); + + double mX = player.motionX + motion.xCoord + player.getRNG().nextGaussian() * motionVariance; + double mY = player.motionY + motion.yCoord + player.getRNG().nextGaussian() * motionVariance; + double mZ = player.motionZ + motion.zCoord + player.getRNG().nextGaussian() * motionVariance; + + NBTTagCompound data = new NBTTagCompound(); + data.setString("type", "casingNT"); + data.setDouble("mX", mX); + data.setDouble("mY", mY); + data.setDouble("mZ", mZ); + data.setFloat("yaw", player.rotationYaw); + data.setFloat("pitch", player.rotationPitch); + data.setString("name", casing); + data.setBoolean("smoking", smoking); + data.setInteger("smokeLife", smokeLife); + data.setDouble("smokeLift", smokeLift); + data.setInteger("nodeLife", nodeLife); + + IParticleCreator.sendPacket(world, x, y, z, 50, data); + } + + @Override + public void makeParticle(World world, EntityPlayer player, TextureManager texman, Random rand, double x, double y, double z, NBTTagCompound data) { + + String name = data.getString("name"); + SpentCasing casingConfig = SpentCasing.casingMap.get(name); + double mX = data.getDouble("mX"); + double mY = data.getDouble("mY"); + double mZ = data.getDouble("mZ"); + float yaw = data.getFloat("yaw"); + float pitch = data.getFloat("pitch"); + boolean smoking = data.getBoolean("smoking"); + int smokeLife = data.getInteger("smokeLife"); + double smokeLift = data.getDouble("smokeLift"); + int nodeLife = data.getInteger("nodeLife"); + ParticleSpentCasing casing = new ParticleSpentCasing(texman, world, x, y, z, mX, mY, mZ, 0, 0, casingConfig, smoking, smokeLife, smokeLift, nodeLife); + casing.prevRotationYaw = casing.rotationYaw = yaw; + casing.prevRotationPitch = casing.rotationPitch = pitch; + Minecraft.getMinecraft().effectRenderer.addEffect(casing); + } + +} diff --git a/src/main/java/com/hbm/render/anim/AnimationLoader.java b/src/main/java/com/hbm/render/anim/AnimationLoader.java index 4ad0edb6a..1b23e2941 100644 --- a/src/main/java/com/hbm/render/anim/AnimationLoader.java +++ b/src/main/java/com/hbm/render/anim/AnimationLoader.java @@ -14,138 +14,170 @@ import com.google.gson.JsonArray; import net.minecraft.client.Minecraft; import net.minecraft.util.ResourceLocation; -import com.hbm.render.anim.BusAnimationKeyframe.InterpolationType; +import com.hbm.render.anim.BusAnimationKeyframe.IType; +import com.hbm.render.anim.BusAnimationKeyframe.EType; +import com.hbm.render.anim.BusAnimationKeyframe.HType; import com.hbm.render.anim.BusAnimationSequence.Dimension; public class AnimationLoader { - // The collada loader is great, but is not so backwards compatible and spews keyframes rather than doing interpolation - // Yeah - more animation loading is not so great, but 3mb for a single door opening is maybe overkill on a 50mb mod - // and even though the format supports multiple animations, no fucking animation software will actually export multiple animations, - // (even though blender even has a fucking toggle for it, but it doesn't _do_ anything) - // This instead just loads transformation data from a JSON file, turning it into a set of BusAnimations - // See ntm-animator.blend for a JSON format creation script + // The collada loader is great, but is not so backwards compatible and spews keyframes rather than doing interpolation + // Yeah - more animation loading is not so great, but 3mb for a single door opening is maybe overkill on a 50mb mod + // and even though the format supports multiple animations, no fucking animation software will actually export multiple animations, + // (even though blender even has a fucking toggle for it, but it doesn't _do_ anything) + // This instead just loads transformation data from a JSON file, turning it into a set of BusAnimations + // See ntm-animator.blend for a JSON format creation script - // "How do I make animations?" - // See ntm-animator.blend, it has the Colt/Python already setup and animated as an example, it'll generate JSON data that this can load + // "How do I make animations?" + // See ntm-animator.blend, it has the Colt/Python already setup and animated as an example, it'll generate JSON data that this can load public static final Gson gson = new Gson(); - public static HashMap load(ResourceLocation file) { - HashMap animations = new HashMap(); + public static HashMap load(ResourceLocation file) { + HashMap animations = new HashMap(); - InputStream in; - try { - in = Minecraft.getMinecraft().getResourceManager().getResource(file).getInputStream(); - } catch (IOException ex) { - return null; - } + InputStream in; + try { + in = Minecraft.getMinecraft().getResourceManager().getResource(file).getInputStream(); + } catch (IOException ex) { + return null; + } - InputStreamReader reader = new InputStreamReader(in); - JsonObject json = gson.fromJson(reader, JsonObject.class); + InputStreamReader reader = new InputStreamReader(in); + JsonObject json = gson.fromJson(reader, JsonObject.class); - // Load our model offsets, we'll place these into all the sequences that share the name of the offset - // The offsets are only required when sequences are played for an object, which is why we don't globally offset! The obj rendering handles the non-animated case fine - // Effectively, this removes double translation AND ensures that rotations occur around the individual object origin, rather than the weapon origin - HashMap offsets = new HashMap(); - for (Map.Entry root : json.getAsJsonObject("offset").entrySet()) { - double[] offset = new double[3]; + // Load our model offsets, we'll place these into all the sequences that share the name of the offset + // The offsets are only required when sequences are played for an object, which is why we don't globally offset! The obj rendering handles the non-animated case fine + // Effectively, this removes double translation AND ensures that rotations occur around the individual object origin, rather than the weapon origin + HashMap offsets = new HashMap(); + for(Map.Entry root : json.getAsJsonObject("offset").entrySet()) { + double[] offset = new double[3]; - for (int i = 0; i < 3; i++) { - offset[i] = root.getValue().getAsJsonArray().get(i).getAsDouble(); - } + for(int i = 0; i < 3; i++) { + offset[i] = root.getValue().getAsJsonArray().get(i).getAsDouble(); + } - offsets.put(root.getKey(), offset); - } + offsets.put(root.getKey(), offset); + } - // Top level parsing, this is for the animation name as set in Blender - for (Map.Entry root : json.getAsJsonObject("anim").entrySet()) { - BusAnimation animation = new BusAnimation(); + // Top level parsing, this is for the animation name as set in Blender + for(Map.Entry root : json.getAsJsonObject("anim").entrySet()) { + BusAnimation animation = new BusAnimation(); - // Loading the buses for this animation - JsonObject entryObject = root.getValue().getAsJsonObject(); - for (Map.Entry model : entryObject.entrySet()) { - String modelName = model.getKey(); - double[] offset = new double[3]; - if (offsets.containsKey(modelName)) offset = offsets.get(modelName); - animation.addBus(modelName, loadSequence(model.getValue().getAsJsonObject(), offset)); - } + // Loading the buses for this animation + JsonObject entryObject = root.getValue().getAsJsonObject(); + for(Map.Entry model : entryObject.entrySet()) { + String modelName = model.getKey(); + double[] offset = new double[3]; + if (offsets.containsKey(modelName)) offset = offsets.get(modelName); + animation.addBus(modelName, loadSequence(model.getValue().getAsJsonObject(), offset)); + } - animations.put(root.getKey(), animation); - } + animations.put(root.getKey(), animation); + } - return animations; - } + return animations; + } - private static BusAnimationSequence loadSequence(JsonObject json, double[] offset) { - BusAnimationSequence sequence = new BusAnimationSequence(); + private static BusAnimationSequence loadSequence(JsonObject json, double[] offset) { + BusAnimationSequence sequence = new BusAnimationSequence(); - // Location fcurves - if (json.has("location")) { - JsonObject location = json.getAsJsonObject("location"); + // Location fcurves + if(json.has("location")) { + JsonObject location = json.getAsJsonObject("location"); - if (location.has("x")) { - addToSequence(sequence, Dimension.TX, location.getAsJsonArray("x")); - } - if (location.has("y")) { - addToSequence(sequence, Dimension.TY, location.getAsJsonArray("y")); - } - if (location.has("z")) { - addToSequence(sequence, Dimension.TZ, location.getAsJsonArray("z")); - } - } + if(location.has("x")) { + addToSequence(sequence, Dimension.TX, location.getAsJsonArray("x")); + } + if(location.has("y")) { + addToSequence(sequence, Dimension.TY, location.getAsJsonArray("y")); + } + if(location.has("z")) { + addToSequence(sequence, Dimension.TZ, location.getAsJsonArray("z")); + } + } - // Rotation fcurves, only euler at the moment - if (json.has("rotation_euler")) { - JsonObject rotation = json.getAsJsonObject("rotation_euler"); + // Rotation fcurves, only euler at the moment + if(json.has("rotation_euler")) { + JsonObject rotation = json.getAsJsonObject("rotation_euler"); - if (rotation.has("x")) { - addToSequence(sequence, Dimension.RX, rotation.getAsJsonArray("x")); - } - if (rotation.has("y")) { - addToSequence(sequence, Dimension.RY, rotation.getAsJsonArray("y")); - } - if (rotation.has("z")) { - addToSequence(sequence, Dimension.RZ, rotation.getAsJsonArray("z")); - } - } + if(rotation.has("x")) { + addToSequence(sequence, Dimension.RX, rotation.getAsJsonArray("x")); + } + if(rotation.has("y")) { + addToSequence(sequence, Dimension.RY, rotation.getAsJsonArray("y")); + } + if(rotation.has("z")) { + addToSequence(sequence, Dimension.RZ, rotation.getAsJsonArray("z")); + } + } - // Scale fcurves - if (json.has("scale")) { - JsonObject scale = json.getAsJsonObject("scale"); + // Scale fcurves + if(json.has("scale")) { + JsonObject scale = json.getAsJsonObject("scale"); - if (scale.has("x")) { - addToSequence(sequence, Dimension.SX, scale.getAsJsonArray("x")); - } - if (scale.has("y")) { - addToSequence(sequence, Dimension.SY, scale.getAsJsonArray("y")); - } - if (scale.has("z")) { - addToSequence(sequence, Dimension.SZ, scale.getAsJsonArray("z")); - } - } + if(scale.has("x")) { + addToSequence(sequence, Dimension.SX, scale.getAsJsonArray("x")); + } + if(scale.has("y")) { + addToSequence(sequence, Dimension.SY, scale.getAsJsonArray("y")); + } + if(scale.has("z")) { + addToSequence(sequence, Dimension.SZ, scale.getAsJsonArray("z")); + } + } - sequence.offset = offset; + sequence.offset = offset; - return sequence; - } + return sequence; + } - private static void addToSequence(BusAnimationSequence sequence, Dimension dimension, JsonArray array) { - for (JsonElement element : array) { - sequence.addKeyframe(dimension, loadKeyframe(element)); - } - } + private static void addToSequence(BusAnimationSequence sequence, Dimension dimension, JsonArray array) { + IType prevInterp = null; + for(JsonElement element : array) { + BusAnimationKeyframe keyframe = loadKeyframe(element, prevInterp); + prevInterp = keyframe.interpolationType; + sequence.addKeyframe(dimension, keyframe); + } + } - private static BusAnimationKeyframe loadKeyframe(JsonElement element) { - JsonArray array = element.getAsJsonArray(); + private static BusAnimationKeyframe loadKeyframe(JsonElement element, IType prevInterp) { + JsonArray array = element.getAsJsonArray(); - double value = array.get(0).getAsDouble(); - int duration = array.get(1).getAsInt(); - InterpolationType interpolation = array.size() >= 3 ? InterpolationType.valueOf(array.get(2).getAsString()) : InterpolationType.LINEAR; + double value = array.get(0).getAsDouble(); + int duration = array.get(1).getAsInt(); + IType interpolation = array.size() >= 3 ? IType.valueOf(array.get(2).getAsString()) : IType.LINEAR; + EType easing = array.size() >= 4 ? EType.valueOf(array.get(3).getAsString()) : EType.AUTO; - return new BusAnimationKeyframe(value, duration, interpolation); - } + BusAnimationKeyframe keyframe = new BusAnimationKeyframe(value, duration, interpolation, easing); + + int i = 4; + + if(prevInterp == IType.BEZIER) { + keyframe.leftX = array.get(i++).getAsDouble(); + keyframe.leftY = array.get(i++).getAsDouble(); + keyframe.leftType = HType.valueOf(array.get(i++).getAsString()); + } + + if(interpolation == IType.LINEAR || interpolation == IType.CONSTANT) + return keyframe; + + if(interpolation == IType.BEZIER) { + keyframe.rightX = array.get(i++).getAsDouble(); + keyframe.rightY = array.get(i++).getAsDouble(); + keyframe.rightType = HType.valueOf(array.get(i++).getAsString()); + } + + if(interpolation == IType.ELASTIC) { + keyframe.amplitude = array.get(i++).getAsDouble(); + keyframe.period = array.get(i++).getAsDouble(); + } else if(interpolation == IType.BACK) { + keyframe.back = array.get(i++).getAsDouble(); + } + + return keyframe; + } } diff --git a/src/main/java/com/hbm/render/anim/BusAnimationKeyframe.java b/src/main/java/com/hbm/render/anim/BusAnimationKeyframe.java index 6833652dd..55a7d4311 100644 --- a/src/main/java/com/hbm/render/anim/BusAnimationKeyframe.java +++ b/src/main/java/com/hbm/render/anim/BusAnimationKeyframe.java @@ -2,24 +2,83 @@ package com.hbm.render.anim; //"pieces" that make up a bus public class BusAnimationKeyframe { - - //whether the next frame "snaps" to the intended value or has interpolation - //it's an enum so stuff like accelerated animations between just - //two frames could be implemented - public static enum InterpolationType { + + // whether the next frame "snaps" to the intended value or has interpolation + // it's an enum so stuff like accelerated animations between just + // two frames could be implemented + public static enum IType { + /** Teleport */ CONSTANT, - LINEAR + /** Linear interpolation */ + LINEAR, + /** "Sine wave up", quarter of a sine peak that goes from neutral to rising */ + SIN_UP, + /** "Sine wave down", quarter of a sine peak that goes from rising back to neutral */ + SIN_DOWN, + /** "Sine wave", first half of a sine peak, accelerating up and then decelerating, makes for smooth movement */ + SIN_FULL, + + // blender magic curves + BEZIER, + + // blender inertial + SINE, + QUAD, + CUBIC, + QUART, + QUINT, + EXPO, + CIRC, + + // blendor dynamic + BOUNCE, + ELASTIC, + BACK, + } + + // Easing + public static enum EType { + AUTO, + EASE_IN, + EASE_OUT, + EASE_IN_OUT, + } + + // Handle type + public static enum HType { + FREE, + ALIGNED, + VECTOR, + AUTO, + AUTO_CLAMPED, } public double value; - public InterpolationType interpolationType; + public IType interpolationType; + public EType easingType; public int duration; - - //this one can be used for "reset" type keyframes + + // bezier handles + public double leftX; + public double leftY; + public HType leftType; + public double rightX; + public double rightY; + public HType rightType; + + // elastics + public double amplitude; + public double period; + + // back (overshoot) + public double back; + + // this one can be used for "reset" type keyframes public BusAnimationKeyframe() { this.value = 0; this.duration = 1; - this.interpolationType = InterpolationType.LINEAR; + this.interpolationType = IType.LINEAR; + this.easingType = EType.AUTO; } public BusAnimationKeyframe(double value, int duration) { @@ -28,9 +87,519 @@ public class BusAnimationKeyframe { this.duration = duration; } - public BusAnimationKeyframe(double value, int duration, InterpolationType interpolation) { + public BusAnimationKeyframe(double value, int duration, IType interpolation) { this(value, duration); this.interpolationType = interpolation; } + public BusAnimationKeyframe(double value, int duration, IType interpolation, EType easing) { + this(value, duration, interpolation); + this.easingType = easing; + } + + public double interpolate(double startTime, double currentTime, BusAnimationKeyframe previous) { + if(previous == null) + previous = new BusAnimationKeyframe(); + + double a = value; + double b = previous.value; + double t = time(startTime, currentTime, duration); + + double begin = previous.value; + double change = value - previous.value; + double time = currentTime - startTime; + + // Constant value optimisation + if(Math.abs(previous.value - value) < 0.000001) return value; + + if(previous.interpolationType == IType.BEZIER) { + double v1x = startTime; + double v1y = previous.value; + double v2x = previous.rightX; + double v2y = previous.rightY; + + double v3x = leftX; + double v3y = leftY; + double v4x = startTime + duration; + double v4y = value; + + // correct beziers into non-looping fcurves + double h1x = v1x - v2x; + double h1y = v1y - v2y; + + double h2x = v4x - v3x; + double h2y = v4y - v3y; + + double len = v4x - v1x; + double len1 = Math.abs(h1x); + double len2 = Math.abs(h2x); + + if(len1 + len2 != 0) { + if(len1 > len) { + double fac = len / len1; + v2x = v1x - fac * h1x; + v2y = v1y - fac * h1y; + } + + if(len2 > len) { + double fac = len / len2; + v3x = v4x - fac * h2x; + v3y = v4y - fac * h2y; + } + } + + double curveT = findZero(currentTime, v1x, v2x, v3x, v4x); + return cubicBezier(v1y, v2y, v3y, v4y, curveT); + } else if(previous.interpolationType == IType.BACK) { + switch (previous.easingType) { + case EASE_IN: return BLI_easing_back_ease_in(time, begin, change, duration, previous.back); + case EASE_IN_OUT: return BLI_easing_back_ease_in_out(time, begin, change, duration, previous.back); + default: return BLI_easing_back_ease_out(time, begin, change, duration, previous.back); + } + } else if(previous.interpolationType == IType.BOUNCE) { + switch (previous.easingType) { + case EASE_IN: return BLI_easing_bounce_ease_in(time, begin, change, duration); + case EASE_IN_OUT: return BLI_easing_bounce_ease_in_out(time, begin, change, duration); + default: return BLI_easing_bounce_ease_out(time, begin, change, duration); + } + } else if(previous.interpolationType == IType.CIRC) { + switch (previous.easingType) { + case EASE_OUT: return BLI_easing_circ_ease_out(time, begin, change, duration); + case EASE_IN_OUT: return BLI_easing_circ_ease_in_out(time, begin, change, duration); + default: return BLI_easing_circ_ease_in(time, begin, change, duration); + } + } else if(previous.interpolationType == IType.CUBIC) { + switch (previous.easingType) { + case EASE_OUT: return BLI_easing_cubic_ease_out(time, begin, change, duration); + case EASE_IN_OUT: return BLI_easing_cubic_ease_in_out(time, begin, change, duration); + default: return BLI_easing_cubic_ease_in(time, begin, change, duration); + } + } else if(previous.interpolationType == IType.ELASTIC) { + switch (previous.easingType) { + case EASE_IN: return BLI_easing_elastic_ease_in(time, begin, change, duration, previous.amplitude, previous.period); + case EASE_IN_OUT: return BLI_easing_elastic_ease_in_out(time, begin, change, duration, previous.amplitude, previous.period); + default: return BLI_easing_elastic_ease_out(time, begin, change, duration, previous.amplitude, previous.period); + } + } else if(previous.interpolationType == IType.EXPO) { + switch (previous.easingType) { + case EASE_OUT: return BLI_easing_expo_ease_out(time, begin, change, duration); + case EASE_IN_OUT: return BLI_easing_expo_ease_in_out(time, begin, change, duration); + default: return BLI_easing_expo_ease_in(time, begin, change, duration); + } + } else if(previous.interpolationType == IType.QUAD) { + switch (previous.easingType) { + case EASE_OUT: return BLI_easing_quad_ease_out(time, begin, change, duration); + case EASE_IN_OUT: return BLI_easing_quad_ease_in_out(time, begin, change, duration); + default: return BLI_easing_quad_ease_in(time, begin, change, duration); + } + } else if(previous.interpolationType == IType.QUART) { + switch (previous.easingType) { + case EASE_OUT: return BLI_easing_quart_ease_out(time, begin, change, duration); + case EASE_IN_OUT: return BLI_easing_quart_ease_in_out(time, begin, change, duration); + default: return BLI_easing_quart_ease_in(time, begin, change, duration); + } + } else if(previous.interpolationType == IType.QUINT) { + switch (previous.easingType) { + case EASE_OUT: return BLI_easing_quint_ease_out(time, begin, change, duration); + case EASE_IN_OUT: return BLI_easing_quint_ease_in_out(time, begin, change, duration); + default: return BLI_easing_quint_ease_in(time, begin, change, duration); + } + } else if(previous.interpolationType == IType.SINE) { + switch (previous.easingType) { + case EASE_OUT: return BLI_easing_sine_ease_out(time, begin, change, duration); + case EASE_IN_OUT: return BLI_easing_sine_ease_in_out(time, begin, change, duration); + default: return BLI_easing_sine_ease_in(time, begin, change, duration); + } + } + + return (a - b) * t + b; + } + + private double sqrt3(double d) { + if(d > 0.000001) { + return Math.exp(Math.log(d) / 3.0); + } else if(d > -0.000001) { + return 0; + } else { + return -Math.exp(Math.log(-d) / 3.0); + } + } + + private double time(double start, double end, double duration) { + if(interpolationType == IType.SIN_UP) return -Math.sin(((end - start) / duration * Math.PI + Math.PI) / 2) + 1; + if(interpolationType == IType.SIN_DOWN) return Math.sin((end - start) / duration * Math.PI / 2); + if(interpolationType == IType.SIN_FULL) return (-Math.cos((end - start) / duration * Math.PI) + 1) / 2D; + return (end - start) / duration; + } + + // Blender bezier solvers, but rewritten (pain) + private double solveCubic(double c0, double c1, double c2, double c3) { + if(c3 > 0.000001) { + double a = c2 / c3; + double b = c1 / c3; + double c = c0 / c3; + a = a / 3; + + double p = b / 3 - a * a; + double q = (2 * a * a * a - a * b + c) / 2; + double d = q * q + p * p * p; + + if(d > 0.000001) { + double t = Math.sqrt(d); + return sqrt3(-q + t) + sqrt3(-q - t) - a; + } else if(d > -0.000001) { + double t = sqrt3(-q); + double result = 2 * t - a; + if(result < 0.000001 || result > 1.000001) { + result = -t - a; + } + return result; + } + + double phi = Math.acos(-q / Math.sqrt(-(p * p * p))); + double t = Math.sqrt(-p); + p = Math.cos(phi / 3); + q = Math.sqrt(3 - 3 * p * p); + double result = 2 * t * p - a; + if(result < 0.000001 || result > 1.000001) { + result = -t * (p + q) - a; + } + if(result < 0.000001 || result > 1.000001) { + result = -t * (p - q) - a; + } + return result; + } + + double a = c2; + double b = c1; + double c = c0; + + if(a > 0.000001) { + double p = b * b - 4 * a * c; + + if(p > 0.000001) { + p = Math.sqrt(p); + double result = (-b - p) / (2 * a); + if(result < 0.000001 || result > 1.000001) { + result = (-b + p) / (2 * a); + } + return result; + } else if(p > -0.000001) { + return -b / (2 * a); + } + } + + if(b > 0.000001) { + return -c / b; + } + + return 0; + } + + private double findZero(double t, double x1, double x2, double x3, double x4) { + double c0 = x1 - t; + double c1 = 3.0f * (x2 - x1); + double c2 = 3.0f * (x1 - 2.0f * x2 + x3); + double c3 = x4 - x1 + 3.0f * (x2 - x3); + + return solveCubic(c0, c1, c2, c3); + } + + private double cubicBezier(double y1, double y2, double y3, double y4, double t) { + double c0 = y1; + double c1 = 3.0f * (y2 - y1); + double c2 = 3.0f * (y1 - 2.0f * y2 + y3); + double c3 = y4 - y1 + 3.0f * (y2 - y3); + + return c0 + t * c1 + t * t * c2 + t * t * t * c3; + } + + /** + * EASING FUNCTIONS, taken directly from Blender `easing.c` + */ + + double BLI_easing_back_ease_in(double time, double begin, double change, double duration, double overshoot) { + time /= duration; + return change * time * time * ((overshoot + 1) * time - overshoot) + begin; + } + + double BLI_easing_back_ease_out(double time, double begin, double change, double duration, double overshoot) { + time = time / duration - 1; + return change * (time * time * ((overshoot + 1) * time + overshoot) + 1) + begin; + } + + double BLI_easing_back_ease_in_out(double time, double begin, double change, double duration, double overshoot) { + overshoot *= 1.525f; + if((time /= duration / 2) < 1.0f) { + return change / 2 * (time * time * ((overshoot + 1) * time - overshoot)) + begin; + } + time -= 2.0f; + return change / 2 * (time * time * ((overshoot + 1) * time + overshoot) + 2) + begin; + } + + double BLI_easing_bounce_ease_out(double time, double begin, double change, double duration) { + time /= duration; + if(time < (1 / 2.75f)) { + return change * (7.5625f * time * time) + begin; + } + if(time < (2 / 2.75f)) { + time -= (1.5f / 2.75f); + return change * ((7.5625f * time) * time + 0.75f) + begin; + } + if(time < (2.5f / 2.75f)) { + time -= (2.25f / 2.75f); + return change * ((7.5625f * time) * time + 0.9375f) + begin; + } + time -= (2.625f / 2.75f); + return change * ((7.5625f * time) * time + 0.984375f) + begin; + } + + double BLI_easing_bounce_ease_in(double time, double begin, double change, double duration) { + return change - BLI_easing_bounce_ease_out(duration - time, 0, change, duration) + begin; + } + + double BLI_easing_bounce_ease_in_out(double time, double begin, double change, double duration) { + if(time < duration / 2) { + return BLI_easing_bounce_ease_in(time * 2, 0, change, duration) * 0.5f + begin; + } + return BLI_easing_bounce_ease_out(time * 2 - duration, 0, change, duration) * 0.5f + change * 0.5f + begin; + } + + double BLI_easing_circ_ease_in(double time, double begin, double change, double duration) { + time /= duration; + return -change * (Math.sqrt(1 - time * time) - 1) + begin; + } + + double BLI_easing_circ_ease_out(double time, double begin, double change, double duration) { + time = time / duration - 1; + return change * Math.sqrt(1 - time * time) + begin; + } + + double BLI_easing_circ_ease_in_out(double time, double begin, double change, double duration) { + if((time /= duration / 2) < 1.0f) { + return -change / 2 * (Math.sqrt(1 - time * time) - 1) + begin; + } + time -= 2.0f; + return change / 2 * (Math.sqrt(1 - time * time) + 1) + begin; + } + + double BLI_easing_cubic_ease_in(double time, double begin, double change, double duration) { + time /= duration; + return change * time * time * time + begin; + } + + double BLI_easing_cubic_ease_out(double time, double begin, double change, double duration) { + time = time / duration - 1; + return change * (time * time * time + 1) + begin; + } + + double BLI_easing_cubic_ease_in_out(double time, double begin, double change, double duration) { + if((time /= duration / 2) < 1.0f) { + return change / 2 * time * time * time + begin; + } + time -= 2.0f; + return change / 2 * (time * time * time + 2) + begin; + } + + double elastic_blend(double time, double change, double duration, double amplitude, double s, double f) { + if(change != 0) { + /* + * Looks like a magic number, + * but this is a part of the sine curve we need to blend from + */ + double t = Math.abs(s); + if(amplitude != 0) { + f *= amplitude / Math.abs(change); + } else { + f = 0.0f; + } + + if(Math.abs(time * duration) < t) { + double l = Math.abs(time * duration) / t; + f = (f * l) + (1.0f - l); + } + } + + return f; + } + + double BLI_easing_elastic_ease_in(double time, double begin, double change, double duration, double amplitude, double period) { + double s; + double f = 1.0f; + + if(time == 0.0f) { + return begin; + } + + if((time /= duration) == 1.0f) { + return begin + change; + } + time -= 1.0f; + if(period == 0) { + period = duration * 0.3f; + } + if(amplitude == 0 || amplitude < Math.abs(change)) { + s = period / 4; + f = elastic_blend(time, change, duration, amplitude, s, f); + amplitude = change; + } else { + s = period / (2 * (double) Math.PI) * Math.asin(change / amplitude); + } + + return (-f * (amplitude * Math.pow(2, 10 * time) * Math.sin((time * duration - s) * (2 * (double) Math.PI) / period))) + begin; + } + + double BLI_easing_elastic_ease_out(double time, double begin, double change, double duration, double amplitude, double period) { + double s; + double f = 1.0f; + + if(time == 0.0f) { + return begin; + } + if((time /= duration) == 1.0f) { + return begin + change; + } + time = -time; + if(period == 0) { + period = duration * 0.3f; + } + if(amplitude == 0 || amplitude < Math.abs(change)) { + s = period / 4; + f = elastic_blend(time, change, duration, amplitude, s, f); + amplitude = change; + } else { + s = period / (2 * (double) Math.PI) * Math.asin(change / amplitude); + } + + return (f * (amplitude * Math.pow(2, 10 * time) * Math.sin((time * duration - s) * (2 * (double) Math.PI) / period))) + change + begin; + } + + double BLI_easing_elastic_ease_in_out(double time, double begin, double change, double duration, double amplitude, double period) { + double s; + double f = 1.0f; + + if(time == 0.0f) { + return begin; + } + if((time /= duration / 2) == 2.0f) { + return begin + change; + } + time -= 1.0f; + if(period == 0) { + period = duration * (0.3f * 1.5f); + } + if(amplitude == 0 || amplitude < Math.abs(change)) { + s = period / 4; + f = elastic_blend(time, change, duration, amplitude, s, f); + amplitude = change; + } else { + s = period / (2 * (double) Math.PI) * Math.asin(change / amplitude); + } + + if(time < 0.0f) { + f *= -0.5f; + return (f * (amplitude * Math.pow(2, 10 * time) * Math.sin((time * duration - s) * (2 * (double) Math.PI) / period))) + begin; + } + + time = -time; + f *= 0.5f; + return (f * (amplitude * Math.pow(2, 10 * time) * Math.sin((time * duration - s) * (2 * (double) Math.PI) / period))) + change + begin; + } + + static final double pow_min = 0.0009765625f; /* = 2^(-10) */ + static final double pow_scale = 1.0f / (1.0f - 0.0009765625f); + + double BLI_easing_expo_ease_in(double time, double begin, double change, double duration) { + if(time == 0.0) { + return begin; + } + return change * (Math.pow(2, 10 * (time / duration - 1)) - pow_min) * pow_scale + begin; + } + + double BLI_easing_expo_ease_out(double time, double begin, double change, double duration) { + if(time == 0.0) { + return begin; + } + return change * (1 - (Math.pow(2, -10 * time / duration) - pow_min) * pow_scale) + begin; + } + + double BLI_easing_expo_ease_in_out(double time, double begin, double change, double duration) { + double duration_half = duration / 2.0f; + double change_half = change / 2.0f; + if(time <= duration_half) { + return BLI_easing_expo_ease_in(time, begin, change_half, duration_half); + } + return BLI_easing_expo_ease_out(time - duration_half, begin + change_half, change_half, duration_half); + } + + double BLI_easing_linear_ease(double time, double begin, double change, double duration) { + return change * time / duration + begin; + } + + double BLI_easing_quad_ease_in(double time, double begin, double change, double duration) { + time /= duration; + return change * time * time + begin; + } + + double BLI_easing_quad_ease_out(double time, double begin, double change, double duration) { + time /= duration; + return -change * time * (time - 2) + begin; + } + + double BLI_easing_quad_ease_in_out(double time, double begin, double change, double duration) { + if((time /= duration / 2) < 1.0f) { + return change / 2 * time * time + begin; + } + time -= 1.0f; + return -change / 2 * (time * (time - 2) - 1) + begin; + } + + double BLI_easing_quart_ease_in(double time, double begin, double change, double duration) { + time /= duration; + return change * time * time * time * time + begin; + } + + double BLI_easing_quart_ease_out(double time, double begin, double change, double duration) { + time = time / duration - 1; + return -change * (time * time * time * time - 1) + begin; + } + + double BLI_easing_quart_ease_in_out(double time, double begin, double change, double duration) { + if((time /= duration / 2) < 1.0f) { + return change / 2 * time * time * time * time + begin; + } + time -= 2.0f; + return -change / 2 * (time * time * time * time - 2) + begin; + } + + double BLI_easing_quint_ease_in(double time, double begin, double change, double duration) { + time /= duration; + return change * time * time * time * time * time + begin; + } + + double BLI_easing_quint_ease_out(double time, double begin, double change, double duration) { + time = time / duration - 1; + return change * (time * time * time * time * time + 1) + begin; + } + + double BLI_easing_quint_ease_in_out(double time, double begin, double change, double duration) { + if((time /= duration / 2) < 1.0f) { + return change / 2 * time * time * time * time * time + begin; + } + time -= 2.0f; + return change / 2 * (time * time * time * time * time + 2) + begin; + } + + double BLI_easing_sine_ease_in(double time, double begin, double change, double duration) { + return -change * Math.cos(time / duration * (double) Math.PI * 2) + change + begin; + } + + double BLI_easing_sine_ease_out(double time, double begin, double change, double duration) { + return change * Math.sin(time / duration * (double) Math.PI * 2) + begin; + } + + double BLI_easing_sine_ease_in_out(double time, double begin, double change, double duration) { + return -change / 2 * (Math.cos((double) Math.PI * time / duration) - 1) + begin; + } + } diff --git a/src/main/java/com/hbm/render/anim/BusAnimationSequence.java b/src/main/java/com/hbm/render/anim/BusAnimationSequence.java index ea573fb96..db89a2974 100644 --- a/src/main/java/com/hbm/render/anim/BusAnimationSequence.java +++ b/src/main/java/com/hbm/render/anim/BusAnimationSequence.java @@ -3,7 +3,7 @@ package com.hbm.render.anim; import java.util.ArrayList; import java.util.List; -import com.hbm.render.anim.BusAnimationKeyframe.InterpolationType; +import com.hbm.render.anim.BusAnimationKeyframe.IType; //the actual bus, a sequence of keyframes with their own behavior and such public class BusAnimationSequence { @@ -29,7 +29,7 @@ public class BusAnimationSequence { public BusAnimationSequence() { // Initialise our keyframe storage, since it's multidimensional - for (int i = 0; i < 9; i++) { + for(int i = 0; i < 9; i++) { transformKeyframes.add(new ArrayList()); } } @@ -49,19 +49,20 @@ public class BusAnimationSequence { // Two helper methods for the old hard-coded animations - public BusAnimationSequence addKeyframePosition(double x, double y, double z, int duration) { - addKeyframe(Dimension.TX, new BusAnimationKeyframe(x, duration)); - addKeyframe(Dimension.TY, new BusAnimationKeyframe(y, duration)); - addKeyframe(Dimension.TZ, new BusAnimationKeyframe(z, duration)); - + public BusAnimationSequence addPos(double x, double y, double z, int duration) { + return addPos(x, y, z, duration, IType.LINEAR); + } + public BusAnimationSequence addPos(double x, double y, double z, int duration, IType type) { + addKeyframe(Dimension.TX, new BusAnimationKeyframe(x, duration, type)); + addKeyframe(Dimension.TY, new BusAnimationKeyframe(y, duration, type)); + addKeyframe(Dimension.TZ, new BusAnimationKeyframe(z, duration, type)); return this; } - public BusAnimationSequence addKeyframeRotation(double x, double y, double z, int duration) { + public BusAnimationSequence addRot(double x, double y, double z, int duration) { addKeyframe(Dimension.RX, new BusAnimationKeyframe(x, duration)); addKeyframe(Dimension.RY, new BusAnimationKeyframe(y, duration)); addKeyframe(Dimension.RZ, new BusAnimationKeyframe(z, duration)); - return this; } @@ -69,7 +70,7 @@ public class BusAnimationSequence { public double[] getTransformation(int millis) { double[] transform = new double[12]; - for (int i = 0; i < 9; i++) { + for(int i = 0; i < 9; i++) { List keyframes = transformKeyframes.get(i); BusAnimationKeyframe currentFrame = null; @@ -77,35 +78,31 @@ public class BusAnimationSequence { int startTime = 0; int endTime = 0; - for (BusAnimationKeyframe keyframe: keyframes) { + for(BusAnimationKeyframe keyframe : keyframes) { startTime = endTime; endTime += keyframe.duration; previousFrame = currentFrame; currentFrame = keyframe; - if (millis < endTime) break; + if(millis < endTime) break; } - if (currentFrame == null) { + if(currentFrame == null) { // Scale defaults to 1, others are 0 transform[i] = i >= 6 ? 1 : 0; continue; } - if (millis >= endTime) { + if(millis >= endTime) { transform[i] = currentFrame.value; continue; } - if (previousFrame != null && previousFrame.interpolationType == InterpolationType.CONSTANT) { + if(previousFrame != null && previousFrame.interpolationType == IType.CONSTANT) { transform[i] = previousFrame.value; continue; } - double a = currentFrame.value; - double b = previousFrame != null ? previousFrame.value : 0; - double t = (double)(millis - startTime) / (double)currentFrame.duration; - - transform[i] = (a - b) * t + b; + transform[i] = currentFrame.interpolate(startTime, millis, previousFrame); } transform[9] = offset[0]; @@ -118,9 +115,9 @@ public class BusAnimationSequence { public int getTotalTime() { int highestTime = 0; - for (List keyframes: transformKeyframes) { + for(List keyframes : transformKeyframes) { int time = 0; - for (BusAnimationKeyframe frame: keyframes) { + for(BusAnimationKeyframe frame : keyframes) { time += frame.duration; } diff --git a/src/main/java/com/hbm/render/anim/HbmAnimations.java b/src/main/java/com/hbm/render/anim/HbmAnimations.java index 699703db6..de9610fcc 100644 --- a/src/main/java/com/hbm/render/anim/HbmAnimations.java +++ b/src/main/java/com/hbm/render/anim/HbmAnimations.java @@ -15,20 +15,22 @@ public class HbmAnimations { //my approach adds 9 timers, one for every inventory slot. you can still //"trick" the system by putting a weapon into a different slot while an //animation is playing, though this will cancel the animation entirely. - public static final Animation[] hotbar = new Animation[9]; + public static final Animation[][] hotbar = new Animation[9][8]; //now with 8 parallel rails per slot! time to get railed! public static enum AnimType { - RELOAD, //animation for reloading the weapon - RELOAD_EMPTY, //animation for reloading from empty + RELOAD, //either a full reload or start of a reload + @Deprecated RELOAD_EMPTY, //same as reload, but the mag is completely empty RELOAD_CYCLE, //animation that plays for every individual round (for shotguns and similar single round loading weapons) RELOAD_END, //animation for transitioning from our RELOAD_CYCLE to idle CYCLE, //animation for every firing cycle CYCLE_EMPTY, //animation for the final shot in the magazine + CYCLE_DRY, //animation for trying to fire, but no round is available ALT_CYCLE, //animation for alt fire cycles SPINUP, //animation for actionstart SPINDOWN, //animation for actionend EQUIP, //animation for drawing the weapon - INSPECT //animation for inspecting the weapon + INSPECT, //animation for inspecting the weapon + JAMMED //animation for jammed weapons } // A NOTE ON SHOTGUN STYLE RELOADS @@ -59,8 +61,9 @@ public class HbmAnimations { this.holdLastFrame = holdLastFrame; } } - - public static Animation getRelevantAnim() { + + public static Animation getRelevantAnim() { return getRelevantAnim(0); } + public static Animation getRelevantAnim(int index) { EntityPlayer player = Minecraft.getMinecraft().thePlayer; int slot = player.inventory.currentItem; @@ -73,19 +76,20 @@ public class HbmAnimations { slot = Math.abs(slot) % 9; } - if(hotbar[slot] == null) + if(hotbar[slot][index] == null) return null; - if(hotbar[slot].key.equals(stack.getItem().getUnlocalizedName())) { - return hotbar[slot]; + if(hotbar[slot][index].key.equals(stack.getItem().getUnlocalizedName())) { + return hotbar[slot][index]; } return null; } - - public static double[] getRelevantTransformation(String bus) { + + public static double[] getRelevantTransformation(String bus) { return getRelevantTransformation(bus, 0); } + public static double[] getRelevantTransformation(String bus, int index) { - Animation anim = HbmAnimations.getRelevantAnim(); + Animation anim = HbmAnimations.getRelevantAnim(index); if(anim != null) { @@ -110,8 +114,9 @@ public class HbmAnimations { }; } - public static void applyRelevantTransformation(String bus) { - double[] transform = getRelevantTransformation(bus); + public static void applyRelevantTransformation(String bus) { applyRelevantTransformation(bus, 0); } + public static void applyRelevantTransformation(String bus, int index) { + double[] transform = getRelevantTransformation(bus, index); GL11.glTranslated(transform[0], transform[1], transform[2]); GL11.glRotated(transform[3], 1, 0, 0); diff --git a/src/main/java/com/hbm/render/block/RenderScaffoldBlock.java b/src/main/java/com/hbm/render/block/RenderScaffoldBlock.java index 69be9500e..0298b24ad 100644 --- a/src/main/java/com/hbm/render/block/RenderScaffoldBlock.java +++ b/src/main/java/com/hbm/render/block/RenderScaffoldBlock.java @@ -49,14 +49,31 @@ public class RenderScaffoldBlock implements ISimpleBlockRenderingHandler { iicon = renderer.overrideBlockTexture; } - float rotation = (float) -Math.PI; + float ox = x + 0.5F; + float oy = y; + float oz = z + 0.5F; - if((world.getBlockMetadata(x, y, z) & 8) == 0) - rotation = -90F / 180F * (float) Math.PI; + float rotation = (float) Math.PI * -0.5F; + float pitch = 0; - tessellator.addTranslation(x + 0.5F, y, z + 0.5F); - ObjUtil.renderWithIcon((WavefrontObject) ResourceManager.scaffold, iicon, tessellator, rotation, true); - tessellator.addTranslation(-x - 0.5F, -y, -z - 0.5F); + int meta = world.getBlockMetadata(x, y, z); + + if(meta >= 12) { + pitch = (float) Math.PI * 0.5F; + rotation = (float) -Math.PI; + ox = x + 1.0F; + oy = y + 0.5F; + } else if(meta >= 8) { + rotation = (float) -Math.PI; + } else if(meta >= 4) { + pitch = (float) Math.PI * 0.5F; + oy = y + 0.5F; + oz = z; + } + + tessellator.addTranslation(ox, oy, oz); + ObjUtil.renderWithIcon((WavefrontObject) ResourceManager.scaffold, iicon, tessellator, rotation, pitch, true); + tessellator.addTranslation(-ox, -oy, -oz); return true; } diff --git a/src/main/java/com/hbm/render/block/RenderScaffoldDynamic.java b/src/main/java/com/hbm/render/block/RenderScaffoldDynamic.java deleted file mode 100644 index 91beb1e71..000000000 --- a/src/main/java/com/hbm/render/block/RenderScaffoldDynamic.java +++ /dev/null @@ -1,111 +0,0 @@ -package com.hbm.render.block; - -import org.lwjgl.opengl.GL11; - -import com.hbm.blocks.generic.BlockScaffoldDynamic; -import com.hbm.blocks.generic.BlockScaffoldDynamic.TileEntityScaffoldDynamic; -import com.hbm.render.util.RenderBlocksNT; - -import cpw.mods.fml.client.registry.ISimpleBlockRenderingHandler; -import net.minecraft.block.Block; -import net.minecraft.client.renderer.RenderBlocks; -import net.minecraft.client.renderer.Tessellator; -import net.minecraft.tileentity.TileEntity; -import net.minecraft.world.IBlockAccess; - -public class RenderScaffoldDynamic implements ISimpleBlockRenderingHandler { - - @Override - public void renderInventoryBlock(Block block, int metadata, int modelId, RenderBlocks renderer) { - - Tessellator tessellator = Tessellator.instance; - GL11.glTranslatef(-0.5F, -0.5F, -0.5F); - - tessellator.startDrawingQuads(); - - - renderer.setRenderBounds(0D, 0D, 0.875D, 0.75D, 1D, 1D); - tessellator.setNormal(0F, 1F, 0F); renderer.renderFaceYPos(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(0F, -1F, 0F); renderer.renderFaceYNeg(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(-1F, 0F, 0F); renderer.renderFaceXNeg(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(0F, 0F, 1F); renderer.renderFaceZPos(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(0F, 0F, -1F); renderer.renderFaceZNeg(block, 0, 0, 0, block.getIcon(0, 0)); - - - renderer.setRenderBounds(0.75D, 0D, 0.75D, 1D, 1D, 1D); - tessellator.setNormal(0F, 1F, 0F); renderer.renderFaceYPos(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(0F, -1F, 0F); renderer.renderFaceYNeg(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(1F, 0F, 0F); renderer.renderFaceXPos(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(-1F, 0F, 0F); renderer.renderFaceXNeg(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(0F, 0F, 1F); renderer.renderFaceZPos(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(0F, 0F, -1F); renderer.renderFaceZNeg(block, 0, 0, 0, block.getIcon(0, 0)); - - renderer.setRenderBounds(0.875D, 0D, 0D, 1D, 1D, 0.75D); - tessellator.setNormal(0F, 1F, 0F); renderer.renderFaceYPos(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(0F, -1F, 0F); renderer.renderFaceYNeg(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(1F, 0F, 0F); renderer.renderFaceXPos(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(-1F, 0F, 0F); renderer.renderFaceXNeg(block, 0, 0, 0, block.getIcon(0, 0)); - tessellator.setNormal(0F, 0F, -1F); renderer.renderFaceZNeg(block, 0, 0, 0, block.getIcon(0, 0)); - - tessellator.draw(); - } - - @Override - public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderer) { - Tessellator tessellator = Tessellator.instance; - tessellator.setBrightness(block.getMixedBrightnessForBlock(world, x, y, z)); - - renderer = RenderBlocksNT.INSTANCE.setWorld(world); - - TileEntity tile = world.getTileEntity(x, y, z); - if(!(tile instanceof TileEntityScaffoldDynamic)) return false; - TileEntityScaffoldDynamic scaffold = (TileEntityScaffoldDynamic) tile; - - boolean lpx = scaffold.has(scaffold.BAR_LOWER_POS_X); - boolean lnx = scaffold.has(scaffold.BAR_LOWER_NEG_X); - boolean upx = scaffold.has(scaffold.BAR_UPPER_POS_X); - boolean unx = scaffold.has(scaffold.BAR_UPPER_NEG_X); - boolean lpz = scaffold.has(scaffold.BAR_LOWER_POS_Z); - boolean lnz = scaffold.has(scaffold.BAR_LOWER_NEG_Z); - boolean upz = scaffold.has(scaffold.BAR_UPPER_POS_Z); - boolean unz = scaffold.has(scaffold.BAR_UPPER_NEG_Z); - - boolean p_nx_nz = scaffold.has(scaffold.POLE_NX_NZ); - boolean p_px_nz = scaffold.has(scaffold.POLE_PX_NZ); - boolean p_px_pz = scaffold.has(scaffold.POLE_PX_PZ); - boolean p_nx_pz = scaffold.has(scaffold.POLE_NX_PZ); - - BlockScaffoldDynamic.renderMode = 0; - if(p_nx_nz) { renderer.setRenderBounds(0D, 0D, 0D, 0.25D, 1D, 0.25D); renderer.renderStandardBlock(block, x, y, z); } - if(p_px_nz) { renderer.setRenderBounds(0.75D, 0D, 0D, 1D, 1D, 0.25D); renderer.renderStandardBlock(block, x, y, z); } - if(p_px_pz) { renderer.setRenderBounds(0.75D, 0D, 0.75D, 1D, 1D, 1D); renderer.renderStandardBlock(block, x, y, z); } - if(p_nx_pz) { renderer.setRenderBounds(0D, 0D, 0.75D, 0.25D, 1D, 1D); renderer.renderStandardBlock(block, x, y, z); } - - BlockScaffoldDynamic.renderMode = 1; - if(scaffold.has(scaffold.GRATE_LOWER)) { renderer.setRenderBounds(0.000, 0.000, 0.000, 1.000, 0.125, 1.000); renderer.renderStandardBlock(block, x, y, z); } - if(scaffold.has(scaffold.GRATE_UPPER)) { renderer.setRenderBounds(0.000, 0.875, 0.000, 1.000, 1.000, 1.000); renderer.renderStandardBlock(block, x, y, z); } - - BlockScaffoldDynamic.renderMode = 2; - - if(lpx) { renderer.setRenderBounds(0.75, 0.00, p_px_nz ? 0.25 : 0.00, 1.00, 0.25, p_px_pz ? 0.75 : 1.00); renderer.renderStandardBlock(block, x, y, z); } - if(upx) { renderer.setRenderBounds(0.75, 0.75, p_px_nz ? 0.25 : 0.00, 1.00, 1.00, p_px_pz ? 0.75 : 1.00); renderer.renderStandardBlock(block, x, y, z); } - if(lnx) { renderer.setRenderBounds(0.00, 0.00, p_nx_nz ? 0.25 : 0.00, 0.25, 0.25, p_nx_pz ? 0.75 : 1.00); renderer.renderStandardBlock(block, x, y, z); } - if(unx) { renderer.setRenderBounds(0.00, 0.75, p_nx_nz ? 0.25 : 0.00, 0.25, 1.00, p_nx_pz ? 0.75 : 1.00); renderer.renderStandardBlock(block, x, y, z); } - if(lpz) { renderer.setRenderBounds(p_nx_pz || lnx ? 0.25 : 0.00, 0.00, 0.75, p_px_pz || lpx ? 0.75 : 1.00, 0.25, 1.00); renderer.renderStandardBlock(block, x, y, z); } - if(upz) { renderer.setRenderBounds(p_nx_pz || unx ? 0.25 : 0.00, 0.75, 0.75, p_px_pz || upx ? 0.75 : 1.00, 1.00, 1.00); renderer.renderStandardBlock(block, x, y, z); } - if(lnz) { renderer.setRenderBounds(p_nx_nz || lnx ? 0.25 : 0.00, 0.00, 0.00, p_px_nz || lpx ? 0.75 : 1.00, 0.25, 0.25); renderer.renderStandardBlock(block, x, y, z); } - if(unz) { renderer.setRenderBounds(p_nx_nz || unx ? 0.25 : 0.00, 0.75, 0.00, p_px_nz || upx ? 0.75 : 1.00, 1.00, 0.25); renderer.renderStandardBlock(block, x, y, z); } - - return true; - } - - @Override - public boolean shouldRender3DInInventory(int modelId) { - return false; - } - - @Override - public int getRenderId() { - return BlockScaffoldDynamic.renderIDScaffold; - } -} diff --git a/src/main/java/com/hbm/render/entity/projectile/RenderBullet.java b/src/main/java/com/hbm/render/entity/projectile/RenderBullet.java index c97e4b982..f2cd70fc3 100644 --- a/src/main/java/com/hbm/render/entity/projectile/RenderBullet.java +++ b/src/main/java/com/hbm/render/entity/projectile/RenderBullet.java @@ -178,21 +178,6 @@ public class RenderBullet extends Render { GL11.glScalef(0.25F, 0.25F, 0.25F); GL11.glRotated(90, 0, 0, 1); GL11.glRotated(90, 0, 1, 0); - - switch(type) { - case 0: - bindTexture(new ResourceLocation(RefStrings.MODID + ":textures/entity/ModelGrenade.png")); break; - case 1: - bindTexture(new ResourceLocation(RefStrings.MODID + ":textures/entity/ModelGrenadeHE.png")); break; - case 2: - bindTexture(new ResourceLocation(RefStrings.MODID + ":textures/entity/ModelGrenadeIncendiary.png")); break; - case 3: - bindTexture(new ResourceLocation(RefStrings.MODID + ":textures/entity/ModelGrenadeToxic.png")); break; - case 4: - bindTexture(new ResourceLocation(RefStrings.MODID + ":textures/entity/ModelGrenadeSleek.png")); break; - case 5: - bindTexture(new ResourceLocation(RefStrings.MODID + ":textures/entity/ModelGrenadeTraining.png")); break; - } GL11.glShadeModel(GL11.GL_SMOOTH); bindTexture(ResourceManager.grenade_tex); diff --git a/src/main/java/com/hbm/render/entity/projectile/RenderBulletMK4.java b/src/main/java/com/hbm/render/entity/projectile/RenderBulletMK4.java new file mode 100644 index 000000000..561a71271 --- /dev/null +++ b/src/main/java/com/hbm/render/entity/projectile/RenderBulletMK4.java @@ -0,0 +1,36 @@ +package com.hbm.render.entity.projectile; + +import org.lwjgl.opengl.GL11; + +import com.hbm.entity.projectile.EntityBulletBaseMK4; +import com.hbm.main.ResourceManager; + +import net.minecraft.client.renderer.entity.Render; +import net.minecraft.entity.Entity; +import net.minecraft.util.ResourceLocation; + +public class RenderBulletMK4 extends Render { + + @Override + public void doRender(Entity entity, double x, double y, double z, float f0, float interp) { + EntityBulletBaseMK4 bullet = (EntityBulletBaseMK4) entity; + if(bullet.config == null) bullet.config = bullet.getBulletConfig(); + if(bullet.config == null) return; + + GL11.glPushMatrix(); + GL11.glTranslatef((float) x, (float) y, (float) z); + + if(bullet.config.renderRotations) { + GL11.glRotatef(bullet.prevRotationYaw + (bullet.rotationYaw - bullet.prevRotationYaw) * interp - 90.0F, 0.0F, 1.0F, 0.0F); + GL11.glRotatef(bullet.prevRotationPitch + (bullet.rotationPitch - bullet.prevRotationPitch) * interp + 180, 0.0F, 0.0F, 1.0F); + } + + if(bullet.config.renderer != null) { + bullet.config.renderer.accept(bullet, interp); + } + + GL11.glPopMatrix(); + } + + @Override protected ResourceLocation getEntityTexture(Entity entity) { return ResourceManager.universal; } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderAm180.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderAm180.java new file mode 100644 index 000000000..599f58f83 --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderAm180.java @@ -0,0 +1,131 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderAm180 extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.5F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 0.875); + + float offset = 0.8F; + standardAimingTransform(stack, + -1F * offset, -1F * offset, 1F * offset, + 0, -4.1875 / 8D, 0.25); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.am180_tex); + double scale = 0.1875D; + GL11.glScaled(scale, scale, scale); + + double[] equip = HbmAnimations.getRelevantTransformation("EQUIP"); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] magazine = HbmAnimations.getRelevantTransformation("MAG"); + double[] magTurn = HbmAnimations.getRelevantTransformation("MAGTURN"); + double[] magSpin = HbmAnimations.getRelevantTransformation("MAGSPIN"); + double[] bolt = HbmAnimations.getRelevantTransformation("BOLT"); + double[] turn = HbmAnimations.getRelevantTransformation("TURN"); + + GL11.glTranslated(0, -2, -6); + GL11.glRotated(equip[0], 1, 0, 0); + GL11.glTranslated(0, 2, 6); + + GL11.glRotated(turn[2], 0, 0, 1); + + GL11.glShadeModel(GL11.GL_SMOOTH); + + GL11.glTranslated(0, 0, recoil[2]); + + ResourceManager.am180.renderPart("Gun"); + ResourceManager.am180.renderPart("Silencer"); + ResourceManager.am180.renderPart("Trigger"); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0, bolt[2]); + ResourceManager.am180.renderPart("Bolt"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(magazine[0], magazine[1], magazine[2]); + + GL11.glTranslated(0, 2.0625, 3.75); + GL11.glRotated(magTurn[0], 1, 0, 0); + GL11.glRotated(magTurn[2], 0, 0, 1); + GL11.glTranslated(0, -2.0625, -3.75); + + GL11.glTranslated(0, 2.3125, 1.5); + GL11.glRotated(magSpin[0], 1, 0, 0); + GL11.glTranslated(0, -2.3125, -1.5); + + GL11.glPushMatrix(); + int mag = gun.getConfig(stack, 0).getReceivers(stack)[0].getMagazine(stack).getAmount(stack); + GL11.glTranslated(0, 0, 1.5); + GL11.glRotated(mag / 59D * 360D, 0, -1, 0); + GL11.glTranslated(0, 0, -1.5); + ResourceManager.am180.renderPart("Mag"); + GL11.glPopMatrix(); + + ResourceManager.am180.renderPart("MagPlate"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.875, 17); + GL11.glRotated(turn[2], 0, 0, -1); + GL11.glRotated(90, 0, 1, 0); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 0.25D); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.875, 16.75); + GL11.glRotated(90, 0, 1, 0); + GL11.glRotated(90 * gun.shotRand, 1, 0, 0); + GL11.glScaled(0.5, 0.5, 0.5); + this.renderMuzzleFlash(gun.lastShot[0], 75, 5); + GL11.glPopMatrix(); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + double scale = 1D; + GL11.glScaled(scale, scale, scale); + GL11.glTranslated(0, -0.5, 3); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 0.75D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(1.5, 0, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + GL11.glEnable(GL11.GL_LIGHTING); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.am180_tex); + ResourceManager.am180.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderAtlas.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderAtlas.java new file mode 100644 index 000000000..af8f2045b --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderAtlas.java @@ -0,0 +1,124 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderAtlas extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.25F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 0.875); + + float offset = 0.8F; + standardAimingTransform(stack, + -1.0F * offset, -0.75F * offset, 1F * offset, + 0, -3.125 / 8D, 0.25); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.bio_revolver_tex); + double scale = 0.125D; + GL11.glScaled(scale, scale, scale); + + GL11.glShadeModel(GL11.GL_SMOOTH); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] reloadMove = HbmAnimations.getRelevantTransformation("RELOAD_MOVE"); + double[] reloadRot = HbmAnimations.getRelevantTransformation("RELOAD_ROT"); + double[] equip = HbmAnimations.getRelevantTransformation("EQUIP"); + + GL11.glTranslated(recoil[0], recoil[1], recoil[2]); + GL11.glRotated(recoil[2] * 10, 1, 0, 0); + + GL11.glTranslated(0, 0, -7); + GL11.glRotated(equip[0], -1, 0, 0); + GL11.glTranslated(0, 0, 7); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.5, 9.25); + GL11.glRotated(-recoil[2] * 10, 1, 0, 0); + GL11.glRotated(90, 0, 1, 0); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 0.5D); + GL11.glPopMatrix(); + + GL11.glTranslated(reloadMove[0], reloadMove[1], reloadMove[2]); + + GL11.glRotated(reloadRot[0], 1, 0, 0); + GL11.glRotated(reloadRot[2], 0, 0, 1); + GL11.glRotated(reloadRot[1], 0, 1, 0); + ResourceManager.bio_revolver.renderPart("Grip"); + + GL11.glPushMatrix(); /// FRONT PUSH /// + GL11.glRotated(HbmAnimations.getRelevantTransformation("FRONT")[2], 1, 0, 0); + ResourceManager.bio_revolver.renderPart("Barrel"); + GL11.glPushMatrix(); /// LATCH PUSH /// + GL11.glTranslated(0, 2.3125, -0.875); + GL11.glRotated(HbmAnimations.getRelevantTransformation("LATCH")[2], 1, 0, 0); + GL11.glTranslated(0, -2.3125, 0.875); + ResourceManager.bio_revolver.renderPart("Latch"); + GL11.glPopMatrix(); /// LATCH POP /// + + GL11.glPushMatrix(); /// DRUM PUSH /// + GL11.glTranslated(0, 1, 0); + GL11.glRotated(HbmAnimations.getRelevantTransformation("DRUM")[2] * 60, 0, 0, 1); + GL11.glTranslated(0, -1, 0); + GL11.glTranslated(0, 0, HbmAnimations.getRelevantTransformation("DRUM_PUSH")[2]); + ResourceManager.bio_revolver.renderPart("Drum"); + GL11.glPopMatrix(); /// DRUM POP /// + + GL11.glPopMatrix(); /// FRONT POP /// + + GL11.glPushMatrix(); /// HAMMER /// + GL11.glTranslated(0, 0, -4.5); + GL11.glRotated(-45 + 45 * HbmAnimations.getRelevantTransformation("HAMMER")[2], 1, 0, 0); + GL11.glTranslated(0, 0, 4.5); + ResourceManager.bio_revolver.renderPart("Hammer"); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.5, 9.25); + GL11.glRotated(90, 0, 1, 0); + this.renderMuzzleFlash(gun.lastShot[0], 75, 7.5); + GL11.glPopMatrix(); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + GL11.glTranslated(0, 1, 3); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 1.125D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(-0.5, 1.5, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + GL11.glEnable(GL11.GL_LIGHTING); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.bio_revolver_tex); + ResourceManager.bio_revolver.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderCarbine.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderCarbine.java new file mode 100644 index 000000000..dbf04f6a1 --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderCarbine.java @@ -0,0 +1,114 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderCarbine extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.5F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 0.875); + + float offset = 0.8F; + standardAimingTransform(stack, + -1.5F * offset, -1.5F * offset, 0.875F * offset, + 0, -6.25 / 8D, 0.25); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.carbine_tex); + double scale = 0.5D; + GL11.glScaled(scale, scale, scale); + + double[] equip = HbmAnimations.getRelevantTransformation("EQUIP"); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] slide = HbmAnimations.getRelevantTransformation("SLIDE"); + double[] mag = HbmAnimations.getRelevantTransformation("MAG"); + double[] lift = HbmAnimations.getRelevantTransformation("LIFT"); + double[] bullet = HbmAnimations.getRelevantTransformation("BULLET"); + double[] rel = HbmAnimations.getRelevantTransformation("REL"); + + GL11.glTranslated(0, -1, -2); + GL11.glRotated(equip[0], 1, 0, 0); + GL11.glTranslated(0, 1, 2); + + GL11.glTranslated(0, 0, -2); + GL11.glRotated(lift[0], 1, 0, 0); + GL11.glTranslated(0, 0, 2); + + GL11.glTranslated(0, 0, recoil[2]); + + GL11.glShadeModel(GL11.GL_SMOOTH); + + ResourceManager.carbine.renderPart("Gun"); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0, slide[2]); + ResourceManager.carbine.renderPart("Slide"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(mag[0], mag[1], mag[2]); + ResourceManager.carbine.renderPart("Magazine"); + GL11.glTranslated(rel[0], rel[1], rel[2]); + if(bullet[0] != 1) ResourceManager.carbine.renderPart("Bullet"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1, 8); + GL11.glRotated(90, 0, 1, 0); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 0.25D); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1, 8); + GL11.glRotated(90, 0, 1, 0); + GL11.glRotated(90 * gun.shotRand, 1, 0, 0); + GL11.glScaled(0.5, 0.5, 0.5); + this.renderMuzzleFlash(gun.lastShot[0], 75, 7.5); + GL11.glPopMatrix(); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + double scale = 1.375D; + GL11.glScaled(scale, scale, scale); + GL11.glTranslated(0, 0, 2); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 1.375D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(-0.5, 0, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + GL11.glEnable(GL11.GL_LIGHTING); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.carbine_tex); + ResourceManager.carbine.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderCongoLake.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderCongoLake.java new file mode 100644 index 000000000..06a26a145 --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderCongoLake.java @@ -0,0 +1,160 @@ +package com.hbm.render.item.weapon.sedna; + +import java.awt.Color; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.mags.IMagazine; +import com.hbm.main.ResourceManager; +import com.hbm.particle.SpentCasing; +import com.hbm.render.anim.HbmAnimations; +import com.hbm.render.anim.HbmAnimations.AnimType; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderCongoLake extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.25F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 0.875); + + float offset = 0.8F; + standardAimingTransform(stack, + -1.5F * offset, -2F * offset, 1.25F * offset, + 0, -9 / 8D, 0.25); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.congolake_tex); + double scale = 0.5D; + GL11.glScaled(scale, scale, scale); + + HbmAnimations.applyRelevantTransformation("Gun"); + ResourceManager.congolake.renderPart("Gun"); + + + GL11.glPushMatrix(); + { + HbmAnimations.applyRelevantTransformation("Pump"); + ResourceManager.congolake.renderPart("Pump"); + } + GL11.glPopMatrix(); + + + GL11.glPushMatrix(); + { + HbmAnimations.applyRelevantTransformation("Sight"); + ResourceManager.congolake.renderPart("Sight"); + } + GL11.glPopMatrix(); + + + GL11.glPushMatrix(); + { + HbmAnimations.applyRelevantTransformation("Loop"); + ResourceManager.congolake.renderPart("Loop"); + } + GL11.glPopMatrix(); + + + GL11.glPushMatrix(); + { + HbmAnimations.applyRelevantTransformation("GuardOuter"); + ResourceManager.congolake.renderPart("GuardOuter"); + + GL11.glPushMatrix(); + { + HbmAnimations.applyRelevantTransformation("GuardInner"); + ResourceManager.congolake.renderPart("GuardInner"); + } + GL11.glPopMatrix(); + } + GL11.glPopMatrix(); + + + GL11.glPushMatrix(); + { + IMagazine mag = gun.getConfig(stack, 0).getReceivers(stack)[0].getMagazine(stack); + if(gun.getLastAnim(stack, 0) != AnimType.INSPECT || mag.getAmount(stack) > 0) { //omit when inspecting and no shell is loaded + + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.casings_tex); + + HbmAnimations.applyRelevantTransformation("Shell"); + + SpentCasing casing = mag.getCasing(stack); + int[] colors = casing != null ? casing.getColors() : new int[] { SpentCasing.COLOR_CASE_40MM }; + + Color shellColor = new Color(colors[0]); + GL11.glColor3f(shellColor.getRed() / 255F, shellColor.getGreen() / 255F, shellColor.getBlue() / 255F); + ResourceManager.congolake.renderPart("Shell"); + + Color shellForeColor = new Color(colors.length > 1 ? colors[1] : colors[0]); + GL11.glColor3f(shellForeColor.getRed() / 255F, shellForeColor.getGreen() / 255F, shellForeColor.getBlue() / 255F); + ResourceManager.congolake.renderPart("ShellFore"); + + GL11.glColor3f(1F, 1F, 1F); + } + } + GL11.glPopMatrix(); + + double smokeScale = 0.25; + + GL11.glShadeModel(GL11.GL_SMOOTH); + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.75, 4.25); + double[] transform = HbmAnimations.getRelevantTransformation("Gun"); + GL11.glRotated(-transform[5], 0, 0, 1); + GL11.glRotated(-transform[4], 0, 1, 0); + GL11.glRotated(-transform[3], 1, 0, 0); + GL11.glRotated(90, 0, 1, 0); + GL11.glScaled(smokeScale, smokeScale, smokeScale); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 1D); + GL11.glPopMatrix(); + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.75, 4.25); + GL11.glRotated(90, 0, 1, 0); + GL11.glRotated(90 * gun.shotRand, 1, 0, 0); + GL11.glScaled(0.5, 0.5, 0.5); + this.renderMuzzleFlash(gun.lastShot[0], 150, 7.5); + GL11.glPopMatrix(); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + GL11.glTranslated(0, -2.5, 4); + double scale = 2.5D; + GL11.glScaled(scale, scale, scale); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 2.5D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(0, -1.25, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + GL11.glEnable(GL11.GL_LIGHTING); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.congolake_tex); + ResourceManager.congolake.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderDANI.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderDANI.java new file mode 100644 index 000000000..af2507d02 --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderDANI.java @@ -0,0 +1,187 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderDANI extends ItemRenderWeaponBase { + + @Override public boolean isAkimbo() { return true; } + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.25F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 0.875); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + float offset = 0.8F; + + for(int i = -1; i <= 1; i += 2) { + + int index = i == -1 ? 0 : 1; + Minecraft.getMinecraft().renderEngine.bindTexture(index == 0 ? ResourceManager.dani_celestial_tex : ResourceManager.dani_lunar_tex); + + GL11.glPushMatrix(); + + standardAimingTransform(stack, + -1.5F * offset * i, -0.75F * offset, 1F * offset, + 0, -3.125 / 8D, 0.25); + + double scale = 0.125D; + GL11.glScaled(scale, scale, scale); + + GL11.glShadeModel(GL11.GL_SMOOTH); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL", index); + double[] reloadMove = HbmAnimations.getRelevantTransformation("RELOAD_MOVE", index); + double[] reloadRot = HbmAnimations.getRelevantTransformation("RELOAD_ROT", index); + double[] equip = HbmAnimations.getRelevantTransformation("EQUIP", index); + + GL11.glTranslated(recoil[0], recoil[1], recoil[2]); + GL11.glRotated(recoil[2] * 10, 1, 0, 0); + + GL11.glTranslated(0, -2, -2); + GL11.glRotated(equip[0], -1, 0, 0); + GL11.glTranslated(0, 2, 2); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.5, 9.25); + GL11.glRotated(-recoil[2] * 10, 1, 0, 0); + GL11.glRotated(90, 0, 1, 0); + this.renderSmokeNodes(gun.getConfig(stack, index).smokeNodes, 0.5D); + GL11.glPopMatrix(); + + GL11.glTranslated(reloadMove[0], reloadMove[1], reloadMove[2]); + + GL11.glRotated(reloadRot[0], 1, 0, 0); + GL11.glRotated(reloadRot[2] * i, 0, 0, 1); + GL11.glRotated(reloadRot[1] * i, 0, 1, 0); + ResourceManager.bio_revolver.renderPart("Grip"); + + GL11.glPushMatrix(); /// FRONT PUSH /// + GL11.glRotated(HbmAnimations.getRelevantTransformation("FRONT", index)[2], 1, 0, 0); + ResourceManager.bio_revolver.renderPart("Barrel"); + GL11.glPushMatrix(); /// LATCH PUSH /// + GL11.glTranslated(0, 2.3125, -0.875); + GL11.glRotated(HbmAnimations.getRelevantTransformation("LATCH", index)[2], 1, 0, 0); + GL11.glTranslated(0, -2.3125, 0.875); + ResourceManager.bio_revolver.renderPart("Latch"); + GL11.glPopMatrix(); /// LATCH POP /// + + GL11.glPushMatrix(); /// DRUM PUSH /// + GL11.glTranslated(0, 1, 0); + GL11.glRotated(HbmAnimations.getRelevantTransformation("DRUM", index)[2] * 60, 0, 0, 1); + GL11.glTranslated(0, -1, 0); + GL11.glTranslated(0, 0, HbmAnimations.getRelevantTransformation("DRUM_PUSH", index)[2]); + ResourceManager.bio_revolver.renderPart("Drum"); + GL11.glPopMatrix(); /// DRUM POP /// + + GL11.glPopMatrix(); /// FRONT POP /// + + GL11.glPushMatrix(); /// HAMMER /// + GL11.glTranslated(0, 0, -4.5); + GL11.glRotated(-45 + 45 * HbmAnimations.getRelevantTransformation("HAMMER", index)[2], 1, 0, 0); + GL11.glTranslated(0, 0, 4.5); + ResourceManager.bio_revolver.renderPart("Hammer"); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.5, 9.25); + GL11.glRotated(90, 0, 1, 0); + this.renderMuzzleFlash(gun.lastShot[index], 75, 7.5); + GL11.glPopMatrix(); + + GL11.glPopMatrix(); + } + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + GL11.glTranslated(0, 1, 3); + } + + @Override + public void setupThirdPersonAkimbo(ItemStack stack) { + super.setupThirdPersonAkimbo(stack); + GL11.glTranslated(0, 1, 3); + } + + @Override + public void setupInv(ItemStack stack) { + GL11.glScaled(1, 1, -1); + GL11.glTranslated(8, 6, 0); + double scale = 1.125D; + GL11.glScaled(scale, scale, scale); + } + + @Override + public void renderInv(ItemStack stack) { + + GL11.glEnable(GL11.GL_LIGHTING); + GL11.glShadeModel(GL11.GL_SMOOTH); + + GL11.glPushMatrix(); + GL11.glRotated(225, 0, 0, 1); + GL11.glRotated(90, 0, 1, 0); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(2, 0, 0); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.dani_celestial_tex); + ResourceManager.bio_revolver.renderAll(); + GL11.glPopMatrix(); + + GL11.glTranslated(0, 0, 5); + GL11.glPushMatrix(); + GL11.glRotated(225, 0, 0, 1); + GL11.glRotated(-90, 0, 1, 0); + GL11.glRotated(-90, 1, 0, 0); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(-45, 0, 1, 0); + GL11.glTranslated(-2, 0, 0); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.dani_lunar_tex); + ResourceManager.bio_revolver.renderAll(); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + } + + @Override + public void renderEquipped(ItemStack stack) { + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.dani_lunar_tex); + ResourceManager.bio_revolver.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } + + @Override + public void renderEquippedAkimbo(ItemStack stack) { + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.dani_celestial_tex); + ResourceManager.bio_revolver.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.dani_celestial_tex); + ResourceManager.bio_revolver.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderDebug.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderDebug.java index 1294c7443..f4875de7f 100644 --- a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderDebug.java +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderDebug.java @@ -15,7 +15,7 @@ public class ItemRenderDebug extends ItemRenderWeaponBase { protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.25F; } @Override - protected void setupFirstPerson(ItemStack stack) { + public void setupFirstPerson(ItemStack stack) { GL11.glTranslated(0, 0, 1); float offset = 0.8F; @@ -27,28 +27,49 @@ public class ItemRenderDebug extends ItemRenderWeaponBase { @Override public void renderFirstPerson(ItemStack stack) { + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + double scale = 0.125D; GL11.glScaled(scale, scale, scale); GL11.glRotated(90, 0, 1, 0); - + double[] equipSpin = HbmAnimations.getRelevantTransformation("ROTATE"); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] reloadLift = HbmAnimations.getRelevantTransformation("RELOAD_LIFT"); + double[] reloadJolt = HbmAnimations.getRelevantTransformation("RELOAD_JOLT"); + double[] reloadTilt = HbmAnimations.getRelevantTransformation("RELAOD_TILT"); + double[] cylinderFlip = HbmAnimations.getRelevantTransformation("RELOAD_CYLINDER"); + double[] reloadBullets = HbmAnimations.getRelevantTransformation("RELOAD_BULLETS"); + GL11.glRotated(equipSpin[0], 0, 0, 1); - double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); standardAimingTransform(stack, 0, 0, recoil[2], -recoil[2], 0, 0); - GL11.glRotated(recoil[2] * 10, 0, 0, 1); GL11.glShadeModel(GL11.GL_SMOOTH); + + GL11.glPushMatrix(); + GL11.glTranslated(-9, 2.5, 0); + GL11.glRotated(recoil[2] * -10, 0, 0, 1); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 0.5D); + GL11.glPopMatrix(); + + GL11.glRotated(reloadLift[0], 0, 0, 1); + GL11.glTranslated(reloadJolt[0], 0, 0); + GL11.glRotated(reloadTilt[0], 1, 0, 0); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.debug_gun_tex); ResourceManager.lilmac.renderPart("Gun"); GL11.glPushMatrix(); + GL11.glRotated(cylinderFlip[0], 1, 0, 0); ResourceManager.lilmac.renderPart("Pivot"); GL11.glTranslated(0, 1.75, 0); GL11.glRotated(HbmAnimations.getRelevantTransformation("DRUM")[2] * -60, 1, 0, 0); GL11.glTranslated(0, -1.75, 0); ResourceManager.lilmac.renderPart("Cylinder"); + GL11.glTranslated(reloadBullets[0], reloadBullets[1], reloadBullets[2]); + if(HbmAnimations.getRelevantTransformation("RELOAD_BULLETS_CON")[0] != 1) ResourceManager.lilmac.renderPart("Bullets"); ResourceManager.lilmac.renderPart("Casings"); GL11.glPopMatrix(); @@ -61,10 +82,29 @@ public class ItemRenderDebug extends ItemRenderWeaponBase { GL11.glPopMatrix(); GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0.125, 2.5, 0); + this.renderGapFlash(gun.lastShot[0]); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(-9.5, 2.5, 0); + GL11.glRotated(90 * gun.shotRand, 1, 0, 0); + //this.renderMuzzleFlash(gun.lastShot); + GL11.glPopMatrix(); } @Override - protected void setupInv(ItemStack stack) { + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + GL11.glScaled(0.75, 0.75, 0.75); + GL11.glTranslated(0, 1, 3); + + } + + @Override + public void setupInv(ItemStack stack) { super.setupInv(stack); double scale = 1.25D; GL11.glScaled(scale, scale, scale); diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderFlaregun.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderFlaregun.java new file mode 100644 index 000000000..3a7e62e71 --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderFlaregun.java @@ -0,0 +1,111 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderFlaregun extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.25F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 0.875); + + float offset = 0.8F; + standardAimingTransform(stack, + -1.25F * offset, -1.5F * offset, 2F * offset, + 0, -5.5 / 8D, 1); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.flaregun_tex); + double scale = 0.125D; + GL11.glScaled(scale, scale, scale); + + double[] equip = HbmAnimations.getRelevantTransformation("EQUIP"); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] hammer = HbmAnimations.getRelevantTransformation("HAMMER"); + double[] open = HbmAnimations.getRelevantTransformation("OPEN"); + double[] shell = HbmAnimations.getRelevantTransformation("SHELL"); + double[] flip = HbmAnimations.getRelevantTransformation("FLIP"); + + GL11.glTranslated(recoil[0], recoil[1], recoil[2]); + GL11.glRotated(recoil[2] * 10, 1, 0, 0); + GL11.glRotated(flip[0], 1, 0, 0); + + GL11.glTranslated(0, 0, -8); + GL11.glRotated(equip[0], -1, 0, 0); + GL11.glTranslated(0, 0, 8); + + GL11.glShadeModel(GL11.GL_SMOOTH); + ResourceManager.flaregun.renderPart("Gun"); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.8125, -4); + GL11.glRotated(hammer[0] - 15, 1, 0, 0); + GL11.glTranslated(0, -1.8125, 4); + ResourceManager.flaregun.renderPart("Hammer"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 2.156, 1.78); + GL11.glRotated(open[0], 1, 0, 0); + GL11.glTranslated(0, -2.156, -1.78); + ResourceManager.flaregun.renderPart("Barrel"); + GL11.glTranslated(shell[0], shell[1], shell[2]); + ResourceManager.flaregun.renderPart("Flare"); + GL11.glPopMatrix(); + + double smokeScale = 0.5; + + GL11.glPushMatrix(); + GL11.glTranslated(0, 4, 9); + GL11.glRotated(90, 0, 1, 0); + GL11.glScaled(smokeScale, smokeScale, smokeScale); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 2.5D); + GL11.glTranslated(0, 0, 0.1); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 2D); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + double scale = 0.5D; + GL11.glScaled(scale, scale, scale); + GL11.glTranslated(0, 0.25, 3); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 1D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(-0.5, 0, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + GL11.glEnable(GL11.GL_LIGHTING); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.flaregun_tex); + ResourceManager.flaregun.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderGreasegun.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderGreasegun.java new file mode 100644 index 000000000..0f6e044f0 --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderGreasegun.java @@ -0,0 +1,140 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderGreasegun extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.5F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 0.875); + + float offset = 0.8F; + standardAimingTransform(stack, + -1.5F * offset, -1F * offset, 1.75F * offset, + 0, -2.625 / 8D, 1.125); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.greasegun_tex); + double scale = 0.375D; + GL11.glScaled(scale, scale, scale); + + double[] equip = HbmAnimations.getRelevantTransformation("EQUIP"); + double[] stock = HbmAnimations.getRelevantTransformation("STOCK"); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] flap = HbmAnimations.getRelevantTransformation("FLAP"); + double[] lift = HbmAnimations.getRelevantTransformation("LIFT"); + double[] handle = HbmAnimations.getRelevantTransformation("HANDLE"); + double[] mag = HbmAnimations.getRelevantTransformation("MAG"); + double[] turn = HbmAnimations.getRelevantTransformation("TURN"); + double[] bullet = HbmAnimations.getRelevantTransformation("BULLET"); + + GL11.glTranslated(0, -3, -3); + GL11.glRotated(equip[0], 1, 0, 0); + GL11.glTranslated(0, 3, 3); + + GL11.glTranslated(0, -3, -3); + GL11.glRotated(lift[0], 1, 0, 0); + GL11.glTranslated(0, 3, 3); + + GL11.glRotated(turn[2], 0, 0, 1); + + GL11.glTranslated(0, 0, recoil[2]); + + GL11.glShadeModel(GL11.GL_SMOOTH); + ResourceManager.greasegun.renderPart("Gun"); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0, -4 - stock[2]); + ResourceManager.greasegun.renderPart("Stock"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(mag[0], mag[1], mag[2]); + ResourceManager.greasegun.renderPart("Magazine"); + if(bullet[0] != 1) ResourceManager.greasegun.renderPart("Bullet"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, -1.4375, -0.125); + GL11.glRotated(handle[0], 1, 0, 0); + GL11.glTranslated(0, 1.4375, 0.125); + ResourceManager.greasegun.renderPart("Handle"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0.53125, 0); + GL11.glRotated(flap[2], 0, 0, 1); + GL11.glTranslated(0, -0.5125, 0); + ResourceManager.greasegun.renderPart("Flap"); + GL11.glPopMatrix(); + + double smokeScale = 0.25; + + GL11.glPushMatrix(); + GL11.glTranslated(-0.25, 0, 1.5); + GL11.glRotated(turn[2], 0, 0, -1); + GL11.glRotated(90, 0, 1, 0); + GL11.glScaled(smokeScale, smokeScale, smokeScale); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 1D); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0, 8); + GL11.glRotated(turn[2], 0, 0, -1); + GL11.glRotated(90, 0, 1, 0); + GL11.glScaled(smokeScale, smokeScale, smokeScale); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 1D); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0, 8); + GL11.glRotated(90, 0, 1, 0); + GL11.glRotated(90 * gun.shotRand, 1, 0, 0); + GL11.glScaled(0.5, 0.5, 0.5); + this.renderMuzzleFlash(gun.lastShot[0], 75, 7.5); + GL11.glPopMatrix(); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + GL11.glTranslated(0, 1, 3); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 1.5D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(-0.5, 2, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + GL11.glEnable(GL11.GL_LIGHTING); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.greasegun_tex); + ResourceManager.greasegun.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderHeavyRevolver.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderHeavyRevolver.java new file mode 100644 index 000000000..740b76577 --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderHeavyRevolver.java @@ -0,0 +1,135 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderHeavyRevolver extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.25F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 1); + + float offset = 0.8F; + standardAimingTransform(stack, + -1.0F * offset, -0.75F * offset, 1F * offset, + 0, -3.875 / 8D, 0); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + + double scale = 0.125D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(90, 0, 1, 0); + + double[] equipSpin = HbmAnimations.getRelevantTransformation("ROTATE"); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] reloadLift = HbmAnimations.getRelevantTransformation("RELOAD_LIFT"); + double[] reloadJolt = HbmAnimations.getRelevantTransformation("RELOAD_JOLT"); + double[] reloadTilt = HbmAnimations.getRelevantTransformation("RELAOD_TILT"); + double[] cylinderFlip = HbmAnimations.getRelevantTransformation("RELOAD_CYLINDER"); + double[] reloadBullets = HbmAnimations.getRelevantTransformation("RELOAD_BULLETS"); + + GL11.glTranslated(6, -3, 0); + GL11.glRotated(equipSpin[0], 0, 0, 1); + GL11.glTranslated(-6, 3, 0); + + standardAimingTransform(stack, 0, 0, recoil[2], -recoil[2], 0, 0); + GL11.glRotated(recoil[2] * 10, 0, 0, 1); + + GL11.glShadeModel(GL11.GL_SMOOTH); + + GL11.glPushMatrix(); + GL11.glTranslated(-9, 2.5, 0); + GL11.glRotated(recoil[2] * -10, 0, 0, 1); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 0.5D); + GL11.glPopMatrix(); + + GL11.glRotated(reloadLift[0], 0, 0, 1); + GL11.glTranslated(reloadJolt[0], 0, 0); + GL11.glRotated(reloadTilt[0], 1, 0, 0); + + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.heavy_revolver_tex); + ResourceManager.lilmac.renderPart("Gun"); + + GL11.glPushMatrix(); + GL11.glRotated(cylinderFlip[0], 1, 0, 0); + ResourceManager.lilmac.renderPart("Pivot"); + GL11.glTranslated(0, 1.75, 0); + GL11.glRotated(HbmAnimations.getRelevantTransformation("DRUM")[2] * -60, 1, 0, 0); + GL11.glTranslated(0, -1.75, 0); + ResourceManager.lilmac.renderPart("Cylinder"); + GL11.glTranslated(reloadBullets[0], reloadBullets[1], reloadBullets[2]); + if(HbmAnimations.getRelevantTransformation("RELOAD_BULLETS_CON")[0] != 1) + ResourceManager.lilmac.renderPart("Bullets"); + ResourceManager.lilmac.renderPart("Casings"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); /// HAMMER /// + GL11.glTranslated(4, 1.25, 0); + GL11.glRotated(-30 + 30 * HbmAnimations.getRelevantTransformation("HAMMER")[2], 0, 0, 1); + GL11.glTranslated(-4, -1.25, 0); + ResourceManager.lilmac.renderPart("Hammer"); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0.125, 2.5, 0); + this.renderGapFlash(gun.lastShot[0]); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(-9.5, 2.5, 0); + GL11.glRotated(90 * gun.shotRand, 1, 0, 0); + //this.renderMuzzleFlash(gun.lastShot); + GL11.glPopMatrix(); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + GL11.glScaled(0.75, 0.75, 0.75); + GL11.glTranslated(0, 1, 3); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 1.25D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + + GL11.glRotated(90, 0, 1, 0); + GL11.glEnable(GL11.GL_LIGHTING); + GL11.glAlphaFunc(GL11.GL_GREATER, 0F); + GL11.glEnable(GL11.GL_ALPHA_TEST); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.heavy_revolver_tex); + ResourceManager.lilmac.renderPart("Gun"); + ResourceManager.lilmac.renderPart("Cylinder"); + ResourceManager.lilmac.renderPart("Bullets"); + ResourceManager.lilmac.renderPart("Casings"); + ResourceManager.lilmac.renderPart("Pivot"); + ResourceManager.lilmac.renderPart("Hammer"); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderHenry.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderHenry.java new file mode 100644 index 000000000..0c89e72f0 --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderHenry.java @@ -0,0 +1,151 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderHenry extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.5F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 0.875); + + float offset = 0.8F; + standardAimingTransform(stack, + -1.25F * offset, -1F * offset, 1.75F * offset, + 0, -5 / 8D, 1); + + float aimingProgress = ItemGunBaseNT.prevAimingProgress + (ItemGunBaseNT.aimingProgress - ItemGunBaseNT.prevAimingProgress) * interp; + double r = -2.5 * aimingProgress; + GL11.glRotated(r, 1, 0, 0); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.henry_tex); + double scale = 0.375D; + GL11.glScaled(scale, scale, scale); + + double[] equip = HbmAnimations.getRelevantTransformation("EQUIP"); + double[] sight = HbmAnimations.getRelevantTransformation("SIGHT"); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] hammer = HbmAnimations.getRelevantTransformation("HAMMER"); + double[] lever = HbmAnimations.getRelevantTransformation("LEVER"); + double[] turn = HbmAnimations.getRelevantTransformation("TURN"); + double[] lift = HbmAnimations.getRelevantTransformation("LIFT"); + double[] twist = HbmAnimations.getRelevantTransformation("TWIST"); + double[] bullet = HbmAnimations.getRelevantTransformation("BULLET"); + double[] yeet = HbmAnimations.getRelevantTransformation("YEET"); + double[] roll = HbmAnimations.getRelevantTransformation("ROLL"); + + GL11.glShadeModel(GL11.GL_SMOOTH); + + GL11.glTranslated(recoil[0] * 2, recoil[1], recoil[2]); + GL11.glRotated(recoil[2] * 5, 1, 0, 0); + GL11.glRotated(turn[2], 0, 0, 1); + + GL11.glTranslated(yeet[0], yeet[1], yeet[2]); + + GL11.glTranslated(0, 1, 0); + GL11.glRotated(roll[2], 0, 0, 1); + GL11.glTranslated(0, -1, 0); + + GL11.glTranslated(0, -4, 4); + GL11.glRotated(lift[0], 1, 0, 0); + GL11.glTranslated(0, 4, -4); + + GL11.glTranslated(0, 2, -4); + GL11.glRotated(equip[0], -1, 0, 0); + GL11.glTranslated(0, -2, 4); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1, 8); + GL11.glRotated(turn[2], 0, 0, -1); + GL11.glRotated(90, 0, 1, 0); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 0.25D); + GL11.glPopMatrix(); + + ResourceManager.henry.renderPart("Gun"); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.25, -0.1875); + GL11.glRotated(sight[0], 1, 0, 0); + GL11.glTranslated(0, -1.25, 0.1875); + ResourceManager.henry.renderPart("Sight"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0.625, -3); + GL11.glRotated(-30 + hammer[0], 1, 0, 0); + GL11.glTranslated(0, -0.625, 3); + ResourceManager.henry.renderPart("Hammer"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0.25, -2.3125); + GL11.glRotated(lever[0], 1, 0, 0); + GL11.glTranslated(0, -0.25, 2.3125); + ResourceManager.henry.renderPart("Lever"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1, 0); + GL11.glRotated(twist[2], 0, 0, 1); + GL11.glTranslated(0, -1, 0); + ResourceManager.henry.renderPart("Front"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(bullet[0], bullet[1], bullet[2] - 1); + ResourceManager.henry.renderPart("Bullet"); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1, 8); + GL11.glRotated(90, 0, 1, 0); + GL11.glRotated(90 * gun.shotRand, 1, 0, 0); + this.renderMuzzleFlash(gun.lastShot[0], 75, 5); + GL11.glPopMatrix(); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + double scale = 1.75D; + GL11.glScaled(scale, scale, scale); + GL11.glTranslated(0, 0.25, 3); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 1.5D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(-0.5, 0.5, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + GL11.glEnable(GL11.GL_LIGHTING); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.henry_tex); + ResourceManager.henry.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderLiberator.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderLiberator.java new file mode 100644 index 000000000..7421322f5 --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderLiberator.java @@ -0,0 +1,148 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.GunConfig; +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderLiberator extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.25F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 0.875); + + float offset = 0.8F; + standardAimingTransform(stack, + -1.5F * offset, -1.25F * offset, 1.25F * offset, + 0, -4.625 / 8D, 0.25); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.liberator_tex); + double scale = 0.375D; + GL11.glScaled(scale, scale, scale); + + double[] equip = HbmAnimations.getRelevantTransformation("EQUIP"); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] lift = HbmAnimations.getRelevantTransformation("LIFT"); + double[] latch = HbmAnimations.getRelevantTransformation("LATCH"); + double[] brk = HbmAnimations.getRelevantTransformation("BREAK"); + double[] shell1 = HbmAnimations.getRelevantTransformation("SHELL1"); + double[] shell2 = HbmAnimations.getRelevantTransformation("SHELL2"); + double[] shell3 = HbmAnimations.getRelevantTransformation("SHELL3"); + double[] shell4 = HbmAnimations.getRelevantTransformation("SHELL4"); + + GL11.glTranslated(0, -1, -3); + GL11.glRotated(equip[0], 1, 0, 0); + GL11.glTranslated(0, 1, 3); + + GL11.glTranslated(0, -3, -3); + GL11.glRotated(lift[0], 1, 0, 0); + GL11.glTranslated(0, 3, 3); + + GL11.glTranslated(recoil[0] * 2, recoil[1], recoil[2]); + GL11.glRotated(recoil[2] * 10, 1, 0, 0); + + GL11.glShadeModel(GL11.GL_SMOOTH); + + ResourceManager.liberator.renderPart("Gun"); + + GL11.glPushMatrix(); + + GL11.glTranslated(0, -0.5, 0.75); + GL11.glRotated(brk[0], 1, 0, 0); + GL11.glTranslated(0, 0.5, -0.75); + ResourceManager.liberator.renderPart("Barrel"); + + GL11.glPushMatrix(); + GL11.glTranslated(shell1[0], shell1[1], shell1[2]); + ResourceManager.liberator.renderPart("Shell1"); + GL11.glPopMatrix(); + GL11.glPushMatrix(); + GL11.glTranslated(shell2[0], shell2[1], shell2[2]); + ResourceManager.liberator.renderPart("Shell2"); + GL11.glPopMatrix(); + GL11.glPushMatrix(); + GL11.glTranslated(shell3[0], shell3[1], shell3[2]); + ResourceManager.liberator.renderPart("Shell3"); + GL11.glPopMatrix(); + GL11.glPushMatrix(); + GL11.glTranslated(shell4[0], shell4[1], shell4[2]); + ResourceManager.liberator.renderPart("Shell4"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1.15625, 0.75); + GL11.glRotated(latch[0], 1, 0, 0); + GL11.glTranslated(0, -1.15625, -0.75); + ResourceManager.liberator.renderPart("Latch"); + GL11.glPopMatrix(); + GL11.glPopMatrix(); + + double smokeScale = 0.375; + + GunConfig cfg = gun.getConfig(stack, 0); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0.25, 7.25); + GL11.glRotated(90, 0, 1, 0); + GL11.glScaled(smokeScale, smokeScale, smokeScale); + GL11.glTranslated(0, 0, 0.25 / smokeScale); + this.renderSmokeNodes(cfg.smokeNodes, 1D); + GL11.glTranslated(0, 0, -0.5 / smokeScale); + this.renderSmokeNodes(cfg.smokeNodes, 1D); + GL11.glTranslated(0, 0.5 / smokeScale, 0); + this.renderSmokeNodes(cfg.smokeNodes, 1D); + GL11.glTranslated(0, 0, 0.5 / smokeScale); + this.renderSmokeNodes(cfg.smokeNodes, 1D); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0.5, 8); + GL11.glRotated(90, 0, 1, 0); + GL11.glRotated(90 * gun.shotRand, 1, 0, 0); + GL11.glScaled(1.5, 1.5, 1.5); + this.renderMuzzleFlash(gun.lastShot[0], 75, 5); + GL11.glPopMatrix(); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + GL11.glTranslated(0, 1, 3); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 1.5D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(-0.5, 0.5, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + GL11.glEnable(GL11.GL_LIGHTING); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.liberator_tex); + ResourceManager.liberator.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderMaresleg.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderMaresleg.java new file mode 100644 index 000000000..1d94563bb --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderMaresleg.java @@ -0,0 +1,128 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderMaresleg extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.5F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 0.875); + + float offset = 0.8F; + standardAimingTransform(stack, + -1.25F * offset, -1F * offset, 2F * offset, + 0, -3.875 / 8D, 1); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.maresleg_tex); + double scale = 0.375D; + GL11.glScaled(scale, scale, scale); + + double[] equip = HbmAnimations.getRelevantTransformation("EQUIP"); + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] lever = HbmAnimations.getRelevantTransformation("LEVER"); + double[] turn = HbmAnimations.getRelevantTransformation("TURN"); + double[] lift = HbmAnimations.getRelevantTransformation("LIFT"); + double[] shell = HbmAnimations.getRelevantTransformation("SHELL"); + double[] flag = HbmAnimations.getRelevantTransformation("FLAG"); + + GL11.glShadeModel(GL11.GL_SMOOTH); + + GL11.glTranslated(recoil[0] * 2, recoil[1], recoil[2]); + GL11.glRotated(recoil[2] * 5, 1, 0, 0); + GL11.glRotated(turn[2], 0, 0, 1); + + GL11.glTranslated(0, 0, -4); + GL11.glRotated(lift[0], 1, 0, 0); + GL11.glTranslated(0, 0, 4); + + GL11.glTranslated(0, 0, -4); + GL11.glRotated(equip[0], -1, 0, 0); + GL11.glTranslated(0, 0, 4); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1, 8); + GL11.glRotated(turn[2], 0, 0, -1); + GL11.glRotated(90, 0, 1, 0); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 0.25D); + GL11.glPopMatrix(); + + ResourceManager.maresleg.renderPart("Gun"); + ResourceManager.maresleg.renderPart("Stock"); + ResourceManager.maresleg.renderPart("Barrel"); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0.125, -2.875); + GL11.glRotated(lever[0], 1, 0, 0); + GL11.glTranslated(0, -0.125, 2.875); + ResourceManager.maresleg.renderPart("Lever"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(shell[0], shell[1] - 0.75, shell[2]); + ResourceManager.maresleg.renderPart("Shell"); + GL11.glPopMatrix(); + + if(flag[0] != 0) { + GL11.glPushMatrix(); + GL11.glTranslated(0, -0.5, 0); + ResourceManager.maresleg.renderPart("Shell"); + GL11.glPopMatrix(); + } + + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 1, 8); + GL11.glRotated(90, 0, 1, 0); + GL11.glRotated(90 * gun.shotRand, 1, 0, 0); + this.renderMuzzleFlash(gun.lastShot[0], 75, 5); + GL11.glPopMatrix(); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + double scale = 1.75D; + GL11.glScaled(scale, scale, scale); + GL11.glTranslated(0, 0.25, 3); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 1.4375D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(-0.5, 0.5, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + GL11.glEnable(GL11.GL_LIGHTING); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.maresleg_tex); + ResourceManager.maresleg.renderPart("Gun"); + ResourceManager.maresleg.renderPart("Stock"); + ResourceManager.maresleg.renderPart("Barrel"); + ResourceManager.maresleg.renderPart("Lever"); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderPepperbox.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderPepperbox.java new file mode 100644 index 000000000..903ce4f9f --- /dev/null +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderPepperbox.java @@ -0,0 +1,129 @@ +package com.hbm.render.item.weapon.sedna; + +import org.lwjgl.opengl.GL11; + +import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.main.ResourceManager; +import com.hbm.render.anim.HbmAnimations; + +import net.minecraft.client.Minecraft; +import net.minecraft.item.ItemStack; + +public class ItemRenderPepperbox extends ItemRenderWeaponBase { + + @Override + protected float getTurnMagnitude(ItemStack stack) { return ItemGunBaseNT.getIsAiming(stack) ? 2.5F : -0.5F; } + + @Override + public void setupFirstPerson(ItemStack stack) { + GL11.glTranslated(0, 0, 1.5); + + float offset = 0.8F; + standardAimingTransform(stack, + -1.25F * offset, -0.75F * offset, 1F * offset, + 0, -2.5 / 8D, 0.5); + } + + @Override + public void renderFirstPerson(ItemStack stack) { + + ItemGunBaseNT gun = (ItemGunBaseNT) stack.getItem(); + + double scale = 0.25D; + GL11.glScaled(scale, scale, scale); + + GL11.glShadeModel(GL11.GL_SMOOTH); + + double[] recoil = HbmAnimations.getRelevantTransformation("RECOIL"); + double[] cylinder = HbmAnimations.getRelevantTransformation("ROTATE"); + double[] hammer = HbmAnimations.getRelevantTransformation("HAMMER"); + double[] trigger = HbmAnimations.getRelevantTransformation("TRIGGER"); + double[] translate = HbmAnimations.getRelevantTransformation("TRANSLATE"); + double[] loader = HbmAnimations.getRelevantTransformation("LOADER"); + double[] shot = HbmAnimations.getRelevantTransformation("SHOT"); + + GL11.glTranslated(translate[0], translate[1], translate[2]); + + GL11.glTranslated(0, 0, -5); + GL11.glRotated(recoil[0], -1, 0, 0); + GL11.glTranslated(0, 0, 5); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0.5, 7); + GL11.glRotated(90, 0, 1, 0); + this.renderSmokeNodes(gun.getConfig(stack, 0).smokeNodes, 0.5D); + GL11.glPopMatrix(); + + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.pepperbox_tex); + + if(loader[0] != 0 || loader[1] != 0 || loader[2] != 0) { + GL11.glPushMatrix(); + GL11.glTranslated(loader[0], loader[1], loader[2]); + ResourceManager.pepperbox.renderPart("Speedloader"); + if(shot[0] != 0) ResourceManager.pepperbox.renderPart("Shot"); + GL11.glPopMatrix(); + } + + ResourceManager.pepperbox.renderPart("Grip"); + + GL11.glPushMatrix(); + GL11.glRotated(cylinder[0], 0, 0, 1); + ResourceManager.pepperbox.renderPart("Cylinder"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0.375, -1.875); + GL11.glRotated(hammer[0], 1, 0, 0); + GL11.glTranslated(0, -0.375, 1.875); + ResourceManager.pepperbox.renderPart("Hammer"); + GL11.glPopMatrix(); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0, -trigger[0] * 0.5); + ResourceManager.pepperbox.renderPart("Trigger"); + GL11.glPopMatrix(); + + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPushMatrix(); + GL11.glTranslated(0, 0.5, 7); + GL11.glScaled(0.5, 0.5, 0.5); + GL11.glRotated(90, 0, 1, 0); + GL11.glRotated(90 * gun.shotRand, 1, 0, 0); + this.renderMuzzleFlash(gun.lastShot[0]); + GL11.glRotated(45, 1, 0, 0); + this.renderMuzzleFlash(gun.lastShot[0]); + GL11.glPopMatrix(); + } + + @Override + public void setupThirdPerson(ItemStack stack) { + super.setupThirdPerson(stack); + GL11.glTranslated(0, 1, 3); + + } + + @Override + public void setupInv(ItemStack stack) { + super.setupInv(stack); + double scale = 1.5D; + GL11.glScaled(scale, scale, scale); + GL11.glRotated(25, 1, 0, 0); + GL11.glRotated(45, 0, 1, 0); + GL11.glTranslated(0.5, 0.5, 0); + } + + @Override + public void renderOther(ItemStack stack, ItemRenderType type) { + + GL11.glEnable(GL11.GL_LIGHTING); + + GL11.glShadeModel(GL11.GL_SMOOTH); + Minecraft.getMinecraft().renderEngine.bindTexture(ResourceManager.pepperbox_tex); + ResourceManager.pepperbox.renderPart("Grip"); + ResourceManager.pepperbox.renderPart("Cylinder"); + ResourceManager.pepperbox.renderPart("Hammer"); + ResourceManager.pepperbox.renderPart("Trigger"); + GL11.glShadeModel(GL11.GL_FLAT); + } +} diff --git a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderWeaponBase.java b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderWeaponBase.java index dc9a64b8b..7212aa842 100644 --- a/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderWeaponBase.java +++ b/src/main/java/com/hbm/render/item/weapon/sedna/ItemRenderWeaponBase.java @@ -1,10 +1,14 @@ package com.hbm.render.item.weapon.sedna; +import java.util.List; + import org.lwjgl.opengl.GL11; import org.lwjgl.opengl.GL12; import org.lwjgl.util.glu.Project; import com.hbm.items.weapon.sedna.ItemGunBaseNT; +import com.hbm.items.weapon.sedna.ItemGunBaseNT.SmokeNode; +import com.hbm.lib.RefStrings; import net.minecraft.block.Block; import net.minecraft.block.material.Material; @@ -14,15 +18,21 @@ import net.minecraft.client.renderer.ActiveRenderInfo; import net.minecraft.client.renderer.EntityRenderer; import net.minecraft.client.renderer.OpenGlHelper; import net.minecraft.client.renderer.RenderHelper; +import net.minecraft.client.renderer.Tessellator; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import net.minecraft.util.MathHelper; +import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.IItemRenderer; public abstract class ItemRenderWeaponBase implements IItemRenderer { + public static final ResourceLocation flash_plume = new ResourceLocation(RefStrings.MODID, "textures/models/weapons/lilmac_plume.png"); + public static float interp; + + public boolean isAkimbo() { return false; } @Override public boolean handleRenderType(ItemStack item, ItemRenderType type) { @@ -40,13 +50,18 @@ public abstract class ItemRenderWeaponBase implements IItemRenderer { GL11.glPushMatrix(); switch(type) { case EQUIPPED_FIRST_PERSON: setupFirstPerson(item); renderFirstPerson(item); break; - case EQUIPPED: setupThirdPerson(item); renderOther(item, type); break; - case INVENTORY: setupInv(item); renderOther(item, type); break; - case ENTITY: setupEntity(item); renderOther(item, type); break; + case EQUIPPED: setupThirdPerson(item); renderEquipped(item); break; + case INVENTORY: setupInv(item); renderInv(item); break; + case ENTITY: setupEntity(item); renderEntity(item); break; } GL11.glPopMatrix(); } + public void renderEquipped(ItemStack stack) { renderOther(stack, ItemRenderType.EQUIPPED); } + public void renderEquippedAkimbo(ItemStack stack) { renderOther(stack, ItemRenderType.EQUIPPED); } + public void renderInv(ItemStack stack) { renderOther(stack, ItemRenderType.INVENTORY); } + public void renderEntity(ItemStack stack) { renderOther(stack, ItemRenderType.ENTITY); } + public void setPerspectiveAndRender(ItemStack stack, float interp) { this.interp = interp; @@ -179,7 +194,7 @@ public abstract class ItemRenderWeaponBase implements IItemRenderer { RenderHelper.disableStandardItemLighting(); } - protected void setupFirstPerson(ItemStack stack) { + public void setupFirstPerson(ItemStack stack) { GL11.glTranslated(0, 0, 1); if(Minecraft.getMinecraft().thePlayer.isSneaking()) { @@ -192,7 +207,7 @@ public abstract class ItemRenderWeaponBase implements IItemRenderer { } } - protected void setupThirdPerson(ItemStack stack) { + public void setupThirdPerson(ItemStack stack) { double scale = 0.125D; GL11.glScaled(scale, scale, scale); @@ -204,20 +219,32 @@ public abstract class ItemRenderWeaponBase implements IItemRenderer { } - protected void setupInv(ItemStack stack) { + public void setupThirdPersonAkimbo(ItemStack stack) { + double scale = 0.125D; + GL11.glScaled(scale, scale, scale); + + GL11.glRotatef(15.0F, 0.0F, 0.0F, 1.0F); + GL11.glRotatef(12.5F, 0.0F, 1.0F, 0.0F); + GL11.glRotatef(10.0F, 1.0F, 0.0F, 0.0F); + + GL11.glTranslated(5, 0, 0); + + } + + public void setupInv(ItemStack stack) { GL11.glScaled(1, 1, -1); GL11.glTranslated(8, 8, 0); GL11.glRotated(225, 0, 0, 1); GL11.glRotated(90, 0, 1, 0); } - protected void setupEntity(ItemStack stack) { + public void setupEntity(ItemStack stack) { double scale = 0.125D; GL11.glScaled(scale, scale, scale); } public abstract void renderFirstPerson(ItemStack stack); - public abstract void renderOther(ItemStack stack, ItemRenderType type); + public void renderOther(ItemStack stack, ItemRenderType type) { } public static void standardAimingTransform(ItemStack stack, double sX, double sY, double sZ, double aX, double aY, double aZ) { float aimingProgress = ItemGunBaseNT.prevAimingProgress + (ItemGunBaseNT.aimingProgress - ItemGunBaseNT.prevAimingProgress) * interp; @@ -226,4 +253,148 @@ public abstract class ItemRenderWeaponBase implements IItemRenderer { double z = sZ + (aZ - sZ) * aimingProgress; GL11.glTranslated(x, y, z); } + + public static void renderSmokeNodes(List nodes, double scale) { + Tessellator tess = Tessellator.instance; + + if(nodes.size() > 1) { + + GL11.glEnable(GL11.GL_BLEND); + GL11.glDisable(GL11.GL_TEXTURE_2D); + GL11.glDisable(GL11.GL_CULL_FACE); + GL11.glAlphaFunc(GL11.GL_GREATER, 0F); + GL11.glDepthMask(false); + + tess.startDrawingQuads(); + tess.setNormal(0F, 1F, 0F); + + for(int i = 0; i < nodes.size() - 1; i++) { + SmokeNode node = nodes.get(i); + SmokeNode past = nodes.get(i + 1); + + tess.setColorRGBA_F(1F, 1F, 1F, (float) node.alpha); + tess.addVertex(node.forward, node.lift, node.side); + tess.setColorRGBA_F(1F, 1F, 1F, 0F); + tess.addVertex(node.forward, node.lift, node.side + node.width * scale); + tess.setColorRGBA_F(1F, 1F, 1F, 0F); + tess.addVertex(past.forward, past.lift, past.side + past.width * scale); + tess.setColorRGBA_F(1F, 1F, 1F, (float) past.alpha); + tess.addVertex(past.forward, past.lift, past.side); + + tess.setColorRGBA_F(1F, 1F, 1F, (float) node.alpha); + tess.addVertex(node.forward, node.lift, node.side); + tess.setColorRGBA_F(1F, 1F, 1F, 0F); + tess.addVertex(node.forward, node.lift, node.side - node.width * scale); + tess.setColorRGBA_F(1F, 1F, 1F, 0F); + tess.addVertex(past.forward, past.lift, past.side - past.width * scale); + tess.setColorRGBA_F(1F, 1F, 1F, (float) past.alpha); + tess.addVertex(past.forward, past.lift, past.side); + } + tess.draw(); + + GL11.glDepthMask(true); + GL11.glAlphaFunc(GL11.GL_GEQUAL, 0.1F); + GL11.glEnable(GL11.GL_TEXTURE_2D); + GL11.glEnable(GL11.GL_CULL_FACE); + GL11.glDisable(GL11.GL_BLEND); + } + } + + public static void renderMuzzleFlash(long lastShot) { + renderMuzzleFlash(lastShot, 75, 15); + } + + public static void renderMuzzleFlash(long lastShot, int duration, double l) { + Tessellator tess = Tessellator.instance; + + int flash = duration; + + if(System.currentTimeMillis() - lastShot < flash) { + GL11.glEnable(GL11.GL_BLEND); + GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE); + GL11.glPushMatrix(); + + double fire = (System.currentTimeMillis() - lastShot) / (double) flash; + + double width = 6 * fire; + double length = l * fire; + double inset = 2; + Minecraft.getMinecraft().renderEngine.bindTexture(flash_plume); + tess.startDrawingQuads(); + tess.setNormal(0F, 1F, 0F); + tess.setColorRGBA_F(1F, 1F, 1F, 1F); + + tess.addVertexWithUV(0, -width, - inset, 1, 1); + tess.addVertexWithUV(0, width, - inset, 0, 1); + tess.addVertexWithUV(0.1, width, length - inset, 0 ,0); + tess.addVertexWithUV(0.1, -width, length - inset, 1, 0); + + tess.addVertexWithUV(0, width, inset, 0, 1); + tess.addVertexWithUV(0, -width, inset, 1, 1); + tess.addVertexWithUV(0.1, -width, -length + inset, 1, 0); + tess.addVertexWithUV(0.1, width, -length + inset, 0 ,0); + + tess.addVertexWithUV(0, - inset, width, 0, 1); + tess.addVertexWithUV(0, - inset, -width, 1, 1); + tess.addVertexWithUV(0.1, length - inset, -width, 1, 0); + tess.addVertexWithUV(0.1, length - inset, width, 0 ,0); + + tess.addVertexWithUV(0, inset, -width, 1, 1); + tess.addVertexWithUV(0, inset, width, 0, 1); + tess.addVertexWithUV(0.1, -length + inset, width, 0 ,0); + tess.addVertexWithUV(0.1, -length + inset, -width, 1, 0); + + tess.draw(); + GL11.glPopMatrix(); + GL11.glDisable(GL11.GL_BLEND); + } + } + + public static void renderGapFlash(long lastShot) { + Tessellator tess = Tessellator.instance; + + int flash = 75; + + if(System.currentTimeMillis() - lastShot < flash) { + GL11.glEnable(GL11.GL_BLEND); + GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE); + GL11.glPushMatrix(); + + double fire = (System.currentTimeMillis() - lastShot) / (double) flash; + + double height = 4 * fire; + double length = 15 * fire; + double lift = 3 * fire; + double offset = 1 * fire; + double lengthOffset = 0.125; + Minecraft.getMinecraft().renderEngine.bindTexture(flash_plume); + tess.startDrawingQuads(); + tess.setNormal(0F, 1F, 0F); + tess.setColorRGBA_F(1F, 1F, 1F, 1F); + + tess.addVertexWithUV(0, -height, -offset, 1, 1); + tess.addVertexWithUV(0, height, -offset, 0, 1); + tess.addVertexWithUV(0, height + lift, length - offset, 0 ,0); + tess.addVertexWithUV(0, -height + lift, length - offset, 1, 0); + + tess.addVertexWithUV(0, height, offset, 0, 1); + tess.addVertexWithUV(0, -height, offset, 1, 1); + tess.addVertexWithUV(0, -height + lift, -length + offset, 1, 0); + tess.addVertexWithUV(0, height + lift, -length + offset, 0 ,0); + + tess.addVertexWithUV(0, -height, -offset, 1, 1); + tess.addVertexWithUV(0, height, -offset, 0, 1); + tess.addVertexWithUV(lengthOffset, height, length - offset, 0 ,0); + tess.addVertexWithUV(lengthOffset, -height, length - offset, 1, 0); + + tess.addVertexWithUV(0, height, offset, 0, 1); + tess.addVertexWithUV(0, -height, offset, 1, 1); + tess.addVertexWithUV(lengthOffset, -height, -length + offset, 1, 0); + tess.addVertexWithUV(lengthOffset, height, -length + offset, 0 ,0); + + tess.draw(); + GL11.glPopMatrix(); + GL11.glDisable(GL11.GL_BLEND); + } + } } diff --git a/src/main/java/com/hbm/render/loader/ModelRendererObj.java b/src/main/java/com/hbm/render/loader/ModelRendererObj.java index 4d916aa86..b7e85a58d 100644 --- a/src/main/java/com/hbm/render/loader/ModelRendererObj.java +++ b/src/main/java/com/hbm/render/loader/ModelRendererObj.java @@ -21,6 +21,8 @@ public class ModelRendererObj { public float offsetX; public float offsetY; public float offsetZ; + + public boolean doRender = true; String[] parts; IModelCustom model; @@ -97,11 +99,13 @@ public class ModelRendererObj { GL11.glScalef(scale, scale, scale); - if(parts.length > 0) - for(String part : parts) - model.renderPart(part); - else - model.renderAll(); + if(doRender) { + if(parts.length > 0) + for(String part : parts) + model.renderPart(part); + else + model.renderAll(); + } GL11.glPopMatrix(); } diff --git a/src/main/java/com/hbm/render/tileentity/RenderCraneConsole.java b/src/main/java/com/hbm/render/tileentity/RenderCraneConsole.java index d06119605..467f1fc22 100644 --- a/src/main/java/com/hbm/render/tileentity/RenderCraneConsole.java +++ b/src/main/java/com/hbm/render/tileentity/RenderCraneConsole.java @@ -108,18 +108,40 @@ public class RenderCraneConsole extends TileEntitySpecialRenderer { double posX = (console.lastPosFront + (console.posFront - console.lastPosFront) * interp); double posZ = (console.lastPosLeft + (console.posLeft - console.lastPosLeft) * interp); - GL11.glTranslated(0, 0, posZ); + GL11.glTranslated(-posX, 0, posZ); + + int craneRotationOffset = ((TileEntityCraneConsole)te).craneRotationOffset; + GL11.glRotatef(craneRotationOffset, 0F, 1F, 0F); GL11.glPushMatrix(); - GL11.glTranslated(-console.spanL, height - 1, 0); + int girderSpan = 0; + GL11.glRotatef(-craneRotationOffset, 0F, 1F, 0F); + switch(craneRotationOffset) { + case 0: + girderSpan = console.spanL + console.spanR + 1; + GL11.glTranslated(posX - console.spanL, 0, 0); + break; + case 90: + girderSpan = console.spanF + console.spanB + 1; + GL11.glTranslated(0, 0, -posZ + console.spanB); + break; + case 180: + girderSpan = console.spanL + console.spanR + 1; + GL11.glTranslated(posX + console.spanR, 0, 0); + break; + case 270: + girderSpan = console.spanF + console.spanB + 1; + GL11.glTranslated(0, 0, -posZ - console.spanF); + break; + } + GL11.glRotatef(craneRotationOffset, 0F, 1F, 0F); - for(int i = -console.spanL; i <= console.spanR; i++) { + for(int i = 0; i < girderSpan; i++) { ResourceManager.rbmk_crane.renderPart("Girder"); GL11.glTranslated(1, 0, 0); } GL11.glPopMatrix(); - GL11.glTranslated(-posX, 0, 0); ResourceManager.rbmk_crane.renderPart("Main"); GL11.glPushMatrix(); diff --git a/src/main/java/com/hbm/render/tileentity/RenderFluidTank.java b/src/main/java/com/hbm/render/tileentity/RenderFluidTank.java index aba2c7f91..acb9a0b0c 100644 --- a/src/main/java/com/hbm/render/tileentity/RenderFluidTank.java +++ b/src/main/java/com/hbm/render/tileentity/RenderFluidTank.java @@ -75,7 +75,8 @@ public class RenderFluidTank extends TileEntitySpecialRenderer implements IItemR DiamondPronter.pront(type.poison, type.flammability, type.reactivity, type.symbol); GL11.glPopMatrix(); } - + + GL11.glEnable(GL11.GL_CULL_FACE); GL11.glPopMatrix(); RenderHelper.enableStandardItemLighting(); } diff --git a/src/main/java/com/hbm/render/tileentity/RenderRotaryFurnace.java b/src/main/java/com/hbm/render/tileentity/RenderRotaryFurnace.java new file mode 100644 index 000000000..e326c7445 --- /dev/null +++ b/src/main/java/com/hbm/render/tileentity/RenderRotaryFurnace.java @@ -0,0 +1,71 @@ +package com.hbm.render.tileentity; + +import org.lwjgl.opengl.GL11; + +import com.hbm.blocks.BlockDummyable; +import com.hbm.blocks.ModBlocks; +import com.hbm.main.ResourceManager; +import com.hbm.render.item.ItemRenderBase; +import com.hbm.tileentity.machine.TileEntityMachineRotaryFurnace; +import com.hbm.util.BobMathUtil; + +import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; +import net.minecraft.item.Item; +import net.minecraft.tileentity.TileEntity; +import net.minecraftforge.client.IItemRenderer; + +public class RenderRotaryFurnace extends TileEntitySpecialRenderer implements IItemRendererProvider { + + @Override + public void renderTileEntityAt(TileEntity tile, double x, double y, double z, float f) { + + GL11.glPushMatrix(); + GL11.glTranslated(x + 0.5, y, z + 0.5); + GL11.glEnable(GL11.GL_LIGHTING); + GL11.glEnable(GL11.GL_CULL_FACE); + + switch(tile.getBlockMetadata() - BlockDummyable.offset) { + case 2: GL11.glRotatef(90, 0F, 1F, 0F); break; + case 4: GL11.glRotatef(180, 0F, 1F, 0F); break; + case 3: GL11.glRotatef(270, 0F, 1F, 0F); break; + case 5: GL11.glRotatef(0, 0F, 1F, 0F); break; + } + + GL11.glShadeModel(GL11.GL_SMOOTH); + bindTexture(ResourceManager.rotary_furnace_tex); + ResourceManager.rotary_furnace.renderPart("Furnace"); + GL11.glPushMatrix(); + + TileEntityMachineRotaryFurnace furnace = (TileEntityMachineRotaryFurnace) tile; + float anim = furnace.lastAnim + (furnace.anim - furnace.lastAnim) * f; + + GL11.glTranslated(0, BobMathUtil.sps((anim * 0.75) * 0.125) * 0.5 - 0.5, 0); + ResourceManager.rotary_furnace.renderPart("Piston"); + GL11.glPopMatrix(); + GL11.glShadeModel(GL11.GL_FLAT); + + GL11.glPopMatrix(); + } + + @Override + public Item getItemForRenderer() { + return Item.getItemFromBlock(ModBlocks.machine_rotary_furnace); + } + + @Override + public IItemRenderer getRenderer() { + return new ItemRenderBase() { + public void renderInventory() { + GL11.glTranslated(0, -2, 0); + GL11.glScaled(3.5, 3.5, 3.5); + } + public void renderCommon() { + GL11.glScaled(0.625, 0.625, 0.625); + GL11.glRotatef(90, 0F, 1F, 0F); + GL11.glShadeModel(GL11.GL_SMOOTH); + bindTexture(ResourceManager.rotary_furnace_tex); + ResourceManager.rotary_furnace.renderAll(); + GL11.glShadeModel(GL11.GL_FLAT); + }}; + } +} diff --git a/src/main/java/com/hbm/tileentity/IConditionalInvAccess.java b/src/main/java/com/hbm/tileentity/IConditionalInvAccess.java index 9416eb837..d66553efa 100644 --- a/src/main/java/com/hbm/tileentity/IConditionalInvAccess.java +++ b/src/main/java/com/hbm/tileentity/IConditionalInvAccess.java @@ -11,7 +11,7 @@ import net.minecraft.item.ItemStack; public interface IConditionalInvAccess { public boolean isItemValidForSlot(int x, int y, int z, int slot, ItemStack stack); - public boolean canInsertItem(int x, int y, int z, int slot, ItemStack stack, int side); + public default boolean canInsertItem(int x, int y, int z, int slot, ItemStack stack, int side) { return isItemValidForSlot(x, y, z, slot, stack); } public boolean canExtractItem(int x, int y, int z, int slot, ItemStack stack, int side); public int[] getAccessibleSlotsFromSide(int x, int y, int z, int side); } diff --git a/src/main/java/com/hbm/tileentity/TileEntityMachineBase.java b/src/main/java/com/hbm/tileentity/TileEntityMachineBase.java index e9e8c0e05..06e2ca21e 100644 --- a/src/main/java/com/hbm/tileentity/TileEntityMachineBase.java +++ b/src/main/java/com/hbm/tileentity/TileEntityMachineBase.java @@ -7,6 +7,7 @@ import com.hbm.util.fauxpointtwelve.DirPos; import cpw.mods.fml.common.network.NetworkRegistry.TargetPoint; import io.netty.buffer.ByteBuf; +import io.netty.buffer.Unpooled; import net.minecraft.block.Block; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.ISidedInventory; @@ -19,13 +20,16 @@ import net.minecraftforge.fluids.FluidTank; public abstract class TileEntityMachineBase extends TileEntityLoadedBase implements ISidedInventory, IBufPacketReceiver { public ItemStack slots[]; - + private String customName; - + + private NBTTagCompound lastPackedNBT = null; + private ByteBuf lastPackedBuf = null; + public TileEntityMachineBase(int slotCount) { slots = new ItemStack[slotCount]; } - + /** The "chunks is modified, pls don't forget to save me" effect of markDirty, minus the block updates */ public void markChanged() { this.worldObj.markTileEntityChunkModified(this.xCoord, this.yCoord, this.zCoord, this); @@ -66,14 +70,14 @@ public abstract class TileEntityMachineBase extends TileEntityLoadedBase impleme public String getInventoryName() { return this.hasCustomInventoryName() ? this.customName : getName(); } - + public abstract String getName(); @Override public boolean hasCustomInventoryName() { return this.customName != null && this.customName.length() > 0; } - + public void setCustomName(String name) { this.customName = name; } @@ -91,7 +95,7 @@ public abstract class TileEntityMachineBase extends TileEntityLoadedBase impleme return player.getDistanceSq(xCoord + 0.5D, yCoord + 0.5D, zCoord + 0.5D) <= 128; } } - + @Override public void openInventory() {} @Override @@ -101,22 +105,22 @@ public abstract class TileEntityMachineBase extends TileEntityLoadedBase impleme public boolean isItemValidForSlot(int slot, ItemStack itemStack) { return false; } - + @Override public ItemStack decrStackSize(int slot, int amount) { if(slots[slot] != null) { - + if(slots[slot].stackSize <= amount) { ItemStack itemStack = slots[slot]; slots[slot] = null; return itemStack; } - + ItemStack itemStack1 = slots[slot].splitStack(amount); if(slots[slot].stackSize == 0) { slots[slot] = null; } - + return itemStack1; } else { return null; @@ -137,7 +141,7 @@ public abstract class TileEntityMachineBase extends TileEntityLoadedBase impleme public int[] getAccessibleSlotsFromSide(int side) { return new int[] { }; } - + public int getGaugeScaled(int i, FluidTank tank) { return tank.getFluidAmount() * i / tank.getCapacity(); } @@ -148,7 +152,7 @@ public abstract class TileEntityMachineBase extends TileEntityLoadedBase impleme //shit i don't know man @Override public abstract void updateEntity(); - + @Deprecated public void updateGauge(int val, int id, int range) { if(!worldObj.isRemote) PacketDispatcher.wrapper.sendToAllAround(new AuxGaugePacket(xCoord, yCoord, zCoord, val, id), new TargetPoint(this.worldObj.provider.dimensionId, xCoord, yCoord, zCoord, range)); } @@ -156,25 +160,45 @@ public abstract class TileEntityMachineBase extends TileEntityLoadedBase impleme /** Sends a sync packet that uses ByteBuf for efficient information-cramming */ public void networkPackNT(int range) { - if(!worldObj.isRemote) PacketDispatcher.wrapper.sendToAllAround(new BufPacket(xCoord, yCoord, zCoord, this), new TargetPoint(this.worldObj.provider.dimensionId, xCoord, yCoord, zCoord, range)); + if(worldObj.isRemote) { + return; + } + + BufPacket packet = new BufPacket(xCoord, yCoord, zCoord, this); + ByteBuf buf = Unpooled.buffer(); + packet.toBytes(buf); + + // Don't send unnecessary packets, except for maybe one every second or so. + // If we stop sending duplicate packets entirely, this causes issues when + // a client unloads and then loads back a chunk with an unchanged tile entity. + // For that client, the tile entity will appear default until anything changes about it. + // In my testing, this can be reliably reproduced with a full fluid barrel, for instance. + // I think it might be fixable by doing something with getDescriptionPacket() and onDataPacket(), + // but this sidesteps the problem for the mean time. + if (lastPackedBuf != null && buf.equals(lastPackedBuf) && worldObj.getWorldTime() % 20 != 0) { + return; + } + this.lastPackedBuf = buf; + + PacketDispatcher.wrapper.sendToAllAround(packet, new TargetPoint(this.worldObj.provider.dimensionId, xCoord, yCoord, zCoord, range)); } @Override public void serialize(ByteBuf buf) { buf.writeBoolean(muffled); } - + @Override public void deserialize(ByteBuf buf) { this.muffled = buf.readBoolean(); } - + @Deprecated public void handleButtonPacket(int value, int meta) { } - + @Override public void readFromNBT(NBTTagCompound nbt) { super.readFromNBT(nbt); NBTTagList list = nbt.getTagList("items", 10); - + for(int i = 0; i < list.tagCount(); i++) { NBTTagCompound nbt1 = list.getCompoundTagAt(i); @@ -185,12 +209,12 @@ public abstract class TileEntityMachineBase extends TileEntityLoadedBase impleme } } } - + @Override public void writeToNBT(NBTTagCompound nbt) { super.writeToNBT(nbt); NBTTagList list = new NBTTagList(); - + for(int i = 0; i < slots.length; i++) { if(slots[i] != null) @@ -203,7 +227,7 @@ public abstract class TileEntityMachineBase extends TileEntityLoadedBase impleme } nbt.setTag("items", list); } - + public void updateRedstoneConnection(DirPos pos) { int x = pos.getX(); diff --git a/src/main/java/com/hbm/tileentity/TileMappings.java b/src/main/java/com/hbm/tileentity/TileMappings.java index a33860c56..43fd6dbde 100644 --- a/src/main/java/com/hbm/tileentity/TileMappings.java +++ b/src/main/java/com/hbm/tileentity/TileMappings.java @@ -14,7 +14,6 @@ import com.hbm.blocks.generic.BlockLoot.TileEntityLoot; import com.hbm.blocks.generic.BlockMotherOfAllOres.TileEntityRandomOre; import com.hbm.blocks.generic.BlockPedestal.TileEntityPedestal; import com.hbm.blocks.generic.BlockPlushie.TileEntityPlushie; -import com.hbm.blocks.generic.BlockScaffoldDynamic.TileEntityScaffoldDynamic; import com.hbm.blocks.generic.BlockSnowglobe.TileEntitySnowglobe; import com.hbm.blocks.generic.PartEmitter.TileEntityPartEmitter; import com.hbm.blocks.machine.BlockICF.TileEntityBlockICF; @@ -64,7 +63,6 @@ public class TileMappings { put(TileEntityDecoSteelPoles.class, "tileentity_steelpoles"); put(TileEntityDecoPoleTop.class, "tileentity_poletop"); put(TileEntityDecoPoleSatelliteReceiver.class, "tileentity_satellitereceicer"); - put(TileEntityScaffoldDynamic.class, "tileentity_scaffold_dynamic"); put(TileEntityMachineBattery.class, "tileentity_battery"); put(TileEntityCapacitor.class, "tileentity_capacitor"); put(TileEntityMachineWoodBurner.class, "tileentity_wood_burner"); @@ -152,6 +150,7 @@ public class TileMappings { put(TileEntityBarrel.class, "tileentity_fluid_barrel"); put(TileEntityCyberCrab.class, "tileentity_crabs"); put(TileEntitySoyuzCapsule.class, "tileentity_soyuz_capsule"); + put(TileEntityMachineRotaryFurnace.class, "tileentity_rotary_furnace"); put(TileEntityMachineCrystallizer.class, "tileentity_acidomatic"); put(TileEntitySoyuzStruct.class, "tileentity_soyuz_struct"); put(TileEntityITERStruct.class, "tileentity_iter_struct"); diff --git a/src/main/java/com/hbm/tileentity/machine/TileEntityHeaterElectric.java b/src/main/java/com/hbm/tileentity/machine/TileEntityHeaterElectric.java index 72e216162..895d5d319 100644 --- a/src/main/java/com/hbm/tileentity/machine/TileEntityHeaterElectric.java +++ b/src/main/java/com/hbm/tileentity/machine/TileEntityHeaterElectric.java @@ -1,6 +1,7 @@ package com.hbm.tileentity.machine; import com.hbm.blocks.BlockDummyable; +import com.hbm.interfaces.ICopiable; import com.hbm.main.MainRegistry; import com.hbm.sound.AudioWrapper; import com.hbm.tileentity.IBufPacketReceiver; @@ -12,33 +13,35 @@ import api.hbm.tile.IHeatSource; import api.hbm.tile.IInfoProviderEC; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; +import net.minecraft.entity.player.EntityPlayer; import io.netty.buffer.ByteBuf; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.AxisAlignedBB; +import net.minecraft.world.World; import net.minecraftforge.common.util.ForgeDirection; -public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IHeatSource, IEnergyReceiverMK2, IBufPacketReceiver, IInfoProviderEC { - +public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IHeatSource, IEnergyReceiverMK2, IBufPacketReceiver, ICopiable, IInfoProviderEC { + public long power; public int heatEnergy; public boolean isOn; protected int setting = 0; - + private AudioWrapper audio; @Override public void updateEntity() { - + if(!worldObj.isRemote) { - + if(worldObj.getTotalWorldTime() % 20 == 0) { //doesn't have to happen constantly ForgeDirection dir = ForgeDirection.getOrientation(this.getBlockMetadata() - BlockDummyable.offset); this.trySubscribe(worldObj, xCoord + dir.offsetX * 3, yCoord, zCoord + dir.offsetZ * 3, dir); } - + this.heatEnergy *= 0.999; - + this.tryPullHeat(); this.isOn = false; @@ -47,12 +50,12 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH this.heatEnergy += getHeatGen(); this.isOn = true; } - + sendStandard(25); } else { - + if(isOn) { - + if(audio == null) { audio = createAudioLoop(); audio.startSound(); @@ -62,9 +65,9 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH audio.updateVolume(getVolume(1F)); audio.keepAlive(); - + } else { - + if(audio != null) { audio.stopSound(); audio = null; @@ -72,7 +75,7 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH } } } - + @Override public AudioWrapper createAudioLoop() { return MainRegistry.proxy.getLoopedSound("hbm:block.electricHum", xCoord, yCoord, zCoord, 0.25F, 7.5F, 1.0F, 20); @@ -113,7 +116,7 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH this.heatEnergy = buf.readInt(); this.isOn = buf.readBoolean(); } - + @Override public void readFromNBT(NBTTagCompound nbt) { super.readFromNBT(nbt); @@ -122,7 +125,7 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH this.setting = nbt.getInteger("setting"); this.heatEnergy = nbt.getInteger("heatEnergy"); } - + @Override public void writeToNBT(NBTTagCompound nbt) { super.writeToNBT(nbt); @@ -131,20 +134,20 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH nbt.setInteger("setting", setting); nbt.setInteger("heatEnergy", heatEnergy); } - + protected void tryPullHeat() { TileEntity con = worldObj.getTileEntity(xCoord, yCoord - 1, zCoord); - + if(con instanceof IHeatSource) { IHeatSource source = (IHeatSource) con; this.heatEnergy += source.getHeatStored() * 0.85; source.useUpHeat(source.getHeatStored()); } } - + public void toggleSetting() { setting++; - + if(setting > 10) setting = 0; } @@ -153,7 +156,7 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH public long getPower() { return power; } - + public long getConsumption() { return (long) (Math.pow(setting, 1.4D) * 200D); } @@ -162,7 +165,7 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH public long getMaxPower() { return getConsumption() * 20; } - + public int getHeatGen() { return this.setting * 100; } @@ -181,12 +184,12 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH public void useUpHeat(int heat) { this.heatEnergy = Math.max(0, this.heatEnergy - heat); } - + AxisAlignedBB bb = null; - + @Override public AxisAlignedBB getRenderBoundingBox() { - + if(bb == null) { bb = AxisAlignedBB.getBoundingBox( xCoord - 2, @@ -197,10 +200,10 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH zCoord + 3 ); } - + return bb; } - + @Override @SideOnly(Side.CLIENT) public double getMaxRenderDistanceSquared() { @@ -213,4 +216,16 @@ public class TileEntityHeaterElectric extends TileEntityLoadedBase implements IH data.setLong(CompatEnergyControl.L_ENERGY_TU, getHeatStored()); data.setLong(CompatEnergyControl.D_OUTPUT_TU, getHeatGen()); } + + @Override + public NBTTagCompound getSettings(World world, int x, int y, int z) { + NBTTagCompound nbt = new NBTTagCompound(); + nbt.setInteger("setting", setting); + return nbt; + } + + @Override + public void pasteSettings(NBTTagCompound nbt, int index, World world, EntityPlayer player, int x, int y, int z) { + this.setting = nbt.getInteger("setting"); + } } diff --git a/src/main/java/com/hbm/tileentity/machine/TileEntityMachineRotaryFurnace.java b/src/main/java/com/hbm/tileentity/machine/TileEntityMachineRotaryFurnace.java new file mode 100644 index 000000000..771badfe1 --- /dev/null +++ b/src/main/java/com/hbm/tileentity/machine/TileEntityMachineRotaryFurnace.java @@ -0,0 +1,345 @@ +package com.hbm.tileentity.machine; + +import java.util.Random; + +import com.hbm.handler.pollution.PollutionHandler; +import com.hbm.handler.pollution.PollutionHandler.PollutionType; +import com.hbm.inventory.RecipesCommon.AStack; +import com.hbm.inventory.container.ContainerMachineRotaryFurnace; +import com.hbm.inventory.fluid.Fluids; +import com.hbm.inventory.fluid.tank.FluidTank; +import com.hbm.inventory.gui.GUIMachineRotaryFurnace; +import com.hbm.inventory.material.MaterialShapes; +import com.hbm.inventory.material.Mats; +import com.hbm.inventory.material.Mats.MaterialStack; +import com.hbm.inventory.recipes.RotaryFurnaceRecipes; +import com.hbm.inventory.recipes.RotaryFurnaceRecipes.RotaryFurnaceRecipe; +import com.hbm.lib.Library; +import com.hbm.main.MainRegistry; +import com.hbm.packet.PacketDispatcher; +import com.hbm.packet.toclient.AuxParticlePacketNT; +import com.hbm.tileentity.IConditionalInvAccess; +import com.hbm.tileentity.IFluidCopiable; +import com.hbm.tileentity.IGUIProvider; +import com.hbm.tileentity.TileEntityMachinePolluting; +import com.hbm.util.CrucibleUtil; +import com.hbm.util.fauxpointtwelve.BlockPos; +import com.hbm.util.fauxpointtwelve.DirPos; + +import api.hbm.fluid.IFluidStandardTransceiver; +import cpw.mods.fml.common.network.NetworkRegistry.TargetPoint; +import io.netty.buffer.ByteBuf; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.inventory.Container; +import net.minecraft.item.ItemStack; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.tileentity.TileEntityFurnace; +import net.minecraft.util.Vec3; +import net.minecraft.world.World; +import net.minecraftforge.common.util.ForgeDirection; + +public class TileEntityMachineRotaryFurnace extends TileEntityMachinePolluting implements IFluidStandardTransceiver, IGUIProvider, IFluidCopiable, IConditionalInvAccess { + + public FluidTank[] tanks; + public boolean isProgressing; + public float progress; + public int burnTime; + public int maxBurnTime; + public boolean isVenting; + public MaterialStack output; + public static final int maxOutput = MaterialShapes.BLOCK.q(16); + + public int anim; + public int lastAnim; + + public TileEntityMachineRotaryFurnace() { + super(5, 50); + tanks = new FluidTank[3]; + tanks[0] = new FluidTank(Fluids.NONE, 16_000); + tanks[1] = new FluidTank(Fluids.STEAM, 4_000); + tanks[2] = new FluidTank(Fluids.SPENTSTEAM, 40); + } + + @Override + public String getName() { + return "container.machineRotaryFurnace"; + } + + @Override + public void updateEntity() { + + ForgeDirection dir = ForgeDirection.getOrientation(this.getBlockMetadata() - 10); + ForgeDirection rot = dir.getRotation(ForgeDirection.DOWN); + + if(!worldObj.isRemote) { + + tanks[0].setType(3, slots); + + for(DirPos pos : getSteamPos()) { + this.trySubscribe(tanks[1].getTankType(), worldObj, pos.getX(), pos.getY(), pos.getZ(), pos.getDir()); + if(tanks[2].getFill() > 0) this.sendFluid(tanks[2], worldObj, pos.getX(), pos.getY(), pos.getZ(), pos.getDir()); + } + if(tanks[0].getTankType() != Fluids.NONE) for(DirPos pos : getFluidPos()) { + this.trySubscribe(tanks[0].getTankType(), worldObj, pos.getX(), pos.getY(), pos.getZ(), pos.getDir()); + } + + if(smoke.getFill() > 0) this.sendFluid(smoke, worldObj, xCoord + rot.offsetX, yCoord + 5, zCoord + rot.offsetZ, Library.POS_Y); + + if(this.output != null) { + + Vec3 impact = Vec3.createVectorHelper(0, 0, 0); + MaterialStack leftover = CrucibleUtil.pourSingleStack(worldObj, xCoord + 0.5D + rot.offsetX * 2.875D, yCoord + 1.25D, zCoord + 0.5D + rot.offsetZ * 2.875D, 6, true, this.output, MaterialShapes.INGOT.q(1), impact); + + if(leftover.amount != this.output.amount) { + this.output = leftover; + NBTTagCompound data = new NBTTagCompound(); + data.setString("type", "foundry"); + data.setInteger("color", leftover.material.moltenColor); + data.setByte("dir", (byte) rot.ordinal()); + data.setFloat("off", 0.625F); + data.setFloat("base", 0.625F); + data.setFloat("len", Math.max(1F, yCoord + 1 - (float) (Math.ceil(impact.yCoord) - 1.125))); + PacketDispatcher.wrapper.sendToAllAround(new AuxParticlePacketNT(data, xCoord + 0.5D + rot.offsetX * 2.875D, yCoord + 0.75, zCoord + 0.5D + rot.offsetZ * 2.875D), new TargetPoint(worldObj.provider.dimensionId, xCoord + 0.5, yCoord + 1, zCoord + 0.5, 50)); + } + + if(output.amount <= 0) this.output = null; + } + + RotaryFurnaceRecipe recipe = RotaryFurnaceRecipes.getRecipe(slots[0], slots[1], slots[2]); + this.isProgressing = false; + + if(recipe != null) { + + if(this.burnTime <= 0 && slots[4] != null && TileEntityFurnace.isItemFuel(slots[4])) { + this.maxBurnTime = this.burnTime = TileEntityFurnace.getItemBurnTime(slots[4]) / 2; + this.decrStackSize(4, 1); + this.markChanged(); + } + + if(this.canProcess(recipe)) { + this.progress += 1F / recipe.duration; + tanks[1].setFill(tanks[1].getFill() - recipe.steam); + tanks[2].setFill(tanks[2].getFill() + recipe.steam / 100); + this.isProgressing = true; + + if(this.progress >= 1F) { + this.progress -= 1F; + this.consumeItems(recipe); + + if(this.output == null) { + this.output = recipe.output.copy(); + } else { + this.output.amount += recipe.output.amount; + } + this.markDirty(); + } + + } else { + this.progress = 0; + } + } else { + this.progress = 0; + } + + this.isVenting = false; + if(this.burnTime > 0) { + this.pollute(PollutionType.SOOT, PollutionHandler.SOOT_PER_SECOND / 10F); + this.burnTime--; + } + + this.networkPackNT(50); + + } else { + + if(this.burnTime > 0 && MainRegistry.proxy.me().getDistance(xCoord, yCoord, zCoord) < 25) { + Random rand = worldObj.rand; + worldObj.spawnParticle("flame", xCoord + 0.5 + dir.offsetX * 0.5 + rot.offsetX + rand.nextGaussian() * 0.25, yCoord + 0.375, zCoord + 0.5 + dir.offsetZ * 0.5 + rot.offsetZ + rand.nextGaussian() * 0.25, 0, 0, 0); + } + + if(isVenting && worldObj.getTotalWorldTime() % 2 == 0) { + + NBTTagCompound fx = new NBTTagCompound(); + fx.setString("type", "tower"); + fx.setFloat("lift", 10F); + fx.setFloat("base", 0.25F); + fx.setFloat("max", 2.5F); + fx.setInteger("life", 100 + worldObj.rand.nextInt(20)); + fx.setInteger("color",0x202020); + fx.setDouble("posX", xCoord + 0.5 + rot.offsetX); + fx.setDouble("posY", yCoord + 5); + fx.setDouble("posZ", zCoord + 0.5 + rot.offsetZ); + MainRegistry.proxy.effectNT(fx); + } + this.lastAnim = this.anim; + if(this.isProgressing) { + this.anim++; + } + } + } + + @Override public void serialize(ByteBuf buf) { + super.serialize(buf); + tanks[0].serialize(buf); + tanks[1].serialize(buf); + tanks[2].serialize(buf); + buf.writeBoolean(isVenting); + buf.writeBoolean(isProgressing); + buf.writeFloat(progress); + buf.writeInt(burnTime); + buf.writeInt(maxBurnTime); + + if(this.output != null) { + buf.writeBoolean(true); + buf.writeInt(this.output.material.id); + buf.writeInt(this.output.amount); + } else { + buf.writeBoolean(false); + } + } + + @Override public void deserialize(ByteBuf buf) { + super.deserialize(buf); + tanks[0].deserialize(buf); + tanks[1].deserialize(buf); + tanks[2].deserialize(buf); + isVenting = buf.readBoolean(); + isProgressing = buf.readBoolean(); + progress = buf.readFloat(); + burnTime = buf.readInt(); + maxBurnTime = buf.readInt(); + + if(buf.readBoolean()) { + this.output = new MaterialStack(Mats.matById.get(buf.readInt()), buf.readInt()); + } else { + this.output = null; + } + } + + @Override + public void readFromNBT(NBTTagCompound nbt) { + super.readFromNBT(nbt); + this.tanks[0].readFromNBT(nbt, "t0"); + this.tanks[1].readFromNBT(nbt, "t1"); + this.tanks[2].readFromNBT(nbt, "t2"); + this.progress = nbt.getFloat("prog"); + this.burnTime = nbt.getInteger("burn"); + this.maxBurnTime = nbt.getInteger("maxBurn"); + } + + @Override + public void writeToNBT(NBTTagCompound nbt) { + super.writeToNBT(nbt); + this.tanks[0].writeToNBT(nbt, "t0"); + this.tanks[1].writeToNBT(nbt, "t1"); + this.tanks[2].writeToNBT(nbt, "t2"); + nbt.setFloat("prog", progress); + nbt.setInteger("burn", burnTime); + nbt.setInteger("maxBurn", maxBurnTime); + } + + public DirPos[] getSteamPos() { + ForgeDirection dir = ForgeDirection.getOrientation(this.getBlockMetadata() - 10); + ForgeDirection rot = dir.getRotation(ForgeDirection.DOWN); + + return new DirPos[] { + new DirPos(xCoord - dir.offsetX * 2 - rot.offsetX * 2, yCoord, zCoord - dir.offsetZ * 2 - rot.offsetZ * 2, dir.getOpposite()), + new DirPos(xCoord - dir.offsetX * 2 - rot.offsetX, yCoord, zCoord - dir.offsetZ * 2 - rot.offsetZ, dir.getOpposite()) + }; + } + + public DirPos[] getFluidPos() { + ForgeDirection dir = ForgeDirection.getOrientation(this.getBlockMetadata() - 10); + ForgeDirection rot = dir.getRotation(ForgeDirection.DOWN); + + return new DirPos[] { + new DirPos(xCoord + dir.offsetX + rot.offsetX * 3, yCoord, zCoord + dir.offsetZ + rot.offsetZ * 3, rot), + new DirPos(xCoord - dir.offsetX + rot.offsetX * 3, yCoord, zCoord - dir.offsetZ + rot.offsetZ * 3, rot) + }; + } + + public boolean canProcess(RotaryFurnaceRecipe recipe) { + + if(this.burnTime <= 0) return false; + + if(recipe.fluid != null) { + if(this.tanks[0].getTankType() != recipe.fluid.type) return false; + if(this.tanks[0].getFill() < recipe.fluid.fill) return false; + } + + if(tanks[1].getFill() < recipe.steam) return false; + if(tanks[2].getMaxFill() - tanks[2].getFill() < recipe.steam / 100) return false; + + if(this.output != null) { + if(this.output.material != recipe.output.material) return false; + if(this.output.amount + recipe.output.amount > this.maxOutput) return false; + } + + return true; + } + + public void consumeItems(RotaryFurnaceRecipe recipe) { + + for(AStack aStack : recipe.ingredients) { + + for(int i = 0; i < 3; i++) { + ItemStack stack = slots[i]; + if(aStack.matchesRecipe(stack, true) && stack.stackSize >= aStack.stacksize) { + this.decrStackSize(i, aStack.stacksize); + break; + } + } + } + + if(recipe.fluid != null) { + this.tanks[0].setFill(tanks[0].getFill() - recipe.fluid.fill); + } + } + + @Override + public void pollute(PollutionType type, float amount) { + FluidTank tank = type == PollutionType.SOOT ? smoke : type == PollutionType.HEAVYMETAL ? smoke_leaded : smoke_poison; + + int fluidAmount = (int) Math.ceil(amount * 100); + tank.setFill(tank.getFill() + fluidAmount); + + if(tank.getFill() > tank.getMaxFill()) { + int overflow = tank.getFill() - tank.getMaxFill(); + tank.setFill(tank.getMaxFill()); + PollutionHandler.incrementPollution(worldObj, xCoord, yCoord, zCoord, type, overflow / 100F); + this.isVenting = true; + } + } + + @Override public int[] getAccessibleSlotsFromSide(int side) { return new int[0]; } + @Override public boolean isItemValidForSlot(int slot, ItemStack stack) { return slot < 3 || slot == 4; } + @Override public boolean canExtractItem(int slot, ItemStack stack, int side) { return false; } + + @Override public boolean isItemValidForSlot(int x, int y, int z, int slot, ItemStack stack) { return slot < 3 || slot == 4; } + @Override public boolean canExtractItem(int x, int y, int z, int slot, ItemStack stack, int side) { return false; } + + @Override + public int[] getAccessibleSlotsFromSide(int x, int y, int z, int side) { + BlockPos pos = new BlockPos(x, y, z); + ForgeDirection dir = ForgeDirection.getOrientation(this.getBlockMetadata() - 10); + ForgeDirection rot = dir.getRotation(ForgeDirection.UP); + BlockPos core = new BlockPos(xCoord, yCoord, zCoord); + + //Red + if(side == dir.getOpposite().ordinal() && pos.equals(core.clone().offset(dir, -1).offset(rot, -2))) return new int[] {0}; + //Yellow + if(side == dir.getOpposite().ordinal() && pos.equals(core.clone().offset(dir, -1).offset(rot, -1))) return new int[] {1}; + //Green + if(side == dir.getOpposite().ordinal() && pos.equals(core.clone().offset(dir, -1))) return new int[] {2}; + //Fuel + if(side == dir.ordinal() && pos.equals(core.clone().offset(dir, 1).offset(rot, -1))) return new int[] {4}; + + return new int[] { }; + } + + @Override public FluidTank[] getAllTanks() { return new FluidTank[] {tanks[0], tanks[1], tanks[2], smoke}; } + @Override public FluidTank[] getSendingTanks() { return new FluidTank[] {tanks[2], smoke}; } + @Override public FluidTank[] getReceivingTanks() { return new FluidTank[] {tanks[0], tanks[1]}; } + + @Override public Container provideContainer(int ID, EntityPlayer player, World world, int x, int y, int z) { return new ContainerMachineRotaryFurnace(player.inventory, this); } + @Override public Object provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) { return new GUIMachineRotaryFurnace(player.inventory, this); } +} diff --git a/src/main/java/com/hbm/tileentity/machine/TileEntityMachineSolderingStation.java b/src/main/java/com/hbm/tileentity/machine/TileEntityMachineSolderingStation.java index e5bc4b16f..2df5b46a5 100644 --- a/src/main/java/com/hbm/tileentity/machine/TileEntityMachineSolderingStation.java +++ b/src/main/java/com/hbm/tileentity/machine/TileEntityMachineSolderingStation.java @@ -3,6 +3,7 @@ package com.hbm.tileentity.machine; import java.util.List; import com.hbm.blocks.ModBlocks; +import com.hbm.interfaces.IControlReceiver; import com.hbm.inventory.UpgradeManager; import com.hbm.inventory.RecipesCommon.AStack; import com.hbm.inventory.container.ContainerMachineSolderingStation; @@ -39,18 +40,19 @@ import net.minecraft.util.EnumChatFormatting; import net.minecraft.world.World; import net.minecraftforge.common.util.ForgeDirection; -public class TileEntityMachineSolderingStation extends TileEntityMachineBase implements IEnergyReceiverMK2, IFluidStandardReceiver, IGUIProvider, IUpgradeInfoProvider, IFluidCopiable { +public class TileEntityMachineSolderingStation extends TileEntityMachineBase implements IEnergyReceiverMK2, IFluidStandardReceiver, IControlReceiver, IGUIProvider, IUpgradeInfoProvider, IFluidCopiable { public long power; public long maxPower = 2_000; public long consumption; - + public boolean collisionPrevention = false; + public int progress; public int processTime = 1; - + public FluidTank tank; public ItemStack display; - + public TileEntityMachineSolderingStation() { super(11); this.tank = new FluidTank(Fluids.NONE, 8_000); @@ -64,7 +66,7 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp @Override public void setInventorySlotContents(int i, ItemStack stack) { super.setInventorySlotContents(i, stack); - + if(stack != null && stack.getItem() instanceof ItemMachineUpgrade && i >= 9 && i <= 10) { worldObj.playSoundEffect(xCoord + 0.5, yCoord + 0.5, zCoord + 0.5, "hbm:item.upgradePlug", 1.0F, 1.0F); } @@ -74,48 +76,48 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp @Override public void updateEntity() { - + if(!worldObj.isRemote) { - + this.power = Library.chargeTEFromItems(slots, 7, this.getPower(), this.getMaxPower()); this.tank.setType(8, slots); - + if(worldObj.getTotalWorldTime() % 20 == 0) { for(DirPos pos : getConPos()) { this.trySubscribe(worldObj, pos.getX(), pos.getY(), pos.getZ(), pos.getDir()); if(tank.getTankType() != Fluids.NONE) this.trySubscribe(tank.getTankType(), worldObj, pos.getX(), pos.getY(), pos.getZ(), pos.getDir()); } } - + recipe = SolderingRecipes.getRecipe(new ItemStack[] {slots[0], slots[1], slots[2], slots[3], slots[4], slots[5]}); long intendedMaxPower; - + UpgradeManager.eval(slots, 9, 10); int redLevel = Math.min(UpgradeManager.getLevel(UpgradeType.SPEED), 3); int blueLevel = Math.min(UpgradeManager.getLevel(UpgradeType.POWER), 3); - + if(recipe != null) { this.processTime = recipe.duration - (recipe.duration * redLevel / 6) + (recipe.duration * blueLevel / 3); this.consumption = recipe.consumption + (recipe.consumption * redLevel) - (recipe.consumption * blueLevel / 6); intendedMaxPower = recipe.consumption * 20; - + if(canProcess(recipe)) { this.progress++; this.power -= this.consumption; - + if(progress >= processTime) { this.progress = 0; this.consumeItems(recipe); - + if(slots[6] == null) { slots[6] = recipe.output.copy(); } else { slots[6].stackSize += recipe.output.stackSize; } - + this.markDirty(); } - + if(worldObj.getTotalWorldTime() % 20 == 0) { ForgeDirection dir = ForgeDirection.getOrientation(this.getBlockMetadata() - 10); ForgeDirection rot = dir.getRotation(ForgeDirection.UP); @@ -124,66 +126,66 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp dPart.setByte("count", (byte) 3); PacketDispatcher.wrapper.sendToAllAround(new AuxParticlePacketNT(dPart, xCoord + 0.5 - dir.offsetX * 0.5 + rot.offsetX * 0.5, yCoord + 1.125, zCoord + 0.5 - dir.offsetZ * 0.5 + rot.offsetZ * 0.5), new TargetPoint(worldObj.provider.dimensionId, xCoord, yCoord, zCoord, 25)); } - + } else { this.progress = 0; } - + } else { this.progress = 0; this.consumption = 100; intendedMaxPower = 2000; } - + this.maxPower = Math.max(intendedMaxPower, power); this.networkPackNT(25); } } - + public boolean canProcess(SolderingRecipe recipe) { - + if(this.power < this.consumption) return false; - + if(recipe.fluid != null) { if(this.tank.getTankType() != recipe.fluid.type) return false; if(this.tank.getFill() < recipe.fluid.fill) return false; } - - if(recipe.fluid == null && this.tank.getFill() > 0) return false; - + + if(collisionPrevention && recipe.fluid == null && this.tank.getFill() > 0) return false; + if(slots[6] != null) { if(slots[6].getItem() != recipe.output.getItem()) return false; if(slots[6].getItemDamage() != recipe.output.getItemDamage()) return false; if(slots[6].stackSize + recipe.output.stackSize > slots[6].getMaxStackSize()) return false; } - + return true; } - + public void consumeItems(SolderingRecipe recipe) { - + for(AStack aStack : recipe.toppings) { for(int i = 0; i < 3; i++) { ItemStack stack = slots[i]; if(aStack.matchesRecipe(stack, true) && stack.stackSize >= aStack.stacksize) { this.decrStackSize(i, aStack.stacksize); break; } } } - + for(AStack aStack : recipe.pcb) { for(int i = 3; i < 5; i++) { ItemStack stack = slots[i]; if(aStack.matchesRecipe(stack, true) && stack.stackSize >= aStack.stacksize) { this.decrStackSize(i, aStack.stacksize); break; } } } - + for(AStack aStack : recipe.solder) { for(int i = 5; i < 6; i++) { ItemStack stack = slots[i]; if(aStack.matchesRecipe(stack, true) && stack.stackSize >= aStack.stacksize) { this.decrStackSize(i, aStack.stacksize); break; } } } - + if(recipe.fluid != null) { this.tank.setFill(tank.getFill() - recipe.fluid.fill); } @@ -213,12 +215,12 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp public int[] getAccessibleSlotsFromSide(int side) { return new int[] { 0, 1, 2, 3, 4, 5, 6 }; } - + protected DirPos[] getConPos() { - + ForgeDirection dir = ForgeDirection.getOrientation(this.getBlockMetadata() - 10); ForgeDirection rot = dir.getRotation(ForgeDirection.UP); - + return new DirPos[] { new DirPos(xCoord + dir.offsetX, yCoord, zCoord + dir.offsetZ, dir), new DirPos(xCoord + dir.offsetX + rot.offsetX, yCoord, zCoord + dir.offsetZ + rot.offsetZ, dir), @@ -239,6 +241,7 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp buf.writeLong(this.consumption); buf.writeInt(this.progress); buf.writeInt(this.processTime); + buf.writeBoolean(this.collisionPrevention); buf.writeBoolean(recipe != null); if(recipe != null) { buf.writeInt(Item.getIdFromItem(recipe.output.getItem())); @@ -255,6 +258,7 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp this.consumption = buf.readLong(); this.progress = buf.readInt(); this.processTime = buf.readInt(); + this.collisionPrevention = buf.readBoolean(); if(buf.readBoolean()) { int id = buf.readInt(); @@ -265,7 +269,7 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp this.tank.deserialize(buf); } - + @Override public void readFromNBT(NBTTagCompound nbt) { super.readFromNBT(nbt); @@ -274,9 +278,10 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp this.maxPower = nbt.getLong("maxPower"); this.progress = nbt.getInteger("progress"); this.processTime = nbt.getInteger("processTime"); + this.collisionPrevention = nbt.getBoolean("collisionPrevention"); tank.readFromNBT(nbt, "t"); } - + @Override public void writeToNBT(NBTTagCompound nbt) { super.writeToNBT(nbt); @@ -285,6 +290,7 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp nbt.setLong("maxPower", maxPower); nbt.setInteger("progress", progress); nbt.setInteger("processTime", processTime); + nbt.setBoolean("collisionPrevention", collisionPrevention); tank.writeToNBT(nbt, "t"); } @@ -323,12 +329,12 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp public Object provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) { return new GUIMachineSolderingStation(player.inventory, this); } - + AxisAlignedBB bb = null; - + @Override public AxisAlignedBB getRenderBoundingBox() { - + if(bb == null) { bb = AxisAlignedBB.getBoundingBox( xCoord - 1, @@ -339,10 +345,10 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp zCoord + 2 ); } - + return bb; } - + @Override @SideOnly(Side.CLIENT) public double getMaxRenderDistanceSquared() { @@ -378,4 +384,15 @@ public class TileEntityMachineSolderingStation extends TileEntityMachineBase imp public FluidTank getTankToPaste() { return tank; } + + @Override + public boolean hasPermission(EntityPlayer player) { + return this.isUseableByPlayer(player); + } + + @Override + public void receiveControl(NBTTagCompound data) { + this.collisionPrevention = !this.collisionPrevention; + this.markDirty(); + } } diff --git a/src/main/java/com/hbm/tileentity/machine/TileEntityMachineStrandCaster.java b/src/main/java/com/hbm/tileentity/machine/TileEntityMachineStrandCaster.java index 30f5646f4..920f891de 100644 --- a/src/main/java/com/hbm/tileentity/machine/TileEntityMachineStrandCaster.java +++ b/src/main/java/com/hbm/tileentity/machine/TileEntityMachineStrandCaster.java @@ -33,6 +33,7 @@ public class TileEntityMachineStrandCaster extends TileEntityFoundryCastingBase public FluidTank water; public FluidTank steam; + private long lastCastTick = 0; public String getName() { return "container.machineStrandCaster"; @@ -79,31 +80,41 @@ public class TileEntityMachineStrandCaster extends TileEntityFoundryCastingBase ItemMold.Mold mold = this.getInstalledMold(); if(canProcess()) { - - int itemsCasted = Math.min(amount / mold.getCost(), 9); - - for(int j = 0; j < itemsCasted; j++) { - this.amount -= mold.getCost(); - - ItemStack out = mold.getOutput(type); - - for(int i = 1; i < 7; i++) { - if(slots[i] == null) { - slots[i] = out.copy(); - break; - } - - if(slots[i].isItemEqual(out) && slots[i].stackSize + out.stackSize <= out.getMaxStackSize()) { - slots[i].stackSize += out.stackSize; - break; - } - - } + int minAmount = mold.getCost() * 9; + + // Makes it flush the buffers after 10 seconds of inactivity + if(worldObj.getWorldTime() >= lastCastTick + 200) { + minAmount = mold.getCost(); } - markChanged(); - water.setFill(water.getFill() - getWaterRequired() * itemsCasted); - steam.setFill(steam.getFill() + getWaterRequired() * itemsCasted); + if(this.amount >= minAmount) { + int itemsCasted = amount / mold.getCost(); + + for(int j = 0; j < itemsCasted; j++) { + this.amount -= mold.getCost(); + + ItemStack out = mold.getOutput(type); + + for(int i = 1; i < 7; i++) { + if(slots[i] == null) { + slots[i] = out.copy(); + break; + } + + if(slots[i].isItemEqual(out) && slots[i].stackSize + out.stackSize <= out.getMaxStackSize()) { + slots[i].stackSize += out.stackSize; + break; + } + + } + } + markChanged(); + + water.setFill(water.getFill() - getWaterRequired() * itemsCasted); + steam.setFill(steam.getFill() + getWaterRequired() * itemsCasted); + + lastCastTick = worldObj.getWorldTime(); + } } } @@ -113,7 +124,7 @@ public class TileEntityMachineStrandCaster extends TileEntityFoundryCastingBase public boolean canProcess() { ItemMold.Mold mold = this.getInstalledMold(); - if(type != null && mold != null && this.amount >= mold.getCost() * 9 && mold.getOutput(type) != null) { + if(type != null && mold != null && mold.getOutput(type) != null) { for(int i = 1; i < 7; i++) { if(slots[i] == null || slots[i].isItemEqual(mold.getOutput(type)) && slots[i].stackSize + mold.getOutput(type).stackSize <= mold.getOutput(type).getMaxStackSize()) return water.getFill() >= getWaterRequired() && steam.getFill() < steam.getMaxFill(); @@ -261,6 +272,7 @@ public class TileEntityMachineStrandCaster extends TileEntityFoundryCastingBase super.writeToNBT(nbt); water.writeToNBT(nbt, "w"); steam.writeToNBT(nbt, "s"); + nbt.setLong("t", lastCastTick); } @Override @@ -268,6 +280,7 @@ public class TileEntityMachineStrandCaster extends TileEntityFoundryCastingBase super.readFromNBT(nbt); water.readFromNBT(nbt, "w"); steam.readFromNBT(nbt, "s"); + lastCastTick = nbt.getLong("t"); } @Override diff --git a/src/main/java/com/hbm/tileentity/machine/TileEntityPWRController.java b/src/main/java/com/hbm/tileentity/machine/TileEntityPWRController.java index a707683cb..28fe23172 100644 --- a/src/main/java/com/hbm/tileentity/machine/TileEntityPWRController.java +++ b/src/main/java/com/hbm/tileentity/machine/TileEntityPWRController.java @@ -45,23 +45,23 @@ import net.minecraftforge.common.util.ForgeDirection; @Optional.InterfaceList({@Optional.Interface(iface = "li.cil.oc.api.network.SimpleComponent", modid = "OpenComputers")}) public class TileEntityPWRController extends TileEntityMachineBase implements IGUIProvider, IControlReceiver, SimpleComponent, IFluidStandardTransceiver, CompatHandler.OCComponent { - + public FluidTank[] tanks; - public int coreHeat; - public static final int coreHeatCapacityBase = 10_000_000; - public int coreHeatCapacity = 10_000_000; - public int hullHeat; - public static final int hullHeatCapacityBase = 10_000_000; + public long coreHeat; + public static final long coreHeatCapacityBase = 10_000_000; + public long coreHeatCapacity = 10_000_000; + public long hullHeat; + public static final long hullHeatCapacityBase = 10_000_000; public double flux; - + public double rodLevel = 100; public double rodTarget = 100; - + public int typeLoaded; public int amountLoaded; public double progress; public double processTime; - + public int rodCount; public int connections; public int connectionsControlled; @@ -69,10 +69,10 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG public int heatsinkCount; public int channelCount; public int sourceCount; - + public int unloadDelay = 0; public boolean assembled; - + private AudioWrapper audio; protected List ports = new ArrayList(); @@ -80,15 +80,15 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG public TileEntityPWRController() { super(3); - + this.tanks = new FluidTank[2]; this.tanks[0] = new FluidTank(Fluids.COOLANT, 128_000); this.tanks[1] = new FluidTank(Fluids.COOLANT_HOT, 128_000); } - + /** The initial creation of the reactor, does all the pre-calculation and whatnot */ public void setup(HashMap partMap, HashMap rodMap) { - + rodCount = 0; connections = 0; connectionsControlled = 0; @@ -101,7 +101,7 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG int connectionsDouble = 0; int connectionsControlledDouble = 0; - + for(Entry entry : partMap.entrySet()) { Block block = entry.getValue(); @@ -112,16 +112,16 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG if(block == ModBlocks.pwr_neutron_source) sourceCount++; if(block == ModBlocks.pwr_port) ports.add(entry.getKey()); } - + for(Entry entry : rodMap.entrySet()) { BlockPos fuelPos = entry.getKey(); - + rods.add(fuelPos); - + for(ForgeDirection dir : ForgeDirection.VALID_DIRECTIONS) { - + boolean controlled = false; - + for(int i = 1; i < 16; i++) { BlockPos checkPos = fuelPos.offset(dir, i); Block atPos = partMap.get(checkPos); @@ -149,8 +149,9 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG connections = connectionsDouble / 2; connectionsControlled = connectionsControlledDouble / 2; - - this.coreHeatCapacity = this.coreHeatCapacityBase + this.heatsinkCount * this.coreHeatCapacityBase / 20; + + //switching this to int64 because after 2127 heatsinks the capacity exceeds the int32 which is well within the 4000+ threshold we are working with. oops! + this.coreHeatCapacity = this.coreHeatCapacityBase + this.heatsinkCount * (this.coreHeatCapacityBase / 20); } @Override @@ -160,17 +161,17 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG @Override public void updateEntity() { - + if(!worldObj.isRemote) { - + this.tanks[0].setType(2, slots); setupTanks(); - + if(unloadDelay > 0) unloadDelay--; - + int chunkX = xCoord >> 4; int chunkZ = zCoord >> 4; - + //since fluid sources are often not within 1 chunk, we just do 2 chunks distance and call it a day if(!worldObj.getChunkProvider().chunkExists(chunkX, chunkZ) || !worldObj.getChunkProvider().chunkExists(chunkX + 2, chunkZ + 2) || @@ -179,20 +180,20 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG !worldObj.getChunkProvider().chunkExists(chunkX - 2, chunkZ - 2)) { this.unloadDelay = 60; } - + if(this.assembled) { for(BlockPos pos : ports) { for(ForgeDirection dir : ForgeDirection.VALID_DIRECTIONS) { BlockPos portPos = pos.offset(dir); - + if(tanks[1].getFill() > 0) this.sendFluid(tanks[1], worldObj, portPos.getX(), portPos.getY(), portPos.getZ(), dir); if(worldObj.getTotalWorldTime() % 20 == 0) this.trySubscribe(tanks[0].getTankType(), worldObj, portPos.getX(), portPos.getY(), portPos.getZ(), dir); } } - + //only perform fission if the area has been loaded for 40 ticks or more if(this.unloadDelay <= 0) { - + if((typeLoaded == -1 || amountLoaded <= 0) && slots[0] != null && slots[0].getItem() == ModItems.pwr_fuel) { typeLoaded = slots[0].getItemDamage(); amountLoaded++; @@ -207,61 +208,61 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG if(diff < 1 && diff > -1) this.rodLevel = this.rodTarget; if(this.rodTarget > this.rodLevel) this.rodLevel++; if(this.rodTarget < this.rodLevel) this.rodLevel--; - + int newFlux = this.sourceCount * 20; - + if(typeLoaded != -1 && amountLoaded > 0) { - + EnumPWRFuel fuel = EnumUtil.grabEnumSafely(EnumPWRFuel.class, typeLoaded); double usedRods = getTotalProcessMultiplier(); double fluxPerRod = this.flux / this.rodCount; double outputPerRod = fuel.function.effonix(fluxPerRod); double totalOutput = outputPerRod * amountLoaded * usedRods; double totalHeatOutput = totalOutput * fuel.heatEmission; - + this.coreHeat += totalHeatOutput; newFlux += totalOutput; - + this.processTime = (int) fuel.yield; this.progress += totalOutput; - + if(this.progress >= this.processTime) { this.progress -= this.processTime; - + if(slots[1] == null) { slots[1] = new ItemStack(ModItems.pwr_fuel_hot, 1, typeLoaded); } else if(slots[1].getItem() == ModItems.pwr_fuel_hot && slots[1].getItemDamage() == typeLoaded && slots[1].stackSize < slots[1].getMaxStackSize()) { slots[1].stackSize++; } - + this.amountLoaded--; this.markChanged(); } } - + if(this.amountLoaded <= 0) { this.typeLoaded = -1; } - + if(amountLoaded > rodCount) amountLoaded = rodCount; - + /* CORE COOLING */ double coreCoolingApproachNum = getXOverE((double) this.heatexCount * 5 / (double) getRodCountForCoolant(), 2) / 2D; - int averageCoreHeat = (this.coreHeat + this.hullHeat) / 2; + long averageCoreHeat = (this.coreHeat + this.hullHeat) / 2; this.coreHeat -= (coreHeat - averageCoreHeat) * coreCoolingApproachNum; this.hullHeat -= (hullHeat - averageCoreHeat) * coreCoolingApproachNum; - + updateCoolant(); - + this.coreHeat *= 0.999D; this.hullHeat *= 0.999D; - + this.flux = newFlux; - + if(tanks[0].getTankType().hasTrait(FT_PWRModerator.class) && tanks[0].getFill() > 0) { this.flux *= tanks[0].getTankType().getTrait(FT_PWRModerator.class).getMultiplier(); } - + if(this.coreHeat > this.coreHeatCapacity) { meltDown(); } @@ -273,9 +274,9 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG this.networkPackNT(150); } else { - + if(amountLoaded > 0) { - + if(audio == null) { audio = createAudioLoop(); audio.startSound(); @@ -285,9 +286,9 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG audio.updateVolume(getVolume(1F)); audio.keepAlive(); - + } else { - + if(audio != null) { audio.stopSound(); audio = null; @@ -295,15 +296,15 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG } } } - + protected void meltDown() { - + worldObj.func_147480_a(xCoord, yCoord, zCoord, false); double x = 0; double y = 0; double z = 0; - + for(BlockPos pos : this.rods) { Block b = worldObj.getBlock(pos.getX(), pos.getY(), pos.getZ()); b.breakBlock(worldObj, pos.getX(), pos.getY(), pos.getZ(), b, worldObj.getBlockMetadata(pos.getX(), pos.getY(), pos.getZ())); @@ -317,10 +318,10 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG x /= rods.size(); y /= rods.size(); z /= rods.size(); - + worldObj.newExplosion(null, x, y, z, 15F, true, true); } - + @Override public AudioWrapper createAudioLoop() { return MainRegistry.proxy.getLoopedSound("hbm:block.reactorLoop", xCoord, yCoord, zCoord, 1F, 10F, 1.0F, 20); @@ -345,27 +346,28 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG audio = null; } } - + protected void updateCoolant() { - + FT_Heatable trait = tanks[0].getTankType().getTrait(FT_Heatable.class); if(trait == null || trait.getEfficiency(HeatingType.PWR) <= 0) return; - + double coolingEff = (double) this.channelCount / (double) getRodCountForCoolant() * 0.1D; //10% cooling if numbers match if(coolingEff > 1D) coolingEff = 1D; - - int heatToUse = Math.min(this.hullHeat, (int) (this.hullHeat * coolingEff * trait.getEfficiency(HeatingType.PWR))); + + //no use in trying to convert everythin to long since the internal tanks would never even support operation like that, just cap the heat cycle count to prevent overflows in the math + int heatToUse = (int) Math.min(Math.min(this.hullHeat, (long) (this.hullHeat * coolingEff * trait.getEfficiency(HeatingType.PWR))), 2_000_000_000); HeatingStep step = trait.getFirstStep(); int coolCycles = tanks[0].getFill() / step.amountReq; int hotCycles = (tanks[1].getMaxFill() - tanks[1].getFill()) / step.amountProduced; int heatCycles = heatToUse / step.heatReq; int cycles = Math.min(coolCycles, Math.min(hotCycles, heatCycles)); - + this.hullHeat -= step.heatReq * cycles; this.tanks[0].setFill(tanks[0].getFill() - step.amountReq * cycles); this.tanks[1].setFill(tanks[1].getFill() + step.amountProduced * cycles); } - + protected int getRodCountForCoolant() { return this.rodCount + (int) Math.ceil(this.heatsinkCount / 4D); } @@ -374,8 +376,8 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG public void serialize(ByteBuf buf) { super.serialize(buf); buf.writeInt(this.rodCount); - buf.writeInt(this.coreHeat); - buf.writeInt(this.hullHeat); + buf.writeLong(this.coreHeat); + buf.writeLong(this.hullHeat); buf.writeDouble(this.flux); buf.writeDouble(this.processTime); buf.writeDouble(this.progress); @@ -383,7 +385,7 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG buf.writeInt(this.amountLoaded); buf.writeDouble(this.rodLevel); buf.writeDouble(this.rodTarget); - buf.writeInt(this.coreHeatCapacity); + buf.writeLong(this.coreHeatCapacity); tanks[0].serialize(buf); tanks[1].serialize(buf); } @@ -392,8 +394,8 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG public void deserialize(ByteBuf buf) { super.deserialize(buf); this.rodCount = buf.readInt(); - this.coreHeat = buf.readInt(); - this.hullHeat = buf.readInt(); + this.coreHeat = buf.readLong(); + this.hullHeat = buf.readLong(); this.flux = buf.readDouble(); this.processTime = buf.readDouble(); this.progress = buf.readDouble(); @@ -401,34 +403,34 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG this.amountLoaded = buf.readInt(); this.rodLevel = buf.readDouble(); this.rodTarget = buf.readInt(); - this.coreHeatCapacity = buf.readInt(); + this.coreHeatCapacity = buf.readLong(); tanks[0].deserialize(buf); tanks[1].deserialize(buf); } - + protected void setupTanks() { - + FT_Heatable trait = tanks[0].getTankType().getTrait(FT_Heatable.class); - + if(trait == null || trait.getEfficiency(HeatingType.PWR) <= 0) { tanks[0].setTankType(Fluids.NONE); tanks[1].setTankType(Fluids.NONE); return; } - + tanks[1].setTankType(trait.getFirstStep().typeProduced); } - + public double getTotalProcessMultiplier() { double totalConnections = this.connections + this.connectionsControlled * (1D - (this.rodLevel / 100D)); double connectionsEff = connectinFunc(totalConnections); return connectionsEff; } - + public double connectinFunc(double connections) { return connections / 10D * (1D - getXOverE(connections, 300D)) + connections / 150D * getXOverE(connections, 300D); } - + public double getXOverE(double x, double d) { return 1 - Math.pow(Math.E, -x / d); } @@ -448,17 +450,17 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG public boolean canExtractItem(int slot, ItemStack itemStack, int side) { return slot == 1; } - + @Override public void readFromNBT(NBTTagCompound nbt) { super.readFromNBT(nbt); tanks[0].readFromNBT(nbt, "t0"); tanks[1].readFromNBT(nbt, "t1"); - + this.assembled = nbt.getBoolean("assembled"); - this.coreHeat = nbt.getInteger("coreHeat"); - this.hullHeat = nbt.getInteger("hullHeat"); + this.coreHeat = Math.max(nbt.getInteger("coreHeat"), nbt.getLong("coreHeatL")); + this.hullHeat = Math.max(nbt.getInteger("hullHeat"), nbt.getLong("hullHeatL")); this.flux = nbt.getDouble("flux"); this.rodLevel = nbt.getDouble("rodLevel"); this.rodTarget = nbt.getDouble("rodTarget"); @@ -466,7 +468,7 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG this.amountLoaded = nbt.getInteger("amountLoaded"); this.progress = nbt.getDouble("progress"); this.processTime = nbt.getDouble("processTime"); - this.coreHeatCapacity = nbt.getInteger("coreHeatCapacity"); + this.coreHeatCapacity = Math.max(nbt.getInteger("coreHeatCapacity"), nbt.getLong("coreHeatCapacityL")); if(this.coreHeatCapacity < this.coreHeatCapacityBase) this.coreHeatCapacity = this.coreHeatCapacityBase; this.rodCount = nbt.getInteger("rodCount"); @@ -476,14 +478,14 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG this.channelCount = nbt.getInteger("channelCount"); this.sourceCount = nbt.getInteger("sourceCount"); this.heatsinkCount = nbt.getInteger("heatsinkCount"); - + ports.clear(); int portCount = nbt.getInteger("portCount"); for(int i = 0; i < portCount; i++) { int[] port = nbt.getIntArray("p" + i); ports.add(new BlockPos(port[0], port[1], port[2])); } - + rods.clear(); int rodCount = nbt.getInteger("rodCount"); for(int i = 0; i < rodCount; i++) { @@ -493,17 +495,17 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG } } } - + @Override public void writeToNBT(NBTTagCompound nbt) { super.writeToNBT(nbt); tanks[0].writeToNBT(nbt, "t0"); tanks[1].writeToNBT(nbt, "t1"); - + nbt.setBoolean("assembled", assembled); - nbt.setInteger("coreHeat", coreHeat); - nbt.setInteger("hullHeat", hullHeat); + nbt.setLong("coreHeatL", coreHeat); + nbt.setLong("hullHeatL", hullHeat); nbt.setDouble("flux", flux); nbt.setDouble("rodLevel", rodLevel); nbt.setDouble("rodTarget", rodTarget); @@ -511,7 +513,7 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG nbt.setInteger("amountLoaded", amountLoaded); nbt.setDouble("progress", progress); nbt.setDouble("processTime", processTime); - nbt.setInteger("coreHeatCapacity", coreHeatCapacity); + nbt.setLong("coreHeatCapacityL", coreHeatCapacity); nbt.setInteger("rodCount", rodCount); nbt.setInteger("connections", connections); @@ -520,13 +522,13 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG nbt.setInteger("channelCount", channelCount); nbt.setInteger("sourceCount", sourceCount); nbt.setInteger("heatsinkCount", heatsinkCount); - + nbt.setInteger("portCount", ports.size()); for(int i = 0; i < ports.size(); i++) { BlockPos pos = ports.get(i); nbt.setIntArray("p" + i, new int[] { pos.getX(), pos.getY(), pos.getZ() }); } - + nbt.setInteger("rodCount", rods.size()); for(int i = 0; i < rods.size(); i++) { BlockPos pos = rods.get(i); @@ -541,7 +543,7 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG @Override public void receiveControl(NBTTagCompound data) { - + if(data.hasKey("control")) { this.rodTarget = MathHelper.clamp_int(data.getInteger("control"), 0, 100); this.markChanged(); @@ -573,13 +575,13 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG public Object[] getLevel(Context context, Arguments args) { return new Object[] {rodTarget, rodLevel}; } - + @Callback(direct = true) @Optional.Method(modid = "OpenComputers") public Object[] getCoolantInfo(Context context, Arguments args) { return new Object[] {tanks[0].getFill(), tanks[0].getMaxFill(), tanks[1].getFill(), tanks[1].getMaxFill()}; } - + @Callback(direct = true) @Optional.Method(modid = "OpenComputers") public Object[] getFuelInfo(Context context, Arguments args) { diff --git a/src/main/java/com/hbm/tileentity/machine/oil/TileEntityMachinePyroOven.java b/src/main/java/com/hbm/tileentity/machine/oil/TileEntityMachinePyroOven.java index fb5757aef..17c9e8db8 100644 --- a/src/main/java/com/hbm/tileentity/machine/oil/TileEntityMachinePyroOven.java +++ b/src/main/java/com/hbm/tileentity/machine/oil/TileEntityMachinePyroOven.java @@ -12,6 +12,7 @@ import com.hbm.inventory.fluid.tank.FluidTank; import com.hbm.inventory.gui.GUIPyroOven; import com.hbm.inventory.recipes.PyroOvenRecipes; import com.hbm.inventory.recipes.PyroOvenRecipes.PyroOvenRecipe; +import com.hbm.items.machine.ItemMachineUpgrade; import com.hbm.items.machine.ItemMachineUpgrade.UpgradeType; import com.hbm.lib.Library; import com.hbm.main.MainRegistry; @@ -41,7 +42,7 @@ import net.minecraftforge.common.util.ForgeDirection; public class TileEntityMachinePyroOven extends TileEntityMachinePolluting implements IEnergyReceiverMK2, IFluidStandardTransceiver, IGUIProvider, IUpgradeInfoProvider, IFluidCopiable { public long power; - public static final long maxPower = 1_000_000; + public static final long maxPower = 10_000_000; public boolean isVenting; public boolean isProgressing; public float progress; @@ -61,6 +62,15 @@ public class TileEntityMachinePyroOven extends TileEntityMachinePolluting implem tanks[1] = new FluidTank(Fluids.NONE, 24_000); } + @Override + public void setInventorySlotContents(int i, ItemStack stack) { + super.setInventorySlotContents(i, stack); + + if(stack != null && stack.getItem() instanceof ItemMachineUpgrade && i >= 4 && i <= 5) { + worldObj.playSoundEffect(xCoord + 0.5, yCoord + 0.5, zCoord + 0.5, "hbm:item.upgradePlug", 1.0F, 1.0F); + } + } + @Override public String getName() { return "container.machinePyroOven"; @@ -96,7 +106,7 @@ public class TileEntityMachinePyroOven extends TileEntityMachinePolluting implem PyroOvenRecipe recipe = getMatchingRecipe(); this.progress += 1F / Math.max((recipe.duration - speed * (recipe.duration / 4)) / (overdrive * 2 + 1), 1); this.isProgressing = true; - this.power -= this.getConsumption(speed, powerSaving); + this.power -= this.getConsumption(speed + overdrive * 2, powerSaving); if(progress >= 1F) { this.progress = 0F; diff --git a/src/main/java/com/hbm/tileentity/machine/rbmk/TileEntityCraneConsole.java b/src/main/java/com/hbm/tileentity/machine/rbmk/TileEntityCraneConsole.java index a1d770a95..eaa4ec64d 100644 --- a/src/main/java/com/hbm/tileentity/machine/rbmk/TileEntityCraneConsole.java +++ b/src/main/java/com/hbm/tileentity/machine/rbmk/TileEntityCraneConsole.java @@ -28,20 +28,22 @@ import java.util.List; @Optional.InterfaceList({@Optional.Interface(iface = "li.cil.oc.api.network.SimpleComponent", modid = "OpenComputers")}) public class TileEntityCraneConsole extends TileEntity implements IBufPacketReceiver, SimpleComponent, CompatHandler.OCComponent { - + public int centerX; public int centerY; public int centerZ; - + public int spanF; public int spanB; public int spanL; public int spanR; - + public int height; - + public boolean setUpCrane = false; + public int craneRotationOffset = 0; + public double lastTiltFront = 0; public double lastTiltLeft = 0; public double tiltFront = 0; @@ -52,11 +54,11 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece public double posFront = 0; public double posLeft = 0; private static final double speed = 0.05D; - + private boolean goesDown = false; public double lastProgress = 1D; public double progress = 1D; - + private ItemStack loadedItem; private boolean hasLoaded = false; public double loadedHeat; @@ -69,15 +71,15 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece lastTiltFront = tiltFront; lastTiltLeft = tiltLeft; } - + if(goesDown) { - + if(progress > 0) { progress -= 0.04D; } else { progress = 0; goesDown = false; - + if(!worldObj.isRemote && this.canTargetInteract()) { IRBMKLoadable column = getColumnAtPos(); if(column != null) { // canTargetInteract already assumes this, but there seems to be some freak race conditions that cause the column to be null anyway @@ -88,16 +90,16 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece this.loadedItem = column.provideNext(); column.unload(); } - + this.markDirty(); } } - + } } else if(progress != 1) { - + progress += 0.04D; - + if(progress > 1D) { progress = 1D; } @@ -109,7 +111,7 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece double maxX = xCoord + 0.5 + side.offsetX * 1.5 + dir.offsetX * 2; double minZ = zCoord + 0.5 - side.offsetZ * 1.5; double maxZ = zCoord + 0.5 + side.offsetZ * 1.5 + dir.offsetZ * 2; - + List players = worldObj.getEntitiesWithinAABB(EntityPlayer.class, AxisAlignedBB.getBoundingBox( Math.min(minX, maxX), yCoord, @@ -119,7 +121,7 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece Math.max(minZ, maxZ))); tiltFront = 0; tiltLeft = 0; - + if(players.size() > 0 && !isCraneLoading()) { EntityPlayer player = players.get(0); HbmPlayerProps props = HbmPlayerProps.getData(player); @@ -127,7 +129,7 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece boolean down = props.getKeyPressed(EnumKeybind.CRANE_DOWN); boolean left = props.getKeyPressed(EnumKeybind.CRANE_LEFT); boolean right = props.getKeyPressed(EnumKeybind.CRANE_RIGHT); - + if(up && !down) { tiltFront = 30; if(!worldObj.isRemote) posFront += speed; @@ -144,17 +146,17 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece tiltLeft = -30; if(!worldObj.isRemote) posLeft -= speed; } - + if(props.getKeyPressed(EnumKeybind.CRANE_LOAD)) { goesDown = true; } } - + posFront = MathHelper.clamp_double(posFront, -spanB, spanF); posLeft = MathHelper.clamp_double(posLeft, -spanR, spanL); - + if(!worldObj.isRemote) { - + if(loadedItem != null && loadedItem.getItem() instanceof ItemRBMKRod) { this.loadedHeat = ItemRBMKRod.getHullHeat(loadedItem); this.loadedEnrichment = ItemRBMKRod.getEnrichment(loadedItem); @@ -166,50 +168,50 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece sendStandard(250); } } - + public boolean hasItemLoaded() { - + if(!worldObj.isRemote) return this.loadedItem != null; else return this.hasLoaded; } - + public boolean isCraneLoading() { return this.progress != 1D; } - + public boolean isAboveValidTarget() { return getColumnAtPos() != null; } - + public boolean canTargetInteract() { - + IRBMKLoadable column = getColumnAtPos(); - + if(column == null) return false; - + if(this.hasItemLoaded()) { return column.canLoad(loadedItem); } else { return column.canUnload(); } } - + public IRBMKLoadable getColumnAtPos() { - + ForgeDirection dir = ForgeDirection.getOrientation(this.getBlockMetadata() - BlockDummyable.offset); ForgeDirection left = dir.getRotation(ForgeDirection.DOWN); int x = (int)Math.floor(this.centerX - dir.offsetX * this.posFront - left.offsetX * this.posLeft + 0.5D); int y = this.centerY - 1; int z = (int)Math.floor(this.centerZ - dir.offsetZ * this.posFront - left.offsetZ * this.posLeft + 0.5D); - + Block b = worldObj.getBlock(x, y, z); - + if(b instanceof RBMKBase) { - + int[] pos = ((BlockDummyable)b).findCore(worldObj, x, y, z); if(pos != null) { TileEntityRBMKBase column = (TileEntityRBMKBase)worldObj.getTileEntity(pos[0], pos[1], pos[2]); @@ -218,7 +220,7 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece } } } - + return null; } @@ -227,6 +229,7 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece buf.writeBoolean(this.setUpCrane); if(this.setUpCrane) { //no need to send any of this if there's NO FUCKING CRANE THERE + buf.writeInt(this.craneRotationOffset); buf.writeInt(this.centerX); buf.writeInt(this.centerY); buf.writeInt(this.centerZ); @@ -251,6 +254,7 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece this.setUpCrane = buf.readBoolean(); if (this.setUpCrane) { + this.craneRotationOffset = buf.readInt(); this.centerX = buf.readInt(); this.centerY = buf.readInt(); this.centerZ = buf.readInt(); @@ -267,7 +271,7 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece this.loadedEnrichment = buf.readDouble(); } } - + public void setTarget(int x, int y, int z) { this.centerX = x; this.centerY = y + RBMKDials.getColumnHeight(worldObj) + 1; @@ -277,18 +281,24 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece this.spanB = 7; this.spanL = 7; this.spanR = 7; - + this.height = 7; + this.setUpCrane = true; - + this.markDirty(); } - + + public void cycleCraneRotation() { + this.craneRotationOffset = (this.craneRotationOffset + 90) % 360; + } + @Override public void readFromNBT(NBTTagCompound nbt) { super.readFromNBT(nbt); this.setUpCrane = nbt.getBoolean("crane"); + this.craneRotationOffset = nbt.getInteger("craneRotationOffset"); this.centerX = nbt.getInteger("centerX"); this.centerY = nbt.getInteger("centerY"); this.centerZ = nbt.getInteger("centerZ"); @@ -299,16 +309,17 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece this.height = nbt.getInteger("height"); this.posFront = nbt.getDouble("posFront"); this.posLeft = nbt.getDouble("posLeft"); - + NBTTagCompound held = nbt.getCompoundTag("held"); this.loadedItem = ItemStack.loadItemStackFromNBT(held); } - + @Override public void writeToNBT(NBTTagCompound nbt) { super.writeToNBT(nbt); nbt.setBoolean("crane", setUpCrane); + nbt.setInteger("craneRotationOffset", craneRotationOffset); nbt.setInteger("centerX", centerX); nbt.setInteger("centerY", centerY); nbt.setInteger("centerZ", centerZ); @@ -319,25 +330,25 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece nbt.setInteger("height", height); nbt.setDouble("posFront", posFront); nbt.setDouble("posLeft", posLeft); - + if(this.loadedItem != null) { NBTTagCompound held = new NBTTagCompound(); this.loadedItem.writeToNBT(held); nbt.setTag("held", held); } } - + @Override public AxisAlignedBB getRenderBoundingBox() { return this.INFINITE_EXTENT_AABB; } - + @Override @SideOnly(Side.CLIENT) public double getMaxRenderDistanceSquared() { return 65536.0D; } - + // do some opencomputer stuff @Override @Optional.Method(modid = "OpenComputers") @@ -369,12 +380,12 @@ public class TileEntityCraneConsole extends TileEntity implements IBufPacketRece if(!worldObj.isRemote) posLeft -= speed; break; } - + return new Object[] {}; } return new Object[] {"Crane not found"}; } - + @Callback @Optional.Method(modid = "OpenComputers") public Object[] load(Context context, Arguments args) { diff --git a/src/main/java/com/hbm/tileentity/network/TileEntityCraneGrabber.java b/src/main/java/com/hbm/tileentity/network/TileEntityCraneGrabber.java index 96411cb83..84822ccb7 100644 --- a/src/main/java/com/hbm/tileentity/network/TileEntityCraneGrabber.java +++ b/src/main/java/com/hbm/tileentity/network/TileEntityCraneGrabber.java @@ -33,6 +33,7 @@ public class TileEntityCraneGrabber extends TileEntityCraneBase implements IGUIP public boolean isWhitelist = false; public ModulePatternMatcher matcher; + public long lastGrabbedTick = 0; public TileEntityCraneGrabber() { super(11); @@ -53,9 +54,9 @@ public class TileEntityCraneGrabber extends TileEntityCraneBase implements IGUIP public void updateEntity() { super.updateEntity(); if(!worldObj.isRemote) { - + int delay = 20; - + if(slots[10] != null && slots[10].getItem() == ModItems.upgrade_ejector) { switch(slots[10].getItemDamage()) { case 0: delay = 10; break; @@ -63,10 +64,10 @@ public class TileEntityCraneGrabber extends TileEntityCraneBase implements IGUIP case 2: delay = 2; break; } } - - if(worldObj.getTotalWorldTime() % delay == 0 && !this.worldObj.isBlockIndirectlyGettingPowered(xCoord, yCoord, zCoord)) { + + if(worldObj.getTotalWorldTime() >= lastGrabbedTick + delay && !this.worldObj.isBlockIndirectlyGettingPowered(xCoord, yCoord, zCoord)) { int amount = 1; - + if(slots[9] != null && slots[9].getItem() == ModItems.upgrade_stack) { switch(slots[9].getItemDamage()) { case 0: amount = 4; break; @@ -74,21 +75,21 @@ public class TileEntityCraneGrabber extends TileEntityCraneBase implements IGUIP case 2: amount = 64; break; } } - + ForgeDirection inputSide = getInputSide(); ForgeDirection outputSide = getOutputSide(); TileEntity te = worldObj.getTileEntity(xCoord + outputSide.offsetX, yCoord + outputSide.offsetY, zCoord + outputSide.offsetZ); - + int[] access = null; ISidedInventory sided = null; - + if(te instanceof ISidedInventory) { sided = (ISidedInventory) te; access = InventoryUtil.masquerade(sided, outputSide.getOpposite().ordinal()); } - + if(te instanceof IInventory) { - + /* * due to this really primitive way of just offsetting the AABB instead of contracting it, there's a wacky * edge-case where it's possible to feed the grabber by inserting items from the side if there's a triple @@ -106,23 +107,25 @@ public class TileEntityCraneGrabber extends TileEntityCraneBase implements IGUIP double y = yCoord + inputSide.offsetY * reach; double z = zCoord + inputSide.offsetZ * reach; List items = worldObj.getEntitiesWithinAABB(EntityMovingItem.class, AxisAlignedBB.getBoundingBox(x + 0.1875D, y + 0.1875D, z + 0.1875D, x + 0.8125D, y + 0.8125D, z + 0.8125D)); - + for(EntityMovingItem item : items) { ItemStack stack = item.getItemStack(); boolean match = this.matchesFilter(stack); if(this.isWhitelist && !match || !this.isWhitelist && match) continue; - + + lastGrabbedTick = worldObj.getTotalWorldTime(); + ItemStack copy = stack.copy(); int toAdd = Math.min(stack.stackSize, amount); copy.stackSize = toAdd; ItemStack ret = CraneInserter.addToInventory((IInventory) te, access, copy, outputSide.getOpposite().ordinal()); int didAdd = toAdd - (ret != null ? ret.stackSize : 0); stack.stackSize -= didAdd; - + if(stack.stackSize <= 0) { item.setDead(); } - + amount -= didAdd; if(amount <= 0) { break; @@ -148,17 +151,17 @@ public class TileEntityCraneGrabber extends TileEntityCraneBase implements IGUIP this.isWhitelist = buf.readBoolean(); this.matcher.deserialize(buf); } - + public boolean matchesFilter(ItemStack stack) { - + for(int i = 0; i < 9; i++) { ItemStack filter = slots[i]; - + if(filter != null && this.matcher.isValidForFilter(filter, i, stack)) { return true; } } - + return false; } @@ -172,19 +175,21 @@ public class TileEntityCraneGrabber extends TileEntityCraneBase implements IGUIP public Object provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) { return new GUICraneGrabber(player.inventory, this); } - + @Override public void readFromNBT(NBTTagCompound nbt) { super.readFromNBT(nbt); this.isWhitelist = nbt.getBoolean("isWhitelist"); this.matcher.readFromNBT(nbt); + this.lastGrabbedTick = nbt.getLong("lastGrabbedTick"); } - + @Override public void writeToNBT(NBTTagCompound nbt) { super.writeToNBT(nbt); nbt.setBoolean("isWhitelist", this.isWhitelist); this.matcher.writeToNBT(nbt); + nbt.setLong("lastGrabbedTick", lastGrabbedTick); } @Override diff --git a/src/main/java/com/hbm/tileentity/network/TileEntityPipeBaseNT.java b/src/main/java/com/hbm/tileentity/network/TileEntityPipeBaseNT.java index fff678bc1..340a47ab0 100644 --- a/src/main/java/com/hbm/tileentity/network/TileEntityPipeBaseNT.java +++ b/src/main/java/com/hbm/tileentity/network/TileEntityPipeBaseNT.java @@ -11,6 +11,8 @@ import api.hbm.fluid.IPipeNet; import api.hbm.fluid.PipeNet; import com.hbm.inventory.fluid.tank.FluidTank; import com.hbm.tileentity.IFluidCopiable; +import com.hbm.util.Compat; + import net.minecraft.entity.player.EntityPlayer; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.network.NetworkManager; @@ -74,7 +76,7 @@ public class TileEntityPipeBaseNT extends TileEntity implements IFluidConductor, for(ForgeDirection dir : ForgeDirection.VALID_DIRECTIONS) { - TileEntity te = worldObj.getTileEntity(xCoord + dir.offsetX, yCoord + dir.offsetY, zCoord + dir.offsetZ); + TileEntity te = Compat.getTileStandard(worldObj, xCoord + dir.offsetX, yCoord + dir.offsetY, zCoord + dir.offsetZ); if(te instanceof IFluidConductor) { diff --git a/src/main/java/com/hbm/util/Compat.java b/src/main/java/com/hbm/util/Compat.java index 3b6bc6069..fd6ab8764 100644 --- a/src/main/java/com/hbm/util/Compat.java +++ b/src/main/java/com/hbm/util/Compat.java @@ -1,5 +1,6 @@ package com.hbm.util; +import java.lang.reflect.Method; import java.util.ArrayList; import java.util.List; import java.util.concurrent.ConcurrentHashMap; @@ -35,6 +36,7 @@ public class Compat { public static final String MOD_TIC = "TConstruct"; public static final String MOD_RC = "Railcraft"; public static final String MOD_TC = "tc"; + public static final String MOD_EIDS = "endlessids"; public static Item tryLoadItem(String domain, String name) { return (Item) Item.itemRegistry.getObject(getReg(domain, name)); @@ -199,6 +201,37 @@ public class Compat { MainRegistry.logger.info("#######################################################"); } + public static Class getChunkBiomeHook() { + try { + return Class.forName("com.falsepattern.endlessids.mixin.helpers.ChunkBiomeHook"); + } catch(ClassNotFoundException e) { + return null; + } + } + + public static Method getBiomeShortArray; + + public static Method getBiomeShortArray() { + if(getBiomeShortArray != null) return getBiomeShortArray; + try { + Method m = getChunkBiomeHook().getDeclaredMethod("getBiomeShortArray"); + getBiomeShortArray = m; + return m; + } catch(Exception e) { + return null; + } + } + + public static short[] getBiomeShortArray(Object instance) { + Method m = getBiomeShortArray(); + if(m != null) { + try { + return (short[]) m.invoke(instance); + } catch(Exception e) { } + } + return null; + } + /** A standard implementation of safely grabbing a tile entity without loading chunks, might have more fluff added to it later on. */ public static TileEntity getTileStandard(World world, int x, int y, int z) { if(!world.getChunkProvider().chunkExists(x >> 4, z >> 4)) return null; diff --git a/src/main/java/com/hbm/util/CrashHelper.java b/src/main/java/com/hbm/util/CrashHelper.java new file mode 100644 index 000000000..ed5198932 --- /dev/null +++ b/src/main/java/com/hbm/util/CrashHelper.java @@ -0,0 +1,33 @@ +package com.hbm.util; + +import com.hbm.inventory.recipes.loader.SerializableRecipe; + +import cpw.mods.fml.common.FMLCommonHandler; +import cpw.mods.fml.common.ICrashCallable; + +public class CrashHelper { + + public static void init() { + FMLCommonHandler.instance().registerCrashCallable(new CrashCallableRecipe()); + } + + public static class CrashCallableRecipe implements ICrashCallable { + + @Override + public String getLabel() { + return "NTM Modified recipes:"; + } + + @Override + public String call() throws Exception { + + String call = ""; + + for(SerializableRecipe rec : SerializableRecipe.recipeHandlers) { + if(rec.modified) call += "\n\t\t" + rec.getFileName(); + } + + return call; + } + } +} diff --git a/src/main/java/com/hbm/util/EntityDamageUtil.java b/src/main/java/com/hbm/util/EntityDamageUtil.java index 137256643..ada2a10c8 100644 --- a/src/main/java/com/hbm/util/EntityDamageUtil.java +++ b/src/main/java/com/hbm/util/EntityDamageUtil.java @@ -7,6 +7,7 @@ import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.SharedMonsterAttributes; +import net.minecraft.entity.passive.EntityTameable; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.potion.Potion; import net.minecraft.util.DamageSource; @@ -52,6 +53,24 @@ public class EntityDamageUtil { } } + public static float getDamageAfterTax(EntityLivingBase living, DamageSource source, float amount) { + amount = ForgeHooks.onLivingHurt(living, source, amount); + if(amount <= 0) return 0; + amount = applyArmorCalculations(living, source, amount); + return amount; + } + + public static boolean attackArmorPiercing(EntityLivingBase living, DamageSource sourceDamageCalc, DamageSource sourceArmorPiercing, float amount, float piercing) { + if(piercing <= 0) return living.attackEntityFrom(sourceDamageCalc, amount); + //damage intended to pass the armor + float afterTax = getDamageAfterTax(living, sourceDamageCalc, amount); + //damage removed by the calculation + float reduced = Math.max(amount - afterTax, 0F); + //damage that would pass + damage tthat wouldn't pass * AP percentage + return attackEntityFromIgnoreIFrame(living, sourceArmorPiercing, Math.max(afterTax + (reduced * piercing), 0F)); + + } + /** Currently just a copy of the vanilla damage code */ public static boolean attackEntityFromNT(EntityLivingBase living, DamageSource source, float amount) { @@ -104,8 +123,8 @@ public class EntityDamageUtil { if(entity instanceof EntityPlayer) { living.recentlyHit = 100; living.attackingPlayer = (EntityPlayer) entity; - } else if(entity instanceof net.minecraft.entity.passive.EntityTameable) { - net.minecraft.entity.passive.EntityTameable entitywolf = (net.minecraft.entity.passive.EntityTameable) entity; + } else if(entity instanceof EntityTameable) { + EntityTameable entitywolf = (EntityTameable) entity; if(entitywolf.isTamed()) { living.recentlyHit = 100; diff --git a/src/main/java/com/hbm/world/WorldUtil.java b/src/main/java/com/hbm/world/WorldUtil.java index 4f23a6865..05e6d33b0 100644 --- a/src/main/java/com/hbm/world/WorldUtil.java +++ b/src/main/java/com/hbm/world/WorldUtil.java @@ -2,7 +2,12 @@ package com.hbm.world; import com.hbm.packet.PacketDispatcher; import com.hbm.packet.toclient.BiomeSyncPacket; +import com.hbm.util.Compat; +import java.lang.invoke.MethodHandle; +import java.lang.invoke.MethodHandles; +import java.lang.invoke.MethodType; +import cpw.mods.fml.common.Loader; import cpw.mods.fml.common.network.NetworkRegistry.TargetPoint; import net.minecraft.entity.Entity; import net.minecraft.util.MathHelper; @@ -19,21 +24,51 @@ import net.minecraftforge.event.entity.EntityJoinWorldEvent; public class WorldUtil { + private static final MethodHandle getBiomeShortHandle; + + static { + if(Loader.isModLoaded(Compat.MOD_EIDS)) { + try { + MethodHandles.Lookup lookup = MethodHandles.publicLookup(); + MethodType methodType = MethodType.methodType(short[].class); + getBiomeShortHandle = lookup.findVirtual(Chunk.class, "getBiomeShortArray", methodType); + } catch(Exception e) { + throw new AssertionError(); + } + } else { + getBiomeShortHandle = null; + } + } + public static void setBiome(World world, int x, int z, BiomeGenBase biome) { Chunk chunk = world.getChunkFromBlockCoords(x, z); - chunk.getBiomeArray()[(z & 15) << 4 | (x & 15)] = (byte)(biome.biomeID & 255); + if(Loader.isModLoaded(Compat.MOD_EIDS)) { + short[] array = getBiomeShortArray(chunk); + array[(z & 15) << 4 | x & 15] = (short) biome.biomeID; + } else { + chunk.getBiomeArray()[(z & 15) << 4 | (x & 15)] = (byte)(biome.biomeID & 255); + } chunk.isModified = true; } public static void syncBiomeChange(World world, int x, int z) { Chunk chunk = world.getChunkFromBlockCoords(x, z); - PacketDispatcher.wrapper.sendToAllAround(new BiomeSyncPacket(x >> 4, z >> 4, chunk.getBiomeArray()), new TargetPoint(world.provider.dimensionId, x, 128, z, 1024D)); + if(Loader.isModLoaded(Compat.MOD_EIDS)) { + PacketDispatcher.wrapper.sendToAllAround(new BiomeSyncPacket(x >> 4, z >> 4, getBiomeShortArray(chunk)), new TargetPoint(world.provider.dimensionId, x, 128, z, 1024D)); + } else { + PacketDispatcher.wrapper.sendToAllAround(new BiomeSyncPacket(x >> 4, z >> 4, chunk.getBiomeArray()), new TargetPoint(world.provider.dimensionId, x, 128, z, 1024D)); + } } public static void syncBiomeChangeBlock(World world, int x, int z) { Chunk chunk = world.getChunkFromBlockCoords(x, z); - byte biome = chunk.getBiomeArray()[(z & 15) << 4 | (x & 15)]; - PacketDispatcher.wrapper.sendToAllAround(new BiomeSyncPacket(x, z, biome), new TargetPoint(world.provider.dimensionId, x, 128, z, 1024D)); + if(Loader.isModLoaded(Compat.MOD_EIDS)) { + short biome = getBiomeShortArray(chunk)[(z & 15) << 4 | (x & 15)]; + PacketDispatcher.wrapper.sendToAllAround(new BiomeSyncPacket(x, z, biome), new TargetPoint(world.provider.dimensionId, x, 128, z, 1024D)); + } else { + byte biome = chunk.getBiomeArray()[(z & 15) << 4 | (x & 15)]; + PacketDispatcher.wrapper.sendToAllAround(new BiomeSyncPacket(x, z, biome), new TargetPoint(world.provider.dimensionId, x, 128, z, 1024D)); + } } public static void syncBiomeChange(World world, Chunk chunk) { @@ -48,7 +83,19 @@ public class WorldUtil { /* this sucks ass */ ChunkCoordIntPair coord = chunk.getChunkCoordIntPair(); - PacketDispatcher.wrapper.sendToAllAround(new BiomeSyncPacket(coord.chunkXPos, coord.chunkZPos, chunk.getBiomeArray()), new TargetPoint(world.provider.dimensionId, coord.getCenterXPos(), 128, coord.getCenterZPosition() /* who named you? */, 1024D)); + if(Loader.isModLoaded(Compat.MOD_EIDS)) { + PacketDispatcher.wrapper.sendToAllAround(new BiomeSyncPacket(coord.chunkXPos, coord.chunkZPos, getBiomeShortArray(chunk)), new TargetPoint(world.provider.dimensionId, coord.getCenterXPos(), 128, coord.getCenterZPosition() /* who named you? */, 1024D)); + } else { + PacketDispatcher.wrapper.sendToAllAround(new BiomeSyncPacket(coord.chunkXPos, coord.chunkZPos, chunk.getBiomeArray()), new TargetPoint(world.provider.dimensionId, coord.getCenterXPos(), 128, coord.getCenterZPosition() /* who named you? */, 1024D)); + } + } + + public static short[] getBiomeShortArray(Chunk chunk) { + try { + return (short[]) getBiomeShortHandle.invokeExact(chunk); + } catch(Throwable ex) { + throw new AssertionError(); + } } /**Chunkloads the chunk the entity is going to spawn in and then spawns it diff --git a/src/main/resources/assets/hbm/lang/de_DE.lang b/src/main/resources/assets/hbm/lang/de_DE.lang index 45b9f383d..5e0a7bdbe 100644 --- a/src/main/resources/assets/hbm/lang/de_DE.lang +++ b/src/main/resources/assets/hbm/lang/de_DE.lang @@ -373,6 +373,7 @@ container.machineMixer=Industrieller Mixer container.machineOreSlopper=B.E.M. container.machinePyroOven=Pyrolyseofen container.machineRefinery=Ölraffinerie +container.machineRotaryFurnace=Rotationshochofen container.machineSelenium=Hochleistungs-Sternmotor container.machineShredder=Brecher container.machineSILEX=SILEX @@ -812,6 +813,7 @@ hbmmat.bakelite=Bakelit hbmmat.beryllium=Beryllium hbmmat.bismuth=Bismut hbmmat.bismuthbronze=Bismutbronze +hbmmat.bone=Elfenbein hbmmat.borax=Borax hbmmat.boron=Bor hbmmat.bscco=BSCCO @@ -843,6 +845,7 @@ hbmmat.gold=Gold hbmmat.gold198=Gold-198 hbmmat.graphene=Graphen hbmmat.graphite=Graphit +hbmmat.gunmetal=Maschinenmetall hbmmat.hematite=Hämatit hbmmat.iron=Eisen hbmmat.lanthanum=Lanthan @@ -903,7 +906,9 @@ hbmmat.uranium233=Uran-233 hbmmat.uranium235=Uran-235 hbmmat.uranium238=Uran-238 hbmmat.watzmud=Giftiger Schlamm +hbmmat.weaponsteel=Waffenstahl hbmmat.whitephosphorus=Weißer Phosphor +hbmmat.wood=Holz hbmmat.workersalloy=Desh hbmmat.wroughtiron=Schmiedeeisen hbmmat.zirconium=Zirkonium @@ -1143,6 +1148,20 @@ item.ammo_shell.name=240mm Geschoss item.ammo_shell_apfsds_du.name=240mm APFSDS-DU item.ammo_shell_apfsds_t.name=240mm APFSDS-T item.ammo_shell_explosive.name=240mm HE-Geschoss +item.ammo_standard.m357_ap.name=.357 Magnumkugel (Panzerbrechend) +item.ammo_standard.m357_express.name=.357 Magnumkugel (VMG Express) +item.ammo_standard.m357_fmj.name=.357 Magnumkugel (Vollmantelgeschoss) +item.ammo_standard.m357_jhp.name=.357 Magnumkugel (Hohlspitz) +item.ammo_standard.m357_sp.name=.357 Magnumkugel (Teilmantelgeschoss) +item.ammo_standard.m44_ap.name=.44 Magnumkugel (Panzerbrechend) +item.ammo_standard.m44_express.name=.44 Magnumkugel (VMG Express) +item.ammo_standard.m44_fmj.name=.44 Magnumkugel (Vollmantelgeschoss) +item.ammo_standard.m44_jhp.name=.44 Magnumkugel (Hohlspitz) +item.ammo_standard.m44_sp.name=.44 Magnumkugel (Teilmantelgeschoss) +item.ammo_standard.stone.name=Kugel und Pulver +item.ammo_standard.stone_ap.name=Feuerstein und Pulver +item.ammo_standard.stone_iron.name=Eisenkugel und Pulver +item.ammo_standard.stone_shot.name=Schrot und Pulver item.ammo_stinger_rocket.name=Stinger-Rakete item.ammo_stinger_rocket_he.name=Stinger-Rakete (HE) item.ammo_stinger_rocket_incendiary.name=Stinger-Rakete (Brand) @@ -2106,6 +2125,7 @@ item.gun_moist_nugget.name=Mosin-Nagant item.gun_mp.name=Maschinengewehr des Pazifisten item.gun_mp40.name=Maschinenpistole item.gun_mp40_ammo.name=SMG-Patrone (LEGACY) +item.gun_pepperbox.name=Bündelrevolver item.gun_pm_ammo.name=Kleine treibmittellose MG-Patrone item.gun_mymy.name=Nietes item.gun_osipr.name=Standartausrüstung für Sicherheitskräfte @@ -2769,6 +2789,8 @@ item.page_of_.page6.name=Seite 6 item.page_of_.page7.name=Seite 7 item.page_of_.page8.name=Seite 8 item.pancake.name=Pfannkuchen aus Altmetall, Nägeln und Edelsteinpulver +item.part_barrel_heavy.name=Schwerer %slauf +item.part_barrel_light.name=Leichter %slauf item.part_beryllium.name=Berylliumstaubkiste item.part_carbon.name=Kohlenstoffstaubkiste item.part_copper.name=Kupferstaubkiste @@ -2777,8 +2799,13 @@ item.part_generic.lde.name=Leichtbauteil item.part_generic.piston_electric.name=Electrischer Kolben item.part_generic.piston_hydraulic.name=Hydraulischer Kolben item.part_generic.piston_pneumatic.name=Pneumatischer Kolben +item.part_grip.name=%sgriff item.part_lithium.name=Lithiumstaubkiste +item.part_mechanism.name=%smechanismus item.part_plutonium.name=Plutoniumstaubkiste +item.part_receiver_heavy.name=Schwerer %sverschluss +item.part_receiver_light.name=Leichter %sverschluss +item.part_stock.name=%sschaft item.particle_aelectron.name=Positronenkapsel item.particle_amat.name=Antimaterienkapsel item.particle_aproton.name=Antiprotonenkapsel @@ -4353,6 +4380,7 @@ tile.machine_reactor_on.name=Brutreaktor tile.machine_reactor_small.name=Atomreaktor tile.machine_refinery.name=Ölraffinerie tile.machine_reix_mainframe.name=Rei-X Hauptrechner (WIP) +tile.machine_rotary_furnace.name=Rotationshochofen tile.machine_rtg_blue.name=Konvektionsgenerator tile.machine_rtg_cyan.name=Schrabidium-Zerfallsenergie-Generator (WIP) tile.machine_rtg_furnace_off.name=RTG-Ofen diff --git a/src/main/resources/assets/hbm/lang/en_NT.lang b/src/main/resources/assets/hbm/lang/en_NT.lang deleted file mode 100644 index 8f694f8e2..000000000 --- a/src/main/resources/assets/hbm/lang/en_NT.lang +++ /dev/null @@ -1,2018 +0,0 @@ -itemGroup.tabTest=Nuclear Tech Mod Test Tab -itemGroup.tabParts=NTM Resources and Parts -itemGroup.tabControl=NTM Machine Items and Fuel -itemGroup.tabTemplate=NTM Templates -itemGroup.tabBlocks=NTM Ores and Blocks -itemGroup.tabMachine=NTM Machines -itemGroup.tabNuke=NTM Bombs -itemGroup.tabMissile=NTM Missiles and Satellites -itemGroup.tabWeapon=NTM Weapons and Turrets -itemGroup.tabConsumable=NTM Consumables and Gear - -achievement.sacrifice=Sororicide -achievement.sacrifice.desc=Face the fire and live. -achievement.impossible=Literally impossible -achievement.impossible.desc=You can't get this achievement. -achievement.tasteofblood=The Taste of Blood -achievement.tasteofblood.desc=is not part of any testing protocol. -achievement.freytag=Freytag -achievement.freytag.desc=Herold's life guards -achievement.selenium=XVIII The Moon -achievement.selenium.desc=Yeah. -achievement.potato=Rogue AI -achievement.potato.desc=You stabbed me! What is WRONG with yo-WOOOAAH -achievement.c44=Chapter 44 -achievement.c44.desc=Galvanized! I mean, zinc! -achievement.c20_5=Chapter [TWENTY POINT FIVE] -achievement.c20_5.desc=??? -achievement.space=The Final Front-ah forget it -achievement.space.desc=Fail in every way possible and waste funds worth 90 million dollars. -achievement.FOEQ=Pegasi and Missile Silos -achievement.FOEQ.desc=Send a relay into martian...I mean dunaian orbit. -achievement.fiend=Delinquent -achievement.fiend.desc=Be mean. -achievement.fiend2=Delinquent 2: Delinquent Harder -achievement.fiend2.desc=Be meaner. - -potion.hbm_taint=Tainted -potion.hbm_mutation=Tainted Heart -potion.hbm_radiation=Contaminated -potion.hbm_bang=! ! ! -potion.hbm_radx=Rad-X -potion.hbm_lead=Lead Poisoning - -hbmfluid.none=None -hbmfluid.water=Water -hbmfluid.steam=Steam -hbmfluid.hotsteam=Dense Steam -hbmfluid.superhotsteam=Super Dense Steam -hbmfluid.lava=Lava -hbmfluid.uf6=Uranium Hexafluoride -hbmfluid.puf6=Plutonium Hexafluoride -hbmfluid.deuterium=Deuterium -hbmfluid.tritium=Tritium -hbmfluid.oil=Crude Oil -hbmfluid.hotoil=Hot Crude Oil -hbmfluid.smear=Industrial Oil -hbmfluid.reclaimed=Reclaimed Industrial Oil -hbmfluid.petroil=Petroil -hbmfluid.lubricant=Engine Lubricant -hbmfluid.diesel=Diesel -hbmfluid.kerosene=Kerosene -hbmfluid.gas=Natural Gas -hbmfluid.coolant=Coolant -hbmfluid.amat=Antimatter -hbmfluid.aschrab=Antischrabidium -hbmfluid.heavyoil=Heavy Oil -hbmfluid.bitumen=Bitumen -hbmfluid.heatingoil=Heating Oil -hbmfluid.naphtha=Naphtha -hbmfluid.lightoil=Light Oil -hbmfluid.petroleum=Petroleum Gas -hbmfluid.peroxide=Hydrogen Peroxide -hbmfluid.watz=Poisonous Mud -hbmfluid.biogas=Biogas -hbmfluid.biofuel=Biofuel -hbmfluid.sas3=Schrabidium Trisulfide -hbmfluid.nitan=NITAN© 100 Octane Super Fuel -hbmfluid.cryogel=Cryogel -hbmfluid.lpg=LPG - -chem.TEST=Test -chem.FP_HEAVYOIL=Heavy Oil Processing -chem.FP_SMEAR=Industrial Oil Processing -chem.FP_NAPHTHA=Naphtha Processing -chem.FP_LIGHTOIL=Light Oil Processing -chem.FR_REOIL=Oil Reprocessing -chem.FR_PETROIL=Petroil Mixing -chem.OIL_SAND=Tar Sand Extraction -chem.FC_BITUMEN=Bitumen Cracking -chem.FC_I_NAPHTHA=Industrial Oil Cracking -chem.FC_GAS_PETROLEUM=Gas Cracking -chem.FC_DIESEL_KEROSENE=Diesel Cracking -chem.FC_KEROSENE_PETROLEUM=Kerosene Cracking -chem.CC_OIL=Coal Liquefaction -chem.CC_I=Enhanced Coal Liquefaction -chem.CC_HEATING=Advanced Coal Liquefaction -chem.CC_HEAVY=Basic Coal Liquefaction -chem.CC_NAPHTHA=Naphtha Coal Liquefaction -chem.ASPHALT=Asphalt Production -chem.COOLANT=Coolant Mixing -chem.CRYOGEL=Cryogel Mixing -chem.DESH=Desh Production -chem.PEROXIDE=Hydrogen Peroxide Production -chem.CIRCUIT_4=Overclocked Circuit Production -chem.CIRCUIT_5=High Performance Circuit Production -chem.SF_OIL=Crude Oil Solidification -chem.SF_HEAVYOIL=Heavy Oil Solidification -chem.SF_SMEAR=Industrial Oil Solidification -chem.SF_HEATINGOIL=Heating Oil Solidification -chem.SF_RECLAIMED=Reclaimed Oil Solidification -chem.SF_PETROIL=Petroil Solidification -chem.SF_LUBRICANT=Lubricant Solidification -chem.SF_NAPHTHA=Naphtha Solidification -chem.SF_DIESEL=Diesel Solidification -chem.SF_LIGHTOIL=Light Oil Solidification -chem.SF_KEROSENE=Kerosene Solidification -chem.SF_GAS=Natural Gas Solidification -chem.SF_PETROLEUM=Petroleum Gas Solidification -chem.SF_BIOGAS=Biogas Solidification -chem.SF_BIOFUEL=Biofuel Solidification -chem.POLYMER=Polymer Synthesis -chem.DEUTERIUM=Deuterium Extraction -chem.STEAM=Water Boiling -chem.YELLOWCAKE=Yellowcake Production -chem.UF6=Uranium Hexafluoride Production -chem.PUF6=Plutonium Hexafluoride Production -chem.BP_BIOGAS=Biogas Production -chem.BP_BIOFUEL=Biofuel Transesterification -chem.LPG=Petroleum Gas Liquefaction -chem.SAS3=Schrabidium Trisulfide Production -chem.NITAN=NITAN Super Fuel Mixing -chem.DYN_SCHRAB=Schrabidium Dynosynthesis -chem.DYN_EUPH=Euphemium Dynosynthesis -chem.DYN_DNT=Dineutronium Dynosynthesis -chem.CORDITE=Cordite Production -chem.KEVLAR=Kevlar Compound Production - -item.record.lc.desc=Valve - Diabolic Adrenaline Guitar/Lambda Core -item.record.ss.desc=Valve - Sector Sweep -item.record.vc.desc=Valve - Vortal Combat - -death.attack.nuclearBlast=%1$s was blown away by a nuclear explosion. -death.attack.revolverBullet=%1$s was shot in the head by %2$s. -death.attack.mudPoisoning=%1$s died in poisonous mud. -death.attack.euthanized=%1$s was euthanized by %2$s. -death.attack.euthanizedSelf=%1$s euthanized himself, what a dork. -death.attack.euthanizedSelf2=%1$s wins the Darwin Award. -death.attack.tau=%1$s was riddeled by %2$s using negatively charged tauons. -death.attack.tauBlast=%1$s charged the XVL1456 for too long and was blown into pieces. -death.attack.chopperBullet=%1$s was rekt by %2$s. -death.attack.cmb=%1$s was fizzeled by %2$s. -death.attack.subAtomic=%1$s's atoms have been destroyed by %2$s. -death.attack.subAtomic2=%1$s was QPU-misaligned because %2$s tampered with his de facto speed. -death.attack.subAtomic3=%1$s's divergence dropped below 1 percent because of %2$s. -death.attack.subAtomic4=%1$s was divided by zero by %2$s. -death.attack.subAtomic5=%1$s was nullified by %2$s. -death.attack.radiation=%1$s died from radiation poisoning. -death.attack.acid=%1$s fell into acid. -death.attack.suicide=%1$s blew their head off. -death.attack.electrified=%1$s was electrified by %2$s. -death.attack.flamethrower=%1$s was cremated by %2$s. -death.attack.plasma=%1$s was immolated by %2$s. -death.attack.ice=%1$s was turned into a popsicle by %2$s. -death.attack.cheater=%1$s's intestines turned into oats. (???) -death.attack.laser=%1$s was turned into ash by %2$s. -death.attack.rubble=%1$s was squashed by debris. -death.attack.shrapnel=%1$s was ragged by a shrapnel. -death.attack.teleporter=%1$s was teleported into nothingness. -death.attack.blackhole=%1$s was spaghettified. -death.attack.blender=%1$s was chopped in small, bite-sized pieces. -death.attack.meteorite=%1$s was hit by a falling rock from outer space. -death.attack.boxcar=%1$s was smushed by a falling boxcar. Oh well. -death.attack.broadcast=%1$s got their brain melted. -death.attack.ams=%1$s was bathed in deadly particles that have yet to be named by human science. -death.attack.amsCore=%1$s was vaporized in the fire of a singularity. -death.attack.bang=%1$s was blasted into bite-sized pieces. -death.attack.pc=%1$s was reduced to a puddle in the pink cloud. -death.attack.cloud=%1$s melted like a popsicle in the sun. -death.attack.lead=%1$s died from lead poisoning. - -item.redstone_sword.name=Redstone Sword -item.big_sword.name=Great Sword -item.test_nuke_igniter.name=Igniter -item.test_nuke_propellant.name=Propellant -item.test_nuke_tier1_shielding.name=Neutron Reflector (Tier 1) -item.test_nuke_tier2_shielding.name=Neutron Reflector (Tier 2) -item.test_nuke_tier1_bullet.name=U235 Projectile (Tier 1) -item.test_nuke_tier2_bullet.name=MOX Projectile (Tier 2) -item.test_nuke_tier1_target.name=Subcritical U235 Target (Tier 1) -item.test_nuke_tier2_target.name=Subcritical MOX Target (Tier 2) - -item.gadget_explosive.name=Propellant -item.gadget_explosive8.name=Bundle of Propellant -item.gadget_wireing.name=Wiring -item.gadget_core.name=Plutonium Core - -item.boy_igniter.name=Bomb Igniter -item.boy_propellant.name=Propellant -item.boy_bullet.name=U235 Projectile -item.boy_target.name=Subcritical U235 Target -item.boy_shielding.name=Neutron Shielding - -item.man_explosive.name=Propellant -item.man_explosive8.name=Bundle of Propellant -item.man_igniter.name=Bomb Igniter -item.man_core.name=Plutonium Core - -item.mike_core.name=Uranium Coated Deuterium Tank -item.mike_deut.name=Deuterium Tank -item.mike_cooling_unit.name=Deuterium Cooling Unit - -item.tsar_core.name=Tsar Bomba Core - -item.fleija_igniter.name=Pulse Igniter -item.fleija_propellant.name=Schrabidium Propellant -item.fleija_core.name=F.L.E.I.J.A. Uranium 235 Charge - -item.solinium_igniter.name=SOL Pulse Igniter -item.solinium_propellant.name=SOL Compression Charge -item.solinium_core.name=Semi-Stable Solinium Core - -item.n2_charge.name=Large Explosive Charge - -item.custom_tnt.name=Custom Nuke Explosive Charge -item.custom_nuke.name=Custom Nuke Nuclear Rod -item.custom_hydro.name=Custom Nuke Hydrogen Rod -item.custom_amat.name=Custom Nuke Antimatter Rod -item.custom_dirty.name=Custom Nuke Dirty Rod -item.custom_schrab.name=Custom Nuke Schrabidium Rod -item.custom_fall.name=Custom Nuke Drop Upgrade - -container.nukeGadget=The Gadget -container.nukeBoy=Little Boy -container.nukeMan=Fat Man -container.nukeMike=Ivy Mike -container.nukeTsar=Tsar Bomba -container.nukeFleija=F.L.E.I.J.A. -container.nukePrototype=The Prototype -container.nukeCustom=Custom Nuke -container.nukeSolinium=The Blue Rinse -container.nukeN2=N² Mine -container.nukeN45=N45 Naval Mine - -container.bombMulti=Multi Purpose Bomb - -tile.nuke_gadget.name=The Gadget -tile.nuke_boy.name=Little Boy -tile.nuke_man.name=Fat Man -tile.nuke_mike.name=Ivy Mike -tile.nuke_tsar.name=Tsar Bomba -tile.nuke_fleija.name=F.L.E.I.J.A. -tile.nuke_prototype.name=The Prototype -tile.nuke_custom.name=Custom Nuke -tile.nuke_solinium.name=The Blue Rinse -tile.nuke_n2.name=N² Mine -tile.nuke_n45.name=N45 Naval Mine - -tile.bomb_multi.name=Multi Purpose Bomb -tile.rejuvinator.name=Rejuvination Device - -tile.flame_war.name=Flame War in a Box -tile.float_bomb.name=Levitation Bomb -tile.therm_endo.name=Endothermic Bomb -tile.therm_exo.name=Exothermic Bomb -tile.emp_bomb.name=EMP Device - -tile.crashed_bomb.name=Dud -tile.boxcar.name=Boxcar -tile.bomber.name=Crashed Bomber - -tile.turret_light.name=Light Machine Gun Turret -tile.turret_heavy.name=Heavy Machine Gun Turret -tile.turret_rocket.name=Rocket Turret -tile.turret_flamer.name=Flamethrower Turret -tile.turret_tau.name=Tauon Turret -tile.turret_spitfire.name=Turret I have no name for right now [WIP] -tile.turret_cwis.name=Phalanx Mk-15 CIWS -tile.turret_cheapo.name=Cheapo Gatling Sentry -tile.machine_radar.name=Radar -container.radar=Radar -tile.machine_forcefield.name=Forcefield Emitter -container.forceField=Forcefield Emitter -tile.machine_satlinker.name=Satellite ID Manager -container.satLinker=SatLink Device -tile.machine_telelinker.name=Turret Telemetry Linker -container.teleLinker=TelLink Device - -item.turret_control.name=Turret Controller -item.turret_chip.name=Turret AI-Chip -item.turret_biometry.name=Turret Telemetry Card - -item.key.name=Key -item.key_red.name=Red Key -item.key_kit.name=Key Imitation Kit -item.key_fake.name=Counterfeit Key -item.pin.name=Bobby Pin -item.padlock_rusty.name=Rusty Padlock -item.padlock.name=Padlock -item.padlock_reinforced.name=Reinforced Padlock -item.padlock_unbreakable.name=Unbreakable Padlock -tile.machine_keyforge.name=Locksmith Table -container.keyForge=Locksmith Table - -tile.mine_ap.name=Anti-Personell Mine -tile.mine_he.name=Anti-Tank Mine -tile.mine_shrap.name=Shrapnel Mine -tile.mine_fat.name=Fat Mine -item.defuser.name=High-Tech Bomb Defusing Device - -tile.crate.name=Supply Crate -tile.crate_weapon.name=Weapon Crate -tile.crate_lead.name=Hazmat Crate -tile.crate_metal.name=Machine Crate -tile.crate_red.name=Red Crate -tile.marker_structure.name=Multiblock Structure Marker - -tile.machine_difurnace_off.name=Alloy Furnace -tile.machine_difurnace_on.name=Alloy Furnace -container.diFurnace=Alloy Furnace -tile.machine_centrifuge.name=Centrifuge -container.centrifuge=Centrifuge -tile.machine_gascent.name=Gas Centrifuge -container.gasCentrifuge=Gas Centrifuge -tile.machine_uf6_tank.name=Uranium Hexafluoride Tank -container.uf6_tank=UF6 Tank -tile.machine_puf6_tank.name=Plutonium Hexafluoride Tank -container.puf6_tank=PuF6 Tank -tile.machine_reactor.name=Breeding Reactor -tile.machine_reactor_on.name=Breeding Reactor -container.reactor=Breeding Reactor -tile.machine_nuke_furnace_off.name=Nuclear Furnace -tile.machine_nuke_furnace_on.name=Nuclear Furnace -container.nukeFurnace=Nuclear Powered Furnace -tile.machine_rtg_furnace_off.name=RTG Furnace -tile.machine_rtg_furnace_on.name=RTG Furnace -container.rtgFurnace=RTG Furnace -tile.machine_electric_furnace_off.name=Electric Furnace -tile.machine_electric_furnace_on.name=Electric Furnace -container.electricFurnace=Electric Furnace -tile.machine_generator.name=Nuclear Reactor (Old) -container.generator=Nuclear Reactor -tile.red_wire_coated.name=Coated Red Copper Cable -tile.machine_deuterium.name=Deuterium Extractor -container.machine_deuterium=Deuterium Extractor -tile.machine_battery.name=Energy Storage Block -tile.machine_lithium_battery.name=Li-Ion Energy Storage Block -tile.machine_schrabidium_battery.name=Schrabidium Energy Storage Block -tile.machine_dineutronium_battery.name=Spark Energy Storage Block -container.battery=Energy Storage -tile.machine_coal_off.name=Combustion Generator -tile.machine_coal_on.name=Combustion Generator -container.machineCoal=Combustion Generator -tile.machine_boiler_off.name=Boiler -tile.machine_boiler_on.name=Boiler -container.machineBoiler=Boiler -tile.machine_boiler_electric_off.name=Electric Boiler -tile.machine_boiler_electric_on.name=Electric Boiler -container.machineElectricBoiler=Electric Boiler -tile.machine_turbine.name=Steam Turbine -container.machineTurbine=Steam Turbine -tile.launch_pad.name=Missile Launch Pad -container.launchPad=Missile Launch Pad -tile.sat_dock.name=Cargo Landing Pad -container.satDock=Cargo Landing Pad -tile.book_guide.name=Hbm's Nuclear Tech Mod Manual [LEGACY] -tile.machine_schrabidium_transmutator.name=Schrabidium Transmutation Device -container.machine_schrabidium_transmutator=Schrabidium Transmutation Device -tile.machine_diesel.name=Diesel Generator -container.machineDiesel=Diesel Generator -tile.machine_shredder.name=Shredder -container.machineShredder=Shredder -tile.machine_combine_factory.name=CMB Steel Furnace -container.machineCMB=CMB Steel Furnace -tile.machine_teleporter.name=Teleporter -container.teleporter=Teleporter -tile.machine_reix_mainframe.name=Rei-X Mainframe (WIP) -container.reix=Rei-X Mainframe -tile.machine_industrial_generator.name=Industrial Generator -container.iGenerator=Industrial Generator -tile.machine_cyclotron.name=Cyclotron -container.cyclotron=Cyclotron -tile.machine_well.name=Oil Derrick -tile.machine_pumpjack.name=Pumpjack -tile.oil_pipe.name=Crude Oil Extraction Pipe -container.oilWell=Oil Derrick -container.pumpjack=Pumpjack -tile.machine_refinery.name=Oil Refinery -container.machineRefinery=Oil Refinery -tile.oil_duct.name=Oil Pipe -tile.oil_duct_solid.name=Coated Oil Pipe -tile.machine_flare.name=Gas Flare -container.gasFlare=Gas Flare -tile.gas_duct.name=Gas Pipe -tile.gas_duct_solid.name=Coated Gas Pipe -tile.machine_drill.name=Automatic Mining Drill -container.miningDrill=Automatic Mining Drill -tile.drill_pipe.name=Drill Pipe -tile.machine_assembler.name=Assembly Machine -container.assembler=Assembly Machine -tile.machine_chemplant.name=Chemical Plant -container.chemplant=Chemical Plant -tile.fluid_duct.name=Universal Fluid Duct -tile.machine_fluidtank.name=Tank -item.fluid_duct.name=Fluid Duct: -container.fluidtank=Tank -tile.machine_turbofan.name=Turbofan -container.machineTurbofan=Turbofan -tile.crate_iron.name=Iron Crate -container.crateIron=Iron Crate -tile.crate_steel.name=Steel Crate -container.crateSteel=Steel Crate -tile.safe.name=Safe -container.safe=Safe -tile.machine_press.name=Burner Press -container.press=Burner Press -tile.machine_epress.name=Electric Press -container.epress=Electric Press -tile.machine_siren.name=Siren -container.siren=Siren -tile.machine_radgen.name=Radiation-Powered Engine -container.radGen=Radiation-Powered Engine -tile.machine_selenium.name=Radial Performance Engine -container.machineSelenium=Radial Performance Engine -tile.machine_reactor_small.name=Nuclear Reactor -container.reactorSmall=Nuclear Reactor -tile.machine_controller.name=Reactor Remote Control Block -container.reactorControl=Reactor Remote Control Block - -tile.broadcaster_pc.name=Corrupted Broadcaster - -tile.radiobox.name=Rosenberg Pest Control Box [WIP] -tile.radiorec.name=Broken FM Radio -container.radiobox=FM Transmitter -container.radiorec=FM Radio - -tile.red_pylon.name=Electricity Pole -item.wiring_red_copper.name=Cable Drum - -tile.rail_highspeed.name=High Speed Rail -tile.rail_booster.name=High Speed Booster Rail - -tile.factory_titanium_hull.name=Basic Factory Casing -tile.factory_titanium_furnace.name=Basic Factory Access Hatch -tile.factory_titanium_conductor.name=Basic Factory Electricity Port -tile.factory_titanium_core.name=Basic Factory Core Component -item.factory_core_titanium.name=Basic Factory Energy Cluster -container.factoryTitanium=Basic Factory -tile.factory_advanced_hull.name=Advanced Factory Casing -tile.factory_advanced_furnace.name=Advanced Factory Access Hatch -tile.factory_advanced_conductor.name=Advanced Factory Electricity Port -tile.factory_advanced_core.name=Advanced Factory Core Component -item.factory_core_advanced.name=Advanced Factory Energy Cluster -container.factoryAdvanced=Advanced Factory - -tile.reactor_element.name=Reactor Chamber -tile.reactor_control.name=Control Rods -tile.reactor_hatch.name=Reactor Access Hatch -tile.reactor_ejector.name=Reactor Waste Ejector -tile.reactor_inserter.name=Reactor Fuel Inserter -tile.reactor_conductor.name=Reactor Boiler -tile.reactor_computer.name=Reactor Control -container.reactorLarge=Big Nuclear Reactor - -tile.fusion_conductor.name=Superconducting Magnet -tile.fusion_center.name=Central Magnet Piece -tile.fusion_motor.name=Magnet Motor Piece -tile.fusion_heater.name=Plasma Heater -tile.fusion_hatch.name=Fusion Reactor Access Hatch -tile.fusion_core.name=Fusion Reactor Control -tile.plasma.name=Plasma -container.fusionMultiblock=Big Fusion Reactor - -tile.watz_element.name=Watz Reaction Chamber -tile.watz_control.name=Reinforced Control Rods -tile.watz_cooler.name=Watz Reactor Supercooler -tile.watz_end.name=Watz Reactor Stability Element -tile.watz_hatch.name=Watz Reactor Access Hatch -tile.watz_conductor.name=Watz Electricity Port -tile.watz_core.name=Watz Reactor Control -container.watzPowerplant=Watz Power Plant - -tile.fwatz_conductor.name=4000K Superconducting Magnet -tile.fwatz_cooler.name=Regenerative Coolant Fluid Tank Shell -tile.fwatz_tank.name=Regenerative Coolant Fluid Tank -tile.fwatz_scaffold.name=Fusionary Watz Plant Structural Support -tile.fwatz_hatch.name=Fusionary Watz Plant Access Hatch -tile.fwatz_computer.name=Fusionary Watz Reactor Calculation Matrix -tile.fwatz_core.name=Fusionary Watz Reactor Control -tile.fwatz_plasma.name=Destabilized Antischrabidium Plasma -container.fusionaryWatzPlant=Fusionary Watz Plant - -tile.machine_rtg_grey.name=RT Generator -container.rtg=RT Generator -tile.machine_rtg_red.name=Fulmination Generator -tile.machine_rtg_orange.name=Strong RT Generator -tile.machine_rtg_yellow.name=Australium Superfuel Reactor -tile.machine_rtg_green.name=Verticium Wealth Generator -tile.machine_rtg_cyan.name=Schrabidium Decay Generator (WIP) -tile.machine_rtg_blue.name=Convection Generator -tile.machine_rtg_purple.name=Antimatter Annihilation Generator - -tile.machine_waste_drum.name=Spent Fuel Pool Drum -container.wasteDrum=Spent Fuel Pool Drum - -tile.machine_spp_bottom.name=ZPE Potential Generator (Bottom) -tile.machine_spp_top.name=ZPE Potential Generator (Top) - -tile.ams_limiter.name=AMS Stabilizer [WIP] -container.amsLimiter=AMS Stabilizer [WIP] -tile.ams_emitter.name=AMS Emitter [WIP] -container.amsEmitter=AMS Emitter [WIP] -tile.ams_base.name=AMS Base [WIP] -container.amsBase=AMS Base [WIP] - -item.template_folder.name=Machine Template Folder -item.fluid_identifier.name=Fluid Identifier -item.assembly_template.name=Assembly Template: -item.chemistry_template.name=Chemistry Template: -item.siren_track.name=Siren Track - -item.fuse.name=Fuse - -tile.test_nuke.name=Test Nuke - -item.ingot_th232.name=Th232 Ingot -item.ingot_uranium.name=Uranium Ingot -item.ingot_u233.name=U233 Ingot -item.ingot_u235.name=U235 Ingot -item.ingot_u238.name=U238 Ingot -item.ingot_u238m2.name=Metastable U238-2 Ingot -item.ingot_plutonium.name=Plutonium Ingot -item.ingot_pu238.name=Pu238 Ingot -item.ingot_pu239.name=Pu239 Ingot -item.ingot_pu240.name=Pu240 Ingot -item.ingot_titanium.name=Titanium Ingot -item.sulfur.name=Sulfur - -item.niter.name=Niter -item.ingot_copper.name=Industrial Grade Copper -item.ingot_red_copper.name=Minecraft Grade Copper -item.ingot_tungsten.name=Tungsten Ingot -item.ingot_aluminium.name=Aluminium Ingot -item.fluorite.name=Fluorite -item.ingot_steel.name=Steel Ingot -item.plate_steel.name=Steel Plate -item.ingot_beryllium.name=Beryllium Ingot -item.plate_schrabidium.name=Schrabidium Plate -item.ingot_schrabidium.name=Schrabidium Ingot -item.nugget_schrabidium.name=Schrabidium Nugget -item.plate_copper.name=Copper Plate -item.board_copper.name=Copper Panel -item.ingot_advanced_alloy.name=Advanced Alloy Ingot -item.plate_advanced_alloy.name=Advanced Alloy Plate -item.wire_advanced_alloy.name=Super Conductor -item.coil_advanced_alloy.name=Super Conducting Coil -item.coil_advanced_torus.name=Super Conducting Ring Coil -item.coil_gold.name=Gold Coil -item.coil_gold_torus.name=Golden Ring Coil -item.lithium.name=Lithium Cube -item.ingot_magnetized_tungsten.name=Magnetized Tungsten Ingot -item.ingot_combine_steel.name=CMB Steel Ingot -item.plate_combine_steel.name=CMB Steel Plate -item.wire_magnetized_tungsten.name=4000K High Temperature Super Conductor -item.coil_magnetized_tungsten.name=4000K High Temperature Super Conducting Coil -item.plate_mixed.name=Mixed Plate -item.plate_paa.name=PaA Alloy Plate -item.ingot_dura_steel.name=High-Speed Steel Ingot -item.ingot_polymer.name=Polymer Ingot -item.bolt_dura_steel.name=High-Speed Steel Bolt -item.pipes_steel.name=Steel Pipes -item.drill_titanium.name=Titanium Drill -item.bolt_tungsten.name=Tungsten Bolt -item.bolt_compound.name=Reinforced Turbine Shaft -item.plate_polymer.name=Insulator -item.ingot_solinium.name=Solinium Ingot -item.nugget_solinium.name=Solinium Nugget -item.photo_panel.name=Photovoltaic Panel -item.sat_base.name=Satellite Base -item.thruster_nuclear.name=LV-N Nuclear Rocket Engine -item.sat_head_mapper.name=High-Gain Optical Camera -item.sat_head_scanner.name=M700 Survey Scanner -item.sat_head_radar.name=Radar Dish -item.sat_head_laser.name=Death Ray -item.sat_head_resonator.name=Xenium Resonator - -item.ingot_australium.name=Australium Ingot -item.ingot_weidanium.name=Weidanium Ingot -item.ingot_reiium.name=Reiium Ingot -item.ingot_unobtainium.name=Unobtainium Ingot -item.ingot_daffergon.name=Daffergon Ingot -item.ingot_verticium.name=Verticium Ingot -item.nugget_australium.name=Australium Nugget -item.nugget_weidanium.name=Weidanium Nugget -item.nugget_reiium.name=Reiium Nugget -item.nugget_unobtainium.name=Unobtainium Nugget -item.nugget_daffergon.name=Daffergon Nugget -item.nugget_verticium.name=Verticium Nugget - -item.ingot_desh.name=Desh Ingot -item.nugget_desh.name=Desh Nugget -item.powder_desh.name=Desh Powder -item.powder_desh_mix.name=Desh Blend -item.powder_nitan_mix.name=Nitanium Blend -item.powder_spark_mix.name=Spark Blend -item.ingot_dineutronium.name=Dineutronium Ingot -item.powder_dineutronium.name=Dineutronium Powder -item.nugget_dineutronium.name=Dineutronium Nugget -item.ingot_starmetal.name=Starmetal Ingot -item.ingot_saturnite.name=Saturnite Ingot -item.plate_saturnite.name=Saturnite Plate - -item.solid_fuel.name=Solid Fuel - -item.nugget_th232.name=Th232 Nugget -item.nugget_u233.name=U233 Nugget -item.nugget_u235.name=U235 Nugget -item.nugget_u238.name=U238 Nugget -item.nugget_pu238.name=Pu238 Nugget -item.nugget_pu239.name=Pu239 Nugget -item.nugget_pu240.name=Pu240 Nugget -item.plate_titanium.name=Titanium Plate -item.plate_aluminium.name=Aluminium Plate -item.wire_red_copper.name=Red Copper Wire -item.neutron_reflector.name=Neutron Reflector -item.nugget_beryllium.name=Beryllium Nugget - -item.wire_aluminium.name=Aluminium Wire -item.wire_copper.name=Copper Wire -item.wire_gold.name=Gold Wire -item.wire_schrabidium.name=Schrabidium Wire - -item.circuit_raw.name=Basic Circuit Assembly -item.circuit_aluminium.name=Basic Circuit -item.circuit_copper.name=Enhanced Circuit -item.circuit_red_copper.name=Advanced Circuit -item.circuit_gold.name=Overclocked Circuit -item.circuit_schrabidium.name=High Performance Circuit -item.circuit_targeting_tier1.name=Military Grade Circuit Board (Tier 1) -item.circuit_targeting_tier2.name=Military Grade Circuit Board (Tier 2) -item.circuit_targeting_tier3.name=Military Grade Circuit Board (Tier 3) -item.circuit_targeting_tier4.name=Military Grade Circuit Board (Tier 4) -item.circuit_targeting_tier5.name=Military Grade Circuit Board (Tier 5) -item.circuit_targeting_tier6.name=Military Grade Circuit Board (Tier 6) -item.mechanism_revolver_1.name=Revolver Mechanism -item.mechanism_revolver_2.name=Advanced Revolver Mechanism -item.mechanism_rifle_1.name=Rifle Mechanism -item.mechanism_rifle_2.name=Advanced Rifle Mechanism -item.mechanism_launcher_1.name=Launcher Mechanism -item.mechanism_launcher_2.name=Advanced Launcher Mechanism -item.mechanism_special.name=High-Tech Weapon Mechanism - -item.primer_357.name=.357 Magnum Primer (x16) -item.primer_44.name=.44 Magnum Primer (x16) -item.primer_9.name=Small Caliber Primer (x24) -item.primer_50.name=Large Caliber Primer (x8) -item.primer_buckshot.name=Buckshot Primer (x8) -item.casing_357.name=.357 Magnum Casing (x16) -item.casing_44.name=.44 Magnum Casing (x16) -item.casing_9.name=Small Caliber Casing (x24) -item.casing_50.name=Large Caliber Casing (x8) -item.casing_buckshot.name=Buckshot Casing (x8) -item.assembly_iron.name=Iron Bullet Assembly -item.assembly_steel.name=Lead Bullet Assembly -item.assembly_lead.name=Glass Bullet Assembly -item.assembly_gold.name=Gold Bullet Assembly -item.assembly_schrabidium.name=Schrabidium Bullet Assembly -item.assembly_nightmare.name=Nightmare Bullet Assembly -item.assembly_pip.name=Tainted Bullet Assembly -item.assembly_nopip.name=.44 Magnum Assembly -item.assembly_smg.name=9mm Assembly -item.assembly_uzi.name=.22 LR Assembly -item.assembly_calamity.name=.50 BMG Assembly -item.assembly_lacunae.name=.5mm Assembly - -item.piston_selenium.name=Radial Engine Piston - -tile.block_aluminium.name=Block of Aluminium -tile.block_copper.name=Block of Copper -tile.block_fluorite.name=Block of Fluorite -tile.block_niter.name=Block of Niter -tile.block_red_copper.name=Block of Red Copper -tile.block_steel.name=Block of Steel -tile.block_sulfur.name=Block of Sulfur -tile.block_titanium.name=Block of Titanium -tile.block_tungsten.name=Block of Tungsten -tile.block_uranium.name=Block of Uranium -tile.block_thorium.name=Block of Thorium -tile.block_trinitite.name=Block of Trinitite -tile.block_beryllium.name=Block of Beryllium -tile.block_waste.name=Block of Nuclear Waste -tile.block_scrap.name=Block of Scrap -tile.block_electrical_scrap.name=Block of Electrical Scrap -tile.block_advanced_alloy.name=Block of Advanced Alloy -tile.block_magnetized_tungsten.name=Block of Magnetized Tungsten -tile.block_combine_steel.name=Block of CMB Steel -tile.block_australium.name=Block of Australium -tile.block_weidanium.name=Block of Weidanium -tile.block_reiium.name=Block of Reiium -tile.block_unobtainium.name=Block of Unobtainium -tile.block_daffergon.name=Block of Daffergon -tile.block_verticium.name=Block of Verticium -tile.block_desh.name=Reinforced Block of Desh -tile.block_yellowcake.name=Block of Yellowcake - -tile.ore_aluminium.name=Aluminium Ore -tile.ore_copper.name=Copper Ore -tile.ore_fluorite.name=Fluorite Ore -tile.ore_niter.name=Niter Ore -tile.ore_sulfur.name=Sulfur Ore -tile.ore_titanium.name=Titanium Ore -tile.ore_tungsten.name=Tungsten Ore -tile.ore_uranium.name=Uranium Ore -tile.ore_thorium.name=Thorium Ore -tile.ore_schrabidium.name=Schrabidium Ore -tile.ore_beryllium.name=Beryllium Ore - -tile.ore_nether_uranium.name=Nether Uranium Ore -tile.ore_nether_plutonium.name=Nether Plutonium Ore -tile.ore_nether_tungsten.name=Nether Tungsten Ore -tile.ore_nether_sulfur.name=Nether Sulfur Ore -tile.ore_nether_fire.name=Fire Ore -tile.ore_nether_schrabidium.name=Nether Schrabidium Ore - -tile.ore_tikite.name=Trixite - -tile.ore_australium.name=Australian Ore -tile.ore_weidanium.name=Weidite -tile.ore_reiium.name=Reiite -tile.ore_unobtainium.name=Brightblende Ore -tile.ore_daffergon.name=Dellite -tile.ore_verticium.name=Dollar Green Mineral -tile.ore_rare.name=Rare Earth Ore - -tile.ore_oil.name=Oil Deposit -tile.ore_oil_empty.name=Empty Oil Deposit -tile.ore_oil_sand.name=Tar Sand - -tile.deco_titanium.name=Titanium Deco Block -tile.deco_red_copper.name=Red Copper Deco Block -tile.deco_tungsten.name=Tungsten Deco Block -tile.deco_aluminium.name=Aluminium Deco Block -tile.deco_steel.name=Steel Deco Block -tile.deco_lead.name=Lead Deco Block -tile.deco_beryllium.name=Beryllium Deco Block - -tile.hazmat.name=Hazmat Cloth Block - -tile.reinforced_brick.name=Reinforced Stone -tile.reinforced_glass.name=Reinforced Glass -tile.reinforced_sand.name=Reinforced Sandstone -tile.reinforced_light.name=Reinforced Glowstone -tile.reinforced_lamp_off.name=Reinforced Lamp -tile.reinforced_lamp_on.name=Reinforced Lamp - -tile.concrete.name=Concrete -tile.brick_concrete.name=Concrete Bricks -tile.brick_obsidian.name=Obsidian Bricks -tile.brick_light.name=Light Bricks -tile.asphalt.name=Asphalt - -tile.cmb_brick.name=CMB Steel Tile -tile.cmb_brick_reinforced.name=Reinforced CMB Bricks - -tile.gravel_obsidian.name=Crushed Obsidian - -tile.barbed_wire.name=Barbed Wire -tile.barbed_wire_fire.name=Flaming Barbed Wire -tile.barbed_wire_poison.name=Poisoned Barbed Wire -tile.barbed_wire_acid.name=Caustic Barbed Wire -tile.barbed_wire_wither.name=Withered Barbed Wire -tile.barbed_wire_ultradeath.name=Cloud Barbed Wire - -tile.seal_frame.name=Silo Hatch Frame -tile.seal_controller.name=Silo Hatch Opener -tile.seal_hatch.name=Silo Hatch - -tile.vault_door.name=Vault-Tec Blast Door -tile.blast_door.name=Sliding Blast Door - -item.nugget_uranium.name=Uranium Nugget -item.nugget_plutonium.name=Plutonium Nugget -item.nugget_neptunium.name=Neptunium Nugget -item.ingot_neptunium.name=Neptunium Ingot -item.nugget_lead.name=Lead Nugget -item.ingot_lead.name=Lead Ingot -tile.block_lead.name=Block of Lead -tile.ore_lead.name=Lead Ore - -item.powder_lead.name=Lead Powder -item.powder_neptunium.name=Neptunium Powder -item.powder_schrabidium.name=Schrabidium Powder -item.powder_iron.name=Iron Powder -item.powder_gold.name=Gold Powder -item.powder_aluminium.name=Aluminium Powder -item.powder_beryllium.name=Beryllium Powder -item.powder_copper.name=Copper Powder -item.powder_titanium.name=Titanium Powder -item.powder_tungsten.name=Tungsten Powder -item.powder_uranium.name=Uranium Powder -item.powder_plutonium.name=Plutonium Powder -item.dust.name=Dust -item.powder_coal.name=Coal Powder -item.powder_lapis.name=Lapis Lazuli Powder -item.powder_emerald.name=Emerald Powder -item.powder_diamond.name=Diamond Powder -item.powder_red_copper.name=Red Copper Powder -item.powder_steel.name=Steel Powder -item.powder_magnetized_tungsten.name=Magnetized Tungsten Powder -item.powder_combine_steel.name=CMB Steel Powder -item.powder_lithium.name=Lithium Powder -item.powder_advanced_alloy.name=Advanced Alloy Powder -item.powder_quartz.name=Quartz Powder -item.powder_power.name=Energy Powder -item.powder_iodine.name=Iodine Powder -item.powder_thorium.name=Thorium Powder -item.powder_neodymium.name=Neodymium Powder -item.powder_astatine.name=Astatine Powder -item.powder_caesium.name=Caesium Powder -item.powder_australium.name=Australium Powder -item.powder_weidanium.name=Weidanium Powder -item.powder_reiium.name=Reiium Powder -item.powder_unobtainium.name=Unobtainium Powder -item.powder_daffergon.name=Daffergon Powder -item.powder_verticium.name=Verticium Powder -item.powder_strontium.name=Strontium Powder -item.powder_cobalt.name=Cobalt Powder -item.powder_bromine.name=Bromine Powder -item.powder_niobium.name=Niobium Powder -item.powder_tennessine.name=Tennessine Powder -item.powder_cerium.name=Cerium Powder -item.powder_dura_steel.name=High-Speed Steel Powder -item.powder_polymer.name=Polymer Powder -item.powder_lanthanium.name=Lanthanium Powder -item.powder_actinium.name=Actinium Powder -item.powder_lithium_tiny.name=Tiny Pile of Lithium Powder -item.powder_cobalt_tiny.name=Tiny Pile of Cobalt Powder -item.powder_neodymium_tiny.name=Tiny Pile of Neodymium Powder -item.powder_niobium_tiny.name=Tiny Pile of Niobium Powder -item.powder_cerium_tiny.name=Tiny Pile of Cerium Powder -item.powder_lanthanium_tiny.name=Tiny Pile of Lanthanium Powder -item.powder_actinium_tiny.name=Tiny Pile of Actinium Powder -item.powder_euphemium.name=Euphemium Powder -item.powder_meteorite.name=Meteorite Powder -item.powder_meteorite_tiny.name=Tiny Pile of Meteorite Powder -item.powder_yellowcake.name=Yellowcake -item.powder_magic.name=Pulverized Enchantment -item.redstone_depleted.name=Desaturated Redstone Dust - -item.fragment_neodymium.name=Neodymium Fragment -item.fragment_cobalt.name=Cobalt Fragment -item.fragment_niobium.name=Niobium Fragment -item.fragment_cerium.name=Cerium Fragment -item.fragment_lanthanium.name=Lanthanium Fragment -item.fragment_actinium.name=Actinium Fragment -item.fragment_meteorite.name=Meteorite Fragment - -item.battery_generic.name=Battery -item.battery_advanced.name=Advanced Battery -item.battery_lithium.name=Lithium-Ion Battery -item.battery_schrabidium.name=Schrabidium Battery -item.battery_spark.name=Spark Battery -item.battery_creative.name=Infinite Battery - -item.battery_su.name=SU-Battery -item.battery_su_l.name=Large SU-Battery -item.battery_steam.name=Steam Powered Energy Storage Tank -item.battery_steam_large.name=Large Steam Powered Energy Storage Tank - -item.battery_potato.name=Potato Battery -item.battery_potatos.name=PotatOS - -item.battery_red_cell.name=Redstone Power Cell -item.battery_advanced_cell.name=Advanced Power Cell -item.battery_lithium_cell.name=Lithium-Ion Power Cell -item.battery_schrabidium_cell.name=Schrabidium Power Cell -item.battery_red_cell_6.name=Sixfold Redstone Power Cell -item.battery_advanced_cell_4.name=Quadruple Advanced Power Cell -item.battery_lithium_cell_3.name=Tripple Lithium-Ion Power Cell -item.battery_schrabidium_cell_2.name=Double Schrabidium Power Cell -item.battery_red_cell_24.name=24-Fold Redstone Power Cell -item.battery_advanced_cell_12.name=Twelvefold Advanced Power Cell -item.battery_lithium_cell_6.name=Sixfold Lithium-Ion Power Cell -item.battery_schrabidium_cell_4.name=Quadruple Schrabidium Power Cell -item.battery_spark_cell_6.name=Spark Power Cell -item.battery_spark_cell_25.name=Spark Arcane Car Battery -item.battery_spark_cell_100.name=Spark Arcane Energy Storage Array -item.battery_spark_cell_1000.name=Spark Arcane Mass-Energy Void -item.battery_spark_cell_2500.name=Spark Arcane Dirac Sea -item.battery_spark_cell_10000.name=Spark Solid Space-Time Crystal -item.battery_spark_cell_power.name=Spark Ludicrous Physics-Defying Energy Storage Unit - -item.upgrade_template.name=Machine Upgrade Piece Template -item.upgrade_speed_1.name=Red Machine Upgrade Mk.I -item.upgrade_speed_2.name=Red Machine Upgrade Mk.II -item.upgrade_speed_3.name=Red Machine Upgrade Mk.III -item.upgrade_effect_1.name=Green Machine Upgrade Mk.I -item.upgrade_effect_2.name=Green Machine Upgrade Mk.II -item.upgrade_effect_3.name=Green Machine Upgrade Mk.III -item.upgrade_power_1.name=Blue Machine Upgrade Mk.I -item.upgrade_power_2.name=Blue Machine Upgrade Mk.II -item.upgrade_power_3.name=Blue Machine Upgrade Mk.III -item.upgrade_fortune_1.name=Purple Machine Upgrade Mk.I -item.upgrade_fortune_2.name=Purple Machine Upgrade Mk.II -item.upgrade_fortune_3.name=Purple Machine Upgrade Mk.III -item.upgrade_afterburn_1.name=Pink Machine Upgrade Mk.I -item.upgrade_afterburn_2.name=Pink Machine Upgrade Mk.II -item.upgrade_afterburn_3.name=Pink Machine Upgrade Mk.III -item.upgrade_radius.name=Teal Emitter Upgrade -item.upgrade_health.name=Pink Emitter Upgrade - -item.fusion_core.name=Fusion Core -item.energy_core.name=Makeshift Energy Core -item.fusion_core_infinite.name=Infinite Fusion Core - -item.dynosphere_base.name=Blank Dynosphere -item.dynosphere_desh.name=Desh Dynosphere -item.dynosphere_desh_charged.name=Desh Dynosphere (Charged) -item.dynosphere_schrabidium.name=Schrabidium Dynosphere -item.dynosphere_schrabidium_charged.name=Schrabidium Dynosphere (Charged) -item.dynosphere_euphemium.name=Euphemium Dynosphere -item.dynosphere_euphemium_charged.name=Euphemium Dynosphere (Charged) -item.dynosphere_dineutronium.name=Dineutronium Dynosphere -item.dynosphere_dineutronium_charged.name=Dineutronium Dynosphere (Charged) - -item.plate_iron.name=Iron Plate -item.plate_lead.name=Lead Plate -item.coil_copper.name=Copper Coil -item.coil_copper_torus.name=Ring Coil -item.wire_tungsten.name=Tungsten Wire -item.coil_tungsten.name=Heating Coil -item.tank_steel.name=Steel Tank -item.motor.name=Motor -item.centrifuge_element.name=Centrifuge Element -item.centrifuge_tower.name=Centrifuge Tower -item.reactor_core.name=Breeding Reactor Core -item.pellet_rtg.name=Plutonium 238 Fuel Pellet -item.pellet_rtg_weak.name=Weak Uranium RTG Pellet -item.rtg_unit.name=RTG Unit -item.hazmat_cloth.name=Hazmat Cloth -item.hazmat_cloth_red.name=Advanced Hazmat Cloth -item.hazmat_cloth_grey.name=Lead-Reinforced Hazmat Cloth -item.asbestos_cloth.name=Fire Proximity Cloth -item.filter_coal.name=Activated Carbon Filter -item.tritium_deuterium_cake.name=Tritium-Deuterium-Cake -item.telepad.name=Telepad -item.entanglement_kit.name=Entanglement Kit -item.toothpicks.name=Toothpicks -item.ducttape.name=Duct Tape -item.magnet_dee.name=Dee Magnets -item.magnet_circular.name=Flat Magnet -item.cyclotron_tower.name=Cyclotron Tower -item.plate_dalekanium.name=Angry Metal -item.biomass.name=Biomass -item.biomass_compressed.name=Compressed Biomass -item.component_limiter.name=Stabilizer Component -item.component_emitter.name=Emitter Component -item.catalyst_clay.name=Clay Catalyst - -item.cell_empty.name=Empty Cell -item.cell_uf6.name=Uranium Hexafluorite Cell -item.cell_puf6.name=Plutonium Hexafluorite Cell -item.cell_antimatter.name=Antimatter Cell -item.cell_deuterium.name=Deuterium Cell -item.cell_tritium.name=Tritium Cell -item.cell_sas3.name=Schrabidium Trisulfide Cell -item.cell_anti_schrabidium.name=Antischrabidium Cell -item.singularity.name=Singularity -item.singularity_counter_resonant.name=Contained Counter-Resonant Singularity -item.singularity_super_heated.name=Superheated Resonating Singularity -item.singularity_spark.name=Spark Singularity -item.black_hole.name=Miniature Black Hole -item.crystal_xen.name=Artificial Xen Crystal -item.pellet_antimatter.name=Antimatter Cluster - -item.inf_water.name=Infinite Water Tank -item.inf_deuterium.name=Infinite Deuterium Tank -item.inf_tritium.name=Infinite Tritium Tank -item.inf_coolant.name=Infinite Coolant Tank -item.inf_sulfur.name=Infinite Sulfur Tank -item.inf_diesel.name=Infinite Diesel Tank -item.inf_antimatter.name=Infinite Antimatter Tank -item.inf_antischrabidium.name=Infinite Antischrabidium Tank - -item.oil_canola.name=Raw Canola Oil - -item.pellet_coal.name=Dense Coal Cluster - -item.canister_empty.name=Empty Canister -item.canister_smear.name=Industrial Oil Canister -item.canister_canola.name=Engine Lubricant -item.canister_oil.name=Crude Oil Canister -item.canister_fuel.name=Diesel Canister -item.canister_kerosene.name=Kerosene Canister -item.canister_reoil.name=Canister of Reclaimed Industrial Oil -item.canister_petroil.name=Petroil Canister -item.canister_napalm.name=Napalm B -item.canister_NITAN.name=NITAN© 100 Octane Super Fuel -item.canister_heavyoil.name=Heavy Oil Canister -item.canister_bitumen.name=Bitumen Canister -item.canister_heatingoil.name=Heating Oil Canister -item.canister_naphtha.name=Naphtha Canister -item.canister_lightoil.name=Light Oil Canister -item.canister_biofuel.name=Biofuel Canister -item.gas_empty.name=Empty Gas Tank -item.gas_full.name=Gas Tank -item.gas_petroleum.name=Petroleum Gas Tank -item.gas_biogas.name=Biogas Tank -item.gas_lpg.name=LPG Tank -item.fluid_tank_empty.name=Empty Universal Fluid Tank -item.fluid_tank_full.name=Universal Fluid Tank: -item.fluid_barrel_empty.name=Empty Fluid Barrel -item.fluid_barrel_full.name=Fluid Barrel: -item.fluid_barrel_infinite.name=Infinite Fluid Barrel - -item.rod_empty.name=Empty Rod -item.rod_th232.name=Th232 Rod -item.rod_uranium.name=Uranium Rod -item.rod_u233.name=U233 Rod -item.rod_u235.name=U235 Rod -item.rod_u238.name=U238 Rod -item.rod_plutonium.name=Plutonium Rod -item.rod_pu238.name=Pu238 Rod -item.rod_pu239.name=Pu239 Rod -item.rod_pu240.name=Pu240 Rod -item.rod_neptunium.name=Neptunium Rod -item.rod_lead.name=Lead Rod -item.rod_schrabidium.name=Sa326 Rod -item.rod_solinium.name=Sa327 Rod -item.rod_euphemium.name=Euphemium Rod -item.rod_australium.name=Australium Rod -item.rod_weidanium.name=Weidanium Rod -item.rod_reiium.name=Reiium Rod -item.rod_unobtainium.name=Unobtainium Rod -item.rod_daffergon.name=Daffergon Rod -item.rod_verticium.name=Verticium Rod - -item.rod_dual_empty.name=Empty Dual Rod -item.rod_dual_th232.name=Th232 Dual Rod -item.rod_dual_uranium.name=Uranium Dual Fuel Rod -item.rod_dual_u233.name=U233 Dual Rod -item.rod_dual_u235.name=U235 Dual Rod -item.rod_dual_u238.name=U238 Dual Rod -item.rod_dual_plutonium.name=Plutonium Dual Rod -item.rod_dual_pu238.name=Pu238 Dual Rod -item.rod_dual_pu239.name=Pu239 Dual Rod -item.rod_dual_pu240.name=Pu240 Dual Rod -item.rod_dual_neptunium.name=Neptunium Dual Rod -item.rod_dual_lead.name=Lead Dual Rod -item.rod_dual_schrabidium.name=Sa326 Dual Rod -item.rod_dual_solinium.name=Sa327 Dual Rod - -item.rod_quad_empty.name=Empty Quad Rod -item.rod_quad_th232.name=Th232 Quad Rod -item.rod_quad_uranium.name=Uranium Quad Rod -item.rod_quad_u233.name=U233 Quad Rod -item.rod_quad_u235.name=U235 Quad Rod -item.rod_quad_u238.name=U238 Quad Rod -item.rod_quad_plutonium.name=Plutonium Quad Rod -item.rod_quad_pu238.name=Pu238 Quad Rod -item.rod_quad_pu239.name=Pu239 Quad Rod -item.rod_quad_pu240.name=Pu240 Quad Rod -item.rod_quad_neptunium.name=Neptunium Quad Rod -item.rod_quad_lead.name=Lead Quad Rod -item.rod_quad_schrabidium.name=Sa326 Quad Rod -item.rod_quad_solinium.name=Sa327 Quad Rod - -item.rod_uranium_fuel_depleted.name=Depleted Uranium Fuel Rod -item.rod_dual_uranium_fuel_depleted.name=Depleted Uranium Dual Fuel Rod -item.rod_quad_uranium_fuel_depleted.name=Depleted Uranium Quad Fuel Rod -item.rod_thorium_fuel_depleted.name=Depleted Thorium Fuel Rod -item.rod_dual_thorium_fuel_depleted.name=Depleted Thorium Dual Fuel Rod -item.rod_quad_thorium_fuel_depleted.name=Depleted Thorium Quad Fuel Rod -item.rod_plutonium_fuel_depleted.name=Depleted Plutonium Fuel Rod -item.rod_dual_plutonium_fuel_depleted.name=Depleted Plutonium Dual Fuel Rod -item.rod_quad_plutonium_fuel_depleted.name=Depleted Plutonium Quad Fuel Rod -item.rod_mox_fuel_depleted.name=Depleted MOX Fuel Rod -item.rod_dual_mox_fuel_depleted.name=Depleted MOX Dual Fuel Rod -item.rod_quad_mox_fuel_depleted.name=Depleted MOX Quad Fuel Rod -item.rod_schrabidium_fuel_depleted.name=Depleted Schrabidium Fuel Rod -item.rod_dual_schrabidium_fuel_depleted.name=Depleted Schrabidium Dual Fuel Rod -item.rod_quad_schrabidium_fuel_depleted.name=Depleted Schrabidium Quad Fuel Rod - -item.rod_waste.name=Nuclear Waste Rod -item.rod_dual_waste.name=Nuclear Waste Dual Rod -item.rod_quad_waste.name=Nuclear Waste Quad Rod - -item.gun_rpg.name=Carl Gustav Recoilless Rifle -item.gun_rpg_ammo.name=Rocket -item.gun_stinger.name=FIM-92 Stinger -item.gun_skystinger.name=The One Sky Stinger -item.gun_stinger_ammo.name=Stinger Rocket -item.gun_hk69.name=Grenade Pistol - -item.flame_pony.name=Painting of a Cartoon Pony -item.flame_conspiracy.name=Conspiracy Theory -item.flame_politics.name=Political Topic -item.flame_opinion.name=Own Opinion - -item.pellet_cluster.name=Explosive Pellets -item.pellet_buckshot.name=Lead Pellets -item.pellet_flechette.name=Flechettes -item.powder_fire.name=Flame Powder -item.powder_ice.name=Cryo Powder -item.powder_poison.name=Poison Powder -item.pellet_gas.name=Poison Gas Cartridge -item.magnetron.name=Magnetron -item.powder_thermite.name=Thermite - -item.nuke_starter_kit.name=Atomic Science Starter Kit -item.nuke_commercially_kit.name=Atomic Science Kit for Commercial Uses -item.nuke_advanced_kit.name=Atomic Science Advanced Kit -item.gadget_kit.name=The Gadget Kit -item.boy_kit.name=Little Boy Kit -item.man_kit.name=Fat Man Kit -item.mike_kit.name=Ivy Mike Kit -item.tsar_kit.name=Tsar Bomba Kit -item.fleija_kit.name=F.L.E.I.J.A. Kit -item.multi_kit.name=Multi Purpose Bomb Kit -item.custom_kit.name=Custom Nuke Kit -item.grenade_kit.name=Grenade Kit -item.nuke_electric_kit.name=Electronic Engineer's Kit -item.prototype_kit.name=Prototype Kit -item.missile_kit.name=Missile Kit -item.t45_kit.name=T45 Power Armor Kit -item.euphemium_kit.name=Euphemium Kit -item.solinium_kit.name=Solinium Kit -item.hazmat_kit.name=Hazmat Kit -item.hazmat_red_kit.name=Advanced Hazmat Kit -item.hazmat_grey_kit.name=High-Performance Hazmat Kit - -tile.waste_earth.name=Dead Grass -tile.waste_trinitite.name=Trinitite Ore -tile.waste_trinitite_red.name=Red Trinitite Ore -tile.waste_log.name=Charred Log -tile.waste_planks.name=Charred Wooden Planks - -item.trinitite.name=Trinitite -item.nuclear_waste.name=Nuclear Waste -item.nuclear_waste_tiny.name=Tiny Pile of Nuclear Waste -item.waste_uranium.name=Depleted Uranium Fuel -item.waste_thorium.name=Depleted Thorium Fuel -item.waste_plutonium.name=Depleted Plutonium Fuel -item.waste_mox.name=Depleted MOX Fuel -item.waste_schrabidium.name=Depleted Schrabidium Fuel -item.scrap.name=Scrap - -item.ingot_uranium_fuel.name=Ingot of Uranium Fuel -item.ingot_thorium_fuel.name=Ingot of Thorium Fuel -item.ingot_plutonium_fuel.name=Ingot of Plutonium Fuel -item.ingot_mox_fuel.name=Ingot of MOX Fuel -item.ingot_schrabidium_fuel.name=Ingot of Schrabidium Fuel - -item.nugget_uranium_fuel.name=Nugget of Uranium Fuel -item.nugget_thorium_fuel.name=Nugget of Thorium Fuel -item.nugget_plutonium_fuel.name=Nugget of Plutonium Fuel -item.nugget_mox_fuel.name=Nugget of MOX Fuel -item.nugget_schrabidium_fuel.name=Nugget of Schrabidium Fuel - -item.grenade_generic.name=Grenade -item.grenade_strong.name=Enhanced Grenade -item.grenade_frag.name=Frag Grenade -item.grenade_fire.name=Flame Frag Grenade -item.grenade_shrapnel.name=Shrapnel Grenade -item.grenade_cluster.name=Cluster Bomb -item.grenade_flare.name=Signal Flare -item.grenade_electric.name=Lightning Bomb -item.grenade_poison.name=Poison Grenade -item.grenade_gas.name=Gas Grenade -item.grenade_pulse.name=Impulse Grenade -item.grenade_plasma.name=Plasma Grenade -item.grenade_tau.name=Tau Grenade -item.grenade_schrabidium.name=Schrabidium Grenade -item.grenade_lemon.name=Combustible Lemon -item.grenade_gascan.name=Tossable Gas Can -item.grenade_mk2.name=Mk 2 Grenade "Ambassador Pineapple" -item.grenade_aschrab.name=Tossable Antischrabidium Cell -item.grenade_nuke.name=Mark VI Drill Grenade -item.grenade_nuclear.name=Nuka Grenade -item.grenade_zomg.name=Negative Energy Pair Annihilation Grenade -item.grenade_black_hole.name=Black Hole Grenade -item.grenade_cloud.name=Jar of Cloud -item.grenade_pink_cloud.name=Jar of Pink Cloud -item.ullapool_caber.name=Ullapool Caber -item.grenade_smart.name=Smart Grenade -item.grenade_mirv.name=MIRV Grenade -item.grenade_breach.name=Breaching Grenade -item.grenade_burst.name=Digger Grenade - -item.grenade_if_generic.name=IF - Grenade -item.grenade_if_he.name=IF - HE Grenade -item.grenade_if_bouncy.name=IF - Bouncy Grenade -item.grenade_if_sticky.name=IF - Sticky Grenade -item.grenade_if_impact.name=IF - Impact Grenade -item.grenade_if_incendiary.name=IF - Incendiary Grenade -item.grenade_if_toxic.name=IF - Toxic Grenade -item.grenade_if_concussion.name=IF - Concussion Grenade -item.grenade_if_brimstone.name=IF - Tossable Brimstone Mine -item.grenade_if_mystery.name=IF - M.-Grenade -item.grenade_if_spark.name=IF - S.-Grenade -item.grenade_if_hopwire.name=IF - Vortex Hopwire -item.grenade_if_null.name=IF - Null Grenade - -item.rod_uranium_fuel.name=Uranium Fuel Rod -item.rod_dual_uranium_fuel.name=Uranium Dual Fuel Rod -item.rod_quad_uranium_fuel.name=Uranium Quad Fuel Rod -item.rod_thorium_fuel.name=Thorium Fuel Rod -item.rod_dual_thorium_fuel.name=Thorium Dual Fuel Rod -item.rod_quad_thorium_fuel.name=Thorium Quad Fuel Rod -item.rod_plutonium_fuel.name=Plutonium Fuel Rod -item.rod_dual_plutonium_fuel.name=Plutonium Dual Fuel Rod -item.rod_quad_plutonium_fuel.name=Plutonium Quad Fuel Rod -item.rod_mox_fuel.name=MOX Fuel Rod -item.rod_dual_mox_fuel.name=MOX Dual Fuel Rod -item.rod_quad_mox_fuel.name=MOX Quad Fuel Rod -item.rod_schrabidium_fuel.name=Schrabidium Fuel Rod -item.rod_dual_schrabidium_fuel.name=Schrabidium Dual Fuel Rod -item.rod_quad_schrabidium_fuel.name=Schrabidium Quad Fuel Rod - -item.rod_water.name=Water Cell -item.rod_dual_water.name=Dual Water Cell -item.rod_quad_water.name=Quad Water Cell - -item.rod_coolant.name=Coolant Cell -item.rod_dual_coolant.name=Dual Coolant Cell -item.rod_quad_coolant.name=Quad Coolant Cell - -item.rod_lithium.name=Lithium Rod -item.rod_dual_lithium.name=Dual Lithium Rod -item.rod_quad_lithium.name=Quad Lithium Rod - -item.rod_tritium.name=Tritium Cell -item.rod_dual_tritium.name=Dual Tritium Cell -item.rod_quad_tritium.name=Quad Tritium Cell - -item.levitation_unit.name=Gravity Manipulator -item.thermo_unit_empty.name=Thermic Distribution Unit -item.thermo_unit_endo.name=Coldness Distribution Unit -item.thermo_unit_exo.name=Heat Distribution Unit - -item.bomb_waffle.name=Waffle of Mass Destruction -item.schnitzel_vegan.name=Vegan Schnitzel -item.apple_schrabidium.name=Schrabidium Apple -item.cotton_candy.name=Radioactive Cotton Candy -item.tem_flakes.name=Tem Flakes -item.glowing_stew.name=Glowing Mushroom Stew -item.lemon.name="Lemon" -item.definitelyfood.name=TotallyNotDirt-Brand MRE -item.loops.name=Lööps -item.loop_stew.name=IT Breakfast -item.fooditem.name=food item - -tile.frozen_grass.name=Frozen Grass -tile.frozen_dirt.name=Frozen Dirt -tile.frozen_log.name=Frozen Log -tile.frozen_planks.name=Frozen Planks - -tile.tape_recorder.name=Tape Recorder -tile.steel_poles.name=Steel Pole -tile.pole_top.name=Antenna Top -tile.pole_satellite_receiver.name=Satellite Dish -tile.steel_wall.name=Steel Wall -tile.steel_corner.name=Steel Wall Corner -tile.steel_roof.name=Flat Steel Roof -tile.steel_beam.name=Steel Beam -tile.steel_scaffold.name=Steel Scaffold - -item.gun_revolver_iron.name=Simple Revolver -item.gun_revolver.name=Enhanced Revolver -item.gun_revolver_saturnite.name=Saturnite Shooter -item.gun_revolver_gold.name=Golden Revolver -item.gun_revolver_lead.name=Nuka Revolver -item.gun_revolver_schrabidium.name=Schrabidium Revolver -item.gun_revolver_cursed.name=Cursed Revolver -item.gun_revolver_nightmare.name=Nightmare Revolver (Original) -item.gun_revolver_nightmare2.name=Nightmare Revolver (Dark) -item.gun_revolver_pip.name=Lil' Pipsqueak -item.gun_revolver_nopip.name=Novac -item.gun_revolver_blackjack.name=Blackjack Five-Shooter -item.gun_revolver_red.name=Red Key Revolver -item.gun_calamity.name=Calamity -item.gun_calamity_dual.name=Saddle Gun -item.gun_minigun.name=CZ53 Personal Minigun -item.gun_avenger.name=CZ57 Avenger Minigun -item.gun_lacunae.name=CZ33 Abaddon -item.gun_fatman.name=M42 Nuclear Catapult "Fat Man" -item.gun_proto.name=M42 Nuclear Catapult "Proto MIRV" -item.gun_mirv.name=M42 Nuclear Catapult "Experimental MIRV" -item.gun_bf.name=M42_2 Nuclear Catapult "Antimatter Launcher" -item.gun_mp40.name=Submachine Gun -item.gun_uzi.name=IMI Uzi -item.gun_uzi_silencer.name=IMI Uzi with Silencer -item.gun_uzi_saturnite.name=Saturnite Uzi -item.gun_uzi_saturnite_silencer.name=Saturnite Uzi with Silencer -item.gun_uboinik.name=Uboinik -item.gun_lever_action.name=Mare's Leg (Original) -item.gun_bolt_action.name=Dream Bolt-Action Rifle (Original) -item.gun_lever_action_dark.name=Mare's Leg (Dark) -item.gun_bolt_action_green.name=Dream Bolt-Action Rifle (Green) -item.gun_bolt_action_saturnite.name=Saturnite Rifle -item.gun_lever_action_sonata.name=Flipped Mare's Leg -item.gun_lever_action_sonata_2.name=§cSonata's Microphone§r -item.gun_b92.name=§9B92 Energy Pistol§r -item.gun_b93.name=§cB93 Energy Mod§r -item.gun_xvl1456.name=XVL1456 Tau Cannon Prototype -item.gun_osipr.name=Overwatch Standard Issue Pulse Rifle -item.gun_immolator.name=The Immolator -item.gun_cryolator.name=The Cryolator -item.gun_mp.name=Pacifist's Machine Gun -item.gun_zomg.name=Singularity Powered Annihilation Ray "ZOMG Cannon" -item.gun_emp.name=EMP Ray -item.gun_super_shotgun.name=Super Shotgun -item.gun_moist_nugget.name=Mosin-Nagant -item.gun_revolver_inverted.name=Flipped Revolver -item.gun_jack.name=Jackhammer -item.gun_spark.name=Spark Plug -item.gun_hp.name=HPP Lazerjet -item.gun_euthanasia.name=Euthanasia -item.gun_defabricator.name=Defabricator -item.gun_dampfmaschine.name=Totally Not a Joke Weapon -item.gun_folly.name=Prototype Digamma "Folly" - -item.gun_revolver_iron_ammo.name=Bullet -item.gun_revolver_ammo.name=Lead Bullet -item.gun_revolver_gold_ammo.name=Golden Bullet -item.gun_revolver_lead_ammo.name=Glass Covered Nuclear Bullet -item.gun_revolver_schrabidium_ammo.name=Schrabidium Bullet -item.gun_revolver_cursed_ammo.name=Steel Bullet -item.gun_revolver_nightmare_ammo.name=Nightmare Bullet -item.gun_revolver_nightmare2_ammo.name=Laser Buckshot -item.gun_revolver_pip_ammo.name=Tainted Bullet -item.gun_revolver_nopip_ammo.name=.44 Magnum Bullet -item.gun_calamity_ammo.name=.50 BMG Round -item.gun_lacunae_ammo.name=5mm Round -item.gun_fatman_ammo.name=Mini Nuke -item.gun_mirv_ammo.name=Eightfold MIRV -item.gun_bf_ammo.name=Mk.V Compact AMAT-Artillery Shell - Type B.F. -item.gun_mp40_ammo.name=Submachine Gun Round -item.gun_uzi_ammo.name=.22 LR Round -item.gun_uboinik_ammo.name=12x70 Buckshot -item.gun_lever_action_ammo.name=12x74 Buckshot -item.gun_bolt_action_ammo.name=12x74 Slug -item.gun_b92_ammo.name=§9B92 Energy Cell§r -item.gun_xvl1456_ammo.name=Depleted Uranium-235 Box -item.gun_osipr_ammo.name=Dark Energy Pulse Plug -item.gun_osipr_ammo2.name=Combine Ball -item.gun_immolator_ammo.name=Immolator Fuel -item.gun_cryolator_ammo.name=Cryo Cell -item.gun_mp_ammo.name=Small Propellantless Machine Gun Round -item.gun_emp_ammo.name=Energy Cell -item.gun_jack_ammo.name=Quadruple Shotgun Shell -item.gun_spark_ammo.name=Electromagnetic Cartridge -item.gun_hp_ammo.name=Ink Cartridge -item.gun_euthanasia_ammo.name=Syringe -item.gun_defabricator_ammo.name=Defabricator Energy Cell - -item.ammo_12gauge.name=12 Gauge Buckshot -item.ammo_12gauge_incendiary.name=12 Gauge Buckshot (Incendiary) -item.ammo_20gauge.name=20 Gauge Buckshot -item.ammo_20gauge_slug.name=20 Gauge Brenneke Slug -item.ammo_20gauge_flechette.name=20 Gauge Flechette Shell -item.ammo_20gauge_incendiary.name=20 Gauge Buckshot (Incendiary) -item.ammo_20gauge_shock.name=20 Gauge Buckshot (Shock) -item.ammo_20gauge_caustic.name=20 Gauge Buckshot (Caustic) -item.ammo_20gauge_explosive.name=20 Gauge Buckshot (Explosive) -item.ammo_20gauge_wither.name=20 Gauge Buckshot (Withering) -item.ammo_5mm.name=5mm Round -item.ammo_5mm_explosive.name=5mm Round (Explosive) -item.ammo_5mm_du.name=5mm Round (DU) -item.ammo_50bmg.name=.50 BMG Round -item.ammo_50bmg_incendiary.name=.50 BMG Round (Incendiary) -item.ammo_50bmg_explosive.name=.50 BMG Round (Explosive) -item.ammo_50bmg_du.name=.50 BMG Round (DU) -item.ammo_9mm.name=9mm Round -item.ammo_9mm_ap.name=9mm Round (Armor Piercing) -item.ammo_9mm_du.name=9mm Round (DU) -item.ammo_22lr.name=.22 LR Round -item.ammo_22lr_ap.name=.22 LR Round (Armor Piercing) -item.ammo_folly.name=Silver Bullet (Original) -item.ammo_folly_nuclear.name=Silver Bullet (Nuclear) -item.ammo_folly_du.name=Silver Bullet (DU, Non-Explosive) -item.ammo_44.name=.44 Magnum Bullet -item.ammo_44_ap.name=.44 Magnum Bullet (Armor Piercing) -item.ammo_44_du.name=.44 Magnum Bullet (DU) -item.ammo_44_pip.name=.44 Magnum Bullet (Boxcar) -item.ammo_44_bj.name=.44 Magnum Bullet (Boat) -item.ammo_rocket.name=84mm Rocket -item.ammo_rocket_he.name=84mm Rocket (HE) -item.ammo_rocket_incendiary.name=84mm Rocket (Incendiary) -item.ammo_rocket_shrapnel.name=84mm Rocket (Shrapnel) -item.ammo_rocket_emp.name=84mm Rocket (Pulse) -item.ammo_rocket_glare.name=84mm Rocket (Red Glare) -item.ammo_rocket_sleek.name=84mm Rocket (IF-R&D) -item.ammo_grenade.name=40mm Grenade -item.ammo_grenade_he.name=40mm Grenade (HE) -item.ammo_grenade_incendiary.name=40mm Grenade (Incendiary) -item.ammo_grenade_toxic.name=40mm Grenade (Chemical) -item.ammo_grenade_sleek.name=40mm Grenade (IF-R&D) - -item.folly_shell.name=Silver Bullet Casing -item.folly_bullet.name=12.8cm Starmetal High-Energy Shell -item.folly_bullet_nuclear.name=12.8cm Nuclear Shell -item.folly_bullet_du.name=12.8cm DU-Shell - -item.cordite.name=Cordite -item.plate_kevlar.name=Kevlar-Ceramic Compound - -item.weaponized_starblaster_cell.name=§cRigged Star Blaster Energy Cell§r - -item.turret_light_ammo.name=Light MG Turret Ammo Box -item.turret_heavy_ammo.name=Heavy MG Turret Ammunition -item.turret_rocket_ammo.name=Rocket Turret 2x4 Ammunition -item.turret_flamer_ammo.name=Flamer Turret Fuel Tanks -item.turret_tau_ammo.name=Tau Turret Uranium Ammo -item.turret_spitfire_ammo.name=AA-Shell -item.turret_cwis_ammo.name=CIWS 20mm Ammo Drum -item.turret_cheapo_ammo.name=6x24 Cheapo Turret Ammunition - -item.clip_revolver_iron.name=Box of Iron Rounds -item.clip_revolver.name=Box of .357 Rounds -item.clip_revolver_gold.name=Small Coffer of Golden Bullets -item.clip_revolver_schrabidium.name=Schrabidium Ammo Container -item.clip_rpg.name=Rocket Container -item.clip_xvl1456.name=Large Isotope Box -item.clip_osipr.name=AR2 Magazine -item.clip_immolator.name=Tank of Immolator Fuel -item.clip_cryolator.name=Tank of Cryolator Fuel -item.clip_revolver_lead.name=Box of Nuclear Bullets -item.clip_revolver_cursed.name=Britannia Military Standard Issue Pisol Magazine -item.clip_fatman.name=Six Pack of Mini Nukes -item.clip_mirv.name=Three-In-One Pack of Mini MIRVs -item.clip_bf.name=BF-Shell Double Pack -item.clip_mp.name=Britannia Military Standard Issue Assult Rifle Magazine -item.clip_mp40.name=9mm SMG Magazine -item.clip_uzi.name=32rnd .22 LR Magazine -item.clip_uboinik.name=Box of 12x70 Buckshot Rounds -item.clip_lever_action.name=Box of 12x74 Buckshot Rounds -item.clip_bolt_action.name=Box of 12x74 Slugs -item.clip_emp.name=Small Pack of Energy Cells -item.clip_revolver_nightmare.name=Bag of Bullets -item.clip_revolver_nightmare2.name=Belt with Laser Buckshot -item.clip_revolver_pip.name=Speedloader with Tainted Bullets -item.clip_revolver_nopip.name=Box of .44 Rounds -item.clip_stinger.name=Pack of Stinger Rockets -item.clip_jack.name=Box of Quadruple 12x70 Buckshot Rounds -item.clip_spark.name=Large Electromagnetic Cartridge -item.clip_hp.name=Ink Tanks -item.clip_euthanasia.name=Last Aid Kit -item.clip_defabricator.name=Belt with Defabricator Energy Cells - -item.ammo_container.name=Ammo Container - -tile.block_schrabidium.name=Block of Schrabidium -item.plate_gold.name=Gold Plate - -item.syringe_empty.name=Empty Syringe -item.syringe_antidote.name=Antidote -item.syringe_poison.name=Poisonous Injection -item.syringe_awesome.name=AWESOME -item.syringe_metal_empty.name=Metal Syringe -item.syringe_metal_stimpak.name=Stimpak -item.syringe_metal_medx.name=Med-X -item.syringe_metal_psycho.name=Psycho -item.syringe_metal_super.name=Super Stimpak -item.syringe_taint.name=Watery Taint Injection -item.med_bag.name=Doctor's Bag -item.radaway.name=RadAway -item.radaway_strong.name=Strong RadAway -item.radaway_flush.name=Elite RadAway -item.radx.name=Rad-X -item.pirfenidone.name=Pirfenidone -item.pill_iodine.name=Iodine Pill -item.plan_c.name=Plan C -item.med_ipecac.name=Ipecac Syrup -item.med_ptsd.name=PTSD Medication -item.med_schiziphrenia.name=Schizophrenia Medication -item.gas_mask_filter.name=Gas Mask Filter - -item.stealth_boy.name=Stealth Device - -entity.hbm.entity_bullet.name=Bullet -entity.hbm.entity_rocket.name=Rocket -entity.hbm.entity_schrabnel.name=Schrabnel -entity.entity_mob_nuclear_creeper.name=Nuclear Creeper -entity.entity_mob_tainted_creeper.name=Tainted Creeper -entity.entity_mob_hunter_chopper.name=Hunter Chopper -entity.entity_cyber_crab.name=Cyber Crab - -item.cap_aluminium.name=Aluminium Cap -item.hull_small_steel.name=Small Steel Shell -item.hull_small_aluminium.name=Small Aluminium Shell -item.hull_big_steel.name=Big Steel Shell -item.hull_big_aluminium.name=Big Aluminium Shell -item.hull_big_titanium.name=Big Titanium Shell -item.fins_flat.name=Flat Steel Casing -item.fins_small_steel.name=Small Steel Grid Fins -item.fins_big_steel.name=Big Steel Grid Fins -item.fins_tri_steel.name=Large Steel Fins -item.fins_quad_titanium.name=Small Titanium Fins -item.sphere_steel.name=Steel Sphere -item.pedestal_steel.name=Steel Pedestal -item.dysfunctional_reactor.name=Dysfunctional Nuclear Reactor - -item.rotor_steel.name=Large Steel Rotor -item.generator_steel.name=Generator Body -item.blade_titanium.name=Titanium Blade -item.turbine_titanium.name=Titanium Steam Turbine -item.generator_front.name=Generator Front -item.blade_tungsten.name=Tungsten Reinforced Blade -item.turbine_tungsten.name=Reinforced Turbofan Blades - -item.combine_scrap.name=CMB Scrap Metal -item.chopper_head.name=Hunter Chopper Cockpit -item.chopper_gun.name=Emplacement Gun -item.chopper_torso.name=Hunter Chopper Body -item.chopper_tail.name=Hunter Chopper Tail -item.chopper_wing.name=Hunter Chopper Wing -item.chopper_blades.name=Hunter Chopper Rotor Blades - -item.igniter.name=Igniter -item.watch.name=Broken Pocket Watch -item.apple_euphemium.name=Euphemium Apple -item.ingot_euphemium.name=Euphemium Ingot -item.nugget_euphemium.name=Euphemium Nugget -item.rod_quad_euphemium.name=Burned Out Quad Schrabidium Fuel Rod -item.plate_euphemium.name=Euphemium Compound Plate -item.plate_dineutronium.name=Dineutronium Compound Plate -item.plate_desh.name=Desh Compound Plate - -item.euphemium_helmet.name=Euphemium Helmet -item.euphemium_plate.name=Euphemium Chestplate -item.euphemium_legs.name=Euphemium Leggings -item.euphemium_boots.name=Euphemiums Boots - -item.schrabidium_helmet.name=Schrabidium Helmet -item.schrabidium_plate.name=Schrabidium Chestplate -item.schrabidium_legs.name=Schrabidium Leggings -item.schrabidium_boots.name=Schrabidium Boots -item.schrabidium_sword.name=Schrabidium Sword -item.schrabidium_pickaxe.name=Schrabidium Pickaxe -item.schrabidium_axe.name=Schrabidium Axe -item.schrabidium_shovel.name=Schrabidium Shovel -item.schrabidium_hoe.name=Schrabidium Hoe - -item.jetpack_boost.name=Boostpack -item.jetpack_fly.name=Jetpack -item.jetpack_break.name=Breakpack -item.jetpack_vector.name=Vectored Jetpack -item.jetpack_tank.name=Jetpack Reserve Fuel Tank - -item.gun_kit_1.name=Gun Oil -item.gun_kit_2.name=Gun Repair Kit - -item.chainsaw.name=Chainsaw -item.crowbar.name=Mk.V Crate Opening Device "Crowbar" - -item.wrench.name=Pipe Wrench -item.wrench_flipped.name=Blade on a Wrench -item.memespoon.name=§eMarket Gardener - -item.mask_of_infamy.name=Mask of Infamy - -tile.det_cord.name=Det Cord -tile.det_charge.name=Explosive Charge -tile.det_nuke.name=Nuclear Charge -tile.red_barrel.name=Explosive Barrel -tile.yellow_barrel.name=Radioactive Barrel - -item.designator.name=Short Range Target Designator -item.designator_range.name=Long Range Target Designator -item.designator_manual.name=Manual Target Designator -item.missile_assembly.name=Small Missile Assembly -item.missile_generic.name=High Explosive Missile -item.missile_anti_ballistic.name=Anti Ballistic Missile (WIP) -item.missile_incendiary.name=Incendiary Missile -item.missile_cluster.name=Cluster Missile -item.missile_buster.name=Bunker Buster -item.missile_strong.name=Strong HE Missile -item.missile_incendiary_strong.name=Strong Incendiary Missile -item.missile_cluster_strong.name=Strong Cluster Missile -item.missile_buster_strong.name=Enhanced Bunker Buster -item.missile_burst.name=Spare Missile -item.missile_inferno.name=Inferno Missile G.R.N. Mk.II -item.missile_rain.name=Bomblet Rain -item.missile_drill.name=The Concrete Cracker -item.missile_nuclear.name=Nuclear Missile -item.missile_nuclear_cluster.name=Thermonuclear Missile -item.missile_endo.name=Endothermic Missile -item.missile_exo.name=Exothermic Missile -item.missile_doomsday.name=Doomsday Missile -item.missile_taint.name=Taint-Tipped Missile -item.missile_micro.name=Micro-Nuclear Missile -item.missile_bhole.name=Black Hole Missile -item.missile_schrabidium.name=Schrabidium Missile -item.missile_emp.name=EMP Missile - -item.missile_carrier.name=HTR-01 Carrier Rocket -item.sat_mapper.name=Surface Mapping Satellite -item.sat_scanner.name=Satellite with Depth-Resource Scanning Module -item.sat_radar.name=Radar Survey Satellite -item.sat_laser.name=Orbital Death Ray -item.sat_foeq.name=PEAF - Mk.I FOEQ Duna Probe with experimental Nuclear Propulsion -item.sat_resonator.name=Xenium Resonator Satellite -item.sat_miner.name=Asteroid Mining Ship -item.sat_chip.name=Satellite ID-Chip -item.sat_interface.name=Satellite Control Interface -tile.sat_mapper.name=Surface Mapping Satellite (Deco Block) -tile.sat_scanner.name=Satellite with Depth-Resource Scanning Module (Deco Block) -tile.sat_radar.name=Radar Survey Satellite (Deco Block) -tile.sat_laser.name=Orbital Death Ray (Deco Block) -tile.sat_foeq.name=PEAF - Mk.I FOEQ Duna Probe with experimental Nuclear Propulsion (Deco Block) -tile.sat_resonator.name=Xenium Resonator Satellite (Deco Block) - -item.hazmat_helmet.name=Hazmat Helmet -item.hazmat_plate.name=Hazmat Chestplate -item.hazmat_legs.name=Hazmat Leggings -item.hazmat_boots.name=Hazmat Boots -item.hazmat_helmet_red.name=Advanced Hazmat Helmet -item.hazmat_plate_red.name=Advanced Hazmat Chestplate -item.hazmat_legs_red.name=Advanced Hazmat Leggings -item.hazmat_boots_red.name=Advanced Hazmat Boots -item.hazmat_helmet_grey.name=High-Performance Hazmat Helmet -item.hazmat_plate_grey.name=High-Performance Hazmat Chestplate -item.hazmat_legs_grey.name=High-Performance Hazmat Leggings -item.hazmat_boots_grey.name=High-Performance Hazmat Boots -item.hazmat_paa_helmet.name=PaA Battle Hazmat Suit Helmet -item.hazmat_paa_plate.name=PaA Battle Hazmat Suit Chestplate -item.hazmat_paa_legs.name=PaA Battle Hazmat Suit Leggings -item.hazmat_paa_boots.name=PaA Battle Hazmat Suit Boots -item.asbestos_helmet.name=Fire Proximity Helmet -item.asbestos_plate.name=Fire Proximity Chestplate -item.asbestos_legs.name=Fire Proximity Leggings -item.asbestos_boots.name=Fire Proximity Boots - -item.paa_plate.name=PaA Chest Protection Plate -item.paa_legs.name=PaA Leg Reinforcements -item.paa_boots.name=PaA "good ol' shoes" - -item.jackt.name=Damn Stylish Ballistic Jacket -item.jackt2.name=Damn Stylish Ballistic Jacket 2: Tokyo Drift - -item.goggles.name=Protection Goggles -item.gas_mask.name=Gas Mask -item.gas_mask_m65.name=M65-Z Gas Mask -item.oxy_mask.name=Oxygen Mask -item.t45_helmet.name=T45 Power Armor Helmet -item.t45_plate.name=T45 Power Armor Chestplate -item.t45_legs.name=T45 Power Armor Leggings -item.t45_boots.name=T45 Power Armor Boots - -tile.mush.name=Glowing Mushroom -tile.waste_mycelium.name=Glowing Mycelium - -tile.sellafield_slaked.name=Slaked Sellafite -tile.sellafield_0.name=Sellafite -tile.sellafield_1.name=Hot Sellafite -tile.sellafield_2.name=Boiling Sellafite -tile.sellafield_3.name=Blazing Sellafite -tile.sellafield_4.name=Infernal Sellafite -tile.sellafield_core.name=Sellafite-Corium - -item.warhead_generic_small.name=Small Warhead -item.warhead_generic_medium.name=Medium Warhead -item.warhead_generic_large.name=Large Warhead -item.warhead_incendiary_small.name=Small Incendiary Warhead -item.warhead_incendiary_medium.name=Medium Incendiary Warhead -item.warhead_incendiary_large.name=Large Incendiary Warhead -item.warhead_cluster_small.name=Small Cluster Warhead -item.warhead_cluster_medium.name=Medium Cluster Warhead -item.warhead_cluster_large.name=Large Cluster Warhead -item.warhead_buster_small.name=Small Bunker Buster Warhead -item.warhead_buster_medium.name=Medium Bunker Buster Warhead -item.warhead_buster_large.name=Large Bunker Buster Warhead -item.warhead_nuclear.name=Nuclear Warhead -item.warhead_mirvlet.name=MIRV -item.warhead_mirv.name=Thermonuclear Warhead -item.warhead_thermo_endo.name=Endothermic Warhead -item.warhead_thermo_exo.name=Exothermic Warhead -item.fuel_tank_small.name=Small Fuel Tank -item.fuel_tank_medium.name=Medium Fuel Tank -item.fuel_tank_large.name=Large Fuel Tank -item.thruster_small.name=Small Thruster -item.thruster_medium.name=Medium Thruster -item.thruster_large.name=Large Thruster - -item.wand_k.name=Construction Wand -item.wand_s.name=Structure Wand -item.wand_d.name=Debug Wand -item.analyzer.name=Analyzer - -item.screwdriver.name=Screwdriver -item.overfuse.name=Singularity Screwdriver - -item.steel_helmet.name=Steel Helmet -item.steel_plate.name=Steel Chestplate -item.steel_legs.name=Steel Leggings -item.steel_boots.name=Steel Boots -item.titanium_helmet.name=Titanium Helmet -item.titanium_plate.name=Titanium Chestplate -item.titanium_legs.name=Titanium Leggings -item.titanium_boots.name=Titanium Boots -item.alloy_helmet.name=Advanced Alloy Helmet -item.alloy_plate.name=Advanced Alloy Chestplate -item.alloy_legs.name=Advanced Alloy Leggings -item.alloy_boots.name=Advanced Alloy Boots -item.cmb_helmet.name=CMB Steel Helmet -item.cmb_plate.name=CMB Steel Chestplate -item.cmb_legs.name=CMB Steel Leggings -item.cmb_boots.name=CMB Steel Boots -item.security_helmet.name=Security Helmet -item.security_plate.name=Security Chestplate -item.security_legs.name=Security Leggings -item.security_boots.name=Security Boots - -item.steel_sword.name=Steel Sword -item.steel_pickaxe.name=Steel Pickaxe -item.steel_axe.name=Steel Axe -item.steel_shovel.name=Steel Shovel -item.steel_hoe.name=Steel Hoe -item.titanium_sword.name=Titanium Sword -item.titanium_pickaxe.name=Titanium Pickaxe -item.titanium_axe.name=Titanium Axe -item.titanium_shovel.name=Titanium Shovel -item.titanium_hoe.name=Titanium Hoe -item.alloy_sword.name=Advanced Alloy Sword -item.alloy_pickaxe.name=Advanced Alloy Pickaxe -item.alloy_axe.name=Advanced Alloy Axe -item.alloy_shovel.name=Advanced Alloy Shovel -item.alloy_hoe.name=Advanced Alloy Hoe -item.cmb_sword.name=CMB Steel Sword -item.cmb_pickaxe.name=CMB Steel Pickaxe -item.cmb_axe.name=CMB Steel Axe -item.cmb_shovel.name=CMB Steel Shovel -item.cmb_hoe.name=CMB Steel Hoe -item.elec_sword.name=Stunstick -item.elec_pickaxe.name=Impact Drill -item.elec_axe.name=Electric Chainsaw -item.elec_shovel.name=Spiral Drill -item.desh_sword.name=Worker's Alloy Sword -item.desh_pickaxe.name=Worker's Alloy Pickaxe -item.desh_axe.name=Worker's Alloy Axe -item.desh_shovel.name=Worker's Alloy Shovel -item.desh_hoe.name=Worker's Alloy Hoe - -tile.red_cable.name=Red Copper Cable - -tile.block_meteor.name=Meteorite Block -tile.block_meteor_broken.name=Broken Meteorite Block -tile.block_meteor_cobble.name=Meteorite Cobblestone -tile.block_meteor_molten.name=Hot Meteorite Cobblestone -tile.block_meteor_treasure.name=Meteorite Treasure Block - -item.cape_radiation.name=Cape (Radiation) -item.cape_gasmask.name=Cape (Gas Mask) -item.cape_schrabidium.name=Cape (Schrabidic) -item.cape_hbm.name=Hbm's Cape -item.cape_dafnik.name=Dafnik's Cape -item.cape_lpkukin.name=LPkukin's Cape -item.cape_vertice.name=Lord Vertice's Cape -item.cape_codered_.name=codered_'s Cape -item.cape_ayy.name=Ayy's Cape -item.cape_nostalgia.name=DrNostalgia's Cape - -tile.machine_converter_he_rf.name=HE to RF Converter -tile.machine_converter_rf_he.name=RF to HE Converter -tile.machine_transformer.name=10k-20Hz Transformer -tile.machine_transformer_dnt.name=DNT-20Hz Transformer -tile.machine_transformer_20.name=10k-1Hz Transformer -tile.machine_transformer_dnt_20.name=DNT-1Hz Transformer - -tile.vent_chlorine.name=Chlorine Vent -tile.vent_cloud.name=Cloud Vent -tile.vent_pink_cloud.name=Pink Cloud Vent - -tile.absorber.name=Radiation Absorber -tile.absorber_red.name=Enhanced Radiation Absorber -tile.absorber_green.name=Advanced Radiation Absorber -tile.absorber_pink.name=Elite Radiation Absorber -tile.decon.name=Player Decontaminator - -item.schrabidium_hammer.name=Schrabidium Hammer -item.shimmer_sledge.name=Shimmer Sledge -item.shimmer_axe.name=Shimmer Axe -item.euphemium_stopper.name=Stopper -item.matchstick.name=Matchstick -item.remote.name=Broken Remote - -item.shimmer_head.name=Heavy Hammer Head -item.shimmer_axe_head.name=Heavy Axe Head -item.shimmer_handle.name=Reinforced Polymer Handle - -item.redcoil_capacitor.name=Redcoil Capacitor -item.detonator.name=Detonator -item.detonator_multi.name=Multi Detonator -item.detonator_laser.name=Laser Detonator -item.detonator_deadman.name=Dead Man's Detonator -item.detonator_de.name=Dead Man's Explosive -item.crate_caller.name=Supply Drop Requester -item.bomb_caller.name=Airstrike Designator -item.meteor_remote.name=Meteorite Remote - -item.ingot_hes.name=Highly Enriched Schrabidium Fuel Ingot -item.ingot_les.name=Low Enriched Schrabidium Fuel Ingot -item.nugget_hes.name=Highly Enriched Schrabidium Fuel Nugget -item.nugget_les.name=Low Enriched Schrabidium Fuel Nugget - -item.pellet_schrabidium.name=Pure Schrabidium Watz Pellet -item.pellet_hes.name=HES Watz Pellet -item.pellet_mes.name=MES Watz Pellet -item.pellet_les.name=LES Watz Pellet -item.pellet_beryllium.name=Beryllium Moderator Pellet -item.pellet_neptunium.name=Neptunium Watz Pellet -item.pellet_lead.name=Lead Reflector Pellet -item.pellet_advanced.name=Advanced Watz Performance Improver - -item.titanium_filter.name=Titanium Filter - -tile.mud_block.name=Poisonous Mud -fluid.mud_fluid=Poisonous Mud -item.bucket_mud.name=Bucket of Poisonous Mud -tile.acid_block.name=Acid -fluid.acid_fluid=Acid -item.bucket_acid.name=Bucket of Acid -tile.toxic_block.name=Stereotypical Green Ooze -fluid.toxic_fluid=Stereotypical Green Ooze -item.bucket_toxic.name=Bucket of Stereotypical Green Ooze -item.tank_waste_0.name=Mud Container -item.tank_waste_1.name=Mud Container -item.tank_waste_2.name=Mud Container -item.tank_waste_3.name=Mud Container -item.tank_waste_4.name=Mud Container -item.tank_waste_5.name=Mud Container -item.tank_waste_6.name=Mud Container -item.tank_waste_7.name=Mud Container -item.tank_waste_8.name=Mud Container - -item.can_empty.name=Empty Can -item.can_smart.name='Smart' Energy Drink -item.can_creature.name='Creature' Energy Drink -item.can_redbomb.name='Red Bomb' Energy Drink -item.can_mrsugar.name='Dr. Sugar' Soft Drink -item.can_overcharge.name=Overcharge Delirium XT -item.can_luna.name=Black Mesa Luna - Dark Cola -item.bottle_empty.name=Empty Bomb-Shaped Bottle -item.bottle_nuka.name=Bottle of Nuka Cola -item.bottle_cherry.name=Bottle of Nuka Cherry -item.bottle_quantum.name=Bottle of Nuka Cola Quantum -item.bottle_sparkle.name=Bottle of S~Cola -item.bottle_rad.name=Bottle of S~Cola RAD -item.bottle2_empty.name=Empty Bottle -item.bottle2_korl.name=Korl -item.bottle2_fritz.name=Fritz Cola -item.bottle2_korl_special.name=The First Korl -item.bottle2_fritz_special.name=The First Fritz Cola -item.bottle2_sunset.name=Sunset Sarsaparilla -item.chocolate_milk.name=Chocolate Milk -item.cap_nuka.name=Nuka Cola Bottle Cap -item.cap_quantum.name=Nuka Cola Quantum Bottle Cap -item.cap_sparkle.name=S~Cola Bottle Cap -item.cap_rad.name=S~Cola RAD Bottle Cap -item.cap_korl.name=Korl Bottle Cap -item.cap_fritz.name=Fritz Cola Bottle Cap -item.cap_sunset.name=Sunset Sarsaparilla Bottle Cap -item.cap_star.name=Sunset Sarsaparilla Star Cap -item.ring_pull.name=Ring Pull - -item.canteen_13.name=Vault 13 Canteen -item.canteen_vodka.name=Stylish Flask - -item.bottle_opener.name=Hbm's Own Self-Made Bottle Opener - -item.blades_aluminium.name=Aluminium Shredder Blades -item.blades_gold.name=Golden Shredder Blades -item.blades_iron.name=Iron Shredder Blades -item.blades_steel.name=Steel Shredder Blades -item.blades_titanium.name=Titanium Shredder Blades -item.blades_advanced_alloy.name=Advanced Shredder Blades -item.blades_combine_steel.name=CMB Shredder Blades -item.blades_schrabidium.name=Schrabidium Shredder Blades - -item.stamp_stone_flat.name=Flat Stamp (Stone) -item.stamp_stone_plate.name=Plate Stamp (Stone) -item.stamp_stone_wire.name=Wire Stamp (Stone) -item.stamp_stone_circuit.name=Circuit Stamp (Stone) -item.stamp_iron_flat.name=Flat Stamp (Iron) -item.stamp_iron_plate.name=Plate Stamp (Iron) -item.stamp_iron_wire.name=Wire Stamp (Iron) -item.stamp_iron_circuit.name=Circuit Stamp (Iron) -item.stamp_steel_flat.name=Flat Stamp (Steel) -item.stamp_steel_plate.name=Plate Stamp (Steel) -item.stamp_steel_wire.name=Wire Stamp (Steel) -item.stamp_steel_circuit.name=Circuit Stamp (Steel) -item.stamp_titanium_flat.name=Flat Stamp (Titanium) -item.stamp_titanium_plate.name=Plate Stamp (Titanium) -item.stamp_titanium_wire.name=Wire Stamp (Titanium) -item.stamp_titanium_circuit.name=Circuit Stamp (Titanium) -item.stamp_obsidian_flat.name=Flat Stamp (Obsidian) -item.stamp_obsidian_plate.name=Plate Stamp (Obsidian) -item.stamp_obsidian_wire.name=Wire Stamp (Obsidian) -item.stamp_obsidian_circuit.name=Circuit Stamp (Obsidian) -item.stamp_schrabidium_flat.name=Flat Stamp (Schrabidium) -item.stamp_schrabidium_plate.name=Plate Stamp (Schrabidium) -item.stamp_schrabidium_wire.name=Wire Stamp (Schrabidium) -item.stamp_schrabidium_circuit.name=Circuit Stamp (Schrabidium) -item.stamp_357.name=.357 Magnum Stamp -item.stamp_44.name=.44 Magnum Stamp -item.stamp_9.name=Small Caliber Stamp -item.stamp_50.name=Large Caliber Stamp - -item.part_lithium.name=Box of Lithium Dust -item.part_beryllium.name=Box of Beryllium Dust -item.part_carbon.name=Box of Carbon Dust -item.part_copper.name=Box of Copper Dust -item.part_plutonium.name=Box of Plutonium Dust - -item.rune_blank.name=Blank Catalyst Matrix -item.rune_isa.name=Cool Catalyst Matrix -item.rune_dagaz.name=Balanced Catalyst Matrix -item.rune_hagalaz.name=Rough Catalyst Matrix -item.rune_jera.name=Multiplicative Catalyst Matrix -item.rune_thurisaz.name=Additive Catalyst Matrix - -item.ams_catalyst_blank.name=Blank Reaction Catalyst -item.ams_catalyst_aluminium.name=Aluminium Reaction Catalyst -item.ams_catalyst_beryllium.name=Beryllium Reaction Catalyst -item.ams_catalyst_caesium.name=Caeseium Reaction Catalyst -item.ams_catalyst_cerium.name=Cerium Reaction Catalyst -item.ams_catalyst_cobalt.name=Cobalt Reaction Catalyst -item.ams_catalyst_copper.name=Copper Reaction Catalyst -item.ams_catalyst_euphemium.name=Euphemium Reaction Catalyst -item.ams_catalyst_iron.name=Iron Reaction Catalyst -item.ams_catalyst_lithium.name=Lithium Reaction Catalyst -item.ams_catalyst_niobium.name=Niobium Reaction Catalyst -item.ams_catalyst_strontium.name=Strontium Reaction Catalyst -item.ams_catalyst_thorium.name=Thorium Reaction Catalyst -item.ams_catalyst_tungsten.name=Tungsten Reaction Catalyst -item.ams_catalyst_schrabidium.name=Schrabidium Reaction Catalyst -item.ams_catalyst_dineutronium.name=Dineutronium Reaction Catalyst - -item.ams_focus_blank.name=Blank Stabilizer Focus -item.ams_focus_limiter.name=Limiting Stabilizer Focus -item.ams_focus_booster.name=Boosting Stabilizer Focus - -item.ams_muzzle.name=Ray-Emission Muzzle - -item.ams_core_sing.name=Vibrant Singularity (AMS Core) -item.ams_core_wormhole.name=Tiny Wormhole (AMS Core) -item.ams_core_eyeofharmony.name=Eye of Harmony (AMS Core) -item.ams_core_thingy.name=Thingy (AMS Core) - -item.crystal_energy.name=Energy Crystal -item.pellet_coolant.name=Coolant Cluster - -item.linker.name=Telelinker -item.reactor_sensor.name=Reactor Remote Sensor -item.oil_detector.name=Oil Reservoir Detector -item.geiger_counter.name=Handheld Geiger Counter -tile.geiger.name=Geiger Counter -item.survey_scanner.name=Survey Scanner - -item.thermo_element.name=Thermoelectric Element -item.limiter.name=Generator Limiter - -item.multitool_dig.name=Power Fist (Digging Claw) -item.multitool_silk.name=Power Fist (Silk Touch Claw) -item.multitool_ext.name=Power Fist (Ore Extractor) -item.multitool_miner.name=Power Fist (Extracting Mining Laser) -item.multitool_hit.name=Power Fist (Fist) -item.multitool_beam.name=Power Fist (Zapper) -item.multitool_sky.name=Power Fist (Crack the Sky) -item.multitool_mega.name=Power Fist (Super Punch) -item.multitool_joule.name=Power Fist (Giga Joule) -item.multitool_decon.name=Power Fist (Decontaminator) - -item.australium_iii.name=Mark III Life Extender -item.australium_iv.name=Mark IV Life Extender -item.australium_v.name=Mark V Life Extender - -item.weapon_saw.name=Doctor Assisted Homicide -item.weapon_bat.name=Richard's Default -item.weapon_bat_nail.name=The Cliché -item.weapon_golf_club.name=Russian Mobster's Club -item.weapon_pipe_rusty.name=The Attitude Adjuster -item.weapon_pipe_lead.name=The Manual Override -item.reer_graar.name=The Reer Graar - -item.letter.name=Express Mail -item.polaroid.name=The Polaroid -item.glitch.name=Glitch -item.book_secret.name=3-596-50802-9 -item.book_of_.name=The Book of -item.burnt_bark.name=Burnt Bark - -item.crystal_horn.name=Crystal Horn -item.crystal_charred.name=Charred Crystal -item.ingot_lanthanium.name=Semi-Stable Lanthanium Ingot -item.ingot_actinium.name=Semi-Stable Actinium Ingot - -tile.dummy_block.name=Dummy Block -tile.dummy_port.name=Dummy Block (Electricity Port) - -item.chopper.name=Hunter Chopper - -item.nothing.name=Nothing - -tile.crystal_virus.name=Dark Crystal -tile.crystal_hardened.name=Hardened Dark Crystal -tile.crystal_pulsar.name=Pulsating Crystal - -tile.taint.name=Taint -tile.residue.name=Cloud Residue -item.powder_cloud.name=Cloud Residue - -tile.cheater_virus.name=Gelid Euphemium -tile.cheater_virus_seed.name=Unstable Euphemium Schrabide Block - -item.mysteryshovel.name=Brittle Spade -tile.ntm_dirt.name=Dirt -item.memory.name=item.null.name \ No newline at end of file diff --git a/src/main/resources/assets/hbm/lang/en_US.lang b/src/main/resources/assets/hbm/lang/en_US.lang index 134cbe9a5..e5c7acb68 100644 --- a/src/main/resources/assets/hbm/lang/en_US.lang +++ b/src/main/resources/assets/hbm/lang/en_US.lang @@ -775,6 +775,7 @@ container.machineMixer=Industrial Mixer container.machineOreSlopper=B.O.P. container.machinePyroOven=Pyrolysis Oven container.machineRefinery=Oil Refinery +container.machineRotaryFurnace=Rotary Furnace container.machineSelenium=Radial Performance Engine container.machineShredder=Shredder container.machineSILEX=SILEX @@ -1534,6 +1535,7 @@ hbmmat.bakelite=Bakelite hbmmat.beryllium=Beryllium hbmmat.bismuth=Bismuth hbmmat.bismuthbronze=Bismuth Bronze +hbmmat.bone=Ivory hbmmat.borax=Borax hbmmat.boron=Boron hbmmat.bscco=BSCCO @@ -1565,6 +1567,7 @@ hbmmat.gold=Gold hbmmat.gold198=Gold-198 hbmmat.graphene=Graphene hbmmat.graphite=Graphite +hbmmat.gunmetal=Gunmetal hbmmat.hematite=Hematite hbmmat.iron=Iron hbmmat.lanthanum=Lanthanium @@ -1625,7 +1628,9 @@ hbmmat.uranium233=Uranium-233 hbmmat.uranium235=Uranium-235 hbmmat.uranium238=Uranium-238 hbmmat.watzmud=Poisonous Mud +hbmmat.weaponsteel=Weapon Steel hbmmat.whitephosphorus=White Phosphorus +hbmmat.wood=Wood hbmmat.workersalloy=Desh hbmmat.wroughtiron=Wroght Iron hbmmat.zirconium=Zirconium @@ -1866,6 +1871,20 @@ item.ammo_shell_apfsds_du.name=240mm APFSDS-DU item.ammo_shell_apfsds_t.name=240mm APFSDS-T item.ammo_shell_explosive.name=240mm HE Shell item.ammo_shell_w9.name=240mm W9 Nuclear Shell +item.ammo_standard.m357_ap.name=.357 Magnum Round (Armor Piercing) +item.ammo_standard.m357_express.name=.357 Magnum Round (FMJ Express) +item.ammo_standard.m357_fmj.name=.357 Magnum Round (Full Metal Jacket) +item.ammo_standard.m357_jhp.name=.357 Magnum Round (Jacketed Hollow Point) +item.ammo_standard.m357_sp.name=.357 Magnum Round (Soft Point) +item.ammo_standard.m44_ap.name=.44 Magnum Round (Armor Piercing) +item.ammo_standard.m44_express.name=.44 Magnum Round (FMJ Express) +item.ammo_standard.m44_fmj.name=.44 Magnum Round (Full Metal Jacket) +item.ammo_standard.m44_jhp.name=.44 Magnum Round (Jacketed Hollow Point) +item.ammo_standard.m44_sp.name=.44 Magnum Round (Soft Point) +item.ammo_standard.stone.name=Ball and Powder +item.ammo_standard.stone_ap.name=Flint and Powder +item.ammo_standard.stone_iron.name=Iron Ball and Powder +item.ammo_standard.stone_shot.name=Shot and Powder item.ammo_stinger_rocket.name=Stinger Rocket item.ammo_stinger_rocket_he.name=Stinger Rocket (HE) item.ammo_stinger_rocket_incendiary.name=Stinger Rocket (Incendiary) @@ -2915,6 +2934,7 @@ item.gun_moist_nugget.name=Mosin-Nagant item.gun_mp.name=Pacifist's Machine Gun item.gun_mp40.name=Submachine Gun item.gun_mp40_ammo.name=Submachine Gun Round (LEGACY) +item.gun_pepperbox.name=Pepperbox item.gun_pm_ammo.name=Small Propellantless Machine Gun Round item.gun_mymy.name=Nietes item.gun_osipr.name=Overwatch Standard Issue Pulse Rifle @@ -3621,6 +3641,8 @@ item.page_of_.page6.name=Page 6 item.page_of_.page7.name=Page 7 item.page_of_.page8.name=Page 8 item.pancake.name=Pancake made from Scrap Metal, Nails and Gem Dust +item.part_barrel_heavy.name=Heavy %s Barrel +item.part_barrel_light.name=Light %s Barrel item.part_beryllium.name=Box of Beryllium Dust item.part_carbon.name=Box of Carbon Dust item.part_copper.name=Box of Copper Dust @@ -3629,8 +3651,13 @@ item.part_generic.lde.name=Low-Density Element item.part_generic.piston_electric.name=Electric Piston item.part_generic.piston_hydraulic.name=Hydraulic Piston item.part_generic.piston_pneumatic.name=Pneumatic Piston +item.part_grip.name=%s Grip item.part_lithium.name=Box of Lithium Dust +item.part_mechanism.name=%s Mechanism item.part_plutonium.name=Box of Plutonium Dust +item.part_receiver_heavy.name=Heavy %s Receiver +item.part_receiver_light.name=Light %s Receiver +item.part_stock.name=%s Stock item.particle_aelectron.name=Positron Capsule item.particle_amat.name=Antimatter Capsule item.particle_aproton.name=Antiproton Capsule @@ -5451,6 +5478,7 @@ tile.machine_reactor.name=Breeding Reactor tile.machine_reactor_small.name=Research Reactor tile.machine_refinery.name=Oil Refinery tile.machine_reix_mainframe.name=Rei-X Mainframe (WIP) +tile.machine_rotary_furnace.name=Rotary Furnace tile.machine_rtg_blue.name=Convection Generator tile.machine_rtg_cyan.name=Schrabidium Decay Generator (WIP) tile.machine_rtg_furnace_off.name=RTG Furnace diff --git a/src/main/resources/assets/hbm/lang/ns_OC.lang b/src/main/resources/assets/hbm/lang/ns_OC.lang deleted file mode 100644 index a54936873..000000000 --- a/src/main/resources/assets/hbm/lang/ns_OC.lang +++ /dev/null @@ -1,2963 +0,0 @@ -language.name=Newspeak -language.region=Oceania -language.code=ns_OC - -gui.done=Done -gui.cancel=Abort -gui.back=Back -gui.toMenu=Back to Selectfield -gui.up=Up -gui.down=Down -gui.yes=Yes -gui.no=No - -translation.test.none=Hello, world! -translation.test.complex=Prefix, %s%2$s again %s and %1$s lastly %s and also %1$s again! -translation.test.escape=%%s %%%s %%%%s %%%%%s -translation.test.invalid=hi % -translation.test.invalid2=hi % s -translation.test.args=%s %s -translation.test.world=world - -menu.game=Selectfield -menu.singleplayer=Loneplay -menu.multiplayer=Manyplay -menu.online=Gameland -menu.options=Settings -menu.quit=Leave Playings -menu.returnToMenu=Save and Return -menu.disconnect=Leave -menu.returnToGame=Back to Playings -menu.switchingLevel=Switching worlds -menu.generatingLevel=Building world -menu.loadingLevel=Loading world -menu.generatingTerrain=Building land -menu.convertingLevel=Newbuilding world -menu.simulating=Virtualplaying the world -menu.respawning=Reliving -menu.shareToLan=Open to nearby Players - -selectWorld.title=Select World -selectWorld.empty=empty -selectWorld.world=World -selectWorld.select=Play World -selectWorld.create=Build World -selectWorld.recreate=Newbuild -selectWorld.createDemo=Play Demoworld -selectWorld.delete=Destroy -selectWorld.rename=Newname -selectWorld.deleteQuestion=Are you of conscience to destroy world? -selectWorld.deleteWarning=will be vaporized for longtime! -selectWorld.deleteButton=Destroy -selectWorld.renameButton=Newname -selectWorld.renameTitle=Newname World -selectWorld.conversion=Mut be newbuilded! -selectWorld.newWorld=New World -selectWorld.newWorld.copyOf=Dupe of %s -selectWorld.enterName=World Name -selectWorld.resultFolder=Will be saved in: -selectWorld.enterSeed=Code for Worldbuilder -selectWorld.seedInfo=Keep empty for random code -selectWorld.cheats=Crimeplay -selectWorld.customizeType=Custommake - -createWorld.customize.presets=Presets -createWorld.customize.presets.title=Select Preset -createWorld.customize.presets.select=Use Preset -createWorld.customize.presets.share=Do you intend to sharegive present? Copy text of box! -createWorld.customize.presets.list=Here are worlds maked by the Party: -createWorld.customize.flat.title=Flatworld making -createWorld.customize.flat.tile=Layerstuff -createWorld.customize.flat.height=Height -createWorld.customize.flat.addLayer=Make Layer -createWorld.customize.flat.editLayer=Remake Layer -createWorld.customize.flat.removeLayer=Delete Layer -createWorld.customize.flat.layer.top=Top - %d -createWorld.customize.flat.layer=%d -createWorld.customize.flat.layer.bottom=Bottom - %d - -gameMode.survival=Livings Mode -gameMode.creative=Crimeplay Mode -gameMode.adventure=Pluslivings Mode -gameMode.hardcore=Doublepluslivings Mode -gameMode.changed=Your mode was set anew! - -selectWorld.gameMode=Playings Mode -selectWorld.gameMode.survival=Livings -selectWorld.gameMode.survival.line1=Look for groundstuffs, build worktools, -selectWorld.gameMode.survival.line2=prevent unliving. -selectWorld.gameMode.creative=Crimeplay -selectWorld.gameMode.creative.line1=Unlimited buildstuffs, flyability, -selectWorld.gameMode.creative.line2=delete blocks shorttimely -selectWorld.gameMode.hardcore=Doublepluslivings -selectWorld.gameMode.hardcore.line1=Doubleplusplayingshardness, -selectWorld.gameMode.hardcore.line2=longtime unliving -selectWorld.gameMode.adventure=Pluslivings -selectWorld.gameMode.adventure.line1=Buildstuffs unbuildwise, -selectWorld.gameMode.adventure.line2=undeletewise -selectWorld.moreWorldOptions=Plusworldsettings... -selectWorld.mapFeatures=Build Buildings: -selectWorld.mapFeatures.info=Cities, prisons, etc. -selectWorld.mapType=World Type: -selectWorld.mapType.normal=Normal -selectWorld.allowCommands=Allow Crimeplay: -selectWorld.allowCommands.info=Crimeplay to steal material, /give -selectWorld.hardcoreMode=Doublepluslivings: -selectWorld.hardcoreMode.info=World is deleted on unliving -selectWorld.bonusItems=Pluscrate: - -generator.default=Default -generator.flat=Flatworld -generator.largeBiomes=Doubleplus Setting -generator.amplified=Tripleplus Setting - -generator.amplified.info=For doubleplusgood caclulators only! - -selectServer.title=Select Multiplayings -selectServer.empty=empty -selectServer.select=Join Multiplayings -selectServer.direct=Instant Line -selectServer.edit=Newmake -selectServer.delete=Delete -selectServer.add=Make Multiplayings -selectServer.defaultName=Minecraft Multiplayings -selectServer.deleteQuestion=Are you of conscience to destroy multiplayings? -selectServer.deleteWarning=will be vaporized for longtime! -selectServer.deleteButton=Delete -selectServer.refresh=Renew -selectServer.hiddenAddress=(Unshowing) -addServer.title=Remake Multiplayings Info -addServer.enterName=Multiplayings Name -addServer.enterIp=Multiplayings Code -addServer.add=Done -addServer.hideAddress=Unshow Code -addServer.resourcePack=Multiplayings Lookpackage -addServer.resourcePack.enabled=Enabled -addServer.resourcePack.disabled=Disabled -addServer.resourcePack.prompt=Prompt -lanServer.title=Local Multiplayings -lanServer.scanning=Finding games in local space -lanServer.start=Make local nultiplayings -lanServer.otherPlayers=Settings for Players -mcoServer.title=Minecraft Internet Multiplayings - -multiplayer.title=Play Multiplayings -multiplayer.connect=Multiplay -multiplayer.info1=Minecraft Multiplayings unmade, -multiplayer.info2=testing progressing.... -multiplayer.ipinfo=Enter IP Code of Multiplayings to Multiplay -multiplayer.texturePrompt.line1=Multiplay orders you to playings with lookpackage -multiplayer.texturePrompt.line2=Are you of conscience to load lookpackage? -multiplayer.downloadingTerrain=Loadings land... -multiplayer.downloadingStats=Loading achievings... -multiplayer.stopSleeping=Unsleep -multiplayer.player.joined=%s joined multiplayings -multiplayer.player.joined.renamed=%s (unnamed %s) joined multiplayings -multiplayer.player.left=%s unjoined multiplayings - -chat.cannotSend=Unsending text -chat.type.text=<%s> %s -chat.type.emote=* %s %s -chat.type.announcement=[%s] %s -chat.type.admin=[%s: %s] -chat.type.achievement=%s maded achievings %s -chat.link.confirm=Are you of conscience to load internet page? -chat.link.warning=Unload untrusty internet pages! -chat.copy=Remaking to Copyboard -chat.link.confirmTrusted=Are you opening internet code or remaking to copyboard? -chat.link.open=Open in internet window - -chat.stream.text=(%s) <%s> %s -chat.stream.emote=(%s) * %s %s - -menu.playdemo=Play Demo World -menu.resetdemo=Remake Demo World - -demo.day.1=This demo will vaporize in five days! -demo.day.2=Day Two -demo.day.3=Day Three -demo.day.4=Day Four -demo.day.5=Day Five!! -demo.day.warning=Demo will vaporize soonwise! -demo.day.6=Demo ended! Make screenpicture with F2! -demo.reminder=Demo ended, buy full playing or vaporize this world! -demo.remainingTime=Remaining time: %s -demo.demoExpired=Demo time's up! -demo.help.movement=Use %1$s, %2$s, %3$s, %4$s and and mouse to move. -demo.help.movementShort=Move by pressing %1$s, %2$s, %3$s, %4$s -demo.help.movementMouse=Look around using mouse -demo.help.jump=Jump by pressing %1$s -demo.help.inventory=Use %1$s to open material storage! -demo.help.title=Minecraft Demo Mode -demo.help.fullWrapped=This demo will vaporize in 5 Minecraft days (~1 hour and 40 minutes) -demo.help.buy=Pay up! -demo.help.later=Keep playing! - -connect.connecting=Joining multiplayings... -connect.authorizing=Logging in... -connect.failed=Unjoined to this multiplaying! - -disconnect.genericReason=%s -disconnect.disconnected=Unjoined by Multiplaying -disconnect.lost=Unjoined -disconnect.kicked=Was vaporized from multiplayings -disconnect.timeout=Ran out of time -disconnect.closed=Joining deleted -disconnect.loginFailed=Unable joining -disconnect.loginFailedInfo=Unable joining: %s -disconnect.loginFailedInfo.serversUnavailable=Authjoinings unable due to internet rebuilding -disconnect.loginFailedInfo.invalidSession=Unsession (restart minecraft) -disconnect.quitting=Unplaying -disconnect.endOfStream=End of internet -disconnect.overflow=Buffer unliving -disconnect.spam=Vaporized for Thoughtcrimes - -soundCategory.master=Party Loundness -soundCategory.music=Music Louness -soundCategory.record=Note Loudness -soundCategory.weather=Weather Loudness -soundCategory.hostile=Enemy Loudness -soundCategory.neutral=Ally Loudness -soundCategory.player=Players Loudness -soundCategory.block=Buildstuffs Loudness -soundCategory.ambient=Ominous Loudness - -record.nowPlaying=Musicplays: %s - -options.off=OFF -options.on=ON -options.visible=Shown -options.hidden=Unshown -options.title=Settings -options.controls=Control... -options.video=Seeing Settings... -options.language=Speak... -options.stream=Sending Settings... -options.sounds=Loudness... -options.sounds.title=Loudness Settigns -options.languageWarning=Speakwork not 100% precise -options.videoTitle=Seeing Settings -options.music=Music -options.sound=Noise -options.invertMouse=Unmove Mouse -options.fov=FOV -options.fov.min=Normal -options.fov.max=Real Oceanian -options.saturation=Saturation -options.gamma=Brightness -options.gamma.min=Unright -options.gamma.max=Bright -options.sensitivity=Movespeed -options.sensitivity.min=Doubleplusunspeedwise -options.sensitivity.max=Doubleplusspeedwise -options.renderDistance=Seeing Distance -options.renderDistance.tiny=Plusunlarge -options.renderDistance.short=Unlarge -options.renderDistance.normal=Normal -options.renderDistance.far=Large -options.viewBobbing=Victory Gin -options.ao=Light Smoothness -options.ao.off=OFF -options.ao.min=Unsmooth -options.ao.max=Smooth -options.anaglyph=3D Anaglyph -options.framerateLimit=Max Speed -options.framerateLimit.max=Unlimited Speed -options.difficulty=Game Hardness -options.difficulty.peaceful=Armistice -options.difficulty.easy=Unhard -options.difficulty.normal=Hard -options.difficulty.hard=Plushard -options.difficulty.hardcore=Doubleplushard -options.graphics=Looking -options.graphics.fancy=Good -options.graphics.fast=Fast -options.guiScale=GUI Largeness -options.guiScale.auto=Auto -options.guiScale.small=Unlarge -options.guiScale.normal=Normal -options.guiScale.large=Large -options.advancedOpengl=Doubleplus OpenGL -options.fboEnable=Enable FBOs -options.postProcessEnable=Enable Post-Processing -options.aoDesc0=Enable faux ambient occlusion on blocks. -options.aoDesc1= -options.framerateLimitDesc0=Select maximum fastness: -options.framerateLimitDesc1=35fps, 120fps, or 200+fps. -options.viewBobbingDesc0=Enables drunkenness -options.viewBobbingDesc1= -options.renderCloudsDesc0=Enables drawing of skyclouds -options.renderCloudsDesc1= -options.graphicsDesc0='Fancy': Doubleplusgood looking -options.graphicsDesc1='Fast': For ungood calculators -options.renderDistanceDesc0=Maximum looking largeness. Unlarge -options.renderDistanceDesc1=numbers work better on ungood calculators -options.particlesDesc0=Sets plentifulness of looking pieces -options.particlesDesc1=Unmany looking pieces work better on ungood calculators - - - - - - - - -options.advancedOpenglDesc0=Enables occlusion queries. On AMD and Intel -options.advancedOpenglDesc1=hardware, this may decrease performance. -options.fboEnableDesc0=Enables the use of Framebuffer Objects. -options.fboEnableDesc1=Necessary for certain Minecraft features. -options.postProcessEnableDesc0=Enables post-processing. Disabling will -options.postProcessEnableDesc1=result in reduction in Awesome Levels. -options.renderClouds=Clouds -options.qualityButton=Video Quality Settings... -options.qualityVideoTitle=Video Quality Settings -options.performanceButton=Video Performance Settings... -options.performanceVideoTitle=Video Performance Settings -options.advancedButton=Advanced Video Settings... -options.advancedVideoTitle=Advanced Video Settings -options.postButton=Post-Processing Settings... -options.postVideoTitle=Post-Processing Settings -options.farWarning1=A 64 bit Java installation is recommended -options.farWarning2=for 'Far' render distance (you have 32 bit) -options.particles=Particles -options.particles.all=All -options.particles.decreased=Decreased -options.particles.minimal=Minimal -options.multiplayer.title=Multiplayer Settings... -options.chat.title=Chat Settings... -options.chat.visibility=Chat -options.chat.visibility.full=Shown -options.chat.visibility.system=Commands Only -options.chat.visibility.hidden=Hidden -options.chat.color=Colors -options.chat.opacity=Opacity -options.chat.links=Web Links -options.chat.links.prompt=Prompt on Links -options.chat.scale=Scale -options.chat.width=Width -options.chat.height.focused=Focused Height -options.chat.height.unfocused=Unfocused Height -options.showCape=Show Cape -options.snooper=Allow Snooper -options.snooper.view=Snooper Settings... -options.snooper.title=Machine Specs Collection -options.snooper.desc=We want to collect information about your machine to help improve Minecraft by knowing what we can support and where the biggest problems are. All of this information is completely anonymous and viewable below. We promise we won't do anything bad with this data, but if you want to opt out then feel free to toggle it off! -options.resourcepack=Resource Packs... -options.fullscreen=Fullscreen -options.vsync=Use VSync -options.touchscreen=Touchscreen Mode - -options.mipmapLevels=Mipmap Levels -options.anisotropicFiltering=Anisotropic Filtering -options.forceUnicodeFont=Force Unicode Font - -options.stream.title=Twitch Broadcast Settings -options.stream.bytesPerPixel=Quality -options.stream.micVolumne=Mic Volume -options.stream.micToggleBehavior=Push To -options.stream.mic_toggle.mute=Mute -options.stream.mic_toggle.talk=Talk -options.stream.systemVolume=System Volume -options.stream.kbps=Bandwidth -options.stream.fps=Framerate -options.stream.sendMetadata=Send Metadata -options.stream.compression=Compression -options.stream.compression.low=Low -options.stream.compression.medium=Medium -options.stream.compression.high=High -options.stream.estimation=Estimated resolution: %dx%d -options.stream.changes=You may need to restart your stream for these changes to take place. -options.stream.ingestSelection=Broadcast Server List -options.stream.ingest.title=Twitch Broadcast Servers -options.stream.ingest.reset=Reset Preference -options.stream.chat.title=Twitch Chat Settings -options.stream.chat.enabled=Enable -options.stream.chat.enabled.streaming=Whilst Streaming -options.stream.chat.enabled.always=Always -options.stream.chat.enabled.never=Never -options.stream.chat.userFilter=User Filter -options.stream.chat.userFilter.all=All Viewers -options.stream.chat.userFilter.subs=Subscribers -options.stream.chat.userFilter.mods=Moderators - -title.oldgl1=Old graphics card detected; this may prevent you from -title.oldgl2=playing in the future as OpenGL 2.0 will be required. - -controls.title=Controls -controls.reset=Reset -controls.resetAll=Reset Keys - -key.sprint=Sprint -key.forward=Walk Forwards -key.left=Strafe Left -key.back=Walk Backwards -key.right=Strafe Right -key.jump=Jump -key.inventory=Inventory -key.drop=Drop Item -key.chat=Open Chat -key.sneak=Sneak -key.playerlist=List Players -key.attack=Attack/Destroy -key.use=Use Item/Place Block -key.pickItem=Pick Block -key.mouseButton=Button %1$s -key.command=Open Command -key.screenshot=Take Screenshot -key.togglePerspective=Toggle Perspective -key.smoothCamera=Toggle Cinematic Camera -key.fullscreen=Toggle Fullscreen -key.hotbar.1=Hotbar Slot 1 -key.hotbar.2=Hotbar Slot 2 -key.hotbar.3=Hotbar Slot 3 -key.hotbar.4=Hotbar Slot 4 -key.hotbar.5=Hotbar Slot 5 -key.hotbar.6=Hotbar Slot 6 -key.hotbar.7=Hotbar Slot 7 -key.hotbar.8=Hotbar Slot 8 -key.hotbar.9=Hotbar Slot 9 -key.streamStartStop=Start/Stop Stream -key.streamPauseUnpause=Pause/Unpause Stream -key.streamCommercial=Show Stream Commercials -key.streamToggleMic=Push To Talk/Mute - -key.categories.movement=Movement -key.categories.misc=Miscellaneous -key.categories.multiplayer=Multiplayer -key.categories.gameplay=Gameplay -key.categories.ui=Game Interface -key.categories.inventory=Inventory -key.categories.stream=Streaming - -resourcePack.openFolder=Open resource pack folder -resourcePack.title=Select Resource Packs -resourcePack.available.title=Available Resource Packs -resourcePack.selected.title=Selected Resource Packs -resourcePack.folderInfo=(Place resource pack files here) - -sign.edit=Edit sign message - -book.pageIndicator=Page %1$s of %2$s -book.byAuthor=by %1$s -book.signButton=Sign -book.editTitle=Enter Book Title: -book.finalizeButton=Sign and Close -book.finalizeWarning=Note! When you sign the book, it will no longer be editable. - -tile.stone.name=Stone -tile.hayBlock.name=Hay Bale -tile.grass.name=Grass Block -tile.dirt.default.name=Dirt -tile.dirt.podzol.name=Podzol -tile.stonebrick.name=Cobblestone -tile.wood.name=Wooden Planks -tile.wood.oak.name=Oak Wood Planks -tile.wood.spruce.name=Spruce Wood Planks -tile.wood.birch.name=Birch Wood Planks -tile.wood.jungle.name=Jungle Wood Planks -tile.wood.acacia.name=Acacia Wood Planks -tile.wood.big_oak.name=Dark Oak Wood Planks -tile.sapling.oak.name=Oak Sapling -tile.sapling.spruce.name=Spruce Sapling -tile.sapling.birch.name=Birch Sapling -tile.sapling.jungle.name=Jungle Sapling -tile.sapling.acacia.name=Acacia Sapling -tile.sapling.roofed_oak.name=Dark Oak Sapling -tile.deadbush.name=Dead Bush -tile.bedrock.name=Bedrock -tile.water.name=Water -tile.lava.name=Lava -tile.sand.default.name=Sand -tile.sand.red.name=Red Sand -tile.sandStone.name=Sandstone -tile.sandStone.default.name=Sandstone -tile.sandStone.chiseled.name=Chiseled Sandstone -tile.sandStone.smooth.name=Smooth Sandstone -tile.gravel.name=Gravel -tile.oreGold.name=Gold Ore -tile.oreIron.name=Iron Ore -tile.oreCoal.name=Coal Ore -tile.log.name=Wood -tile.log.oak.name=Oak Wood -tile.log.spruce.name=Spruce Wood -tile.log.birch.name=Birch Wood -tile.log.jungle.name=Jungle Wood -tile.log.acacia.name=Acacia Wood -tile.log.big_oak.name=Dark Oak Wood -tile.leaves.name=Leaves -tile.leaves.oak.name=Oak Leaves -tile.leaves.spruce.name=Spruce Leaves -tile.leaves.birch.name=Birch Leaves -tile.leaves.jungle.name=Jungle Leaves -tile.leaves.acacia.name=Acacia Leaves -tile.leaves.big_oak.name=Dark Oak Leaves -tile.tallgrass.name=Grass -tile.tallgrass.shrub.name=Shrub -tile.tallgrass.grass.name=Grass -tile.tallgrass.fern.name=Fern -tile.sponge.name=Sponge -tile.glass.name=Glass -tile.stainedGlass.name=Stained Glass -tile.stainedGlass.black.name=Black Stained Glass -tile.stainedGlass.red.name=Red Stained Glass -tile.stainedGlass.green.name=Green Stained Glass -tile.stainedGlass.brown.name=Brown Stained Glass -tile.stainedGlass.blue.name=Blue Stained Glass -tile.stainedGlass.purple.name=Purple Stained Glass -tile.stainedGlass.cyan.name=Cyan Stained Glass -tile.stainedGlass.silver.name=Light Gray Stained Glass -tile.stainedGlass.gray.name=Gray Stained Glass -tile.stainedGlass.pink.name=Pink Stained Glass -tile.stainedGlass.lime.name=Lime Stained Glass -tile.stainedGlass.yellow.name=Yellow Stained Glass -tile.stainedGlass.lightBlue.name=Light Blue Stained Glass -tile.stainedGlass.magenta.name=Magenta Stained Glass -tile.stainedGlass.orange.name=Orange Stained Glass -tile.stainedGlass.white.name=White Stained Glass -tile.thinStainedGlass.name=Stained Glass Pane -tile.thinStainedGlass.black.name=Black Stained Glass Pane -tile.thinStainedGlass.red.name=Red Stained Glass Pane -tile.thinStainedGlass.green.name=Green Stained Glass Pane -tile.thinStainedGlass.brown.name=Brown Stained Glass Pane -tile.thinStainedGlass.blue.name=Blue Stained Glass Pane -tile.thinStainedGlass.purple.name=Purple Stained Glass Pane -tile.thinStainedGlass.cyan.name=Cyan Stained Glass Pane -tile.thinStainedGlass.silver.name=Light Gray Stained Glass Pane -tile.thinStainedGlass.gray.name=Gray Stained Glass Pane -tile.thinStainedGlass.pink.name=Pink Stained Glass Pane -tile.thinStainedGlass.lime.name=Lime Stained Glass Pane -tile.thinStainedGlass.yellow.name=Yellow Stained Glass Pane -tile.thinStainedGlass.lightBlue.name=Light Blue Stained Glass Pane -tile.thinStainedGlass.magenta.name=Magenta Stained Glass Pane -tile.thinStainedGlass.orange.name=Orange Stained Glass Pane -tile.thinStainedGlass.white.name=White Stained Glass Pane -tile.thinGlass.name=Glass Pane -tile.cloth.name=Wool -tile.flower1.dandelion.name=Dandelion -tile.flower2.poppy.name=Poppy -tile.flower2.blueOrchid.name=Blue Orchid -tile.flower2.allium.name=Allium -tile.flower2.houstonia.name=Azure Bluet -tile.flower2.tulipRed.name=Red Tulip -tile.flower2.tulipOrange.name=Orange Tulip -tile.flower2.tulipWhite.name=White Tulip -tile.flower2.tulipPink.name=Pink Tulip -tile.flower2.oxeyeDaisy.name=Oxeye Daisy -tile.doublePlant.sunflower.name=Sunflower -tile.doublePlant.syringa.name=Lilac -tile.doublePlant.grass.name=Double Tallgrass -tile.doublePlant.fern.name=Large Fern -tile.doublePlant.rose.name=Rose Bush -tile.doublePlant.paeonia.name=Peony -tile.mushroom.name=Mushroom -tile.blockGold.name=Block of Gold -tile.blockIron.name=Block of Iron -tile.stoneSlab.stone.name=Stone Slab -tile.stoneSlab.sand.name=Sandstone Slab -tile.stoneSlab.wood.name=Wooden Slab -tile.stoneSlab.cobble.name=Cobblestone Slab -tile.stoneSlab.brick.name=Bricks Slab -tile.stoneSlab.smoothStoneBrick.name=Stone Bricks Slab -tile.stoneSlab.netherBrick.name=Nether Brick Slab -tile.stoneSlab.quartz.name=Quartz Slab -tile.woodSlab.oak.name=Oak Wood Slab -tile.woodSlab.spruce.name=Spruce Wood Slab -tile.woodSlab.birch.name=Birch Wood Slab -tile.woodSlab.jungle.name=Jungle Wood Slab -tile.woodSlab.acacia.name=Acacia Wood Slab -tile.woodSlab.big_oak.name=Dark Oak Wood Slab -tile.brick.name=Bricks -tile.tnt.name=TNT -tile.bookshelf.name=Bookshelf -tile.stoneMoss.name=Moss Stone -tile.obsidian.name=Obsidian -tile.torch.name=Torch -tile.fire.name=Fire -tile.mobSpawner.name=Monster Spawner -tile.stairsWood.name=Oak Wood Stairs -tile.stairsWoodSpruce.name=Spruce Wood Stairs -tile.stairsWoodBirch.name=Birch Wood Stairs -tile.stairsWoodJungle.name=Jungle Wood Stairs -tile.stairsWoodAcacia.name=Acacia Wood Stairs -tile.stairsWoodDarkOak.name=Dark Oak Wood Stairs -tile.chest.name=Chest -tile.chestTrap.name=Trapped Chest -tile.redstoneDust.name=Redstone Dust -tile.oreDiamond.name=Diamond Ore -tile.blockCoal.name=Block of Coal -tile.blockDiamond.name=Block of Diamond -tile.workbench.name=Crafting Table -tile.crops.name=Crops -tile.farmland.name=Farmland -tile.furnace.name=Furnace -tile.sign.name=Sign -tile.doorWood.name=Wooden Door -tile.ladder.name=Ladder -tile.rail.name=Rail -tile.goldenRail.name=Powered Rail -tile.activatorRail.name=Activator Rail -tile.detectorRail.name=Detector Rail -tile.stairsStone.name=Stone Stairs -tile.stairsSandStone.name=Sandstone Stairs -tile.lever.name=Lever -tile.pressurePlate.name=Pressure Plate -tile.weightedPlate_light.name=Weighted Pressure Plate (Light) -tile.weightedPlate_heavy.name=Weighted Pressure Plate (Heavy) -tile.doorIron.name=Iron Door -tile.oreRedstone.name=Redstone Ore -tile.notGate.name=Redstone Torch -tile.button.name=Button -tile.snow.name=Snow -tile.woolCarpet.black.name=Black Carpet -tile.woolCarpet.red.name=Red Carpet -tile.woolCarpet.green.name=Green Carpet -tile.woolCarpet.brown.name=Brown Carpet -tile.woolCarpet.blue.name=Blue Carpet -tile.woolCarpet.purple.name=Purple Carpet -tile.woolCarpet.cyan.name=Cyan Carpet -tile.woolCarpet.silver.name=Light Gray Carpet -tile.woolCarpet.gray.name=Gray Carpet -tile.woolCarpet.pink.name=Pink Carpet -tile.woolCarpet.lime.name=Lime Carpet -tile.woolCarpet.yellow.name=Yellow Carpet -tile.woolCarpet.lightBlue.name=Light Blue Carpet -tile.woolCarpet.magenta.name=Magenta Carpet -tile.woolCarpet.orange.name=Orange Carpet -tile.woolCarpet.white.name=Carpet -tile.ice.name=Ice -tile.icePacked.name=Packed Ice -tile.cactus.name=Cactus -tile.clay.name=Clay -tile.clayHardenedStained.black.name=Black Stained Clay -tile.clayHardenedStained.red.name=Red Stained Clay -tile.clayHardenedStained.green.name=Green Stained Clay -tile.clayHardenedStained.brown.name=Brown Stained Clay -tile.clayHardenedStained.blue.name=Blue Stained Clay -tile.clayHardenedStained.purple.name=Purple Stained Clay -tile.clayHardenedStained.cyan.name=Cyan Stained Clay -tile.clayHardenedStained.silver.name=Light Gray Stained Clay -tile.clayHardenedStained.gray.name=Gray Stained Clay -tile.clayHardenedStained.pink.name=Pink Stained Clay -tile.clayHardenedStained.lime.name=Lime Stained Clay -tile.clayHardenedStained.yellow.name=Yellow Stained Clay -tile.clayHardenedStained.lightBlue.name=Light Blue Stained Clay -tile.clayHardenedStained.magenta.name=Magenta Stained Clay -tile.clayHardenedStained.orange.name=Orange Stained Clay -tile.clayHardenedStained.white.name=White Stained Clay -tile.clayHardened.name=Hardened Clay -tile.reeds.name=Sugar cane -tile.jukebox.name=Jukebox -tile.fence.name=Fence -tile.fenceGate.name=Fence Gate -tile.pumpkin.name=Pumpkin -tile.litpumpkin.name=Jack o'Lantern -tile.hellrock.name=Netherrack -tile.hellsand.name=Soul Sand -tile.lightgem.name=Glowstone -tile.portal.name=Portal -tile.cloth.black.name=Black Wool -tile.cloth.red.name=Red Wool -tile.cloth.green.name=Green Wool -tile.cloth.brown.name=Brown Wool -tile.cloth.blue.name=Blue Wool -tile.cloth.purple.name=Purple Wool -tile.cloth.cyan.name=Cyan Wool -tile.cloth.silver.name=Light Gray Wool -tile.cloth.gray.name=Gray Wool -tile.cloth.pink.name=Pink Wool -tile.cloth.lime.name=Lime Wool -tile.cloth.yellow.name=Yellow Wool -tile.cloth.lightBlue.name=Light Blue Wool -tile.cloth.magenta.name=Magenta Wool -tile.cloth.orange.name=Orange Wool -tile.cloth.white.name=Wool -tile.oreLapis.name=Lapis Lazuli Ore -tile.blockLapis.name=Lapis Lazuli Block -tile.dispenser.name=Dispenser -tile.dropper.name=Dropper -tile.musicBlock.name=Note Block -tile.cake.name=Cake -tile.bed.name=Bed -tile.bed.occupied=This bed is occupied -tile.bed.noSleep=You can only sleep at night -tile.bed.notSafe=You may not rest now, there are monsters nearby -tile.bed.notValid=Your home bed was missing or obstructed -tile.lockedchest.name=Locked chest -tile.trapdoor.name=Trapdoor -tile.web.name=Cobweb -tile.stonebricksmooth.name=Stone Bricks -tile.stonebricksmooth.default.name=Stone Bricks -tile.stonebricksmooth.mossy.name=Mossy Stone Bricks -tile.stonebricksmooth.cracked.name=Cracked Stone Bricks -tile.stonebricksmooth.chiseled.name=Chiseled Stone Bricks -tile.monsterStoneEgg.stone.name=Stone Monster Egg -tile.monsterStoneEgg.cobble.name=Cobblestone Monster Egg -tile.monsterStoneEgg.brick.name=Stone Brick Monster Egg -tile.monsterStoneEgg.mossybrick.name=Mossy Stone Brick Monster Egg -tile.monsterStoneEgg.crackedbrick.name=Cracked Stone Brick Monster Egg -tile.monsterStoneEgg.chiseledbrick.name=Chiseled Stone Brick Monster Egg -tile.pistonBase.name=Piston -tile.pistonStickyBase.name=Sticky Piston -tile.fenceIron.name=Iron Bars -tile.melon.name=Melon -tile.stairsBrick.name=Brick Stairs -tile.stairsStoneBrickSmooth.name=Stone Brick Stairs -tile.vine.name=Vines -tile.netherBrick.name=Nether Brick -tile.netherFence.name=Nether Brick Fence -tile.stairsNetherBrick.name=Nether Brick Stairs -tile.netherStalk.name=Nether Wart -tile.cauldron.name=Cauldron -tile.enchantmentTable.name=Enchantment Table -tile.anvil.name=Anvil -tile.anvil.intact.name=Anvil -tile.anvil.slightlyDamaged.name=Slightly Damaged Anvil -tile.anvil.veryDamaged.name=Very Damaged Anvil -tile.whiteStone.name=End Stone -tile.endPortalFrame.name=End Portal -tile.mycel.name=Mycelium -tile.waterlily.name=Lily Pad -tile.dragonEgg.name=Dragon Egg -tile.redstoneLight.name=Redstone Lamp -tile.cocoa.name=Cocoa -tile.enderChest.name=Ender Chest -tile.oreRuby.name=Ruby Ore -tile.oreEmerald.name=Emerald Ore -tile.blockEmerald.name=Block of Emerald -tile.blockRedstone.name=Block of Redstone -tile.tripWire.name=Tripwire -tile.tripWireSource.name=Tripwire Hook -tile.commandBlock.name=Command Block -tile.beacon.name=Beacon -tile.beacon.primary=Primary Power -tile.beacon.secondary=Secondary Power -tile.cobbleWall.normal.name=Cobblestone Wall -tile.cobbleWall.mossy.name=Mossy Cobblestone Wall -tile.carrots.name=Carrots -tile.potatoes.name=Potatoes -tile.daylightDetector.name=Daylight Sensor -tile.netherquartz.name=Nether Quartz Ore -tile.hopper.name=Hopper -tile.quartzBlock.default.name=Block of Quartz -tile.quartzBlock.chiseled.name=Chiseled Quartz Block -tile.quartzBlock.lines.name=Pillar Quartz Block -tile.stairsQuartz.name=Quartz Stairs - -item.nameTag.name=Name Tag -item.leash.name=Lead -item.shovelIron.name=Iron Shovel -item.pickaxeIron.name=Iron Pickaxe -item.hatchetIron.name=Iron Axe -item.flintAndSteel.name=Flint and Steel -item.apple.name=Apple -item.cookie.name=Cookie -item.bow.name=Bow -item.arrow.name=Arrow -item.coal.name=Coal -item.charcoal.name=Charcoal -item.diamond.name=Diamond -item.emerald.name=Emerald -item.ingotIron.name=Iron Ingot -item.ingotGold.name=Gold Ingot -item.swordIron.name=Iron Sword -item.swordWood.name=Wooden Sword -item.shovelWood.name=Wooden Shovel -item.pickaxeWood.name=Wooden Pickaxe -item.hatchetWood.name=Wooden Axe -item.swordStone.name=Stone Sword -item.shovelStone.name=Stone Shovel -item.pickaxeStone.name=Stone Pickaxe -item.hatchetStone.name=Stone Axe -item.swordDiamond.name=Diamond Sword -item.shovelDiamond.name=Diamond Shovel -item.pickaxeDiamond.name=Diamond Pickaxe -item.hatchetDiamond.name=Diamond Axe -item.stick.name=Stick -item.bowl.name=Bowl -item.mushroomStew.name=Mushroom Stew -item.swordGold.name=Golden Sword -item.shovelGold.name=Golden Shovel -item.pickaxeGold.name=Golden Pickaxe -item.hatchetGold.name=Golden Axe -item.string.name=String -item.feather.name=Feather -item.sulphur.name=Gunpowder -item.hoeWood.name=Wooden Hoe -item.hoeStone.name=Stone Hoe -item.hoeIron.name=Iron Hoe -item.hoeDiamond.name=Diamond Hoe -item.hoeGold.name=Golden Hoe -item.seeds.name=Seeds -item.seeds_pumpkin.name=Pumpkin Seeds -item.seeds_melon.name=Melon Seeds -item.melon.name=Melon -item.wheat.name=Wheat -item.bread.name=Bread -item.helmetCloth.name=Leather Cap -item.chestplateCloth.name=Leather Tunic -item.leggingsCloth.name=Leather Pants -item.bootsCloth.name=Leather Boots -item.helmetChain.name=Chain Helmet -item.chestplateChain.name=Chain Chestplate -item.leggingsChain.name=Chain Leggings -item.bootsChain.name=Chain Boots -item.helmetIron.name=Iron Helmet -item.chestplateIron.name=Iron Chestplate -item.leggingsIron.name=Iron Leggings -item.bootsIron.name=Iron Boots -item.helmetDiamond.name=Diamond Helmet -item.chestplateDiamond.name=Diamond Chestplate -item.leggingsDiamond.name=Diamond Leggings -item.bootsDiamond.name=Diamond Boots -item.helmetGold.name=Golden Helmet -item.chestplateGold.name=Golden Chestplate -item.leggingsGold.name=Golden Leggings -item.bootsGold.name=Golden Boots -item.flint.name=Flint -item.porkchopRaw.name=Raw Porkchop -item.porkchopCooked.name=Cooked Porkchop -item.chickenRaw.name=Raw Chicken -item.chickenCooked.name=Cooked Chicken -item.beefRaw.name=Raw Beef -item.beefCooked.name=Steak -item.painting.name=Painting -item.frame.name=Item Frame -item.appleGold.name=Golden Apple -item.sign.name=Sign -item.doorWood.name=Wooden Door -item.bucket.name=Bucket -item.bucketWater.name=Water Bucket -item.bucketLava.name=Lava Bucket -item.minecart.name=Minecart -item.saddle.name=Saddle -item.doorIron.name=Iron Door -item.redstone.name=Redstone -item.snowball.name=Snowball -item.boat.name=Boat -item.leather.name=Leather -item.milk.name=Milk -item.brick.name=Brick -item.clay.name=Clay -item.reeds.name=Sugar Canes -item.paper.name=Paper -item.book.name=Book -item.slimeball.name=Slimeball -item.minecartChest.name=Minecart with Chest -item.minecartFurnace.name=Minecart with Furnace -item.minecartTnt.name=Minecart with TNT -item.minecartHopper.name=Minecart with Hopper -item.minecartCommandBlock.name=Minecart with Command Block -item.egg.name=Egg -item.compass.name=Compass -item.fishingRod.name=Fishing Rod -item.clock.name=Clock -item.yellowDust.name=Glowstone Dust -item.fish.cod.raw.name=Raw Fish -item.fish.salmon.raw.name=Raw Salmon -item.fish.pufferfish.raw.name=Pufferfish -item.fish.clownfish.raw.name=Clownfish -item.fish.cod.cooked.name=Cooked Fish -item.fish.salmon.cooked.name=Cooked Salmon -item.record.name=Music Disc -item.record.13.desc=C418 - 13 -item.record.cat.desc=C418 - cat -item.record.blocks.desc=C418 - blocks -item.record.chirp.desc=C418 - chirp -item.record.far.desc=C418 - far -item.record.mall.desc=C418 - mall -item.record.mellohi.desc=C418 - mellohi -item.record.stal.desc=C418 - stal -item.record.strad.desc=C418 - strad -item.record.ward.desc=C418 - ward -item.record.11.desc=C418 - 11 -item.record.wait.desc=C418 - wait -item.bone.name=Bone -item.dyePowder.black.name=Ink Sac -item.dyePowder.red.name=Rose Red -item.dyePowder.green.name=Cactus Green -item.dyePowder.brown.name=Cocoa Beans -item.dyePowder.blue.name=Lapis Lazuli -item.dyePowder.purple.name=Purple Dye -item.dyePowder.cyan.name=Cyan Dye -item.dyePowder.silver.name=Light Gray Dye -item.dyePowder.gray.name=Gray Dye -item.dyePowder.pink.name=Pink Dye -item.dyePowder.lime.name=Lime Dye -item.dyePowder.yellow.name=Dandelion Yellow -item.dyePowder.lightBlue.name=Light Blue Dye -item.dyePowder.magenta.name=Magenta Dye -item.dyePowder.orange.name=Orange Dye -item.dyePowder.white.name=Bone Meal -item.sugar.name=Sugar -item.cake.name=Cake -item.bed.name=Bed -item.diode.name=Redstone Repeater -item.comparator.name=Redstone Comparator -item.map.name=Map -item.leaves.name=Leaves -item.shears.name=Shears -item.rottenFlesh.name=Rotten Flesh -item.enderPearl.name=Ender Pearl -item.blazeRod.name=Blaze Rod -item.ghastTear.name=Ghast Tear -item.netherStalkSeeds.name=Nether Wart -item.potion.name=Potion -item.emptyPotion.name=Water Bottle -item.goldNugget.name=Gold Nugget -item.glassBottle.name=Glass Bottle -item.spiderEye.name=Spider Eye -item.fermentedSpiderEye.name=Fermented Spider Eye -item.blazePowder.name=Blaze Powder -item.magmaCream.name=Magma Cream -item.cauldron.name=Cauldron -item.brewingStand.name=Brewing Stand -item.eyeOfEnder.name=Eye of Ender -item.speckledMelon.name=Glistering Melon -item.monsterPlacer.name=Spawn -item.expBottle.name=Bottle o' Enchanting -item.fireball.name=Fire Charge -item.writingBook.name=Book and Quill -item.writtenBook.name=Written Book -item.ruby.name=Ruby -item.flowerPot.name=Flower Pot -item.emptyMap.name=Empty Map -item.carrots.name=Carrot -item.carrotGolden.name=Golden Carrot -item.potato.name=Potato -item.potatoBaked.name=Baked Potato -item.potatoPoisonous.name=Poisonous Potato -item.skull.skeleton.name=Skeleton Skull -item.skull.wither.name=Wither Skeleton Skull -item.skull.zombie.name=Zombie Head -item.skull.char.name=Head -item.skull.player.name=%s's Head -item.skull.creeper.name=Creeper Head -item.carrotOnAStick.name=Carrot on a Stick -item.netherStar.name=Nether Star -item.pumpkinPie.name=Pumpkin Pie -item.enchantedBook.name=Enchanted Book -item.fireworks.name=Firework Rocket -item.fireworks.flight=Flight Duration: -item.fireworksCharge.name=Firework Star -item.fireworksCharge.black=Black -item.fireworksCharge.red=Red -item.fireworksCharge.green=Green -item.fireworksCharge.brown=Brown -item.fireworksCharge.blue=Blue -item.fireworksCharge.purple=Purple -item.fireworksCharge.cyan=Cyan -item.fireworksCharge.silver=Light Gray -item.fireworksCharge.gray=Gray -item.fireworksCharge.pink=Pink -item.fireworksCharge.lime=Lime -item.fireworksCharge.yellow=Yellow -item.fireworksCharge.lightBlue=Light Blue -item.fireworksCharge.magenta=Magenta -item.fireworksCharge.orange=Orange -item.fireworksCharge.white=White -item.fireworksCharge.customColor=Custom -item.fireworksCharge.fadeTo=Fade to -item.fireworksCharge.flicker=Twinkle -item.fireworksCharge.trail=Trail -item.fireworksCharge.type.0=Small Ball -item.fireworksCharge.type.1=Large Ball -item.fireworksCharge.type.2=Star-shaped -item.fireworksCharge.type.3=Creeper-shaped -item.fireworksCharge.type.4=Burst -item.fireworksCharge.type=Unknown Shape -item.netherbrick.name=Nether Brick -item.netherquartz.name=Nether Quartz -item.horsearmormetal.name=Iron Horse Armor -item.horsearmorgold.name=Gold Horse Armor -item.horsearmordiamond.name=Diamond Horse Armor - -container.inventory=Inventory -container.hopper=Item Hopper -container.crafting=Crafting -container.dispenser=Dispenser -container.dropper=Dropper -container.furnace=Furnace -container.enchant=Enchant -container.repair=Repair & Name -container.repair.cost=Enchantment Cost: %1$d -container.repair.expensive=Too Expensive! -container.creative=Item Selection -container.brewing=Brewing Stand -container.chest=Chest -container.chestDouble=Large Chest -container.minecart=Minecart -container.enderchest=Ender Chest - -item.dyed=Dyed -item.unbreakable=Unbreakable - -entity.Item.name=Item -entity.XPOrb.name=Experience Orb -entity.SmallFireball.name=Small Fireball -entity.Fireball.name=Fireball - -entity.Arrow.name=Arrow -entity.Snowball.name=Snowball -entity.Painting.name=Painting - -entity.Mob.name=Mob -entity.Monster.name=Monster - -entity.Creeper.name=Creeper -entity.Skeleton.name=Skeleton -entity.Spider.name=Spider -entity.Giant.name=Giant -entity.Zombie.name=Zombie -entity.Slime.name=Slime -entity.Ghast.name=Ghast -entity.PigZombie.name=Zombie Pigman -entity.Enderman.name=Enderman -entity.Silverfish.name=Silverfish -entity.CaveSpider.name=Cave Spider -entity.Blaze.name=Blaze -entity.LavaSlime.name=Magma Cube -entity.MushroomCow.name=Mooshroom -entity.Villager.name=Villager -entity.VillagerGolem.name=Iron Golem -entity.SnowMan.name=Snow Golem -entity.EnderDragon.name=Ender Dragon -entity.WitherBoss.name=Wither -entity.Witch.name=Witch - -entity.Pig.name=Pig -entity.Sheep.name=Sheep -entity.Cow.name=Cow -entity.Chicken.name=Chicken -entity.Squid.name=Squid -entity.Wolf.name=Wolf -entity.Ozelot.name=Ocelot -entity.Cat.name=Cat -entity.Bat.name=Bat -entity.EntityHorse.name=Horse -entity.horse.name=Horse -entity.donkey.name=Donkey -entity.mule.name=Mule -entity.skeletonhorse.name=Skeleton Horse -entity.zombiehorse.name=Zombie Horse - -entity.PrimedTnt.name=Block of TNT -entity.FallingSand.name=Falling Block - -entity.Minecart.name=Minecart -entity.Boat.name=Boat - -entity.Arrow.name=arrow -entity.generic.name=unknown - -death.fell.accident.ladder=%1$s fell off a ladder -death.fell.accident.vines=%1$s fell off some vines -death.fell.accident.water=%1$s fell out of the water -death.fell.accident.generic=%1$s fell from a high place -death.fell.killer=%1$s was doomed to fall -death.fell.assist=%1$s was doomed to fall by %2$s -death.fell.assist.item=%1$s was doomed to fall by %2$s using %3$s -death.fell.finish=%1$s fell too far and was finished by %2$s -death.fell.finish.item=%1$s fell too far and was finished by %2$s using %3$s - -death.attack.inFire=%1$s went up in flames -death.attack.inFire.player=%1$s walked into fire whilst fighting %2$s -death.attack.onFire=%1$s burned to death -death.attack.onFire.player=%1$s was burnt to a crisp whilst fighting %2$s -death.attack.lava=%1$s tried to swim in lava -death.attack.lava.player=%1$s tried to swim in lava to escape %2$s -death.attack.inWall=%1$s suffocated in a wall -death.attack.drown=%1$s drowned -death.attack.drown.player=%1$s drowned whilst trying to escape %2$s -death.attack.starve=%1$s starved to death -death.attack.cactus=%1$s was pricked to death -death.attack.cactus.player=%1$s walked into a cactus whilst trying to escape %2$s -death.attack.generic=%1$s died -death.attack.explosion=%1$s blew up -death.attack.explosion.player=%1$s was blown up by %2$s -death.attack.magic=%1$s was killed by magic -death.attack.wither=%1$s withered away -death.attack.anvil=%1$s was squashed by a falling anvil -death.attack.fallingBlock=%1$s was squashed by a falling block -death.attack.mob=%1$s was slain by %2$s -death.attack.player=%1$s was slain by %2$s -death.attack.player.item=%1$s was slain by %2$s using %3$s -death.attack.arrow=%1$s was shot by %2$s -death.attack.arrow.item=%1$s was shot by %2$s using %3$s -death.attack.fireball=%1$s was fireballed by %2$s -death.attack.fireball.item=%1$s was fireballed by %2$s using %3$s -death.attack.thrown=%1$s was pummeled by %2$s -death.attack.thrown.item=%1$s was pummeled by %2$s using %3$s -death.attack.indirectMagic=%1$s was killed by %2$s using magic -death.attack.indirectMagic.item=%1$s was killed by %2$s using %3$s -death.attack.thorns=%1$s was killed trying to hurt %2$s -death.attack.fall=%1$s hit the ground too hard -death.attack.outOfWorld=%1$s fell out of the world - -deathScreen.respawn=Respawn -deathScreen.deleteWorld=Delete world -deathScreen.titleScreen=Title screen -deathScreen.score=Score -deathScreen.title.hardcore=Game over! -deathScreen.hardcoreInfo=You cannot respawn in hardcore mode! -deathScreen.title=You died! -deathScreen.leaveServer=Leave server -deathScreen.quit.confirm=Are you sure you want to quit? - -potion.effects.whenDrank=When Applied: -potion.empty=No Effects -potion.moveSpeed=Speed -potion.moveSlowdown=Slowness -potion.digSpeed=Haste -potion.digSlowDown=Mining Fatigue -potion.damageBoost=Strength -potion.weakness=Weakness -potion.heal=Instant Health -potion.harm=Instant Damage -potion.jump=Jump Boost -potion.confusion=Nausea -potion.regeneration=Regeneration -potion.resistance=Resistance -potion.fireResistance=Fire Resistance -potion.waterBreathing=Water Breathing -potion.invisibility=Invisibility -potion.blindness=Blindness -potion.nightVision=Night Vision -potion.hunger=Hunger -potion.poison=Poison -potion.wither=Wither -potion.healthBoost=Health Boost -potion.absorption=Absorption -potion.saturation=Saturation - -potion.moveSpeed.postfix=Potion of Swiftness -potion.moveSlowdown.postfix=Potion of Slowness -potion.digSpeed.postfix=Potion of Haste -potion.digSlowDown.postfix=Potion of Dullness -potion.damageBoost.postfix=Potion of Strength -potion.weakness.postfix=Potion of Weakness -potion.heal.postfix=Potion of Healing -potion.harm.postfix=Potion of Harming -potion.jump.postfix=Potion of Leaping -potion.confusion.postfix=Potion of Nausea -potion.regeneration.postfix=Potion of Regeneration -potion.resistance.postfix=Potion of Resistance -potion.fireResistance.postfix=Potion of Fire Resistance -potion.waterBreathing.postfix=Potion of Water Breathing -potion.invisibility.postfix=Potion of Invisibility -potion.blindness.postfix=Potion of Blindness -potion.nightVision.postfix=Potion of Night Vision -potion.hunger.postfix=Potion of Hunger -potion.poison.postfix=Potion of Poison -potion.wither.postfix=Potion of Decay -potion.healthBoost.postfix=Potion of Health Boost -potion.absorption.postfix=Potion of Absorption -potion.saturation.postfix=Potion of Saturation - -potion.potency.0= -potion.potency.1=II -potion.potency.2=III -potion.potency.3=IV - -potion.prefix.grenade=Splash -potion.prefix.mundane=Mundane -potion.prefix.uninteresting=Uninteresting -potion.prefix.bland=Bland -potion.prefix.clear=Clear -potion.prefix.milky=Milky -potion.prefix.diffuse=Diffuse -potion.prefix.artless=Artless -potion.prefix.thin=Thin -potion.prefix.awkward=Awkward -potion.prefix.flat=Flat -potion.prefix.bulky=Bulky -potion.prefix.bungling=Bungling -potion.prefix.buttered=Buttered -potion.prefix.smooth=Smooth -potion.prefix.suave=Suave -potion.prefix.debonair=Debonair -potion.prefix.thick=Thick -potion.prefix.elegant=Elegant -potion.prefix.fancy=Fancy -potion.prefix.charming=Charming -potion.prefix.dashing=Dashing -potion.prefix.refined=Refined -potion.prefix.cordial=Cordial -potion.prefix.sparkling=Sparkling -potion.prefix.potent=Potent -potion.prefix.foul=Foul -potion.prefix.odorless=Odorless -potion.prefix.rank=Rank -potion.prefix.harsh=Harsh -potion.prefix.acrid=Acrid -potion.prefix.gross=Gross -potion.prefix.stinky=Stinky - -enchantment.damage.all=Sharpness -enchantment.damage.undead=Smite -enchantment.damage.arthropods=Bane of Arthropods -enchantment.knockback=Knockback -enchantment.fire=Fire Aspect -enchantment.protect.all=Protection -enchantment.protect.fire=Fire Protection -enchantment.protect.fall=Feather Falling -enchantment.protect.explosion=Blast Protection -enchantment.protect.projectile=Projectile Protection -enchantment.oxygen=Respiration -enchantment.waterWorker=Aqua Affinity -enchantment.digging=Efficiency -enchantment.untouching=Silk Touch -enchantment.durability=Unbreaking -enchantment.lootBonus=Looting -enchantment.lootBonusDigger=Fortune -enchantment.lootBonusFishing=Luck of the Sea -enchantment.fishingSpeed=Lure -enchantment.arrowDamage=Power -enchantment.arrowFire=Flame -enchantment.arrowKnockback=Punch -enchantment.arrowInfinite=Infinity -enchantment.thorns=Thorns - -enchantment.level.1=I -enchantment.level.2=II -enchantment.level.3=III -enchantment.level.4=IV -enchantment.level.5=V -enchantment.level.6=VI -enchantment.level.7=VII -enchantment.level.8=VIII -enchantment.level.9=IX -enchantment.level.10=X - -gui.achievements=Achievements -gui.stats=Statistics - -stats.tooltip.type.achievement=Achievement -stats.tooltip.type.statistic=Statistic -stat.generalButton=General -stat.blocksButton=Blocks -stat.itemsButton=Items -stat.mobsButton=Mobs - -stat.used=Times Used -stat.mined=Times Mined -stat.depleted=Times Depleted -stat.crafted=Times Crafted -stat.entityKills=You killed %d %s -stat.entityKilledBy=%s killed you %d time(s) -stat.entityKills.none=You have never killed %s -stat.entityKilledBy.none=You have never been killed by %s - -stat.startGame=Times played -stat.createWorld=Worlds created -stat.loadWorld=Saves loaded -stat.joinMultiplayer=Multiplayer joins -stat.leaveGame=Games quit - -stat.playOneMinute=Minutes Played - -stat.walkOneCm=Distance Walked -stat.fallOneCm=Distance Fallen -stat.swimOneCm=Distance Swum -stat.flyOneCm=Distance Flown -stat.climbOneCm=Distance Climbed -stat.diveOneCm=Distance Dove -stat.minecartOneCm=Distance by Minecart -stat.boatOneCm=Distance by Boat -stat.pigOneCm=Distance by Pig -stat.horseOneCm=Distance by Horse -stat.jump=Jumps -stat.drop=Items Dropped - -stat.damageDealt=Damage Dealt -stat.damageTaken=Damage Taken -stat.deaths=Number of Deaths -stat.mobKills=Mob Kills -stat.animalsBred=Animals Bred -stat.playerKills=Player Kills -stat.fishCaught=Fish Caught -stat.treasureFished=Treasure Fished -stat.junkFished=Junk Fished - -stat.mineBlock=%1$s Mined -stat.craftItem=%1$s Crafted -stat.useItem=%1$s Used -stat.breakItem=%1$s Depleted - -achievement.get=Achievement get! - -achievement.taken=Taken! -achievement.unknown=??? - -achievement.requires=Requires '%1$s' -achievement.openInventory=Taking Inventory -achievement.openInventory.desc=Press '%1$s' to open your inventory. -achievement.mineWood=Getting Wood -achievement.mineWood.desc=Attack a tree until a block of wood pops out -achievement.buildWorkBench=Benchmarking -achievement.buildWorkBench.desc=Craft a workbench with four blocks of planks -achievement.buildPickaxe=Time to Mine! -achievement.buildPickaxe.desc=Use planks and sticks to make a pickaxe -achievement.buildFurnace=Hot Topic -achievement.buildFurnace.desc=Construct a furnace out of eight stone blocks -achievement.acquireIron=Acquire Hardware -achievement.acquireIron.desc=Smelt an iron ingot -achievement.buildHoe=Time to Farm! -achievement.buildHoe.desc=Use planks and sticks to make a hoe -achievement.makeBread=Bake Bread -achievement.makeBread.desc=Turn wheat into bread -achievement.bakeCake=The Lie -achievement.bakeCake.desc=Wheat, sugar, milk and eggs! -achievement.buildBetterPickaxe=Getting an Upgrade -achievement.buildBetterPickaxe.desc=Construct a better pickaxe -achievement.cookFish=Delicious Fish -achievement.cookFish.desc=Catch and cook fish! -achievement.onARail=On A Rail -achievement.onARail.desc=Travel by minecart at least 1 km from where you started -achievement.buildSword=Time to Strike! -achievement.buildSword.desc=Use planks and sticks to make a sword -achievement.killEnemy=Monster Hunter -achievement.killEnemy.desc=Attack and destroy a monster -achievement.killCow=Cow Tipper -achievement.killCow.desc=Harvest some leather -achievement.breedCow=Repopulation -achievement.breedCow.desc=Breed two cows with wheat -achievement.flyPig=When Pigs Fly -achievement.flyPig.desc=Fly a pig off a cliff -achievement.snipeSkeleton=Sniper Duel -achievement.snipeSkeleton.desc=Kill a skeleton with an arrow from more than 50 meters -achievement.diamonds=DIAMONDS! -achievement.diamonds.desc=Acquire diamonds with your iron tools -achievement.diamondsToYou=Diamonds to you! -achievement.diamondsToYou.desc=Throw diamonds at another player. -achievement.portal=We Need to Go Deeper -achievement.portal.desc=Build a portal to the Nether -achievement.ghast=Return to Sender -achievement.ghast.desc=Destroy a Ghast with a fireball -achievement.blazeRod=Into Fire -achievement.blazeRod.desc=Relieve a Blaze of its rod -achievement.potion=Local Brewery -achievement.potion.desc=Brew a potion -achievement.theEnd=The End? -achievement.theEnd.desc=Locate the End -achievement.theEnd2=The End. -achievement.theEnd2.desc=Defeat the Ender Dragon -achievement.spawnWither=The Beginning? -achievement.spawnWither.desc=Spawn the Wither -achievement.killWither=The Beginning. -achievement.killWither.desc=Kill the Wither -achievement.fullBeacon=Beaconator -achievement.fullBeacon.desc=Create a full beacon -achievement.exploreAllBiomes=Adventuring Time -achievement.exploreAllBiomes.desc=Discover all biomes -achievement.enchantments=Enchanter -achievement.enchantments.desc=Use a book, obsidian and diamonds to construct an enchantment table -achievement.overkill=Overkill -achievement.overkill.desc=Deal eight hearts of damage in a single hit -achievement.bookcase=Librarian -achievement.bookcase.desc=Build some bookshelves to improve your enchantment table - -commands.generic.exception=An unknown error occurred while attempting to perform this command -commands.generic.permission=You do not have permission to use this command -commands.generic.syntax=Invalid command syntax -commands.generic.player.notFound=That player cannot be found -commands.generic.notFound=Unknown command. Try /help for a list of commands -commands.generic.num.invalid='%s' is not a valid number -commands.generic.boolean.invalid='%s' is not true or false -commands.generic.num.tooSmall=The number you have entered (%d) is too small, it must be at least %d -commands.generic.num.tooBig=The number you have entered (%d) is too big, it must be at most %d -commands.generic.double.tooSmall=The number you have entered (%.2f) is too small, it must be at least %.2f -commands.generic.double.tooBig=The number you have entered (%.2f) is too big, it must be at most %.2f -commands.generic.usage=Usage: %s -commands.generic.deprecatedId=Warning: Using numeric IDs will not be supported in the future. Please use names, such as '%s' - -commands.setidletimeout.usage=/setidletimeout -commands.setidletimeout.success=Successfully set the idle timeout to %d minutes. -commands.xp.failure.widthdrawXp=Cannot give player negative experience points -commands.xp.success=Given %d experience to %s -commands.xp.success.levels=Given %d levels to %s -commands.xp.success.negative.levels=Taken %d levels from %s -commands.xp.usage=/xp [player] OR /xp L [player] -commands.playsound.usage=/playsound [x] [y] [z] [volume] [pitch] [minimumVolume] -commands.playsound.success=Played sound '%s' to %s -commands.playsound.playerTooFar=Player %s is too far away to hear the sound -commands.give.usage=/give [amount] [data] [dataTag] -commands.give.notFound=There is no such item with ID %d -commands.give.success=Given %s * %d to %s -commands.give.tagError=Data tag parsing failed: %s -commands.summon.usage=/summon [x] [y] [z] [dataTag] -commands.summon.success=Object successfully summoned -commands.summon.failed=Unable to summon object -commands.summon.tagError=Data tag parsing failed: %s -commands.summon.outOfWorld=Cannot summon the object out of the world -commands.testforblock.usage=/testforblock [dataValue] [dataTag] -commands.testforblock.failed.tile=The block at %d,%d,%d is %s (expected: %s). -commands.testforblock.failed.data=The block at %d,%d,%d had the data value of %s (expected: %s). -commands.testforblock.failed.nbt=The block at %d,%d,%d did not have the required NBT keys. -commands.testforblock.failed.tileEntity=The block at %d,%d,%d is not a tile entity and cannot support tag matching. -commands.testforblock.success=Successfully found the block at %d,%d,%d. -commands.testforblock.outOfWorld=Cannot test for block outside of the world -commands.setblock.usage=/setblock [dataValue] [oldBlockHandling] [dataTag] -commands.setblock.success=Block placed -commands.setblock.failed=Unable to place block -commands.setblock.tagError=Data tag parsing failed: %s -commands.setblock.outOfWorld=Cannot place block outside of the world -commands.setblock.notFound=There is no such block with ID/name %s -commands.setblock.noChange=The block couldn't be placed -commands.effect.usage=/effect [seconds] [amplifier] -commands.effect.notFound=There is no such mob effect with ID %d -commands.effect.success=Given %1$s (ID %2$d) * %3$d to %4$s for %5$d seconds -commands.effect.success.removed=Took %1$s from %2$s -commands.effect.success.removed.all=Took all effects from %s -commands.effect.failure.notActive=Couldn't take %1$s from %2$s as they do not have the effect -commands.effect.failure.notActive.all=Couldn't take any effects from %s as they do not have any -commands.enchant.usage=/enchant [level] -commands.enchant.notFound=There is no such enchantment with ID %d -commands.enchant.noItem=The target doesn't hold an item -commands.enchant.cantEnchant=The selected enchantment can't be added to the target item -commands.enchant.cantCombine=%1$s can't be combined with %2$s -commands.enchant.success=Enchanting succeeded -commands.clear.usage=/clear [item] [data] -commands.clear.success=Cleared the inventory of %s, removing %d items -commands.clear.failure=Could not clear the inventory of %s, no items to remove -commands.downfall.usage=/toggledownfall -commands.downfall.success=Toggled downfall -commands.time.usage=/time -commands.time.added=Added %d to the time -commands.time.set=Set the time to %d -commands.players.usage=/list -commands.players.list=There are %d/%d players online: -commands.banlist.ips=There are %d total banned IP addresses: -commands.banlist.players=There are %d total banned players: -commands.banlist.usage=/banlist [ips|players] -commands.kill.usage=/kill -commands.kill.success=Ouch! That looked like it hurt -commands.kick.success=Kicked %s from the game -commands.kick.success.reason=Kicked %s from the game: '%s' -commands.kick.usage=/kick [reason ...] -commands.op.success=Opped %s -commands.op.failed=Could not op %s -commands.op.usage=/op -commands.deop.success=De-opped %s -commands.deop.failed=Could not de-op %s -commands.deop.usage=/deop -commands.say.usage=/say -commands.ban.success=Banned player %s -commands.ban.failed=Could not ban player %s -commands.ban.usage=/ban [reason ...] -commands.unban.success=Unbanned player %s -commands.unban.failed=Could not unban player %s -commands.unban.usage=/pardon -commands.banip.invalid=You have entered an invalid IP address or a player that is not online -commands.banip.success=Banned IP address %s -commands.banip.success.players=Banned IP address %s belonging to %s -commands.banip.usage=/ban-ip [reason ...] -commands.unbanip.invalid=You have entered an invalid IP address -commands.unbanip.success=Unbanned IP address %s -commands.unbanip.usage=/pardon-ip
-commands.save.usage=/save-all -commands.save-on.alreadyOn=Saving is already turned on. -commands.save-on.usage=/save-on -commands.save-off.alreadyOff=Saving is already turned off. -commands.save-off.usage=/save-off -commands.save.enabled=Turned on world auto-saving -commands.save.disabled=Turned off world auto-saving -commands.save.start=Saving... -commands.save.success=Saved the world -commands.save.failed=Saving failed: %s -commands.stop.usage=/stop -commands.stop.start=Stopping the server -commands.tp.success=Teleported %s to %s -commands.tp.success.coordinates=Teleported %s to %.2f,%.2f,%.2f -commands.tp.usage=/tp [target player] OR /tp [target player] -commands.tp.notSameDimension=Unable to teleport because players are not in the same dimension -commands.whitelist.list=There are %d (out of %d seen) whitelisted players: -commands.whitelist.enabled=Turned on the whitelist -commands.whitelist.disabled=Turned off the whitelist -commands.whitelist.reloaded=Reloaded the whitelist -commands.whitelist.add.success=Added %s to the whitelist -commands.whitelist.add.failed=Could not add %s to the whitelist -commands.whitelist.add.usage=/whitelist add -commands.whitelist.remove.success=Removed %s from the whitelist -commands.whitelist.remove.failed=Could not remove %s from the whitelist -commands.whitelist.remove.usage=/whitelist remove -commands.whitelist.usage=/whitelist -commands.scoreboard.usage=/scoreboard -commands.scoreboard.teamNotFound=No team was found by the name '%s' -commands.scoreboard.objectiveNotFound=No objective was found by the name '%s' -commands.scoreboard.objectiveReadOnly=The objective '%s' is read-only and cannot be set -commands.scoreboard.objectives.usage=/scoreboard objectives -commands.scoreboard.objectives.setdisplay.usage=/scoreboard objectives setdisplay [objective] -commands.scoreboard.objectives.setdisplay.invalidSlot=No such display slot '%s' -commands.scoreboard.objectives.setdisplay.successCleared=Cleared objective display slot '%s' -commands.scoreboard.objectives.setdisplay.successSet=Set the display objective in slot '%s' to '%s' -commands.scoreboard.objectives.add.usage=/scoreboard objectives add [display name ...] -commands.scoreboard.objectives.add.wrongType=Invalid objective criteria type '%s' -commands.scoreboard.objectives.add.alreadyExists=An objective with the name '%s' already exists -commands.scoreboard.objectives.add.tooLong=The name '%s' is too long for an objective, it can be at most %d characters long -commands.scoreboard.objectives.add.displayTooLong=The display name '%s' is too long for an objective, it can be at most %d characters long -commands.scoreboard.objectives.add.success=Added new objective '%s' successfully -commands.scoreboard.objectives.remove.usage=/scoreboard objectives remove -commands.scoreboard.objectives.remove.success=Removed objective '%s' successfully -commands.scoreboard.objectives.list.count=Showing %d objective(s) on scoreboard: -commands.scoreboard.objectives.list.entry=- %s: displays as '%s' and is type '%s' -commands.scoreboard.objectives.list.empty=There are no objectives on the scoreboard -commands.scoreboard.players.usage=/scoreboard players -commands.scoreboard.players.set.success=Set score of %s for player %s to %d -commands.scoreboard.players.set.usage=/scoreboard players set -commands.scoreboard.players.add.usage=/scoreboard players add -commands.scoreboard.players.remove.usage=/scoreboard players remove -commands.scoreboard.players.reset.usage=/scoreboard players reset -commands.scoreboard.players.reset.success=Reset all scores of player %s -commands.scoreboard.players.list.usage=/scoreboard players list [name] -commands.scoreboard.players.list.count=Showing %d tracked players on the scoreboard: -commands.scoreboard.players.list.empty=There are no tracked players on the scoreboard -commands.scoreboard.players.list.player.count=Showing %d tracked objective(s) for %s: -commands.scoreboard.players.list.player.entry=- %2$s: %1$d (%3$s) -commands.scoreboard.players.list.player.empty=Player %s has no scores recorded -commands.scoreboard.teams.usage=/scoreboard teams -commands.scoreboard.teams.add.usage=/scoreboard teams add [display name ...] -commands.scoreboard.teams.add.alreadyExists=A team with the name '%s' already exists -commands.scoreboard.teams.add.tooLong=The name '%s' is too long for a team, it can be at most %d characters long -commands.scoreboard.teams.add.displayTooLong=The display name '%s' is too long for a team, it can be at most %d characters long -commands.scoreboard.teams.add.success=Added new team '%s' successfully -commands.scoreboard.teams.list.usage=/scoreboard teams list [name] -commands.scoreboard.teams.list.count=Showing %d teams on the scoreboard: -commands.scoreboard.teams.list.entry=- %1$s: '%2$s' has %3$d players -commands.scoreboard.teams.list.empty=There are no teams registered on the scoreboard -commands.scoreboard.teams.list.player.count=Showing %d player(s) in team %s: -commands.scoreboard.teams.list.player.entry=- %2$s: %1$d (%3$s) -commands.scoreboard.teams.list.player.empty=Team %s has no players -commands.scoreboard.teams.empty.usage=/scoreboard teams empty -commands.scoreboard.teams.empty.alreadyEmpty=Team %s is already empty, cannot remove nonexistant players -commands.scoreboard.teams.empty.success=Removed all %d player(s) from team %s -commands.scoreboard.teams.remove.usage=/scoreboard teams remove -commands.scoreboard.teams.remove.success=Removed team %s -commands.scoreboard.teams.join.usage=/scoreboard teams join [player] -commands.scoreboard.teams.join.success=Added %d player(s) to team %s: %s -commands.scoreboard.teams.join.failure=Could not add %d player(s) to team %s: %s -commands.scoreboard.teams.leave.usage=/scoreboard teams leave [player] -commands.scoreboard.teams.leave.success=Removed %d player(s) from their teams: %s -commands.scoreboard.teams.leave.failure=Could not remove %d player(s) from their teams: %s -commands.scoreboard.teams.leave.noTeam=You are not in a team -commands.scoreboard.teams.option.usage=/scoreboard teams option -commands.scoreboard.teams.option.noValue=Valid values for option %s are: %s -commands.scoreboard.teams.option.success=Set option %s for team %s to %s -commands.gamemode.success.self=Set own game mode to %s -commands.gamemode.success.other=Set %s's game mode to %s -commands.gamemode.usage=/gamemode [player] -commands.defaultgamemode.usage=/defaultgamemode -commands.defaultgamemode.success=The world's default game mode is now %s -commands.me.usage=/me -commands.help.header=--- Showing help page %d of %d (/help ) --- -commands.help.footer=Tip: Use the key while typing a command to auto-complete the command or its arguments -commands.help.usage=/help [page|command name] -commands.publish.usage=/publish -commands.publish.started=Local game hosted on port %s -commands.publish.failed=Unable to host local game -commands.debug.start=Started debug profiling -commands.debug.stop=Stopped debug profiling after %.2f seconds (%d ticks) -commands.debug.notStarted=Can't stop profiling when we haven't started yet! -commands.debug.usage=/debug -commands.tellraw.usage=/tellraw -commands.tellraw.jsonException=Invalid json: %s -commands.message.usage=/tell -commands.message.sameTarget=You can't send a private message to yourself! -commands.message.display.outgoing=You whisper to %s: %s -commands.message.display.incoming=%s whispers to you: %s -commands.difficulty.usage=/difficulty -commands.difficulty.success=Set game difficulty to %s -commands.spawnpoint.usage=/spawnpoint OR /spawnpoint OR /spawnpoint -commands.spawnpoint.success=Set %s's spawn point to (%d, %d, %d) -commands.setworldspawn.usage=/setworldspawn OR /setworldspawn -commands.setworldspawn.success=Set the world spawn point to (%d, %d, %d) -commands.gamerule.usage=/gamerule OR /gamerule -commands.gamerule.success=Game rule has been updated -commands.gamerule.norule=No game rule called '%s' is available -commands.weather.usage=/weather [duration in seconds] -commands.weather.clear=Changing to clear weather -commands.weather.rain=Changing to rainy weather -commands.weather.thunder=Changing to rain and thunder -commands.testfor.usage=/testfor -commands.testfor.failed=/testfor is only usable by commandblocks with analog output -commands.seed.usage=/seed -commands.seed.success=Seed: %s -commands.spreadplayers.usage=/spreadplayers -commands.spreadplayers.spreading.teams=Spreading %s teams %s blocks around %s,%s (min %s blocks apart) -commands.spreadplayers.spreading.players=Spreading %s players %s blocks around %s,%s (min %s blocks apart) -commands.spreadplayers.success.teams=Successfully spread %s teams around %s,%s -commands.spreadplayers.success.players=Successfully spread %s players around %s,%s -commands.spreadplayers.info.teams=(Average distance between teams is %s blocks apart after %s iterations) -commands.spreadplayers.info.players=(Average distance between players is %s blocks apart after %s iterations) -commands.spreadplayers.failure.teams=Could not spread %s teams around %s,%s (too many players for space - try using spread of at most %s) -commands.spreadplayers.failure.players=Could not spread %s players around %s,%s (too many players for space - try using spread of at most %s) -commands.achievement.usage=/achievement give [player] -commands.achievement.unknownAchievement=Unknown achievement or statistic '%s' -commands.achievement.give.success.all=Successfully given all achievements to %s -commands.achievement.give.success.one=Successfully given %s the stat %s -commands.achievement.statTooLow=Player %s does not have the stat %s - -itemGroup.buildingBlocks=Building Blocks -itemGroup.decorations=Decoration Blocks -itemGroup.redstone=Redstone -itemGroup.transportation=Transportation -itemGroup.misc=Miscellaneous -itemGroup.search=Search Items -itemGroup.food=Foodstuffs -itemGroup.tools=Tools -itemGroup.combat=Combat -itemGroup.brewing=Brewing -itemGroup.materials=Materials -itemGroup.inventory=Survival Inventory - -inventory.binSlot=Destroy Item - -advMode.setCommand=Set Console Command for Block -advMode.setCommand.success=Command set: %s -advMode.command=Console Command -advMode.nearestPlayer=Use "@p" to target nearest player -advMode.randomPlayer=Use "@r" to target random player -advMode.allPlayers=Use "@a" to target all players -advMode.previousOutput=Previous Output - -advMode.notEnabled=Command blocks are not enabled on this server -advMode.notAllowed=Must be an opped player in creative mode - -mount.onboard=Press %1$s to dismount - -build.tooHigh=Height limit for building is %s blocks - -attribute.modifier.plus.0=+%d %s -attribute.modifier.plus.1=+%d%% %s -attribute.modifier.plus.2=+%d%% %s -attribute.modifier.take.0=-%d %s -attribute.modifier.take.1=-%d%% %s -attribute.modifier.take.2=-%d%% %s - -attribute.name.horse.jumpStrength=Horse Jump Strength -attribute.name.zombie.spawnReinforcements=Zombie Reinforcements -attribute.name.generic.maxHealth=Max Health -attribute.name.generic.followRange=Mob Follow Range -attribute.name.generic.knockbackResistance=Knockback Resistance -attribute.name.generic.movementSpeed=Speed -attribute.name.generic.attackDamage=Attack Damage - -screenshot.success=Saved screenshot as %s -screenshot.failure=Couldn't save screenshot: %s - -stream.user.mode.moderator=Moderator -stream.user.mode.moderator.self=Moderator on your channel -stream.user.mode.moderator.other=Moderator on %s's channel -stream.user.mode.broadcaster=Broadcaster -stream.user.mode.broadcaster.self=Broadcaster (You!) -stream.user.mode.broadcaster.other=Broadcaster -stream.user.mode.administrator=Twitch Administrator -stream.user.mode.staff=Twitch Staff -stream.user.mode.banned=Banned -stream.user.mode.banned.self=Banned on your channel -stream.user.mode.banned.other=Banned on %s's channel -stream.user.subscription.subscriber=Subscriber -stream.user.subscription.subscriber.self=Subscriber to your channel -stream.user.subscription.subscriber.other=Subscriber to %s's channel -stream.user.subscription.turbo=Twitch Turbo - -stream.unavailable.title=Twitch Broadcasting Unavailable -stream.unavailable.report_to_mojang=Report to Mojang - -stream.confirm_start=Are you sure you want to start broadcasting? - -stream.unavailable.account_not_bound=Before you can broadcast Minecraft through Twitch, you will need to link your Twitch account on mojang.com. Would you like to do that now? -stream.unavailable.account_not_bound.okay=Link Accounts -stream.unavailable.account_not_migrated=Before you can broadcast Minecraft through Twitch, you will need to migrate your Minecraft account to a Mojang account. Would you like to do that now? -stream.unavailable.account_not_migrated.okay=Migrate Account -stream.unavailable.failed_auth=Authentication to Twitch failed. Please go to mojang.com and rebind your Twitch account. -stream.unavailable.failed_auth.okay=Rebind Accounts -stream.unavailable.failed_auth_error=Unable to authenticate to Twitch. Please try again later. -stream.unavailable.initialization_failure=Unable to initialize the Twitch SDK. -stream.unavailable.initialization_failure.extra=(Reason: %s) -stream.unavailable.library_arch_mismatch=The custom java version used to launch Minecraft has a different architecture than the one used to run the launcher. Please make sure these are the same, either 32-bit or 64-bit for both. -stream.unavailable.library_failure=Unable to load the libraries needed for the integrated Twitch broadcasting service. -stream.unavailable.no_fbo=Your video card needs to support at least OpenGL version 3.0 or support Framebuffer Objects via an extension to use the integrated Twitch broadcasting. -stream.unavailable.no_fbo.version=You are currently using: %s -stream.unavailable.no_fbo.blend=Separate blending support via EXT is: %s -stream.unavailable.no_fbo.arb=Framebuffer object support via ARB is: %s -stream.unavailable.no_fbo.ext=Framebuffer object support via EXT is: %s -stream.unavailable.not_supported.windows=Unfortunately the integrated Twitch broadcasting requires a newer version of Windows than you are on. You must have at least Windows Vista or newer. -stream.unavailable.not_supported.mac=Unfortunately the integrated Twitch broadcasting on Mac requires a version of OSX newer than the one you are on. You must use 10.7 (Mac OS X Lion) or newer to be able to use this service. Would you like to visit apple.com to learn about upgrading? -stream.unavailable.not_supported.mac.okay=Upgrade -stream.unavailable.not_supported.other=Unfortunately the integrated Twitch broadcasting service requires Windows (Vista or newer) or Mac OS X (10.7/Lion or newer) -stream.unavailable.unknown=Unfortunately you cannot broadcast to Twitch at this time. And we don't know why :'( -stream.unavailable.unknown.chat=Could not start stream: %s - -stream.unavailable.soundflower.chat=Soundflower is required to be able to stream on Mac. %s -stream.unavailable.soundflower.chat.link=Please click here to install it. - -stream.userinfo.chatTooltip=Click to manage user -stream.userinfo.timeout=Timeout -stream.userinfo.ban=Ban -stream.userinfo.unban=Unban -stream.userinfo.mod=Promote to Moderator -stream.userinfo.unmod=Demote from Moderator - - -itemGroup.tabTest=Nuclear Tech Mod Test Tab -itemGroup.tabParts=NTM Resources and Parts -itemGroup.tabBlocks=NTM Blocks and Machines -itemGroup.tabNuke=NTM Bombs and Gear -itemGroup.tabMachine=NTM Templates - -hbmfluid.none=None -hbmfluid.water=Water -hbmfluid.lava=Lava -hbmfluid.uf6=Uranium Hexafluoride -hbmfluid.puf6=Plutonium Hexafluoride -hbmfluid.deuterium=Deuterium -hbmfluid.tritium=Tritium -hbmfluid.oil=Crude Oil -hbmfluid.smear=Industrial Oil -hbmfluid.reclaimed=Reclaimed Industrial Oil -hbmfluid.petroil=Petroil -hbmfluid.lubricant=Engine Lubricant -hbmfluid.diesel=Diesel -hbmfluid.kerosene=Kerosene -hbmfluid.gas=Natural Gas -hbmfluid.coolant=Coolant -hbmfluid.amat=Antimatter -hbmfluid.aschrab=Antischrabidium - -item.record.lc.desc=Valve - Diabolic Adrenaline Guitar/Lambda Core -item.record.ss.desc=Valve - Sector Sweep -item.record.vc.desc=Valve - Vortal Combat - -death.attack.nuclearBlast=%1$s was blown away by a nuclear explosion. -death.attack.revolverBullet=%1$s was shot in the head by %2$s. -death.attack.mudPoisoning=%1$s died in poisonous mud. -death.attack.euthanized=%1$s was euthanized by %2$s. -death.attack.euthanizedSelf=%1$s euthanized himself, what a dork. -death.attack.euthanizedSelf2=%1$s wins the Darwin Award. -death.attack.tau=%1$s was riddeled by %2$s using negatively charged tauons. -death.attack.tauBlast=%1$s charged the XVL1456 for too long and was blown into pieces. -death.attack.chopperBullet=%1$s was rekt by %2$s. -death.attack.cmb=%1$s was fizzeled by %2$s. -death.attack.subAtomic=%1$s's atoms have been destroyed by %2$s. -death.attack.subAtomic2=%1$s was QPU-misaligned because %2$s tampered with his de facto speed. -death.attack.subAtomic3=%1$s's divergence dropped below 1 percent because of %2$s. -death.attack.subAtomic4=%1$s was divided by zero by %2$s. -death.attack.subAtomic5=%1$s was nullified by %2$s. -death.attack.radiation=%1$s died from radiation poisoning. -death.attack.acid=%1$s fell into acid. -death.attack.suicide=%1$s blew their head off. -death.attack.electrified=%1$s was electrified by %2$s. -death.attack.flamethrower=%1$s was cremated by %2$s. -death.attack.plasma=%1$s was immolated by %2$s. -death.attack.ice=%1$s was turned into a popsicle by %2$s. -death.attack.cheater=%1$s's intestines turned into oats. (???) -death.attack.laser=%1$s was turned into ash by %2$s. -death.attack.rubble=%1$s was squashed by debris. -death.attack.shrapnel=%1$s was ragged by a shrapnel. -death.attack.teleporter=%1$s was teleported into nothingness. -death.attack.blackhole=%1$s was spaghettified. - -item.redstone_sword.name=Redstone Sword -item.big_sword.name=Great Sword -item.test_nuke_igniter.name=Igniter -item.test_nuke_propellant.name=Propellant -item.test_nuke_tier1_shielding.name=Neutron Reflector (Tier 1) -item.test_nuke_tier2_shielding.name=Neutron Reflector (Tier 2) -item.test_nuke_tier1_bullet.name=U235 Projectile (Tier 1) -item.test_nuke_tier2_bullet.name=MOX Projectile (Tier 2) -item.test_nuke_tier1_target.name=Subcritical U235 Target (Tier 1) -item.test_nuke_tier2_target.name=Subcritical MOX Target (Tier 2) - -item.gadget_explosive.name=Propellant -item.gadget_explosive8.name=Bundle of Propellant -item.gadget_wireing.name=Wiring -item.gadget_core.name=Plutonium Core - -item.boy_igniter.name=Bomb Igniter -item.boy_propellant.name=Propellant -item.boy_bullet.name=U235 Projectile -item.boy_target.name=Subcritical U235 Target -item.boy_shielding.name=Neutron Shielding - -item.man_explosive.name=Propellant -item.man_explosive8.name=Bundle of Propellant -item.man_igniter.name=Bomb Igniter -item.man_core.name=Plutonium Core - -item.mike_core.name=Uranium Coated Deuterium Tank -item.mike_deut.name=Deuterium Tank -item.mike_cooling_unit.name=Deuterium Cooling Unit - -item.tsar_core.name=Tsar Bomba Core - -item.fleija_igniter.name=Pulse Igniter -item.fleija_propellant.name=Schrabidium Propellant -item.fleija_core.name=F.L.E.I.J.A. Uranium 235 Charge - -container.nukeGadget=The Gadget -container.nukeBoy=Little Boy -container.nukeMan=Fat Man -container.nukeMike=Ivy Mike -container.nukeTsar=Tsar Bomba -container.nukeFleija=F.L.E.I.J.A. -container.nukePrototype=The Prototype -container.nukeCustom=Custom Nuke - -container.bombMulti=Multi Purpose Bomb - -tile.nuke_gadget.name=The Gadget -tile.nuke_boy.name=Little Boy -tile.nuke_man.name=Fat Man -tile.nuke_mike.name=Ivy Mike -tile.nuke_tsar.name=Tsar Bomba -tile.nuke_fleija.name=F.L.E.I.J.A. -tile.nuke_prototype.name=The Prototype -tile.nuke_custom.name=Custom Nuke - -tile.bomb_multi.name=Multi Purpose Bomb - -tile.flame_war.name=Flame War in a Box -tile.float_bomb.name=Levitation Bomb -tile.therm_endo.name=Endothermic Bomb -tile.therm_exo.name=Exothermic Bomb - -tile.crashed_bomb.name=Dud - -tile.crate.name=Supply Crate -tile.marker_structure.name=Multiblock Structure Marker - -tile.machine_difurnace_off.name=Alloy Furnace -tile.machine_difurnace_on.name=Alloy Furnace -container.diFurnace=Alloy Furnace -tile.machine_centrifuge.name=Centrifuge -container.centrifuge=Centrifuge -tile.machine_uf6_tank.name=Uranium Hexafluoride Tank -container.uf6_tank=UF6 Tank -tile.machine_puf6_tank.name=Plutonium Hexafluoride Tank -container.puf6_tank=PuF6 Tank -tile.machine_reactor.name=Breeding Reactor -container.reactor=Breeding Reactor -tile.machine_nuke_furnace_off.name=Nuclear Powered Furnace -tile.machine_nuke_furnace_on.name=Nuclear Powered Furnace -container.nukeFurnace=Nuclear Powered Furnace -tile.machine_rtg_furnace_off.name=RTG Furnace -tile.machine_rtg_furnace_on.name=RTG Furnace -container.rtgFurnace=RTG Furnace -tile.machine_electric_furnace_off.name=Electric Furnace -tile.machine_electric_furnace_on.name=Electric Furnace -container.electricFurnace=Electric Furnace -tile.machine_generator.name=Nuclear Reactor -container.generator=Nuclear Reactor -tile.red_wire_coated.name=Coated Red Copper Cable -tile.machine_deuterium.name=Deuterium Extractor -container.machine_deuterium=Deuterium Extractor -tile.machine_battery.name=Energy Storage Block -container.battery=Energy Storage -tile.machine_coal_off.name=Coal Generator -tile.machine_coal_on.name=Coal Generator -container.machineCoal=Coal Generator -tile.launch_pad.name=Missile Launch Pad -container.launchPad=Missile Launch Pad -tile.book_guide.name=Hbm's Nuclear Tech Mod Manual -tile.machine_schrabidium_transmutator.name=Schrabidium Transmutation Device -container.machine_schrabidium_transmutator=Schrabidium Transmutation Device -tile.machine_diesel.name=Diesel Generator -container.machineDiesel=Diesel Generator -tile.machine_shredder.name=Shredder -container.machineShredder=Shredder -tile.machine_combine_factory.name=CMB Steel Furnace -container.machineCMB=CMB Steel Furnace -tile.machine_teleporter.name=Teleporter -container.teleporter=Teleporter -tile.machine_reix_mainframe.name=Rei-X Mainframe (WIP) -container.reix=Rei-X Mainframe -tile.machine_industrial_generator.name=Industrial Generator -container.iGenerator=Industrial Generator -tile.machine_cyclotron.name=Cyclotron -container.cyclotron=Cyclotron -tile.machine_well.name=Oil Derrick -tile.oil_pipe.name=Crude Oil Extraction Pipe -container.oilWell=Oil Derrick -tile.machine_refinery.name=Oil Refinery -container.machineRefinery=Oil Refinery -tile.oil_duct.name=Oil Pipe -tile.oil_duct_solid.name=Coated Oil Pipe -tile.machine_flare.name=Gas Flare -container.gasFlare=Gas Flare -tile.gas_duct.name=Gas Pipe -tile.gas_duct_solid.name=Coated Gas Pipe -tile.machine_drill.name=Automatic Mining Drill -container.miningDrill=Automatic Mining Drill -tile.machine_assembler.name=Assembly Machine -container.assembler=Assembly Machine -tile.machine_chemplant.name=Chemical Plant -container.chemplant=Chemical Plant - -tile.red_pylon.name=Electricity Pole -item.wiring_red_copper.name=Cable Drum - -tile.rail_highspeed.name=High Speed Rail -tile.rail_booster.name=High Speed Booster Rail - -tile.factory_titanium_hull.name=Basic Factory Casing -tile.factory_titanium_furnace.name=Basic Factory Access Hatch -tile.factory_titanium_conductor.name=Basic Factory Electricity Port -tile.factory_titanium_core.name=Basic Factory Core Component -item.factory_core_titanium.name=Basic Factory Energy Cluster -container.factoryTitanium=Basic Factory -tile.factory_advanced_hull.name=Advanced Factory Casing -tile.factory_advanced_furnace.name=Advanced Factory Access Hatch -tile.factory_advanced_conductor.name=Advanced Factory Electricity Port -tile.factory_advanced_core.name=Advanced Factory Core Component -item.factory_core_advanced.name=Advanced Factory Energy Cluster -container.factoryAdvanced=Advanced Factory - -tile.reactor_element.name=Reactor Chamber -tile.reactor_control.name=Control Rods -tile.reactor_hatch.name=Reactor Access Hatch -tile.reactor_conductor.name=Reactor Electricity Port -tile.reactor_computer.name=Reactor Control -container.reactorMultiblock=Big Nuclear Reactor - -tile.fusion_conductor.name=Superconducting Magnet -tile.fusion_center.name=Central Magnet Piece -tile.fusion_motor.name=Magnet Motor Piece -tile.fusion_heater.name=Plasma Heater -tile.fusion_hatch.name=Fusion Reactor Access Hatch -tile.fusion_core.name=Fusion Reactor Control -tile.plasma.name=Plasma -container.fusionMultiblock=Big Fusion Reactor - -tile.watz_element.name=Watz Reaction Chamber -tile.watz_control.name=Reinforced Control Rods -tile.watz_cooler.name=Watz Reactor Supercooler -tile.watz_end.name=Watz Reactor Stability Element -tile.watz_hatch.name=Watz Reactor Access Hatch -tile.watz_conductor.name=Watz Electricity Port -tile.watz_core.name=Watz Reactor Control -container.watzPowerplant=Watz Power Plant - -tile.fwatz_conductor.name=4000K Superconducting Magnet -tile.fwatz_cooler.name=Regenerative Coolant Fluid Tank Shell -tile.fwatz_tank.name=Regenerative Coolant Fluid Tank -tile.fwatz_scaffold.name=Fusionary Watz Plant Structural Support -tile.fwatz_hatch.name=Fusionary Watz Plant Access Hatch -tile.fwatz_computer.name=Fusionary Watz Reactor Calculation Matrix -tile.fwatz_core.name=Fusionary Watz Reactor Control -tile.fwatz_plasma.name=Destabilized Antischrabidium Plasma -container.fusionaryWatzPlant=Fusionary Watz Plant - -tile.machine_rtg_grey.name=RT Generator -container.rtg=RT Generator -tile.machine_rtg_red.name=Fulmination Generator -tile.machine_rtg_orange.name=Strong RT Generator -tile.machine_rtg_yellow.name=Australium Superfuel Reactor -tile.machine_rtg_green.name=Verticium Wealth Generator -tile.machine_rtg_cyan.name=Schrabidium Decay Generator (WIP) -tile.machine_rtg_blue.name=Convection Generator -tile.machine_rtg_purple.name=Antimatter Annihilation Generator - -item.assembly_template.TEST.name=Assembly Template: Test -item.assembly_template.MIXED_PLATE.name=Assembly Template: Mixed Plate -item.assembly_template.HAZMAT_CLOTH.name=Assembly Template: Hazmat Cloth -item.assembly_template.ASBESTOS_CLOTH.name=Assembly Template: Fire Proximity Cloth -item.assembly_template.COAL_FILTER.name=Assembly Template: Activated Carbon Filter -item.assembly_template.CENTRIFUGE_ELEMENT.name=Assembly Template: Centrifuge Element -item.assembly_template.CENTRIFUGE_TOWER.name=Assembly Template: Centrifuge Tower -item.assembly_template.DEE_MAGNET.name=Assembly Template: Dee Magnets -item.assembly_template.FLAT_MAGNET.name=Assembly Template: Flat Magnet -item.assembly_template.CYCLOTRON_TOWER.name=Assembly Template: Cyclotron Tower -item.assembly_template.REACTOR_CORE.name=Assembly Template: Breeding Reactor Core -item.assembly_template.RTG_UNIT.name=Assembly Template: RTG Unit -item.assembly_template.HEAT_UNIT.name=Assembly Template: Thermal Distribution Unit -item.assembly_template.GRAVITY_UNIT.name=Assembly Template: Gravity Manipulator -item.assembly_template.TITANIUM_DRILL.name=Assembly Template: Titanium Drill -item.assembly_template.TELEPAD.name=Assembly Template: Telepad -item.assembly_template.TELEKIT.name=Assembly Template: Entanglement Kit -item.assembly_template.GEASS_REACTOR.name=Assembly Template: Dysfunctional Nuclear Reactor -item.assembly_template.GENERATOR_FRONT.name=Assembly Template: Generator Front -item.assembly_template.WT1_GENERIC.name=Assembly Template: Small Warhead -item.assembly_template.WT2_GENERIC.name=Assembly Template: Medium Warhead -item.assembly_template.WT3_GENERIC.name=Assembly Template: Large Warhead -item.assembly_template.WT1_FIRE.name=Assembly Template: Small Incendiary Warhead -item.assembly_template.WT2_FIRE.name=Assembly Template: Medium Incendiary Warhead -item.assembly_template.WT3_FIRE.name=Assembly Template: Large Incendiary Warhead -item.assembly_template.WT1_CLUSTER.name=Assembly Template: Small Cluster Warhead -item.assembly_template.WT2_CLUSTER.name=Assembly Template: Medium Cluster Warhead -item.assembly_template.WT3_CLUSTER.name=Assembly Template: Large Cluster Warhead -item.assembly_template.WT1_BUSTER.name=Assembly Template: Small Bunker Buster Warhead -item.assembly_template.WT2_BUSTER.name=Assembly Template: Medium Bunker Buster Warhead -item.assembly_template.WT3_BUSTER.name=Assembly Template: Large Bunker Buster Warhead -item.assembly_template.W_NUCLEAR.name=Assembly Template: Nuclear Warhead -item.assembly_template.W_MIRVLET.name=Assembly Template: MIRV -item.assembly_template.W_MIRV.name=Assembly Template: Eightfold MIRV Warhead -item.assembly_template.W_ENDOTHERMIC.name=Assembly Template: Endothermic Warhead -item.assembly_template.W_EXOTHERMIC.name=Assembly Template: Exothermic Warhead -item.assembly_template.T1_TANK.name=Assembly Template: Small Fuel Tank -item.assembly_template.T2_TANK.name=Assembly Template: Medium Fuel Tank -item.assembly_template.T3_TANK.name=Assembly Template: Large Fuel Tank -item.assembly_template.T1_THRUSTER.name=Assembly Template: Small Thruster -item.assembly_template.T2_THRUSTER.name=Assembly Template: Medium Thruster -item.assembly_template.T3_THRUSTER.name=Assembly Template: Large Thruster -item.assembly_template.CHOPPER_HEAD.name=Assembly Template: Hunter Chopper Cockpit -item.assembly_template.CHOPPER_GUN.name=Assembly Template: Emplacement Gun -item.assembly_template.CHOPPER_BODY.name=Assembly Template: Hunter Chopper Body -item.assembly_template.CHOPPER_TAIL.name=Assembly Template: Hunter Chopper Tail -item.assembly_template.CHOPPER_WING.name=Assembly Template: Hunter Chopper Wing -item.assembly_template.CHOPPER_BLADES.name=Assembly Template: Hunter Chopper Rotor Blades -item.assembly_template.CIRCUIT_2.name=Assembly Template: Enhanced Circuit -item.assembly_template.CIRCUIT_3.name=Assembly Template: Advanced Circuit -item.assembly_template.RTG_PELLET.name=Assembly Template: Plutonium 238 Fuel Pellet -item.assembly_template.WEAK_PELLET.name=Assembly Template: Weak Uranium RTG Pellet -item.assembly_template.FUSION_PELLET.name=Assembly Template: Tritium-Deuterium-Cake -item.assembly_template.CLUSTER_PELLETS.name=Assembly Template: Explosive Pellets -item.assembly_template.GUN_PELLETS.name=Assembly Template: Lead Pellets - -item.fuse.name=Fuse - -tile.test_nuke.name=Test Nuke - -item.ingot_uranium.name=Uranium Ingot -item.ingot_u235.name=U235 Ingot -item.ingot_u238.name=U238 Ingot -item.ingot_plutonium.name=Plutonium Ingot -item.ingot_pu238.name=Pu238 Ingot -item.ingot_pu239.name=Pu239 Ingot -item.ingot_pu240.name=Pu240 Ingot -item.ingot_titanium.name=Titanium Ingot -item.sulfur.name=Sulfur - -item.niter.name=Niter -item.ingot_copper.name=Industrial Grade Copper -item.ingot_red_copper.name=Minecraft Grade Copper -item.ingot_tungsten.name=Tungsten Ingot -item.ingot_aluminium.name=Aluminium Ingot -item.fluorite.name=Fluorite -item.ingot_steel.name=Steel Ingot -item.plate_steel.name=Steel Plate -item.ingot_beryllium.name=Beryllium Ingot -item.plate_schrabidium.name=Schrabidium Plate -item.ingot_schrabidium.name=Schrabidium Ingot -item.nugget_schrabidium.name=Schrabidium Nugget -item.plate_copper.name=Copper Plate -item.board_copper.name=Copper Panel -item.ingot_advanced_alloy.name=Advanced Alloy Ingot -item.plate_advanced_alloy.name=Advanced Alloy Plate -item.wire_advanced_alloy.name=Super Conductor -item.coil_advanced_alloy.name=Super Conducting Coil -item.coil_advanced_torus.name=Super Conducting Ring Coil -item.coil_gold.name=Gold Coil -item.coil_gold_torus.name=Golden Ring Coil -item.lithium.name=Lithium Cube -item.ingot_magnetized_tungsten.name=Magnetized Tungsten Ingot -item.ingot_combine_steel.name=CMB Steel Ingot -item.plate_combine_steel.name=CMB Steel Plate -item.wire_magnetized_tungsten.name=4000K High Temperature Super Conductor -item.coil_magnetized_tungsten.name=4000K High Temperature Super Conducting Coil -item.plate_mixed.name=Mixed Plate -item.plate_paa.name=PaA Alloy Plate -item.ingot_dura_steel.name=High-Speed Steel Ingot -item.ingot_polymer.name=Polymer Ingot -item.bolt_dura_steel.name=High-Speed Steel Bolt -item.pipes_steel.name=Steel Pipes -item.drill_titanium.name=Titanium Drill - -item.ingot_australium.name=Australium Ingot -item.ingot_weidanium.name=Weidanium Ingot -item.ingot_reiium.name=Reiium Ingot -item.ingot_unobtainium.name=Unobtainium Ingot -item.ingot_daffergon.name=Daffergon Ingot -item.ingot_verticium.name=Verticium Ingot -item.nugget_australium.name=Australium Nugget -item.nugget_weidanium.name=Weidanium Nugget -item.nugget_reiium.name=Reiium Nugget -item.nugget_unobtainium.name=Unobtainium Nugget -item.nugget_daffergon.name=Daffergon Nugget -item.nugget_verticium.name=Verticium Nugget - -item.ingot_desh.name=Desh Ingot -item.nugget_desh.name=Desh Nugget -item.powder_desh.name=Desh Powder - -item.nugget_u235.name=U235 Nugget -item.nugget_u238.name=U238 Nugget -item.nugget_pu238.name=Pu238 Nugget -item.nugget_pu239.name=Pu239 Nugget -item.nugget_pu240.name=Pu240 Nugget -item.plate_titanium.name=Titanium Plate -item.plate_aluminium.name=Aluminium Plate -item.wire_red_copper.name=Red Copper Wire -item.neutron_reflector.name=Neutron Reflector -item.nugget_beryllium.name=Beryllium Nugget - -item.wire_aluminium.name=Aluminium Wire -item.wire_copper.name=Copper Wire -item.wire_gold.name=Gold Wire -item.wire_schrabidium.name=Schrabidium Wire - -item.circuit_aluminium.name=Basic Circuit -item.circuit_copper.name=Enhanced Circuit -item.circuit_red_copper.name=Advanved Circuit -item.circuit_gold.name=Overclocked Circuit -item.circuit_schrabidium.name=High Performance Circuit - -tile.block_aluminium.name=Block of Aluminium -tile.block_copper.name=Block of Copper -tile.block_fluorite.name=Block of Fluorite -tile.block_niter.name=Block of Niter -tile.block_red_copper.name=Block of Red Copper -tile.block_steel.name=Block of Steel -tile.block_sulfur.name=Block of Sulfur -tile.block_titanium.name=Block of Titanium -tile.block_tungsten.name=Block of Tungsten -tile.block_uranium.name=Block of Uranium -tile.block_trinitite.name=Block of Trinitite -tile.block_beryllium.name=Block of Beryllium -tile.block_waste.name=Block of Nuclear Waste -tile.block_scrap.name=Block of Scrap -tile.block_electrical_scrap.name=Block of Electrical Scrap -tile.block_advanced_alloy.name=Block of Advanced Alloy -tile.block_magnetized_tungsten.name=Block of Magnetized Tungsten -tile.block_combine_steel.name=Block of CMB Steel -tile.block_australium.name=Block of Australium -tile.block_weidanium.name=Block of Weidanium -tile.block_reiium.name=Block of Reiium -tile.block_unobtainium.name=Block of Unobtainium -tile.block_daffergon.name=Block of Daffergon -tile.block_verticium.name=Block of Verticium -tile.block_desh.name=Reinfoced Block of Desh - -tile.ore_aluminium.name=Aluminium Ore -tile.ore_copper.name=Copper Ore -tile.ore_fluorite.name=Fluorite Ore -tile.ore_niter.name=Niter Ore -tile.ore_sulfur.name=Sulfur Ore -tile.ore_titanium.name=Titanium Ore -tile.ore_tungsten.name=Tungsten Ore -tile.ore_uranium.name=Uranium Ore -tile.ore_schrabidium.name=Schrabidium Ore -tile.ore_beryllium.name=Beryllium Ore - -tile.ore_nether_uranium.name=Nether Uranium Ore -tile.ore_nether_plutonium.name=Nether Plutonium Ore -tile.ore_nether_tungsten.name=Nether Tungsten Ore -tile.ore_nether_sulfur.name=Nether Sulfur Ore -tile.ore_nether_fire.name=Fire Ore -tile.ore_nether_schrabidium.name=Nether Schrabidium Ore - -tile.ore_australium.name=Australian Ore -tile.ore_weidanium.name=Weidite -tile.ore_reiium.name=Reiite -tile.ore_unobtainium.name=Brightblende Ore -tile.ore_daffergon.name=Dellite -tile.ore_verticium.name=Dollar Green Mineral - -tile.ore_oil.name=Oil Deposit -tile.ore_oil_empty.name=Empty Oil Deposit - -tile.reinforced_brick.name=Reinforced Stone -tile.reinforced_glass.name=Reinforced Glass -tile.reinforced_sand.name=Reinforced Sandstone -tile.reinforced_light.name=Reinforced Glowstone -tile.reinforced_lamp_off.name=Reinforced Lamp -tile.reinforced_lamp_on.name=Reinforced Lamp - -tile.brick_concrete.name=Concrete Bricks -tile.brick_obsidian.name=Obsidian Bricks -tile.brick_light.name=Light Bricks -tile.asphalt.name=Asphalt - -tile.cmb_brick.name=CMB Steel Tile -tile.cmb_brick_reinforced.name=Reinforced CMB Bricks - -tile.gravel_obsidian.name=Crushed Obsidian - -tile.seal_frame.name=Silo Hatch Frame -tile.seal_controller.name=Silo Hatch Opener -tile.seal_hatch.name=Silo Hatch - -item.nugget_uranium.name=Uranium Nugget -item.nugget_plutonium.name=Plutonium Nugget -item.nugget_neptunium.name=Neptunium Nugget -item.ingot_neptunium.name=Neptunium Ingot -item.nugget_lead.name=Lead Nugget -item.ingot_lead.name=Lead Ingot -tile.block_lead.name=Block of Lead -tile.ore_lead.name=Lead Ore - -item.powder_lead.name=Lead Powder -item.powder_neptunium.name=Neptunium Powder -item.powder_schrabidium.name=Schrabidium Powder -item.powder_iron.name=Iron Powder -item.powder_gold.name=Gold Powder -item.powder_aluminium.name=Aluminium Powder -item.powder_beryllium.name=Beryllium Powder -item.powder_copper.name=Copper Powder -item.powder_titanium.name=Titanium Powder -item.powder_tungsten.name=Tungsten Powder -item.powder_uranium.name=Uranium Powder -item.powder_plutonium.name=Plutonium Powder -item.dust.name=Dust -item.powder_coal.name=Coal Powder -item.powder_lapis.name=Lapis Lazuli Powder -item.powder_emerald.name=Emerald Powder -item.powder_diamond.name=Diamond Powder -item.powder_red_copper.name=Red Copper Powder -item.powder_steel.name=Steel Powder -item.powder_magnetized_tungsten.name=Magnetized Tungsten Powder -item.powder_combine_steel.name=CMB Steel Powder -item.powder_lithium.name=Lithium Powder -item.powder_advanced_alloy.name=Advanced Alloy Powder -item.powder_quartz.name=Quartz Powder -item.powder_power.name=Energy Powder -item.powder_iodine.name=Iodine Powder -item.powder_thorium.name=Thorium Powder -item.powder_neodymium.name=Neodymium Powder -item.powder_astatine.name=Astatine Powder -item.powder_caesium.name=Caesium Powder -item.powder_australium.name=Australium Powder -item.powder_weidanium.name=Weidanium Powder -item.powder_reiium.name=Reiium Powder -item.powder_unobtainium.name=Unobtainium Powder -item.powder_daffergon.name=Daffergon Powder -item.powder_verticium.name=Verticium Powder -item.powder_strontium.name=Strontium Powder -item.powder_cobalt.name=Cobalt Powder -item.powder_bromine.name=Bromine Powder -item.powder_niobium.name=Niobium Powder -item.powder_tennessine.name=Tennessine Powder -item.powder_cerium.name=Cerium Powder -item.powder_dura_steel.name=High-Speed Steel Powder -item.powder_polymer.name=Polymer Powder -item.powder_lanthanium.name=Lanthanium Powder -item.powder_actinium.name=Actinium Powder -item.powder_lithium_tiny.name=Tiny Pile of Lithium Powder -item.powder_cobalt_tiny.name=Tiny Pile of Cobalt Powder - -item.battery_generic.name=Battery -item.battery_advanced.name=Advanced Battery -item.battery_lithium.name=Lithium-Ion Battery -item.battery_schrabidium.name=Schrabidium Battery -item.battery_creative.name=Infinite Battery - -item.battery_red_cell.name=Redstone Power Cell -item.battery_advanced_cell.name=Advanced Power Cell -item.battery_lithium_cell.name=Lithium-Ion Power Cell -item.battery_schrabidium_cell.name=Schrabidium Power Cell -item.battery_red_cell_6.name=Sixfold Redstone Power Cell -item.battery_advanced_cell_4.name=Quadruple Advanced Power Cell -item.battery_lithium_cell_3.name=Tripple Lithium-Ion Power Cell -item.battery_schrabidium_cell_2.name=Double Schrabidium Power Cell -item.battery_red_cell_24.name=24-Fold Redstone Power Cell -item.battery_advanced_cell_12.name=Twelvefold Advanced Power Cell -item.battery_lithium_cell_6.name=Sixfold Lithium-Ion Power Cell -item.battery_schrabidium_cell_4.name=Quadruple Schrabidium Power Cell - -item.upgrade_template.name=Machine Upgrade Piece Template -item.upgrade_speed_1.name=Red Machine Upgrade Mk.I -item.upgrade_speed_2.name=Red Machine Upgrade Mk.II -item.upgrade_speed_3.name=Red Machine Upgrade Mk.III -item.upgrade_effect_1.name=Green Machine Upgrade Mk.I -item.upgrade_effect_2.name=Green Machine Upgrade Mk.II -item.upgrade_effect_3.name=Green Machine Upgrade Mk.III -item.upgrade_power_1.name=Blue Machine Upgrade Mk.I -item.upgrade_power_2.name=Blue Machine Upgrade Mk.II -item.upgrade_power_3.name=Blue Machine Upgrade Mk.III -item.upgrade_fortune_1.name=Purple Machine Upgrade Mk.I -item.upgrade_fortune_2.name=Purple Machine Upgrade Mk.II -item.upgrade_fortune_3.name=Purple Machine Upgrade Mk.III - -item.fusion_core.name=Fusion Core -item.energy_core.name=Makeshift Energy Core - -item.plate_iron.name=Iron Plate -item.plate_lead.name=Lead Plate -item.coil_copper.name=Copper Coil -item.coil_copper_torus.name=Ring Coil -item.wire_tungsten.name=Tungsten Wire -item.coil_tungsten.name=Heating Coil -item.tank_steel.name=Steel Tank -item.motor.name=Motor -item.centrifuge_element.name=Centrifuge Element -item.centrifuge_tower.name=Centrifuge Tower -item.reactor_core.name=Breeding Reactor Core -item.pellet_rtg.name=Plutonium 238 Fuel Pellet -item.pellet_rtg_weak.name=Weak Uranium RTG Pellet -item.rtg_unit.name=RTG Unit -item.hazmat_cloth.name=Hazmat Cloth -item.asbestos_cloth.name=Fire Proximity Cloth -item.filter_coal.name=Activated Carbon Filter -item.tritium_deuterium_cake.name=Tritium-Deuterium-Cake -item.telepad.name=Telepad -item.entanglement_kit.name=Entanglement Kit -item.toothpicks.name=Toothpicks -item.ducttape.name=Duct Tape -item.magnet_dee.name=Dee Magnets -item.magnet_circular.name=Flat Magnet -item.cyclotron_tower.name=Cyclotron Tower -item.plate_dalekanium.name=Angry Metal - -item.cell_empty.name=Empty Cell -item.cell_uf6.name=Uranium Hexafluorite Cell -item.cell_puf6.name=Plutonium Hexafluorite Cell -item.cell_antimatter.name=Antimatter Cell -item.cell_deuterium.name=Deuterium Cell -item.cell_tritium.name=Tritium Cell -item.cell_sas3.name=Schrabidium Trisulfide Cell -item.cell_anti_schrabidium.name=Antischrabidium Cell -item.singularity.name=Singularity -item.singularity_counter_resonant.name=Contained Counter-Resonant Singularity -item.singularity_super_heated.name=Superheated Resonating Singularity -item.black_hole.name=Miniature Black Hole -item.crystal_xen.name=Artificial Xen Crystal - -item.inf_water.name=Infinite Water Tank -item.inf_deuterium.name=Infinite Deuterium Tank -item.inf_tritium.name=Infinite Tritium Tank -item.inf_coolant.name=Infinite Coolant Tank -item.inf_sulfur.name=Infinite Sulfur Tank -item.inf_diesel.name=Infinite Diesel Tank -item.inf_antimatter.name=Infinite Antimatter Tank -item.inf_antischrabidium.name=Infinite Antischrabidium Tank - -item.oil_canola.name=Raw Canola Oil - -item.canister_empty.name=Empty Canister -item.canister_smear.name=Industrial Oil Canister -item.canister_canola.name=Engine Lubricant -item.canister_oil.name=Crude Oil Canister -item.canister_fuel.name=Fuel Canister -item.canister_kerosene.name=Kerosene Canister -item.canister_reoil.name=Canister of Reclaimed Industrial Oil -item.canister_petroil.name=Petroil Canister -item.canister_napalm.name=Napalm B -item.canister_NITAN.name=NITAN© 100 Octane Super Fuel -item.gas_empty.name=Empty Gas Tank -item.gas_full.name=Gas Tank - -item.rod_empty.name=Emty Rod -item.rod_uranium.name=Uranium Rod -item.rod_u235.name=U235 Rod -item.rod_u238.name=U238 Rod -item.rod_plutonium.name=Plutonium Rod -item.rod_pu238.name=Pu238 Rod -item.rod_pu239.name=Pu239 Rod -item.rod_pu240.name=Pu240 Rod -item.rod_neptunium.name=Neptunium Rod -item.rod_lead.name=Lead Rod -item.rod_schrabidium.name=Schrabidium Rod -item.rod_astatine.name=Euphemium Rod -item.rod_australium.name=Australium Rod -item.rod_weidanium.name=Weidanium Rod -item.rod_reiium.name=Reiium Rod -item.rod_unobtainium.name=Unobtainium Rod -item.rod_daffergon.name=Daffergon Rod -item.rod_verticium.name=Verticium Rod - -item.rod_dual_empty.name=Emty Dual Rod -item.rod_dual_uranium.name=Uranium Dual Fl Rod -item.rod_dual_u235.name=U235 Dual Rod -item.rod_dual_u238.name=U238 Dual Rod -item.rod_dual_plutonium.name=Plutonium Dual Rod -item.rod_dual_pu238.name=Pu238 Dual Rod -item.rod_dual_pu239.name=Pu239 Dual Rod -item.rod_dual_pu240.name=Pu240 Dual Rod -item.rod_dual_neptunium.name=Neptunium Dual Rod -item.rod_dual_lead.name=Lead Dual Rod -item.rod_dual_schrabidium.name=Schrabidium Dual Rod - -item.rod_quad_empty.name=Emty Quad Rod -item.rod_quad_uranium.name=Uranium Quad Rod -item.rod_quad_u235.name=U235 Quad Rod -item.rod_quad_u238.name=U238 Quad Rod -item.rod_quad_plutonium.name=Plutonium Quad Rod -item.rod_quad_pu238.name=Pu238 Quad Rod -item.rod_quad_pu239.name=Pu239 Quad Rod -item.rod_quad_pu240.name=Pu240 Quad Rod -item.rod_quad_neptunium.name=Neptunium Quad Rod -item.rod_quad_lead.name=Lead Quad Rod -item.rod_quad_schrabidium.name=Schrabidium Quad Rod - -item.rod_uranium_fuel_depleted.name=Depleted Uranium Fuel Rod -item.rod_dual_uranium_fuel_depleted.name=Depleted Uranium Dual Fuel Rod -item.rod_quad_uranium_fuel_depleted.name=Depleted Uranium Quad Fuel Rod -item.rod_plutonium_fuel_depleted.name=Depleted Plutonium Fuel Rod -item.rod_dual_plutonium_fuel_depleted.name=Depleted Plutonium Dual Fuel Rod -item.rod_quad_plutonium_fuel_depleted.name=Depleted Plutonium Quad Fuel Rod -item.rod_mox_fuel_depleted.name=Depleted MOX Fuel Rod -item.rod_dual_mox_fuel_depleted.name=Depleted MOX Dual Fuel Rod -item.rod_quad_mox_fuel_depleted.name=Depleted MOX Quad Fuel Rod -item.rod_schrabidium_fuel_depleted.name=Depleted Schrabidium Fuel Rod -item.rod_dual_schrabidium_fuel_depleted.name=Depleted Schrabidium Dual Fuel Rod -item.rod_quad_schrabidium_fuel_depleted.name=Depleted Schrabidium Quad Fuel Rod - -item.rod_waste.name=Nuclear Waste Rod -item.rod_dual_waste.name=Nuclear Waste Dual Rod -item.rod_quad_waste.name=Nuclear Waste Quad Rod - -item.gun_rpg.name=Rocket Launcher -item.gun_rpg_ammo.name=Rocket - -item.flame_pony.name=Painting of a Cartoon Pony -item.flame_conspiracy.name=Conspiracy Theory -item.flame_politics.name=Political Topic -item.flame_opinion.name=Own Opinion - -item.pellet_cluster.name=Explosive Pellets -item.pellet_buckshot.name=Lead Pellets -item.powder_fire.name=Flame Powder -item.powder_ice.name=Cryo Powder -item.powder_poison.name=Poison Powder -item.pellet_gas.name=Poison Gas Cartridge -item.magnetron.name=Magnetron -item.powder_thermite.name=Thermite - -item.nuke_starter_kit.name=Atomic Science Starter Kit -item.nuke_commercially_kit.name=Atomic Science Kit for Commercial Uses -item.nuke_advanced_kit.name=Atomic Science Advanced Kit -item.gadget_kit.name=The Gadget Kit -item.boy_kit.name=Little Boy Kit -item.man_kit.name=Fat Man Kit -item.mike_kit.name=Ivy Mike Kit -item.tsar_kit.name=Tsar Bomba Kit -item.fleija_kit.name=F.L.E.I.J.A. Kit -item.multi_kit.name=Multi Purpose Bomb Kit -item.grenade_kit.name=Grenade Kit -item.nuke_electric_kit.name=Electronic Engineer's Kit -item.prototype_kit.name=Prototype Kit -item.missile_kit.name=Missile Kit -item.t45_kit.name=T45 Power Armor Kit -item.euphemium_kit.name=Euphemium Kit - -tile.waste_earth.name=Dead Grass -tile.waste_trinitite.name=Trinitite Ore -tile.waste_trinitite_red.name=Red Trinitite Ore -tile.waste_log.name=Charred Log -tile.waste_planks.name=Charred Wooden Planks - -item.trinitite.name=Trinitite -item.nuclear_waste.name=Nuclear Waste -item.scrap.name=Scrap - -item.ingot_uranium_fuel.name=Ingot of Uranium Fuel -item.ingot_plutonium_fuel.name=Ingot of Plutonium Fuel -item.ingot_mox_fuel.name=Ingot of MOX Fuel -item.ingot_schrabidium_fuel.name=Ingot of Schrabidium Fuel - -item.nugget_uranium_fuel.name=Nugget of Uranium Fuel -item.nugget_plutonium_fuel.name=Nugget of Plutonium Fuel -item.nugget_mox_fuel.name=Nugget of MOX Fuel -item.nugget_schrabidium_fuel.name=Nugget of Schrabidium Fuel - -item.grenade_generic.name=Grenade -item.grenade_strong.name=Enhanced Grenade -item.grenade_frag.name=Frag Grenade -item.grenade_fire.name=Flame Frag Grenade -item.grenade_shrapnel.name=Shrapnel Grenade -item.grenade_cluster.name=Cluster Bomb -item.grenade_flare.name=Flare Grenade -item.grenade_electric.name=Lightning Bomb -item.grenade_poison.name=Poison Grenade -item.grenade_gas.name=Gas Grenade -item.grenade_pulse.name=Impulse Grenade -item.grenade_plasma.name=Plasma Grenade -item.grenade_tau.name=Tau Grenade -item.grenade_schrabidium.name=Schrabidium Grenade -item.grenade_lemon.name=Combustible Lemon -item.grenade_mk2.name=Mk 2 Grenade "Ambassador Pineapple" -item.grenade_aschrab.name=Tossable Antischrabidium Cell -item.grenade_nuke.name=Mark VI Drill Grenade -item.grenade_nuclear.name=Nuka Grenade -item.grenade_zomg.name=Negative Energy Pair Annihilation Grenade -item.grenade_black_hole.name=Black Hole Grenade -item.ullapool_caber.name=Ullapool Caber - -item.rod_uranium_fuel.name=Uranium Fuel Rod -item.rod_dual_uranium_fuel.name=Uranium Dual Fuel Rod -item.rod_quad_uranium_fuel.name=Uranium Quad Fuel Rod -item.rod_plutonium_fuel.name=Plutonium Fuel Rod -item.rod_dual_plutonium_fuel.name=Plutonium Dual Fuel Rod -item.rod_quad_plutonium_fuel.name=Plutonium Quad Fuel Rod -item.rod_mox_fuel.name=MOX Fuel Rod -item.rod_dual_mox_fuel.name=MOX Dual Fuel Rod -item.rod_quad_mox_fuel.name=MOX Quad Fuel Rod -item.rod_schrabidium_fuel.name=Schrabidium Fuel Rod -item.rod_dual_schrabidium_fuel.name=Schrabidium Dual Fuel Rod -item.rod_quad_schrabidium_fuel.name=Schrabidium Quad Fuel Rod - -item.rod_water.name=Water Cell -item.rod_dual_water.name=Dual Water Cell -item.rod_quad_water.name=Quad Water Cell - -item.rod_coolant.name=Coolant Cell -item.rod_dual_coolant.name=Dual Coolant Cell -item.rod_quad_coolant.name=Quad Coolant Cell - -item.rod_lithium.name=Lithium Rod -item.rod_dual_lithium.name=Dual Lithium Rod -item.rod_quad_lithium.name=Quad Lithium Rod - -item.rod_tritium.name=Tritium Cell -item.rod_dual_tritium.name=Dual Tritium Cell -item.rod_quad_tritium.name=Quad Tritium Cell - -item.levitation_unit.name=Gravity Manipulator -item.thermo_unit_empty.name=Thermic Distribution Unit -item.thermo_unit_endo.name=Coldness Distribution Unit -item.thermo_unit_exo.name=Heat Distribution Unit - -item.bomb_waffle.name=Waffle of Mass Destruction -item.schnitzel_vegan.name=Vegan Schnitzel -item.apple_schrabidium.name=Schrabidium Apple -item.cotton_candy.name=Radioactive Cotton Candy -item.tem_flakes.name=Tem Flakes -item.glowing_stew.name=Glowing Mushroom Stew -item.lemon.name="Lemon" - -tile.frozen_grass.name=Frozen Grass -tile.frozen_dirt.name=Frozen Dirt -tile.frozen_log.name=Frozen Log -tile.frozen_planks.name=Frozen Planks - -tile.tape_recorder.name=Tape Recorder -tile.steel_poles.name=Steel Pole -tile.pole_top.name=Antenna Top -tile.pole_satellite_receiver.name=Satellite Receiver -tile.steel_wall.name=Steel Wall -tile.steel_corner.name=Steel Wall Corner -tile.steel_roof.name=Flat Steel Roof -tile.steel_beam.name=Steel Beam -tile.steel_scaffold.name=Steel Scaffold - -item.gun_revolver_iron.name=Simple Revolver -item.gun_revolver.name=Enhanced Revolver -item.gun_revolver_gold.name=Golden Revolver -item.gun_revolver_lead.name=Nuka Revolver -item.gun_revolver_schrabidium.name=Schrabidium Revolver -item.gun_revolver_cursed.name=Cursed Revolver -item.gun_revolver_nightmare.name=Nightmare Revolver (Original) -item.gun_revolver_nightmare2.name=Nightmare Revolver (Dark) -item.gun_fatman.name=M42 Nuclear Catapult "Fat Man" -item.gun_mirv.name=M42 Nuclear Catapult "Experimental MIRV" -item.gun_bf.name=M42_2 Nuclear Catapult "Antimatter Launcher" -item.gun_mp40.name=Submachine Gun -item.gun_uboinik.name=Uboinik -item.gun_xvl1456.name=XVL1456 Tau Cannon Prototype -item.gun_osipr.name=Overwatch Standard Issue Pulse Rifle -item.gun_immolator.name=The Immolator -item.gun_cryolator.name=The Cryolator -item.gun_mp.name=Pacifist's Machine Gun -item.gun_zomg.name=Singularity Powered Annihilation Ray "ZOMG Cannon" -item.gun_emp.name=EMP Ray -item.gun_super_shotgun.name=Super Shotgun -item.gun_moist_nugget.name=Mosin-Nagant -item.gun_revolver_inverted.name=Flipped Revolver -item.gun_jack.name=Jackhammer -item.gun_spark.name=Spark Plug -item.gun_hp.name=HPP Lazerjet -item.gun_euthanasia.name=Euthanasia -item.gun_defabricator.name=Defabricator - -item.gun_revolver_iron_ammo.name=Bullet -item.gun_revolver_ammo.name=Lead Bullet -item.gun_revolver_gold_ammo.name=Golden Bullet -item.gun_revolver_lead_ammo.name=Glass Covered Nuclear Bullet -item.gun_revolver_schrabidium_ammo.name=Schrabidium Bullet -item.gun_revolver_cursed_ammo.name=Steel Bullet -item.gun_revolver_nightmare_ammo.name=Nightmare Bullet -item.gun_revolver_nightmare2_ammo.name=Laser Buckshot -item.gun_fatman_ammo.name=Mini Nuke -item.gun_mirv_ammo.name=Eightfold MIRV -item.gun_bf_ammo.name=Mk.V Compact AMAT-Artillery Shell - Type B.F. -item.gun_mp40_ammo.name=Submachine Gun Round -item.gun_uboinik_ammo.name=12x70 Buckshot -item.gun_xvl1456_ammo.name=Depleted Uranium-235 Box -item.gun_osipr_ammo.name=Dark Energy Pulse Plug -item.gun_osipr_ammo2.name=Combine Ball -item.gun_immolator_ammo.name=Immolator Fuel -item.gun_cryolator_ammo.name=Cryo Cell -item.gun_mp_ammo.name=Small Propellantless Machine Gun Round -item.gun_emp_ammo.name=Energy Cell -item.gun_jack_ammo.name=Quadruple Shotgun Shell -item.gun_spark_ammo.name=Electromagnetic Cartridge -item.gun_hp_ammo.name=Ink Cartridge -item.gun_euthanasia_ammo.name=Syringe -item.gun_defabricator_ammo.name=Defabricator Energy Cell - -item.clip_revolver_iron.name=Box of Iron Rounds -item.clip_revolver.name=Box of .357 Rounds -item.clip_revolver_gold.name=Small Coffer of Golden Bullets -item.clip_revolver_schrabidium.name=Schrabidium Ammo Container -item.clip_rpg.name=Rocket Container -item.clip_xvl1456.name=Large Isotope Box -item.clip_osipr.name=AR2 Magazine -item.clip_immolator.name=Tank of Immolator Fuel -item.clip_cryolator.name=Tank of Cryolator Fuel -item.clip_revolver_lead.name=Box of Nuclear Bullets -item.clip_revolver_cursed.name=Britannia Military Standard Issue Pisol Magazine -item.clip_fatman.name=Six Pack of Mini Nukes -item.clip_mirv.name=Three-In-One Pack of Mini MIRVs -item.clip_bf.name=BF-Shell Double Pack -item.clip_mp.name=Britannia Military Standard Issue Assult Rifle Magazine -item.clip_mp40.name=9mm SMG Magazine -item.clip_uboinik.name=Box of Buckshot Rounds -item.clip_emp.name=Small Pack of Energy Cells -item.clip_revolver_nightmare.name=Bag of Bullets -item.clip_revolver_nightmare2.name=Belt with Laser Buckshot - -tile.block_schrabidium.name=Block of Schrabidium -item.plate_gold.name=Gold Plate - -item.syringe_empty.name=Empty Syringe -item.syringe_antidote.name=Antidote -item.syringe_poison.name=Poisonous Injection -item.syringe_awesome.name=AWESOME -item.syringe_metal_empty.name=Metal Syringe -item.syringe_metal_stimpak.name=Stimpak -item.syringe_metal_medx.name=Med-X -item.syringe_metal_psycho.name=Psycho -item.pill_iodine.name=Iodine Pill -item.plan_c.name=Plan C - -item.stealth_boy.name=Stealth Device - -entity.hbm.entity_bullet.name=Bullet -entity.hbm.entity_rocket.name=Rocket -entity.hbm.entity_schrabnel.name=Schrabnel -entity.entity_mob_nuclear_creeper.name=Nuclear Creeper -entity.entity_mob_hunter_chopper.name=Hunter ChopperCreeper -entity.entity_cyber_crab.name=Cyber Crab - -item.cap_aluminium.name=Aluminium Cap -item.hull_small_steel.name=Small Steel Shell -item.hull_small_aluminium.name=Small Aluminium Shell -item.hull_big_steel.name=Big Steel Shell -item.hull_big_aluminium.name=Big Aluminium Shell -item.hull_big_titanium.name=Big Titanium Shell -item.fins_flat.name=Flat Steel Casing -item.fins_small_steel.name=Small Steel Grid Fins -item.fins_big_steel.name=Big Steel Grid Fins -item.fins_tri_steel.name=Large Steel Fins -item.fins_quad_titanium.name=Small Titanium Fins -item.sphere_steel.name=Steel Sphere -item.pedestal_steel.name=Steel Pedestal -item.dysfunctional_reactor.name=Dysfunctional Nuclear Reactor - -item.rotor_steel.name=Large Steel Rotor -item.generator_steel.name=Generator Body -item.blade_titanium.name=Titanium Blade -item.turbine_titanium.name=Titanium Steam Turbine -item.generator_front.name=Generator Front - -item.combine_scrap.name=CMB Scrap Metal -item.chopper_head.name=Hunter Chopper Cockpit -item.chopper_gun.name=Emplacement Gun -item.chopper_torso.name=Hunter Chopper Body -item.chopper_tail.name=Hunter Chopper Tail -item.chopper_wing.name=Hunter Chopper Wing -item.chopper_blades.name=Hunter Chopper Rotor Blades - -item.igniter.name=Igniter -item.watch.name=Broken Pocket Watch -item.apple_astatine.name=Euphemium Apple -item.ingot_astatine.name=Euphemium Ingot -item.nugget_astatine.name=Euphemium Nugget -item.rod_quad_astatine.name=Burned Out Quad Schrabidium Fuel Rod - -item.astatine_helmet.name=Euphemium Helemt -item.astatine_plate.name=Euphemium Chestplate -item.astatine_legs.name=Euphemium Leggings -item.astatine_boots.name=Euphemiums Boots - -item.schrabidium_helmet.name=Schrabidium Helmet -item.schrabidium_plate.name=Schrabidium Chestpate -item.schrabidium_legs.name=Schrabidium Leggings -item.schrabidium_boots.name=Schrabidium Boots -item.schrabidium_sword.name=Schrabidium Sword -item.schrabidium_pickaxe.name=Schrabidium Pickaxe -item.schrabidium_axe.name=Schrabidium Axe -item.schrabidium_shovel.name=Schrabidium Shovel -item.schrabidium_hoe.name=Schrabidium Hoe - -item.chainsaw.name=Chainsaw -item.crowbar.name=Mk.V Crate Opening Device "Crowbar" - -item.mask_of_infamy.name=Mask of Infamy - -tile.det_cord.name=Det Cord -tile.det_charge.name=Explosive Charge -tile.red_barrel.name=Explosive Barrel -tile.yellow_barrel.name=Radioactive Barrel - -item.designator.name=Short Range Target Designator -item.designator_range.name=Long Range Target Designator -item.missile_generic.name=High Explosive Missile -item.missile_anti_ballistic.name=Anti Ballistic Missile (WIP) -item.missile_incendiary.name=Incendiary Missile -item.missile_cluster.name=Cluster Missile -item.missile_buster.name=Bunker Buster -item.missile_strong.name=Strong HE Missile -item.missile_incendiary_strong.name=Strong Incendiary Missile -item.missile_cluster_strong.name=Strong Cluster Missile -item.missile_buster_strong.name=Enhanced Bunker Buster -item.missile_burst.name=Spare Missile -item.missile_inferno.name=Inferno Missile G.R.N. Mk.II -item.missile_rain.name=Bomblet Rain -item.missile_drill.name=The Concrete Cracker -item.missile_nuclear.name=Nuclear Missile -item.missile_nuclear_cluster.name=Nuclear MIRV Missile -item.missile_endo.name=Endothermic Missile -item.missile_exo.name=Exothermic Missile - -item.hazmat_helmet.name=Hazmat Helmet -item.hazmat_plate.name=Hazmat Chestplate -item.hazmat_legs.name=Hazmat Leggings -item.hazmat_boots.name=Hazmat Boots -item.hazmat_paa_helmet.name=PaA Battle Hazmat Suit Helmet -item.hazmat_paa_plate.name=PaA Battle Hazmat Suit Chestplate -item.hazmat_paa_legs.name=PaA Battle Hazmat Suit Leggings -item.hazmat_paa_boots.name=PaA Battle Hazmat Suit Boots -item.asbestos_helmet.name=Fire Proximity Helmet -item.asbestos_plate.name=Fire Proximity Chestplate -item.asbestos_legs.name=Fire Proximity Leggings -item.asbestos_boots.name=Fire Proximity Boots - -item.paa_plate.name=PaA Chest Protection Plate -item.paa_legs.name=PaA Leg Reinforcements -item.paa_boots.name=PaA "good ol' shoes" - -item.goggles.name=Protection Goggles -item.gas_mask.name=Gas Mask -item.oxy_mask.name=Oxygen Mask -item.t45_helmet.name=T45 Power Armor Helmet -item.t45_plate.name=T45 Power Armor Chestplate -item.t45_legs.name=T45 Power Armor Leggings -item.t45_boots.name=T45 Power Armor Boots - -tile.mush.name=Glowing Mushroom -tile.waste_mycelium.name=Glowing Mycelium - -item.warhead_generic_small.name=Small Warhead -item.warhead_generic_medium.name=Medium Warhead -item.warhead_generic_large.name=Large Warhead -item.warhead_incendiary_small.name=Small Incendiary Warhead -item.warhead_incendiary_medium.name=Medium Incendiary Warhead -item.warhead_incendiary_large.name=Large Incendiary Warhead -item.warhead_cluster_small.name=Small Cluster Warhead -item.warhead_cluster_medium.name=Medium Cluster Warhead -item.warhead_cluster_large.name=Large Cluster Warhead -item.warhead_buster_small.name=Small Bunker Buster Warhead -item.warhead_buster_medium.name=Medium Bunker Buster Warhead -item.warhead_buster_large.name=Large Bunker Buster Warhead -item.warhead_nuclear.name=Nuclear Warhead -item.warhead_mirvlet.name=MIRV -item.warhead_mirv.name=Eightfold MIRV Warhead -item.warhead_thermo_endo.name=Endothermic Warhead -item.warhead_thermo_exo.name=Exothermic Warhead -item.fuel_tank_small.name=Small Fuel Tank -item.fuel_tank_medium.name=Medium Fuel Tank -item.fuel_tank_large.name=Large Fuel Tank -item.thruster_small.name=Small Thruster -item.thruster_medium.name=Medium Thruster -item.thruster_large.name=Large Thruster - -item.wand_k.name=Construction Wand -item.wand_s.name=Structure Wand -item.wand_d.name=Debug Wand - -item.screwdriver.name=Screwdriver -item.overfuse.name=Singularity Screwdriver - -item.steel_helmet.name=Steel Helmet -item.steel_plate.name=Steel Chestplate -item.steel_legs.name=Steel Leggings -item.steel_boots.name=Steel Boots -item.titanium_helmet.name=Titanium Helmet -item.titanium_plate.name=Titanium Chestplate -item.titanium_legs.name=Titanium Leggings -item.titanium_boots.name=Titanium Boots -item.alloy_helmet.name=Advanced Alloy Helmet -item.alloy_plate.name=Advanced Alloy Chestplate -item.alloy_legs.name=Advanced Alloy Leggings -item.alloy_boots.name=Advanced Alloy Boots -item.cmb_helmet.name=CMB Steel Helmet -item.cmb_plate.name=CMB Steel Chestplate -item.cmb_legs.name=CMB Steel Leggings -item.cmb_boots.name=CMB Steel Boots - -item.steel_sword.name=Steel Sword -item.steel_pickaxe.name=Steel Pickaxe -item.steel_axe.name=Steel Axe -item.steel_shovel.name=Steel Shovel -item.steel_hoe.name=Steel Hoe -item.titanium_sword.name=Titanium Sword -item.titanium_pickaxe.name=Titanium Pickaxe -item.titanium_axe.name=Titanium Axe -item.titanium_shovel.name=Titanium Shovel -item.titanium_hoe.name=Titanium Hoe -item.alloy_sword.name=Advanced Alloy Sword -item.alloy_pickaxe.name=Advanced Alloy Pickaxe -item.alloy_axe.name=Advanced Alloy Axe -item.alloy_shovel.name=Advanced Alloy Shovel -item.alloy_hoe.name=Advanced Alloy Hoe -item.cmb_sword.name=CMB Steel Sword -item.cmb_pickaxe.name=CMB Steel Pickaxe -item.cmb_axe.name=CMB Steel Axe -item.cmb_shovel.name=CMB Steel Shovel -item.cmb_hoe.name=CMB Steel Hoe -item.elec_sword.name=Stunstick -item.elec_pickaxe.name=Impact Drill -item.elec_axe.name=Electric Chainsaw -item.elec_shovel.name=Spiral Drill - -tile.red_cable.name=Red Copper Cable -tile.block_meteor.name=Meteor Block - -item.cape_radiation.name=Cape (Radiation) -item.cape_gasmask.name=Cape (Gas Mask) -item.cape_schrabidium.name=Cape (Schrabidic) -item.cape_hbm.name=Hbm's Cape -item.cape_dafnik.name=Dafnik's Cape -item.cape_lpkukin.name=LPkukin's Cape -item.cape_vertice.name=Lord Vertice's Cape - -tile.machine_converter_he_rf.name=HE to RF Converter -tile.machine_converter_rf_he.name=RF to HE Converter - -item.schrabidium_hammer.name=Schrabidium Hammer -item.euphemium_stopper.name=Stopper -item.matchstick.name=Matchstick -item.remote.name=Broken Remote - -item.redcoil_capacitor.name=Redcoil Capacitor -item.detonator.name=Detonator -item.crate_caller.name=Supply Drop Requester - -item.ingot_hes.name=Highly Enriched Schrabidium Fuel Ingot -item.ingot_les.name=Low Enriched Schrabidium Fuel Ingot -item.nugget_hes.name=Highly Enriched Schrabidium Fuel Nugget -item.nugget_les.name=Low Enriched Schrabidium Fuel Nugget - -item.pellet_schrabidium.name=Pure Schrabidium Watz Pellet -item.pellet_hes.name=HES Watz Pellet -item.pellet_mes.name=MES Watz Pellet -item.pellet_les.name=LES Watz Pellet -item.pellet_beryllium.name=Beryllium Moderator Pellet -item.pellet_neptunium.name=Neptunium Watz Pellet -item.pellet_lead.name=Lead Reflector Pellet -item.pellet_advanced.name=Advanced Watz Performance Improver - -item.titanium_filter.name=Titanium Filter - -tile.mud_block.name=Poisonous Mud -fluid.mud_fluid=Poisonous Mud -item.bucket_mud.name=Bucket of Poisonous Mud -tile.acid_block.name=Acid -fluid.acid_fluid=Acid -item.bucket_acid.name=Bucket of Acid -tile.toxic_block.name=Stereotypical Green Ooze -fluid.toxic_fluid=Stereotypical Green Ooze -item.bucket_toxic.name=Bucket of Stereotypical Green Ooze -item.tank_waste_0.name=Mud Container -item.tank_waste_1.name=Mud Container -item.tank_waste_2.name=Mud Container -item.tank_waste_3.name=Mud Container -item.tank_waste_4.name=Mud Container -item.tank_waste_5.name=Mud Container -item.tank_waste_6.name=Mud Container -item.tank_waste_7.name=Mud Container -item.tank_waste_8.name=Mud Container - -item.can_empty.name=Empty Can -item.can_smart.name='Smart' Energy Drink -item.can_creature.name='Creature' Energy Drink -item.can_redbomb.name='Red Bomb' Energy Drink -item.can_mrsugar.name='Dr. Sugar' Soft Drink -item.can_overcharge.name=Overcharge Delirium XT -item.bottle_empty.name=Empty Bomb-Shaped Bottle -item.bottle_nuka.name=Bottle of Nuka Cola -item.bottle_cherry.name=Bottle of Nuka Cherry -item.bottle_quantum.name=Bottle of Nuka Cola Quantum -item.bottle2_empty.name=Empty Bottle -item.bottle2_korl.name=Korl -item.bottle2_fritz.name=Fritz Cola -item.bottle2_korl_special.name=The First Korl -item.bottle2_fritz_special.name=The First Fritz Cola -item.chocolate_milk.name=Chocolate Milk -item.cap_nuka.name=Nuka Cola Bottle Cap -item.cap_quantum.name=Nuka Cola Quantum Bottle Cap -item.cap_korl.name=Korl Bottle Cap -item.cap_fritz.name=Fritz Cola Bottle Cap -item.ring_pull.name=Ring Pull - -item.bottle_opener.name=Hbm's Own Self-Made Bottle Opener - -item.blades_aluminium.name=Aluminium Shredder Blades -item.blades_gold.name=Golden Shredder Blades -item.blades_iron.name=Iron Shredder Blades -item.blades_steel.name=Steel Shredder Blades -item.blades_titanium.name=Titanium Shredder Blades -item.blades_advanced_alloy.name=Advanced Shredder Blades -item.blades_combine_steel.name=CMB Shredder Blades -item.blades_schrabidium.name=Schrabidium Shredder Blades - -item.part_lithium.name=Box of Lithium Dust -item.part_beryllium.name=Box of Beryllium Dust -item.part_carbon.name=Box of Carbon Dust -item.part_copper.name=Box of Copper Dust -item.part_plutonium.name=Box of Plutonium Dust - -item.crystal_energy.name=Energy Crystal -item.pellet_coolant.name=Coolant Cluster - -item.linker.name=Telelinker -item.oil_detector.name=Oil Reservoir Detector - -item.thermo_element.name=Thermoelectric Element -item.limiter.name=Generator Limiter - -item.multitool_dig.name=Power Fist (Digging Claw) -item.multitool_silk.name=Power Fist (Silk Touch Claw) -item.multitool_ext.name=Power Fist (Ore Extracter) -item.multitool_miner.name=Power Fist (Extracting Mining Laser) -item.multitool_hit.name=Power Fist (Fist) -item.multitool_beam.name=Power Fist (Zapper) -item.multitool_sky.name=Power Fist (Crack the Sky) -item.multitool_mega.name=Power Fist (Super Punch) -item.multitool_joule.name=Power Fist (Giga Joule) -item.multitool_decon.name=Power Fist (Decontaminator) - -item.australium_iii.name=Mark III Life Extender -item.australium_iv.name=Mark IV Life Extender -item.australium_v.name=Mark V Life Extender - -item.weapon_saw.name=Doctor Assisted Homicide -item.weapon_bat.name=Richard's Default -item.weapon_bat_nail.name=The Cliché -item.weapon_golf_club.name=Russian Mobster's Club -item.weapon_pipe_rusty.name=The Attitude Adjuster -item.weapon_pipe_lead.name=The Manual Override -item.reer_graar.name=The Reer Graar - -item.letter.name=Express Mail -item.polaroid.name=The Polaroid -item.book_secret.name=3-596-50802-9 - -item.crystal_horn.name=Crystal Horn -item.crystal_charred.name=Charred Crystal -item.ingot_lanthanium.name=Semi-Stable Lanthanium Ingot -item.ingot_actinium.name=Semi-Stable Actinium Ingot - -tile.dummy_block.name=Dummy Block -tile.dummy_port.name=Dummy Block (Electricity Port) - -item.chopper.name=Hunter Chopper - -item.nothing.name=Nothing - -tile.crystal_virus.name=Dark Crystal -tile.crystal_hardened.name=Hardened Dark Crystal -tile.crystal_pulsar.name=Pulsating Crystal - -tile.cheater_virus.name=Gelid Euphemium -tile.cheater_virus_seed.name=Unstable Euphemium Schrabide Block diff --git a/src/main/resources/assets/hbm/lang/te_ST.lang b/src/main/resources/assets/hbm/lang/te_ST.lang deleted file mode 100644 index cc7f1b34b..000000000 --- a/src/main/resources/assets/hbm/lang/te_ST.lang +++ /dev/null @@ -1,1262 +0,0 @@ -itemGroup.tabTest=Nuclear Tech Mod Test Tab -itemGroup.tabParts=NTM Resources and Parts -itemGroup.tabBlocks=NTM Blocks and Machines -itemGroup.tabNuke=NTM Bombs and Gear -itemGroup.tabMachine=NTM Templates - -hbmfluid.none=None -hbmfluid.water=Water -hbmfluid.lava=Lava -hbmfluid.uf6=Uranium Hexafluoride -hbmfluid.puf6=Plutonium Hexafluoride -hbmfluid.deuterium=Deuterium -hbmfluid.tritium=Tritium -hbmfluid.oil=Crude Oil -hbmfluid.smear=Industrial Oil -hbmfluid.reclaimed=Reclaimed Industrial Oil -hbmfluid.petroil=Petroil -hbmfluid.lubricant=Engine Lubricant -hbmfluid.diesel=Diesel -hbmfluid.kerosene=Kerosene -hbmfluid.gas=Natural Gas -hbmfluid.coolant=Coolant -hbmfluid.amat=Antimatter -hbmfluid.aschrab=Antischrabidium - -item.record.lc.desc=Valve - Diabolic Adrenaline Guitar/Lambda Core -item.record.ss.desc=Valve - Sector Sweep -item.record.vc.desc=Valve - Vortal Combat - -death.attack.nuclearBlast=%1$s was blown away by a nuclear explosion. -death.attack.revolverBullet=%1$s was shot in the head by %2$s. -death.attack.mudPoisoning=%1$s died in poisonous mud. -death.attack.euthanized=%1$s was euthanized by %2$s. -death.attack.euthanizedSelf=%1$s euthanized himself, what a dork. -death.attack.euthanizedSelf2=%1$s wins the Darwin Award. -death.attack.tau=%1$s was riddeled by %2$s using negatively charged tauons. -death.attack.tauBlast=%1$s charged the XVL1456 for too long and was blown into pieces. -death.attack.chopperBullet=%1$s was rekt by %2$s. -death.attack.cmb=%1$s was fizzeled by %2$s. -death.attack.subAtomic=%1$s's atoms have been destroyed by %2$s. -death.attack.subAtomic2=%1$s was QPU-misaligned because %2$s tampered with his de facto speed. -death.attack.subAtomic3=%1$s's divergence dropped below 1 percent because of %2$s. -death.attack.subAtomic4=%1$s was divided by zero by %2$s. -death.attack.subAtomic5=%1$s was nullified by %2$s. -death.attack.radiation=%1$s died from radiation poisoning. -death.attack.acid=%1$s fell into acid. -death.attack.suicide=%1$s blew their head off. -death.attack.electrified=%1$s was electrified by %2$s. -death.attack.flamethrower=%1$s was cremated by %2$s. -death.attack.plasma=%1$s was immolated by %2$s. -death.attack.ice=%1$s was turned into a popsicle by %2$s. -death.attack.cheater=%1$s's intestines turned into oats. (???) -death.attack.laser=%1$s was turned into ash by %2$s. -death.attack.rubble=%1$s was squashed by debris. -death.attack.shrapnel=%1$s was ragged by a shrapnel. -death.attack.teleporter=%1$s was teleported into nothingness. -death.attack.blackhole=%1$s was spaghettified. - -item.redstone_sword.name=Redstone Sword -item.big_sword.name=Great Sword -item.test_nuke_igniter.name=Igniter -item.test_nuke_propellant.name=Propellant -item.test_nuke_tier1_shielding.name=Neutron Reflector (Tier 1) -item.test_nuke_tier2_shielding.name=Neutron Reflector (Tier 2) -item.test_nuke_tier1_bullet.name=U235 Projectile (Tier 1) -item.test_nuke_tier2_bullet.name=MOX Projectile (Tier 2) -item.test_nuke_tier1_target.name=Subcritical U235 Target (Tier 1) -item.test_nuke_tier2_target.name=Subcritical MOX Target (Tier 2) - -item.gadget_explosive.name=Propellant -item.gadget_explosive8.name=Bundle of Propellant -item.gadget_wireing.name=Wiring -item.gadget_core.name=Plutonium Core - -item.boy_igniter.name=Bomb Igniter -item.boy_propellant.name=Propellant -item.boy_bullet.name=U235 Projectile -item.boy_target.name=Subcritical U235 Target -item.boy_shielding.name=Neutron Shielding - -item.man_explosive.name=Beans -item.man_explosive8.name=Bundle of Propellant -item.man_igniter.name=Bomb Igniter -item.man_core.name=Plutonium Core - -item.mike_core.name=Uranium Coated Deuterium Tank -item.mike_deut.name=Deuterium Tank -item.mike_cooling_unit.name=Deuterium Cooling Unit - -item.tsar_core.name=Tsar Bomba Core - -item.fleija_igniter.name=Pulse Igniter -item.fleija_propellant.name=Schrabidium Propellant -item.fleija_core.name=F.L.E.I.J.A. Uranium 235 Charge - -container.nukeGadget=The Gadget -container.nukeBoy=Little Boy -container.nukeMan=Fat Man -container.nukeMike=Ivy Mike -container.nukeTsar=Tsar Bomba -container.nukeFleija=F.L.E.I.J.A. -container.nukePrototype=The Prototype -container.nukeCustom=Custom Nuke - -container.bombMulti=Multi Purpose Bomb - -tile.nuke_gadget.name=The Gadget -tile.nuke_boy.name=Little Boy -tile.nuke_man.name=Fat Man -tile.nuke_mike.name=Ivy Mike -tile.nuke_tsar.name=Tsar Bomba -tile.nuke_fleija.name=F.L.E.I.J.A. -tile.nuke_prototype.name=The Prototype -tile.nuke_custom.name=Custom Nuke - -tile.bomb_multi.name=Multi Purpose Bomb - -tile.flame_war.name=Flame War in a Box -tile.float_bomb.name=Levitation Bomb -tile.therm_endo.name=Endothermic Bomb -tile.therm_exo.name=Exothermic Bomb - -tile.crashed_bomb.name=Dud - -tile.crate.name=Supply Crate -tile.marker_structure.name=Multiblock Structure Marker - -tile.machine_difurnace_off.name=Alloy Furnace -tile.machine_difurnace_on.name=Alloy Furnace -container.diFurnace=Alloy Furnace -tile.machine_centrifuge.name=Centrifuge -container.centrifuge=Centrifuge -tile.machine_uf6_tank.name=Uranium Hexafluoride Tank -container.uf6_tank=UF6 Tank -tile.machine_puf6_tank.name=Plutonium Hexafluoride Tank -container.puf6_tank=PuF6 Tank -tile.machine_reactor.name=Breeding Reactor -container.reactor=Breeding Reactor -tile.machine_nuke_furnace_off.name=Nuclear Powered Furnace -tile.machine_nuke_furnace_on.name=Nuclear Powered Furnace -container.nukeFurnace=Nuclear Powered Furnace -tile.machine_rtg_furnace_off.name=RTG Furnace -tile.machine_rtg_furnace_on.name=RTG Furnace -container.rtgFurnace=RTG Furnace -tile.machine_electric_furnace_off.name=Electric Furnace -tile.machine_electric_furnace_on.name=Electric Furnace -container.electricFurnace=Electric Furnace -tile.machine_generator.name=Nuclear Reactor -container.generator=Nuclear Reactor -tile.red_wire_coated.name=Coated Red Copper Cable -tile.machine_deuterium.name=Deuterium Extractor -container.machine_deuterium=Deuterium Extractor -tile.machine_battery.name=Energy Storage Block -container.battery=Energy Storage -tile.machine_coal_off.name=Coal Generator -tile.machine_coal_on.name=Coal Generator -container.machineCoal=Coal Generator -tile.launch_pad.name=Missile Launch Pad -container.launchPad=Missile Launch Pad -tile.book_guide.name=Hbm's Nuclear Tech Mod Manual -tile.machine_schrabidium_transmutator.name=Schrabidium Transmutation Device -container.machine_schrabidium_transmutator=Schrabidium Transmutation Device -tile.machine_diesel.name=Diesel Generator -container.machineDiesel=Diesel Generator -tile.machine_shredder.name=Shredder -container.machineShredder=Shredder -tile.machine_combine_factory.name=CMB Steel Furnace -container.machineCMB=CMB Steel Furnace -tile.machine_teleporter.name=Teleporter -container.teleporter=Teleporter -tile.machine_reix_mainframe.name=Rei-X Mainframe (WIP) -container.reix=Rei-X Mainframe -tile.machine_industrial_generator.name=Industrial Generator -container.iGenerator=Industrial Generator -tile.machine_cyclotron.name=Cyclotron -container.cyclotron=Cyclotron -tile.machine_well.name=Oil Derrick -tile.oil_pipe.name=Crude Oil Extraction Pipe -container.oilWell=Oil Derrick -tile.machine_refinery.name=Oil Refinery -container.machineRefinery=Oil Refinery -tile.oil_duct.name=Oil Pipe -tile.oil_duct_solid.name=Coated Oil Pipe -tile.machine_flare.name=Gas Flare -container.gasFlare=Gas Flare -tile.gas_duct.name=Gas Pipe -tile.gas_duct_solid.name=Coated Gas Pipe -tile.machine_drill.name=Automatic Mining Drill -container.miningDrill=Automatic Mining Drill -tile.machine_assembler.name=Assembly Machine -container.assembler=Assembly Machine -tile.machine_chemplant.name=Chemical Plant -container.chemplant=Chemical Plant - -tile.red_pylon.name=Electricity Pole -item.wiring_red_copper.name=Cable Drum - -tile.rail_highspeed.name=High Speed Rail -tile.rail_booster.name=High Speed Booster Rail - -tile.factory_titanium_hull.name=Basic Factory Casing -tile.factory_titanium_furnace.name=Basic Factory Access Hatch -tile.factory_titanium_conductor.name=Basic Factory Electricity Port -tile.factory_titanium_core.name=Basic Factory Core Component -item.factory_core_titanium.name=Basic Factory Energy Cluster -container.factoryTitanium=Basic Factory -tile.factory_advanced_hull.name=Advanced Factory Casing -tile.factory_advanced_furnace.name=Advanced Factory Access Hatch -tile.factory_advanced_conductor.name=Advanced Factory Electricity Port -tile.factory_advanced_core.name=Advanced Factory Core Component -item.factory_core_advanced.name=Advanced Factory Energy Cluster -container.factoryAdvanced=Advanced Factory - -tile.reactor_element.name=Reactor Chamber -tile.reactor_control.name=Control Rods -tile.reactor_hatch.name=Reactor Access Hatch -tile.reactor_conductor.name=Reactor Electricity Port -tile.reactor_computer.name=Reactor Control -container.reactorMultiblock=Big Nuclear Reactor - -tile.fusion_conductor.name=Superconducting Magnet -tile.fusion_center.name=Central Magnet Piece -tile.fusion_motor.name=Magnet Motor Piece -tile.fusion_heater.name=Plasma Heater -tile.fusion_hatch.name=Fusion Reactor Access Hatch -tile.fusion_core.name=Fusion Reactor Control -tile.plasma.name=Plasma -container.fusionMultiblock=Big Fusion Reactor - -tile.watz_element.name=Watz Reaction Chamber -tile.watz_control.name=Reinforced Control Rods -tile.watz_cooler.name=Watz Reactor Supercooler -tile.watz_end.name=Watz Reactor Stability Element -tile.watz_hatch.name=Watz Reactor Access Hatch -tile.watz_conductor.name=Watz Electricity Port -tile.watz_core.name=Watz Reactor Control -container.watzPowerplant=Watz Power Plant - -tile.fwatz_conductor.name=4000K Superconducting Magnet -tile.fwatz_cooler.name=Regenerative Coolant Fluid Tank Shell -tile.fwatz_tank.name=Regenerative Coolant Fluid Tank -tile.fwatz_scaffold.name=Fusionary Watz Plant Structural Support -tile.fwatz_hatch.name=Fusionary Watz Plant Access Hatch -tile.fwatz_computer.name=Fusionary Watz Reactor Calculation Matrix -tile.fwatz_core.name=Fusionary Watz Reactor Control -tile.fwatz_plasma.name=Destabilized Antischrabidium Plasma -container.fusionaryWatzPlant=Fusionary Watz Plant - -tile.machine_rtg_grey.name=RT Generator -container.rtg=RT Generator -tile.machine_rtg_red.name=Fulmination Generator -tile.machine_rtg_orange.name=Strong RT Generator -tile.machine_rtg_yellow.name=Australium Superfuel Reactor -tile.machine_rtg_green.name=Verticium Wealth Generator -tile.machine_rtg_cyan.name=Schrabidium Decay Generator (WIP) -tile.machine_rtg_blue.name=Convection Generator -tile.machine_rtg_purple.name=Antimatter Annihilation Generator - -item.assembly_template.TEST.name=Assembly Template: Test -item.assembly_template.MIXED_PLATE.name=Assembly Template: Mixed Plate -item.assembly_template.HAZMAT_CLOTH.name=Assembly Template: Hazmat Cloth -item.assembly_template.ASBESTOS_CLOTH.name=Assembly Template: Fire Proximity Cloth -item.assembly_template.COAL_FILTER.name=Assembly Template: Activated Carbon Filter -item.assembly_template.CENTRIFUGE_ELEMENT.name=Assembly Template: Centrifuge Element -item.assembly_template.CENTRIFUGE_TOWER.name=Assembly Template: Centrifuge Tower -item.assembly_template.DEE_MAGNET.name=Assembly Template: Dee Magnets -item.assembly_template.FLAT_MAGNET.name=Assembly Template: Flat Magnet -item.assembly_template.CYCLOTRON_TOWER.name=Assembly Template: Cyclotron Tower -item.assembly_template.REACTOR_CORE.name=Assembly Template: Breeding Reactor Core -item.assembly_template.RTG_UNIT.name=Assembly Template: RTG Unit -item.assembly_template.HEAT_UNIT.name=Assembly Template: Thermal Distribution Unit -item.assembly_template.GRAVITY_UNIT.name=Assembly Template: Gravity Manipulator -item.assembly_template.TITANIUM_DRILL.name=Assembly Template: Titanium Drill -item.assembly_template.TELEPAD.name=Assembly Template: Telepad -item.assembly_template.TELEKIT.name=Assembly Template: Entanglement Kit -item.assembly_template.GEASS_REACTOR.name=Assembly Template: Dysfunctional Nuclear Reactor -item.assembly_template.GENERATOR_FRONT.name=Assembly Template: Generator Front -item.assembly_template.WT1_GENERIC.name=Assembly Template: Small Warhead -item.assembly_template.WT2_GENERIC.name=Assembly Template: Medium Warhead -item.assembly_template.WT3_GENERIC.name=Assembly Template: Large Warhead -item.assembly_template.WT1_FIRE.name=Assembly Template: Small Incendiary Warhead -item.assembly_template.WT2_FIRE.name=Assembly Template: Medium Incendiary Warhead -item.assembly_template.WT3_FIRE.name=Assembly Template: Large Incendiary Warhead -item.assembly_template.WT1_CLUSTER.name=Assembly Template: Small Cluster Warhead -item.assembly_template.WT2_CLUSTER.name=Assembly Template: Medium Cluster Warhead -item.assembly_template.WT3_CLUSTER.name=Assembly Template: Large Cluster Warhead -item.assembly_template.WT1_BUSTER.name=Assembly Template: Small Bunker Buster Warhead -item.assembly_template.WT2_BUSTER.name=Assembly Template: Medium Bunker Buster Warhead -item.assembly_template.WT3_BUSTER.name=Assembly Template: Large Bunker Buster Warhead -item.assembly_template.W_NUCLEAR.name=Assembly Template: Nuclear Warhead -item.assembly_template.W_MIRVLET.name=Assembly Template: MIRV -item.assembly_template.W_MIRV.name=Assembly Template: Eightfold MIRV Warhead -item.assembly_template.W_ENDOTHERMIC.name=Assembly Template: Endothermic Warhead -item.assembly_template.W_EXOTHERMIC.name=Assembly Template: Exothermic Warhead -item.assembly_template.T1_TANK.name=Assembly Template: Small Fuel Tank -item.assembly_template.T2_TANK.name=Assembly Template: Medium Fuel Tank -item.assembly_template.T3_TANK.name=Assembly Template: Large Fuel Tank -item.assembly_template.T1_THRUSTER.name=Assembly Template: Small Thruster -item.assembly_template.T2_THRUSTER.name=Assembly Template: Medium Thruster -item.assembly_template.T3_THRUSTER.name=Assembly Template: Large Thruster -item.assembly_template.CHOPPER_HEAD.name=Assembly Template: Hunter Chopper Cockpit -item.assembly_template.CHOPPER_GUN.name=Assembly Template: Emplacement Gun -item.assembly_template.CHOPPER_BODY.name=Assembly Template: Hunter Chopper Body -item.assembly_template.CHOPPER_TAIL.name=Assembly Template: Hunter Chopper Tail -item.assembly_template.CHOPPER_WING.name=Assembly Template: Hunter Chopper Wing -item.assembly_template.CHOPPER_BLADES.name=Assembly Template: Hunter Chopper Rotor Blades -item.assembly_template.CIRCUIT_2.name=Assembly Template: Enhanced Circuit -item.assembly_template.CIRCUIT_3.name=Assembly Template: Advanced Circuit -item.assembly_template.RTG_PELLET.name=Assembly Template: Plutonium 238 Fuel Pellet -item.assembly_template.WEAK_PELLET.name=Assembly Template: Weak Uranium RTG Pellet -item.assembly_template.FUSION_PELLET.name=Assembly Template: Tritium-Deuterium-Cake -item.assembly_template.CLUSTER_PELLETS.name=Assembly Template: Explosive Pellets -item.assembly_template.GUN_PELLETS.name=Assembly Template: Lead Pellets - -item.fuse.name=Fuse - -tile.test_nuke.name=Test Nuke - -item.ingot_uranium.name=Uranium Ingot -item.ingot_u235.name=U235 Ingot -item.ingot_u238.name=U238 Ingot -item.ingot_plutonium.name=Plutonium Ingot -item.ingot_pu238.name=Pu238 Ingot -item.ingot_pu239.name=Pu239 Ingot -item.ingot_pu240.name=Pu240 Ingot -item.ingot_titanium.name=Titanium Ingot -item.sulfur.name=Sulfur - -item.niter.name=Niter -item.ingot_copper.name=Industrial Grade Copper -item.ingot_red_copper.name=Minecraft Grade Copper -item.ingot_tungsten.name=Tungsten Ingot -item.ingot_aluminium.name=Aluminium Ingot -item.fluorite.name=Fluorite -item.ingot_steel.name=Steel Ingot -item.plate_steel.name=Steel Plate -item.ingot_beryllium.name=Beryllium Ingot -item.plate_schrabidium.name=Schrabidium Plate -item.ingot_schrabidium.name=Schrabidium Ingot -item.nugget_schrabidium.name=Schrabidium Nugget -item.plate_copper.name=Copper Plate -item.board_copper.name=Copper Panel -item.ingot_advanced_alloy.name=Advanced Alloy Ingot -item.plate_advanced_alloy.name=Advanced Alloy Plate -item.wire_advanced_alloy.name=Super Conductor -item.coil_advanced_alloy.name=Super Conducting Coil -item.coil_advanced_torus.name=Super Conducting Ring Coil -item.coil_gold.name=Gold Coil -item.coil_gold_torus.name=Golden Ring Coil -item.lithium.name=Lithium Cube -item.ingot_magnetized_tungsten.name=Magnetized Tungsten Ingot -item.ingot_combine_steel.name=CMB Steel Ingot -item.plate_combine_steel.name=CMB Steel Plate -item.wire_magnetized_tungsten.name=4000K High Temperature Super Conductor -item.coil_magnetized_tungsten.name=4000K High Temperature Super Conducting Coil -item.plate_mixed.name=Mixed Plate -item.plate_paa.name=PaA Alloy Plate -item.ingot_dura_steel.name=High-Speed Steel Ingot -item.ingot_polymer.name=Polymer Ingot -item.bolt_dura_steel.name=High-Speed Steel Bolt -item.pipes_steel.name=Steel Pipes -item.drill_titanium.name=Titanium Drill - -item.ingot_australium.name=Australium Ingot -item.ingot_weidanium.name=Weidanium Ingot -item.ingot_reiium.name=Reiium Ingot -item.ingot_unobtainium.name=Unobtainium Ingot -item.ingot_daffergon.name=Daffergon Ingot -item.ingot_verticium.name=Verticium Ingot -item.nugget_australium.name=Australium Nugget -item.nugget_weidanium.name=Weidanium Nugget -item.nugget_reiium.name=Reiium Nugget -item.nugget_unobtainium.name=Unobtainium Nugget -item.nugget_daffergon.name=Daffergon Nugget -item.nugget_verticium.name=Verticium Nugget - -item.ingot_desh.name=Desh Ingot -item.nugget_desh.name=Desh Nugget -item.powder_desh.name=Desh Powder - -item.nugget_u235.name=U235 Nugget -item.nugget_u238.name=U238 Nugget -item.nugget_pu238.name=Pu238 Nugget -item.nugget_pu239.name=Pu239 Nugget -item.nugget_pu240.name=Pu240 Nugget -item.plate_titanium.name=Titanium Plate -item.plate_aluminium.name=Aluminium Plate -item.wire_red_copper.name=Red Copper Wire -item.neutron_reflector.name=Neutron Reflector -item.nugget_beryllium.name=Beryllium Nugget - -item.wire_aluminium.name=Aluminium Wire -item.wire_copper.name=Copper Wire -item.wire_gold.name=Gold Wire -item.wire_schrabidium.name=Schrabidium Wire - -item.circuit_aluminium.name=Basic Circuit -item.circuit_copper.name=Enhanced Circuit -item.circuit_red_copper.name=Advanved Circuit -item.circuit_gold.name=Overclocked Circuit -item.circuit_schrabidium.name=High Performance Circuit - -tile.block_aluminium.name=Block of Aluminium -tile.block_copper.name=Block of Copper -tile.block_fluorite.name=Block of Fluorite -tile.block_niter.name=Block of Niter -tile.block_red_copper.name=Block of Red Copper -tile.block_steel.name=Block of Steel -tile.block_sulfur.name=Block of Sulfur -tile.block_titanium.name=Block of Titanium -tile.block_tungsten.name=Block of Tungsten -tile.block_uranium.name=Block of Uranium -tile.block_trinitite.name=Block of Trinitite -tile.block_beryllium.name=Block of Beryllium -tile.block_waste.name=Block of Nuclear Waste -tile.block_scrap.name=Block of Scrap -tile.block_electrical_scrap.name=Block of Electrical Scrap -tile.block_advanced_alloy.name=Block of Advanced Alloy -tile.block_magnetized_tungsten.name=Block of Magnetized Tungsten -tile.block_combine_steel.name=Block of CMB Steel -tile.block_australium.name=Block of Australium -tile.block_weidanium.name=Block of Weidanium -tile.block_reiium.name=Block of Reiium -tile.block_unobtainium.name=Block of Unobtainium -tile.block_daffergon.name=Block of Daffergon -tile.block_verticium.name=Block of Verticium -tile.block_desh.name=Reinfoced Block of Desh - -tile.ore_aluminium.name=Aluminium Ore -tile.ore_copper.name=Copper Ore -tile.ore_fluorite.name=Fluorite Ore -tile.ore_niter.name=Niter Ore -tile.ore_sulfur.name=Sulfur Ore -tile.ore_titanium.name=Titanium Ore -tile.ore_tungsten.name=Tungsten Ore -tile.ore_uranium.name=Uranium Ore -tile.ore_schrabidium.name=Schrabidium Ore -tile.ore_beryllium.name=Beryllium Ore - -tile.ore_nether_uranium.name=Nether Uranium Ore -tile.ore_nether_plutonium.name=Nether Plutonium Ore -tile.ore_nether_tungsten.name=Nether Tungsten Ore -tile.ore_nether_sulfur.name=Nether Sulfur Ore -tile.ore_nether_fire.name=Fire Ore -tile.ore_nether_schrabidium.name=Nether Schrabidium Ore - -tile.ore_australium.name=Australian Ore -tile.ore_weidanium.name=Weidite -tile.ore_reiium.name=Reiite -tile.ore_unobtainium.name=Brightblende Ore -tile.ore_daffergon.name=Dellite -tile.ore_verticium.name=Dollar Green Mineral - -tile.ore_oil.name=Oil Deposit -tile.ore_oil_empty.name=Empty Oil Deposit - -tile.reinforced_brick.name=Reinforced Stone -tile.reinforced_glass.name=Reinforced Glass -tile.reinforced_sand.name=Reinforced Sandstone -tile.reinforced_light.name=Reinforced Glowstone -tile.reinforced_lamp_off.name=Reinforced Lamp -tile.reinforced_lamp_on.name=Reinforced Lamp - -tile.brick_concrete.name=Concrete Bricks -tile.brick_obsidian.name=Obsidian Bricks -tile.brick_light.name=Light Bricks -tile.asphalt.name=Asphalt - -tile.cmb_brick.name=CMB Steel Tile -tile.cmb_brick_reinforced.name=Reinforced CMB Bricks - -tile.gravel_obsidian.name=Crushed Obsidian - -tile.seal_frame.name=Silo Hatch Frame -tile.seal_controller.name=Silo Hatch Opener -tile.seal_hatch.name=Silo Hatch - -item.nugget_uranium.name=Uranium Nugget -item.nugget_plutonium.name=Plutonium Nugget -item.nugget_neptunium.name=Neptunium Nugget -item.ingot_neptunium.name=Neptunium Ingot -item.nugget_lead.name=Lead Nugget -item.ingot_lead.name=Lead Ingot -tile.block_lead.name=Block of Lead -tile.ore_lead.name=Lead Ore - -item.powder_lead.name=Lead Powder -item.powder_neptunium.name=Neptunium Powder -item.powder_schrabidium.name=Schrabidium Powder -item.powder_iron.name=Iron Powder -item.powder_gold.name=Gold Powder -item.powder_aluminium.name=Aluminium Powder -item.powder_beryllium.name=Beryllium Powder -item.powder_copper.name=Copper Powder -item.powder_titanium.name=Titanium Powder -item.powder_tungsten.name=Tungsten Powder -item.powder_uranium.name=Uranium Powder -item.powder_plutonium.name=Plutonium Powder -item.dust.name=Dust -item.powder_coal.name=Coal Powder -item.powder_lapis.name=Lapis Lazuli Powder -item.powder_emerald.name=Emerald Powder -item.powder_diamond.name=Diamond Powder -item.powder_red_copper.name=Red Copper Powder -item.powder_steel.name=Steel Powder -item.powder_magnetized_tungsten.name=Magnetized Tungsten Powder -item.powder_combine_steel.name=CMB Steel Powder -item.powder_lithium.name=Lithium Powder -item.powder_advanced_alloy.name=Advanced Alloy Powder -item.powder_quartz.name=Quartz Powder -item.powder_power.name=Energy Powder -item.powder_iodine.name=Iodine Powder -item.powder_thorium.name=Thorium Powder -item.powder_neodymium.name=Neodymium Powder -item.powder_astatine.name=Astatine Powder -item.powder_caesium.name=Caesium Powder -item.powder_australium.name=Australium Powder -item.powder_weidanium.name=Weidanium Powder -item.powder_reiium.name=Reiium Powder -item.powder_unobtainium.name=Unobtainium Powder -item.powder_daffergon.name=Daffergon Powder -item.powder_verticium.name=Verticium Powder -item.powder_strontium.name=Strontium Powder -item.powder_cobalt.name=Cobalt Powder -item.powder_bromine.name=Bromine Powder -item.powder_niobium.name=Niobium Powder -item.powder_tennessine.name=Tennessine Powder -item.powder_cerium.name=Cerium Powder -item.powder_dura_steel.name=High-Speed Steel Powder -item.powder_polymer.name=Polymer Powder -item.powder_lanthanium.name=Lanthanium Powder -item.powder_actinium.name=Actinium Powder -item.powder_lithium_tiny.name=Tiny Pile of Lithium Powder -item.powder_cobalt_tiny.name=Tiny Pile of Cobalt Powder - -item.battery_generic.name=Battery -item.battery_advanced.name=Advanced Battery -item.battery_lithium.name=Lithium-Ion Battery -item.battery_schrabidium.name=Schrabidium Battery -item.battery_creative.name=Infinite Battery - -item.battery_red_cell.name=Redstone Power Cell -item.battery_advanced_cell.name=Advanced Power Cell -item.battery_lithium_cell.name=Lithium-Ion Power Cell -item.battery_schrabidium_cell.name=Schrabidium Power Cell -item.battery_red_cell_6.name=Sixfold Redstone Power Cell -item.battery_advanced_cell_4.name=Quadruple Advanced Power Cell -item.battery_lithium_cell_3.name=Tripple Lithium-Ion Power Cell -item.battery_schrabidium_cell_2.name=Double Schrabidium Power Cell -item.battery_red_cell_24.name=24-Fold Redstone Power Cell -item.battery_advanced_cell_12.name=Twelvefold Advanced Power Cell -item.battery_lithium_cell_6.name=Sixfold Lithium-Ion Power Cell -item.battery_schrabidium_cell_4.name=Quadruple Schrabidium Power Cell - -item.upgrade_template.name=Machine Upgrade Piece Template -item.upgrade_speed_1.name=Red Machine Upgrade Mk.I -item.upgrade_speed_2.name=Red Machine Upgrade Mk.II -item.upgrade_speed_3.name=Red Machine Upgrade Mk.III -item.upgrade_effect_1.name=Green Machine Upgrade Mk.I -item.upgrade_effect_2.name=Green Machine Upgrade Mk.II -item.upgrade_effect_3.name=Green Machine Upgrade Mk.III -item.upgrade_power_1.name=Blue Machine Upgrade Mk.I -item.upgrade_power_2.name=Blue Machine Upgrade Mk.II -item.upgrade_power_3.name=Blue Machine Upgrade Mk.III -item.upgrade_fortune_1.name=Purple Machine Upgrade Mk.I -item.upgrade_fortune_2.name=Purple Machine Upgrade Mk.II -item.upgrade_fortune_3.name=Purple Machine Upgrade Mk.III - -item.fusion_core.name=Fusion Core -item.energy_core.name=Makeshift Energy Core - -item.plate_iron.name=Iron Plate -item.plate_lead.name=Lead Plate -item.coil_copper.name=Copper Coil -item.coil_copper_torus.name=Ring Coil -item.wire_tungsten.name=Tungsten Wire -item.coil_tungsten.name=Heating Coil -item.tank_steel.name=Steel Tank -item.motor.name=Motor -item.centrifuge_element.name=Centrifuge Element -item.centrifuge_tower.name=Centrifuge Tower -item.reactor_core.name=Breeding Reactor Core -item.pellet_rtg.name=Plutonium 238 Fuel Pellet -item.pellet_rtg_weak.name=Weak Uranium RTG Pellet -item.rtg_unit.name=RTG Unit -item.hazmat_cloth.name=Hazmat Cloth -item.asbestos_cloth.name=Fire Proximity Cloth -item.filter_coal.name=Activated Carbon Filter -item.tritium_deuterium_cake.name=Tritium-Deuterium-Cake -item.telepad.name=Telepad -item.entanglement_kit.name=Entanglement Kit -item.toothpicks.name=Toothpicks -item.ducttape.name=Duct Tape -item.magnet_dee.name=Dee Magnets -item.magnet_circular.name=Flat Magnet -item.cyclotron_tower.name=Cyclotron Tower -item.plate_dalekanium.name=Angry Metal - -item.cell_empty.name=Empty Cell -item.cell_uf6.name=Uranium Hexafluorite Cell -item.cell_puf6.name=Plutonium Hexafluorite Cell -item.cell_antimatter.name=Antimatter Cell -item.cell_deuterium.name=Deuterium Cell -item.cell_tritium.name=Tritium Cell -item.cell_sas3.name=Schrabidium Trisulfide Cell -item.cell_anti_schrabidium.name=Antischrabidium Cell -item.singularity.name=Singularity -item.singularity_counter_resonant.name=Contained Counter-Resonant Singularity -item.singularity_super_heated.name=Superheated Resonating Singularity -item.black_hole.name=Miniature Black Hole -item.crystal_xen.name=Artificial Xen Crystal - -item.inf_water.name=Infinite Water Tank -item.inf_deuterium.name=Infinite Deuterium Tank -item.inf_tritium.name=Infinite Tritium Tank -item.inf_coolant.name=Infinite Coolant Tank -item.inf_sulfur.name=Infinite Sulfur Tank -item.inf_diesel.name=Infinite Diesel Tank -item.inf_antimatter.name=Infinite Antimatter Tank -item.inf_antischrabidium.name=Infinite Antischrabidium Tank - -item.oil_canola.name=Raw Canola Oil - -item.canister_empty.name=Empty Canister -item.canister_smear.name=Industrial Oil Canister -item.canister_canola.name=Engine Lubricant -item.canister_oil.name=Crude Oil Canister -item.canister_fuel.name=Fuel Canister -item.canister_kerosene.name=Kerosene Canister -item.canister_reoil.name=Canister of Reclaimed Industrial Oil -item.canister_petroil.name=Petroil Canister -item.canister_napalm.name=Napalm B -item.canister_NITAN.name=NITAN© 100 Octane Super Fuel -item.gas_empty.name=Empty Gas Tank -item.gas_full.name=Gas Tank - -item.rod_empty.name=Emty Rod -item.rod_uranium.name=Uranium Rod -item.rod_u235.name=U235 Rod -item.rod_u238.name=U238 Rod -item.rod_plutonium.name=Plutonium Rod -item.rod_pu238.name=Pu238 Rod -item.rod_pu239.name=Pu239 Rod -item.rod_pu240.name=Pu240 Rod -item.rod_neptunium.name=Neptunium Rod -item.rod_lead.name=Lead Rod -item.rod_schrabidium.name=Schrabidium Rod -item.rod_astatine.name=Euphemium Rod -item.rod_australium.name=Australium Rod -item.rod_weidanium.name=Weidanium Rod -item.rod_reiium.name=Reiium Rod -item.rod_unobtainium.name=Unobtainium Rod -item.rod_daffergon.name=Daffergon Rod -item.rod_verticium.name=Verticium Rod - -item.rod_dual_empty.name=Emty Dual Rod -item.rod_dual_uranium.name=Uranium Dual Fl Rod -item.rod_dual_u235.name=U235 Dual Rod -item.rod_dual_u238.name=U238 Dual Rod -item.rod_dual_plutonium.name=Plutonium Dual Rod -item.rod_dual_pu238.name=Pu238 Dual Rod -item.rod_dual_pu239.name=Pu239 Dual Rod -item.rod_dual_pu240.name=Pu240 Dual Rod -item.rod_dual_neptunium.name=Neptunium Dual Rod -item.rod_dual_lead.name=Lead Dual Rod -item.rod_dual_schrabidium.name=Schrabidium Dual Rod - -item.rod_quad_empty.name=Emty Quad Rod -item.rod_quad_uranium.name=Uranium Quad Rod -item.rod_quad_u235.name=U235 Quad Rod -item.rod_quad_u238.name=U238 Quad Rod -item.rod_quad_plutonium.name=Plutonium Quad Rod -item.rod_quad_pu238.name=Pu238 Quad Rod -item.rod_quad_pu239.name=Pu239 Quad Rod -item.rod_quad_pu240.name=Pu240 Quad Rod -item.rod_quad_neptunium.name=Neptunium Quad Rod -item.rod_quad_lead.name=Lead Quad Rod -item.rod_quad_schrabidium.name=Schrabidium Quad Rod - -item.rod_uranium_fuel_depleted.name=Depleted Uranium Fuel Rod -item.rod_dual_uranium_fuel_depleted.name=Depleted Uranium Dual Fuel Rod -item.rod_quad_uranium_fuel_depleted.name=Depleted Uranium Quad Fuel Rod -item.rod_plutonium_fuel_depleted.name=Depleted Plutonium Fuel Rod -item.rod_dual_plutonium_fuel_depleted.name=Depleted Plutonium Dual Fuel Rod -item.rod_quad_plutonium_fuel_depleted.name=Depleted Plutonium Quad Fuel Rod -item.rod_mox_fuel_depleted.name=Depleted MOX Fuel Rod -item.rod_dual_mox_fuel_depleted.name=Depleted MOX Dual Fuel Rod -item.rod_quad_mox_fuel_depleted.name=Depleted MOX Quad Fuel Rod -item.rod_schrabidium_fuel_depleted.name=Depleted Schrabidium Fuel Rod -item.rod_dual_schrabidium_fuel_depleted.name=Depleted Schrabidium Dual Fuel Rod -item.rod_quad_schrabidium_fuel_depleted.name=Depleted Schrabidium Quad Fuel Rod - -item.rod_waste.name=Nuclear Waste Rod -item.rod_dual_waste.name=Nuclear Waste Dual Rod -item.rod_quad_waste.name=Nuclear Waste Quad Rod - -item.gun_rpg.name=Rocket Launcher -item.gun_rpg_ammo.name=Rocket - -item.flame_pony.name=Painting of a Cartoon Pony -item.flame_conspiracy.name=Conspiracy Theory -item.flame_politics.name=Political Topic -item.flame_opinion.name=Own Opinion - -item.pellet_cluster.name=Explosive Pellets -item.pellet_buckshot.name=Lead Pellets -item.powder_fire.name=Flame Powder -item.powder_ice.name=Cryo Powder -item.powder_poison.name=Poison Powder -item.pellet_gas.name=Poison Gas Cartridge -item.magnetron.name=Magnetron -item.powder_thermite.name=Thermite - -item.nuke_starter_kit.name=Atomic Science Starter Kit -item.nuke_commercially_kit.name=Atomic Science Kit for Commercial Uses -item.nuke_advanced_kit.name=Atomic Science Advanced Kit -item.gadget_kit.name=The Gadget Kit -item.boy_kit.name=Little Boy Kit -item.man_kit.name=Fat Man Kit -item.mike_kit.name=Ivy Mike Kit -item.tsar_kit.name=Tsar Bomba Kit -item.fleija_kit.name=F.L.E.I.J.A. Kit -item.multi_kit.name=Multi Purpose Bomb Kit -item.grenade_kit.name=Grenade Kit -item.nuke_electric_kit.name=Electronic Engineer's Kit -item.prototype_kit.name=Prototype Kit -item.missile_kit.name=Missile Kit -item.t45_kit.name=T45 Power Armor Kit -item.euphemium_kit.name=Euphemium Kit - -tile.waste_earth.name=Dead Grass -tile.waste_trinitite.name=Trinitite Ore -tile.waste_trinitite_red.name=Red Trinitite Ore -tile.waste_log.name=Charred Log -tile.waste_planks.name=Charred Wooden Planks - -item.trinitite.name=Trinitite -item.nuclear_waste.name=Nuclear Waste -item.scrap.name=Scrap - -item.ingot_uranium_fuel.name=Ingot of Uranium Fuel -item.ingot_plutonium_fuel.name=Ingot of Plutonium Fuel -item.ingot_mox_fuel.name=Ingot of MOX Fuel -item.ingot_schrabidium_fuel.name=Ingot of Schrabidium Fuel - -item.nugget_uranium_fuel.name=Nugget of Uranium Fuel -item.nugget_plutonium_fuel.name=Nugget of Plutonium Fuel -item.nugget_mox_fuel.name=Nugget of MOX Fuel -item.nugget_schrabidium_fuel.name=Nugget of Schrabidium Fuel - -item.grenade_generic.name=Grenade -item.grenade_strong.name=Enhanced Grenade -item.grenade_frag.name=Frag Grenade -item.grenade_fire.name=Flame Frag Grenade -item.grenade_shrapnel.name=Shrapnel Grenade -item.grenade_cluster.name=Cluster Bomb -item.grenade_flare.name=Flare Grenade -item.grenade_electric.name=Lightning Bomb -item.grenade_poison.name=Poison Grenade -item.grenade_gas.name=Gas Grenade -item.grenade_pulse.name=Impulse Grenade -item.grenade_plasma.name=Plasma Grenade -item.grenade_tau.name=Tau Grenade -item.grenade_schrabidium.name=Schrabidium Grenade -item.grenade_lemon.name=Combustible Lemon -item.grenade_mk2.name=Mk 2 Grenade "Ambassador Pineapple" -item.grenade_aschrab.name=Tossable Antischrabidium Cell -item.grenade_nuke.name=Mark VI Drill Grenade -item.grenade_nuclear.name=Nuka Grenade -item.grenade_zomg.name=Negative Energy Pair Annihilation Grenade -item.grenade_black_hole.name=Black Hole Grenade -item.ullapool_caber.name=Ullapool Caber - -item.rod_uranium_fuel.name=Uranium Fuel Rod -item.rod_dual_uranium_fuel.name=Uranium Dual Fuel Rod -item.rod_quad_uranium_fuel.name=Uranium Quad Fuel Rod -item.rod_plutonium_fuel.name=Plutonium Fuel Rod -item.rod_dual_plutonium_fuel.name=Plutonium Dual Fuel Rod -item.rod_quad_plutonium_fuel.name=Plutonium Quad Fuel Rod -item.rod_mox_fuel.name=MOX Fuel Rod -item.rod_dual_mox_fuel.name=MOX Dual Fuel Rod -item.rod_quad_mox_fuel.name=MOX Quad Fuel Rod -item.rod_schrabidium_fuel.name=Schrabidium Fuel Rod -item.rod_dual_schrabidium_fuel.name=Schrabidium Dual Fuel Rod -item.rod_quad_schrabidium_fuel.name=Schrabidium Quad Fuel Rod - -item.rod_water.name=Water Cell -item.rod_dual_water.name=Dual Water Cell -item.rod_quad_water.name=Quad Water Cell - -item.rod_coolant.name=Coolant Cell -item.rod_dual_coolant.name=Dual Coolant Cell -item.rod_quad_coolant.name=Quad Coolant Cell - -item.rod_lithium.name=Lithium Rod -item.rod_dual_lithium.name=Dual Lithium Rod -item.rod_quad_lithium.name=Quad Lithium Rod - -item.rod_tritium.name=Tritium Cell -item.rod_dual_tritium.name=Dual Tritium Cell -item.rod_quad_tritium.name=Quad Tritium Cell - -item.levitation_unit.name=Gravity Manipulator -item.thermo_unit_empty.name=Thermic Distribution Unit -item.thermo_unit_endo.name=Coldness Distribution Unit -item.thermo_unit_exo.name=Heat Distribution Unit - -item.bomb_waffle.name=Waffle of Mass Destruction -item.schnitzel_vegan.name=Vegan Schnitzel -item.apple_schrabidium.name=Schrabidium Apple -item.cotton_candy.name=Radioactive Cotton Candy -item.tem_flakes.name=Tem Flakes -item.glowing_stew.name=Glowing Mushroom Stew -item.lemon.name="Lemon" - -tile.frozen_grass.name=Frozen Grass -tile.frozen_dirt.name=Frozen Dirt -tile.frozen_log.name=Frozen Log -tile.frozen_planks.name=Frozen Planks - -tile.tape_recorder.name=Tape Recorder -tile.steel_poles.name=Steel Pole -tile.pole_top.name=Antenna Top -tile.pole_satellite_receiver.name=Satellite Receiver -tile.steel_wall.name=Steel Wall -tile.steel_corner.name=Steel Wall Corner -tile.steel_roof.name=Flat Steel Roof -tile.steel_beam.name=Steel Beam -tile.steel_scaffold.name=Steel Scaffold - -item.gun_revolver_iron.name=Simple Revolver -item.gun_revolver.name=Enhanced Revolver -item.gun_revolver_gold.name=Golden Revolver -item.gun_revolver_lead.name=Nuka Revolver -item.gun_revolver_schrabidium.name=Schrabidium Revolver -item.gun_revolver_cursed.name=Cursed Revolver -item.gun_revolver_nightmare.name=Nightmare Revolver (Original) -item.gun_revolver_nightmare2.name=Nightmare Revolver (Dark) -item.gun_fatman.name=M42 Nuclear Catapult "Fat Man" -item.gun_mirv.name=M42 Nuclear Catapult "Experimental MIRV" -item.gun_bf.name=M42_2 Nuclear Catapult "Antimatter Launcher" -item.gun_mp40.name=Submachine Gun -item.gun_uboinik.name=Uboinik -item.gun_xvl1456.name=XVL1456 Tau Cannon Prototype -item.gun_osipr.name=Overwatch Standard Issue Pulse Rifle -item.gun_immolator.name=The Immolator -item.gun_cryolator.name=The Cryolator -item.gun_mp.name=Pacifist's Machine Gun -item.gun_zomg.name=Singularity Powered Annihilation Ray "ZOMG Cannon" -item.gun_emp.name=EMP Ray -item.gun_super_shotgun.name=Super Shotgun -item.gun_moist_nugget.name=Mosin-Nagant -item.gun_revolver_inverted.name=Flipped Revolver -item.gun_jack.name=Jackhammer -item.gun_spark.name=Spark Plug -item.gun_hp.name=HPP Lazerjet -item.gun_euthanasia.name=Euthanasia -item.gun_defabricator.name=Defabricator - -item.gun_revolver_iron_ammo.name=Bullet -item.gun_revolver_ammo.name=Lead Bullet -item.gun_revolver_gold_ammo.name=Golden Bullet -item.gun_revolver_lead_ammo.name=Glass Covered Nuclear Bullet -item.gun_revolver_schrabidium_ammo.name=Schrabidium Bullet -item.gun_revolver_cursed_ammo.name=Steel Bullet -item.gun_revolver_nightmare_ammo.name=Nightmare Bullet -item.gun_revolver_nightmare2_ammo.name=Laser Buckshot -item.gun_fatman_ammo.name=Mini Nuke -item.gun_mirv_ammo.name=Eightfold MIRV -item.gun_bf_ammo.name=Mk.V Compact AMAT-Artillery Shell - Type B.F. -item.gun_mp40_ammo.name=Submachine Gun Round -item.gun_uboinik_ammo.name=12x70 Buckshot -item.gun_xvl1456_ammo.name=Depleted Uranium-235 Box -item.gun_osipr_ammo.name=Dark Energy Pulse Plug -item.gun_osipr_ammo2.name=Combine Ball -item.gun_immolator_ammo.name=Immolator Fuel -item.gun_cryolator_ammo.name=Cryo Cell -item.gun_mp_ammo.name=Small Propellantless Machine Gun Round -item.gun_emp_ammo.name=Energy Cell -item.gun_jack_ammo.name=Quadruple Shotgun Shell -item.gun_spark_ammo.name=Electromagnetic Cartridge -item.gun_hp_ammo.name=Ink Cartridge -item.gun_euthanasia_ammo.name=Syringe -item.gun_defabricator_ammo.name=Defabricator Energy Cell - -item.clip_revolver_iron.name=Box of Iron Rounds -item.clip_revolver.name=Box of .357 Rounds -item.clip_revolver_gold.name=Small Coffer of Golden Bullets -item.clip_revolver_schrabidium.name=Schrabidium Ammo Container -item.clip_rpg.name=Rocket Container -item.clip_xvl1456.name=Large Isotope Box -item.clip_osipr.name=AR2 Magazine -item.clip_immolator.name=Tank of Immolator Fuel -item.clip_cryolator.name=Tank of Cryolator Fuel -item.clip_revolver_lead.name=Box of Nuclear Bullets -item.clip_revolver_cursed.name=Britannia Military Standard Issue Pisol Magazine -item.clip_fatman.name=Six Pack of Mini Nukes -item.clip_mirv.name=Three-In-One Pack of Mini MIRVs -item.clip_bf.name=BF-Shell Double Pack -item.clip_mp.name=Britannia Military Standard Issue Assult Rifle Magazine -item.clip_mp40.name=9mm SMG Magazine -item.clip_uboinik.name=Box of Buckshot Rounds -item.clip_emp.name=Small Pack of Energy Cells -item.clip_revolver_nightmare.name=Bag of Bullets -item.clip_revolver_nightmare2.name=Belt with Laser Buckshot - -tile.block_schrabidium.name=Block of Schrabidium -item.plate_gold.name=Gold Plate - -item.syringe_empty.name=Empty Syringe -item.syringe_antidote.name=Antidote -item.syringe_poison.name=Poisonous Injection -item.syringe_awesome.name=AWESOME -item.syringe_metal_empty.name=Metal Syringe -item.syringe_metal_stimpak.name=Stimpak -item.syringe_metal_medx.name=Med-X -item.syringe_metal_psycho.name=Psycho -item.pill_iodine.name=Iodine Pill -item.plan_c.name=Plan C - -item.stealth_boy.name=Stealth Device - -entity.hbm.entity_bullet.name=Bullet -entity.hbm.entity_rocket.name=Rocket -entity.hbm.entity_schrabnel.name=Schrabnel -entity.entity_mob_nuclear_creeper.name=Nuclear Creeper -entity.entity_mob_hunter_chopper.name=Hunter ChopperCreeper -entity.entity_cyber_crab.name=Cyber Crab - -item.cap_aluminium.name=Aluminium Cap -item.hull_small_steel.name=Small Steel Shell -item.hull_small_aluminium.name=Small Aluminium Shell -item.hull_big_steel.name=Big Steel Shell -item.hull_big_aluminium.name=Big Aluminium Shell -item.hull_big_titanium.name=Big Titanium Shell -item.fins_flat.name=Flat Steel Casing -item.fins_small_steel.name=Small Steel Grid Fins -item.fins_big_steel.name=Big Steel Grid Fins -item.fins_tri_steel.name=Large Steel Fins -item.fins_quad_titanium.name=Small Titanium Fins -item.sphere_steel.name=Steel Sphere -item.pedestal_steel.name=Steel Pedestal -item.dysfunctional_reactor.name=Dysfunctional Nuclear Reactor - -item.rotor_steel.name=Large Steel Rotor -item.generator_steel.name=Generator Body -item.blade_titanium.name=Titanium Blade -item.turbine_titanium.name=Titanium Steam Turbine -item.generator_front.name=Generator Front - -item.combine_scrap.name=CMB Scrap Metal -item.chopper_head.name=Hunter Chopper Cockpit -item.chopper_gun.name=Emplacement Gun -item.chopper_torso.name=Hunter Chopper Body -item.chopper_tail.name=Hunter Chopper Tail -item.chopper_wing.name=Hunter Chopper Wing -item.chopper_blades.name=Hunter Chopper Rotor Blades - -item.igniter.name=Igniter -item.watch.name=Broken Pocket Watch -item.apple_astatine.name=Euphemium Apple -item.ingot_astatine.name=Euphemium Ingot -item.nugget_astatine.name=Euphemium Nugget -item.rod_quad_astatine.name=Burned Out Quad Schrabidium Fuel Rod - -item.astatine_helmet.name=Euphemium Helemt -item.astatine_plate.name=Euphemium Chestplate -item.astatine_legs.name=Euphemium Leggings -item.astatine_boots.name=Euphemiums Boots - -item.schrabidium_helmet.name=Schrabidium Helmet -item.schrabidium_plate.name=Schrabidium Chestpate -item.schrabidium_legs.name=Schrabidium Leggings -item.schrabidium_boots.name=Schrabidium Boots -item.schrabidium_sword.name=Schrabidium Sword -item.schrabidium_pickaxe.name=Schrabidium Pickaxe -item.schrabidium_axe.name=Schrabidium Axe -item.schrabidium_shovel.name=Schrabidium Shovel -item.schrabidium_hoe.name=Schrabidium Hoe - -item.chainsaw.name=Chainsaw -item.crowbar.name=Mk.V Crate Opening Device "Crowbar" - -item.mask_of_infamy.name=Mask of Infamy - -tile.det_cord.name=Det Cord -tile.det_charge.name=Explosive Charge -tile.red_barrel.name=Explosive Barrel -tile.yellow_barrel.name=Radioactive Barrel - -item.designator.name=Short Range Target Designator -item.designator_range.name=Long Range Target Designator -item.missile_generic.name=High Explosive Missile -item.missile_anti_ballistic.name=Anti Ballistic Missile (WIP) -item.missile_incendiary.name=Incendiary Missile -item.missile_cluster.name=Cluster Missile -item.missile_buster.name=Bunker Buster -item.missile_strong.name=Strong HE Missile -item.missile_incendiary_strong.name=Strong Incendiary Missile -item.missile_cluster_strong.name=Strong Cluster Missile -item.missile_buster_strong.name=Enhanced Bunker Buster -item.missile_burst.name=Spare Missile -item.missile_inferno.name=Inferno Missile G.R.N. Mk.II -item.missile_rain.name=Bomblet Rain -item.missile_drill.name=The Concrete Cracker -item.missile_nuclear.name=Nuclear Missile -item.missile_nuclear_cluster.name=Nuclear MIRV Missile -item.missile_endo.name=Endothermic Missile -item.missile_exo.name=Exothermic Missile - -item.hazmat_helmet.name=Hazmat Helmet -item.hazmat_plate.name=Hazmat Chestplate -item.hazmat_legs.name=Hazmat Leggings -item.hazmat_boots.name=Hazmat Boots -item.hazmat_paa_helmet.name=PaA Battle Hazmat Suit Helmet -item.hazmat_paa_plate.name=PaA Battle Hazmat Suit Chestplate -item.hazmat_paa_legs.name=PaA Battle Hazmat Suit Leggings -item.hazmat_paa_boots.name=PaA Battle Hazmat Suit Boots -item.asbestos_helmet.name=Fire Proximity Helmet -item.asbestos_plate.name=Fire Proximity Chestplate -item.asbestos_legs.name=Fire Proximity Leggings -item.asbestos_boots.name=Fire Proximity Boots - -item.paa_plate.name=PaA Chest Protection Plate -item.paa_legs.name=PaA Leg Reinforcements -item.paa_boots.name=PaA "good ol' shoes" - -item.goggles.name=Protection Goggles -item.gas_mask.name=Gas Mask -item.oxy_mask.name=Oxygen Mask -item.t45_helmet.name=T45 Power Armor Helmet -item.t45_plate.name=T45 Power Armor Chestplate -item.t45_legs.name=T45 Power Armor Leggings -item.t45_boots.name=T45 Power Armor Boots - -tile.mush.name=Glowing Mushroom -tile.waste_mycelium.name=Glowing Mycelium - -item.warhead_generic_small.name=Small Warhead -item.warhead_generic_medium.name=Medium Warhead -item.warhead_generic_large.name=Large Warhead -item.warhead_incendiary_small.name=Small Incendiary Warhead -item.warhead_incendiary_medium.name=Medium Incendiary Warhead -item.warhead_incendiary_large.name=Large Incendiary Warhead -item.warhead_cluster_small.name=Small Cluster Warhead -item.warhead_cluster_medium.name=Medium Cluster Warhead -item.warhead_cluster_large.name=Large Cluster Warhead -item.warhead_buster_small.name=Small Bunker Buster Warhead -item.warhead_buster_medium.name=Medium Bunker Buster Warhead -item.warhead_buster_large.name=Large Bunker Buster Warhead -item.warhead_nuclear.name=Nuclear Warhead -item.warhead_mirvlet.name=MIRV -item.warhead_mirv.name=Eightfold MIRV Warhead -item.warhead_thermo_endo.name=Endothermic Warhead -item.warhead_thermo_exo.name=Exothermic Warhead -item.fuel_tank_small.name=Small Fuel Tank -item.fuel_tank_medium.name=Medium Fuel Tank -item.fuel_tank_large.name=Large Fuel Tank -item.thruster_small.name=Small Thruster -item.thruster_medium.name=Medium Thruster -item.thruster_large.name=Large Thruster - -item.wand_k.name=Construction Wand -item.wand_s.name=Structure Wand -item.wand_d.name=Debug Wand - -item.screwdriver.name=Screwdriver -item.overfuse.name=Singularity Screwdriver - -item.steel_helmet.name=Steel Helmet -item.steel_plate.name=Steel Chestplate -item.steel_legs.name=Steel Leggings -item.steel_boots.name=Steel Boots -item.titanium_helmet.name=Titanium Helmet -item.titanium_plate.name=Titanium Chestplate -item.titanium_legs.name=Titanium Leggings -item.titanium_boots.name=Titanium Boots -item.alloy_helmet.name=Advanced Alloy Helmet -item.alloy_plate.name=Advanced Alloy Chestplate -item.alloy_legs.name=Advanced Alloy Leggings -item.alloy_boots.name=Advanced Alloy Boots -item.cmb_helmet.name=CMB Steel Helmet -item.cmb_plate.name=CMB Steel Chestplate -item.cmb_legs.name=CMB Steel Leggings -item.cmb_boots.name=CMB Steel Boots - -item.steel_sword.name=Steel Sword -item.steel_pickaxe.name=Steel Pickaxe -item.steel_axe.name=Steel Axe -item.steel_shovel.name=Steel Shovel -item.steel_hoe.name=Steel Hoe -item.titanium_sword.name=Titanium Sword -item.titanium_pickaxe.name=Titanium Pickaxe -item.titanium_axe.name=Titanium Axe -item.titanium_shovel.name=Titanium Shovel -item.titanium_hoe.name=Titanium Hoe -item.alloy_sword.name=Advanced Alloy Sword -item.alloy_pickaxe.name=Advanced Alloy Pickaxe -item.alloy_axe.name=Advanced Alloy Axe -item.alloy_shovel.name=Advanced Alloy Shovel -item.alloy_hoe.name=Advanced Alloy Hoe -item.cmb_sword.name=CMB Steel Sword -item.cmb_pickaxe.name=CMB Steel Pickaxe -item.cmb_axe.name=CMB Steel Axe -item.cmb_shovel.name=CMB Steel Shovel -item.cmb_hoe.name=CMB Steel Hoe -item.elec_sword.name=Stunstick -item.elec_pickaxe.name=Impact Drill -item.elec_axe.name=Electric Chainsaw -item.elec_shovel.name=Spiral Drill - -tile.red_cable.name=Red Copper Cable -tile.block_meteor.name=Meteor Block - -item.cape_radiation.name=Cape (Radiation) -item.cape_gasmask.name=Cape (Gas Mask) -item.cape_schrabidium.name=Cape (Schrabidic) -item.cape_hbm.name=Hbm's Cape -item.cape_dafnik.name=Dafnik's Cape -item.cape_lpkukin.name=LPkukin's Cape -item.cape_vertice.name=Lord Vertice's Cape - -tile.machine_converter_he_rf.name=HE to RF Converter -tile.machine_converter_rf_he.name=RF to HE Converter - -item.schrabidium_hammer.name=Schrabidium Hammer -item.euphemium_stopper.name=Stopper -item.matchstick.name=Matchstick -item.remote.name=Broken Remote - -item.redcoil_capacitor.name=Redcoil Capacitor -item.detonator.name=Detonator -item.crate_caller.name=Supply Drop Requester - -item.ingot_hes.name=Highly Enriched Schrabidium Fuel Ingot -item.ingot_les.name=Low Enriched Schrabidium Fuel Ingot -item.nugget_hes.name=Highly Enriched Schrabidium Fuel Nugget -item.nugget_les.name=Low Enriched Schrabidium Fuel Nugget - -item.pellet_schrabidium.name=Pure Schrabidium Watz Pellet -item.pellet_hes.name=HES Watz Pellet -item.pellet_mes.name=MES Watz Pellet -item.pellet_les.name=LES Watz Pellet -item.pellet_beryllium.name=Beryllium Moderator Pellet -item.pellet_neptunium.name=Neptunium Watz Pellet -item.pellet_lead.name=Lead Reflector Pellet -item.pellet_advanced.name=Advanced Watz Performance Improver - -item.titanium_filter.name=Titanium Filter - -tile.mud_block.name=Poisonous Mud -fluid.mud_fluid=Poisonous Mud -item.bucket_mud.name=Bucket of Poisonous Mud -tile.acid_block.name=Acid -fluid.acid_fluid=Acid -item.bucket_acid.name=Bucket of Acid -tile.toxic_block.name=Stereotypical Green Ooze -fluid.toxic_fluid=Stereotypical Green Ooze -item.bucket_toxic.name=Bucket of Stereotypical Green Ooze -item.tank_waste_0.name=Mud Container -item.tank_waste_1.name=Mud Container -item.tank_waste_2.name=Mud Container -item.tank_waste_3.name=Mud Container -item.tank_waste_4.name=Mud Container -item.tank_waste_5.name=Mud Container -item.tank_waste_6.name=Mud Container -item.tank_waste_7.name=Mud Container -item.tank_waste_8.name=Mud Container - -item.can_empty.name=Empty Can -item.can_smart.name='Smart' Energy Drink -item.can_creature.name='Creature' Energy Drink -item.can_redbomb.name='Red Bomb' Energy Drink -item.can_mrsugar.name='Dr. Sugar' Soft Drink -item.can_overcharge.name=Overcharge Delirium XT -item.bottle_empty.name=Empty Bomb-Shaped Bottle -item.bottle_nuka.name=Bottle of Nuka Cola -item.bottle_cherry.name=Bottle of Nuka Cherry -item.bottle_quantum.name=Bottle of Nuka Cola Quantum -item.bottle2_empty.name=Empty Bottle -item.bottle2_korl.name=Korl -item.bottle2_fritz.name=Fritz Cola -item.bottle2_korl_special.name=The First Korl -item.bottle2_fritz_special.name=The First Fritz Cola -item.chocolate_milk.name=Chocolate Milk -item.cap_nuka.name=Nuka Cola Bottle Cap -item.cap_quantum.name=Nuka Cola Quantum Bottle Cap -item.cap_korl.name=Korl Bottle Cap -item.cap_fritz.name=Fritz Cola Bottle Cap -item.ring_pull.name=Ring Pull - -item.bottle_opener.name=Hbm's Own Self-Made Bottle Opener - -item.blades_aluminium.name=Aluminium Shredder Blades -item.blades_gold.name=Golden Shredder Blades -item.blades_iron.name=Iron Shredder Blades -item.blades_steel.name=Steel Shredder Blades -item.blades_titanium.name=Titanium Shredder Blades -item.blades_advanced_alloy.name=Advanced Shredder Blades -item.blades_combine_steel.name=CMB Shredder Blades -item.blades_schrabidium.name=Schrabidium Shredder Blades - -item.part_lithium.name=Box of Lithium Dust -item.part_beryllium.name=Box of Beryllium Dust -item.part_carbon.name=Box of Carbon Dust -item.part_copper.name=Box of Copper Dust -item.part_plutonium.name=Box of Plutonium Dust - -item.crystal_energy.name=Energy Crystal -item.pellet_coolant.name=Coolant Cluster - -item.linker.name=Telelinker -item.oil_detector.name=Oil Reservoir Detector - -item.thermo_element.name=Thermoelectric Element -item.limiter.name=Generator Limiter - -item.multitool_dig.name=Power Fist (Digging Claw) -item.multitool_silk.name=Power Fist (Silk Touch Claw) -item.multitool_ext.name=Power Fist (Ore Extracter) -item.multitool_miner.name=Power Fist (Extracting Mining Laser) -item.multitool_hit.name=Power Fist (Fist) -item.multitool_beam.name=Power Fist (Zapper) -item.multitool_sky.name=Power Fist (Crack the Sky) -item.multitool_mega.name=Power Fist (Super Punch) -item.multitool_joule.name=Power Fist (Giga Joule) -item.multitool_decon.name=Power Fist (Decontaminator) - -item.australium_iii.name=Mark III Life Extender -item.australium_iv.name=Mark IV Life Extender -item.australium_v.name=Mark V Life Extender - -item.weapon_saw.name=Doctor Assisted Homicide -item.weapon_bat.name=Richard's Default -item.weapon_bat_nail.name=The Cliché -item.weapon_golf_club.name=Russian Mobster's Club -item.weapon_pipe_rusty.name=The Attitude Adjuster -item.weapon_pipe_lead.name=The Manual Override -item.reer_graar.name=The Reer Graar - -item.letter.name=Express Mail -item.polaroid.name=The Polaroid -item.book_secret.name=3-596-50802-9 - -item.crystal_horn.name=Crystal Horn -item.crystal_charred.name=Charred Crystal -item.ingot_lanthanium.name=Semi-Stable Lanthanium Ingot -item.ingot_actinium.name=Semi-Stable Actinium Ingot - -tile.dummy_block.name=Dummy Block -tile.dummy_port.name=Dummy Block (Electricity Port) - -item.chopper.name=Hunter Chopper - -item.nothing.name=Nothing - -tile.crystal_virus.name=Dark Crystal -tile.crystal_hardened.name=Hardened Dark Crystal -tile.crystal_pulsar.name=Pulsating Crystal - -tile.cheater_virus.name=Gelid Euphemium -tile.cheater_virus_seed.name=Unstable Euphemium Schrabide Block \ No newline at end of file diff --git a/src/main/resources/assets/hbm/lang/zh_CN.lang b/src/main/resources/assets/hbm/lang/zh_CN.lang index 055b7077e..3190e942c 100644 --- a/src/main/resources/assets/hbm/lang/zh_CN.lang +++ b/src/main/resources/assets/hbm/lang/zh_CN.lang @@ -1,6053 +1,5913 @@ -achievement.acidizer.desc=噢,我的皮肤 -achievement.acidizer=酸 -achievement.assembly.desc=等等,已经凌晨1点了? -achievement.assembly=这家工厂正在成长 -achievement.FOEQ.desc=向火星传送信号!...其实我是说Duna -achievement.FOEQ=飞马座运载火箭和发射架 -achievement.breeding.desc=谢谢你们,上帝保佑你们,上帝保佑美利坚合众国。 -achievement.breeding=反话 -achievement.bismuth.desc=还记得那时候有人为这个抱怨了一个月吗?我还记得。 -achievement.bismuth=铋 -achievement.blastFurnace.desc=他们为制造探险者1号去打捞了一艘沉没的无畏舰。 -achievement.blastFurnace=煤和铁 -achievement.bossCreeper.desc=核爆爬行者? 那是个什么玩意?! -achievement.bossCreeper=四条腿的行走核弹 -achievement.bossMaskman.desc=大男孩邦克 -achievement.bossMaskman=6个月的强制服务,我只得到一件糟糕的T恤 -achievement.bossMeltdown.desc=比伟大更可怕,但我会竭尽所能 -achievement.bossMeltdown=3.6伦琴 -achievement.bossWorm.desc=“绝学法杖”。什么鬼啊。你自己看看吧。 -achievement.bossWorm=拆掉机械蠕虫 -achievement.bossUFO.desc=哟,那是啥东西?一艘正接近我们工事的巨大飞船? -achievement.bossUFO=呀哈哈哈,笑死我了 -achievement.burnerPress.desc=压力压在你我身上 -achievement.burnerPress=压力之下 -achievement.c20_5.desc=??? -achievement.c20_5=第[二十点五]章 -achievement.c44.desc=镀锌!我是说,锌! -achievement.c44=第四十四章 -achievement.centrifuge.desc=离心力是真的 别@我 -achievement.centrifuge=向心力 -achievement.chemplant.desc=现在你在考虑化学物质! -achievement.chemplant=这家工厂正在成长 Pt.2 -achievement.chicagoPile.desc=“当地人怎么样?” / “非常友好。” -achievement.chicagoPile=领航员在新大陆着陆 -achievement.concrete.desc=布尔什维克的最爱。 -achievement.concrete=老当益壮 -achievement.desh.desc=“来吧,你们这群人。有地方可去!” -achievement.desh=勒威耶 -achievement.digammaFeel.desc=我的眼睛在流血 -achievement.digammaFeel=废水侵袭的废土世界 -achievement.digammaKauaiMoho.desc=一切都糟透了,这里有些热巧克力 -achievement.digammaKauaiMoho=唱吧,为我唱出奥亚吸蜜鸟的歌声吧 -achievement.digammaKnow.desc=关于这个世界 -achievement.digammaKnow=知晓的恐惧 -achievement.digammaSee.desc=里面有点黑,带个手电筒。 -achievement.digammaSee=踏入深渊 -achievement.digammaUpOnTop.desc=仰慕我的儿子,他是我的克隆人. -achievement.digammaUpOnTop=仰慕我,仰慕我的家 -achievement.fiend.desc=卑鄙 -achievement.fiend2.desc=更卑鄙 -achievement.fiend2=残忍2:更残忍 -achievement.fiend=残忍 -achievement.freytag.desc=英勇的救生员 -achievement.freytag=弗赖塔格 -achievement.fusion.desc=氘核、氚核与能量的舞蹈。 -achievement.fusion=聚合 -achievement.gasCent.desc=未浓缩铀讨厌他! -achievement.gasCent=齐佩式离心 -achievement.goFish.desc=航海十字架 -achievement.goFish=去钓鱼 -achievement.hidden.desc=使用一节坠落的车厢杀死一只污染苦力怕 -achievement.hidden=隐藏目录 -achievement.horizonsBonus.desc=说实话,你到底怎么了 -achievement.horizonsBonus=地平线! -achievement.horizonsEnd.desc=送他回家 -achievement.horizonsEnd=地平线。 -achievement.horizonsStart.desc=将一个小伙子送上月球 -achievement.horizonsStart=地平线? -achievement.impossible.desc=你不可能取得该成就 -achievement.impossible=字面上的不可能 -achievement.inferno.desc=“把它变成灰烬!这还不够!投更多的炸弹!” -achievement.inferno=食人行动 -achievement.manhattan.desc=1945年8月6日 8:15 -achievement.manhattan=曼哈顿计划 -achievement.meltdown.desc=你走了这么远,怎么能把事情搞砸? -achievement.meltdown=快速非计划拆卸 -achievement.no9.desc=“我希望我开采的铅能被用在你的油漆里” -achievement.no9=旧数字9 -achievement.omega12.desc=解决在这个可怜的星球上继续生存的问题 -achievement.omega12=欧米伽-12粒子加速器 -achievement.polymer.desc=美味、美味的微塑料。 -achievement.polymer=特氟隆 -achievement.potato.desc=你居然捅我!你怎—喔哦哦哦哦哦! -achievement.potato=流氓AI -achievement.radDeath.desc=居里夫人开创了放射性理论、放射性治疗和放射性死亡。 -achievement.radDeath=噢, 辐射! -achievement.radium.desc=你 因 为 往 我 的 咖 啡 里 倒 镭 而 被 解 雇 了 ! -achievement.radium=不可思议先生 -achievement.radPoison.desc=受辐射中毒的影响 -achievement.radPoison=呀, 辐射! -achievement.RBMKBoom.desc=谎言的代价是什么? -achievement.RBMKBoom=是15000伦琴辐射 -achievement.RBMK.desc=他有妄想症,带他去医务室。 -achievement.RBMK=3.6伦琴? -achievement.redBalloons.desc=“这就是我们一直在等待的。就是这样,孩子们,这就是战争。” -achievement.redBalloons=99个红气球 -achievement.redRoom.desc=? -achievement.redRoom=另一边 -achievement.sacrifice.desc=直面火海并存活 -achievement.sacrifice=牺牲 -achievement.schrab.desc=不管怎样,我不会看太久。 -achievement.schrab=稳定岛 -achievement.selenium.desc=耶! -achievement.selenium=XVIII 月亮女神 -achievement.SILEX.desc=我保证这比听起来更酷。 -achievement.SILEX=激光激发法分离同位素 -achievement.slimeball.desc=粘液球 -achievement.slimeball=我应该把蛋蛋浸在硫酸里。 -achievement.stratum.desc=快刹车,Mitts! -achievement.stratum=岩层 -achievement.someWounds.desc=准备好 -achievement.someWounds=有些伤口永远无法愈合 -achievement.soyuz.desc=变得松脆 -achievement.soyuz=土豆烹饪 -achievement.space.desc=屡试屡败,浪费了价值9000万美元的资金 -achievement.space=最后的边疆——呃,算了吧 -achievement.sulfuric.desc=硫酸 -achievement.sulfuric=我不应该把蛋蛋浸在硫酸里的。 -achievement.tantalum.desc=一个难以捉摸但却永远需要的元素。 -achievement.tantalum=钽 -achievement.tasteofblood.desc=这不是任何测试的一部分 -achievement.tasteofblood=血的味道 -achievement.technetium.desc=它是药用的,它是药用的! -achievement.technetium=大个子,猪人 -achievement.watzBoom.desc=下次记得把毒泥浆容器清空 -achievement.watzBoom=令人厌恶 -achievement.watz.desc=可能包括Fólkvangr弗尔克范格场 -achievement.watz=126号元素的力量 -achievement.witchtaunter.desc=那些古怪的生物对你毫无兴趣! -achievement.witchtaunter=巫婆陶恩特 -achievement.ZIRNOXBoom.desc=生气了吗? -achievement.ZIRNOXBoom=CIRNOX - -analyze.basic1=========NTM组件======== -analyze.basic2=更多信息请参阅Wiki。 -analyze.basic3=========附加信息======== -analyze.dummy=类型:Dummy Block -analyze.error=此方块的兼容性未正确设定。请将此问题作为Bug反馈! -analyze.name=名称:%s -analyze.noInfo=无附加信息。 - -armor.blastProtection=修正 %s 的爆炸伤害 -armor.cap=伤害上限 %s -armor.damageModifier=修正 %s 对 %s 的伤害 -armor.dash=给予 %s 次冲刺 -armor.electricJetpack=离子喷射背包 -armor.explosionImmune=免疫除爆炸伤害外的一切伤害 -armor.fasterReload=快速装填 -armor.fastFall=快速降落 -armor.fireproof=防火 -armor.fullSetBonus=全套效果: -armor.geigerHUD=盖革计数器HUD -armor.geigerSound=盖革计数器警报 -armor.glider=滑翔 -armor.gravity=重力修正 %s -armor.hardLanding=硬着陆 -armor.ignoreLimit=防御值不受防御上限的影响 -armor.modifier=伤害修正 %s -armor.moreAmmo=更多弹药 -armor.nullDamage=免疫 %s 伤害 -armor.projectileProtection=免疫 %s 的弹射物伤害 -armor.rocketBoots=火箭靴 -armor.sprintBoost=冲刺辅助加速 -armor.stepSize=步长:%s -armor.thermal=热成像 -armor.threshold=伤害阈值 %s -armor.vats=敌对生物HUD -armor.yield=抵御低于%s的伤害 - -armorMod.all=所有 -armorMod.applicableTo=适用于: -armorMod.boots=靴子 -armorMod.chestplates=胸甲 -armorMod.helmets=头盔 -armorMod.insertHere=插入装甲以改装。。。 -armorMod.leggings=护腿 -armorMod.type.boots=靴子 -armorMod.type.chestplate=胸甲 -armorMod.type.cladding=覆层 -armorMod.type.helmet=头盔 -armorMod.type.insert=插板 -armorMod.type.leggings=护腿 -armorMod.type.servo=伺服电机 -armorMod.type.special=特殊 - -battery.mode.buffer=输入/输出模式 -battery.mode.input=输入模式 -battery.mode.off=关闭 -battery.mode.output=输出模式 -battery.priority.high=充电优先级:高 -battery.priority.high.desc=总是需要优先装满的紧急缓冲区 -battery.priority.low=充电优先级:低 -battery.priority.low.desc=在大多数情况下,需要在不影响机器性能的情况下$存储剩余的能量 -battery.priority.normal=充电优先级:正常 -battery.priority.normal.desc=较小的电网,其优先级无关紧要 -battery.priority.recommended=推荐用于: -battery.redstone.off=红石 关 -battery.redstone.on=红石 开 - -bomb.detonated=成功引爆! -bomb.incompatible=设备无法触发! -bomb.launched=发射成功! -bomb.missingComponent=组件丢失! -bomb.nobomb=链接位置不兼容或已断开! -bomb.triggered=触发成功! - -book.test.cover=停车坐爱枫林晚 -book.test.page1=测试页面1 - -book.error.cover=粒子对撞机:$故障排除 -book.error.title1=错误 0x01 [能量不足] -book.error.page1=§l错误类型:§r "错误_能量不足" §l描述:§r 粒子到达了能量不足的部分。 §l修复方式:§r 用更高级的电源接口替换粒子成功通过的 其中一个电源接口,或者在粒子终止的段之前额外添加多一个电源接口。 -book.error.title2=错误 0x02 [无法分析] -book.error.page2=§l错误类型:§r "错误_无法分析" §l描述:§r 尽管没有通过分析室,但粒子已经到达核心。 §l修复方式:§r 确保加速器有一个分析室,并再次检查工作模式(线性/环形)。 -book.error.title3=错误 0x03 [通道阻塞] -book.error.page3=§l错误类型:§r "错误_通道阻塞" §l描述:§r 粒子与对撞机通道内的方块碰撞。 §l修复方式:§r 确保粒子对撞机内部没有任何障碍物, 粒子二极管和核心块除外。 -book.error.title4=错误 0x04 [缺少线圈] -book.error.page4=§l错误类型:§r "错误_缺少线圈" §l描述:§r 粒子通过了缺少一个或多个线圈的段。 §l修复方式:§r 移除冲突区域的对撞机镀层,并检查线圈结构是否完整。 这种错误也会发生在没有二极管的T型交叉口上。 -book.error.title5=错误 0x05 [错误区段] -book.error.page5=§l错误类型:§r "错误_错误区段" §l描述:§r 粒子通过了一个结构不正确的段(但既没有被阻塞也没有缺少线圈)。 §l修复方式:§r 确保有问题的部分都有镀层包裹,没有线圈暴露。 -book.error.title6=错误 0x06 [分析室过长] -book.error.page6=§l错误类型:§r "错误_分析室过长" §l描述:§r 粒子已通过三个以上所需的有效分析室段。 §l修复方式:§r 确保环形加速器的分析室长度正好为3个方块, 直线加速器的分析室长度至少为2个方块。 还要检查粒子是否未通过分支或 环形加速器中的多个分析室。 -book.error.title7=错误 0x07 [分析室过短] -book.error.page7=§l错误类型:§r "错误_分析室过短" §l描述:§r 粒子已离开分析室,尽管不符合长度要求。 §l修复方式:§r 确保环形加速器上的分析室正好有3个方块长。 有效的分析段没有线圈,镀层完全由分析室壁/窗组成。 带有线圈的分析室被视为规则段。 -book.error.title8=错误 0x08 [二极管方向错误] -book.error.page8=§l错误类型:§r "错误_二极管方向错误" §l描述:§r 该粒子与肖特基粒子二极管的非输入侧碰撞。§l修复方式:§r 检查二极管的配置是否正确。 粒子只能从带有绿色向内箭头的侧面进入二极管。 -book.error.title9=错误 0x09 [多处分支] -book.error.page9=§l错误类型:§r "错误_多处分支" §l描述:§r 粒子到达具有多个出口的转弯处。§l修复方式:§r 如果你的对撞机是正常的,检查所有需要的线圈是否都存在(即线圈中没有缺漏)。如果转弯处打算进行分支,则需要正确放置的肖特基粒子二极管。 - -book.rbmk.cover=$我的第一个$RBMK石墨式反应堆:$建造一个$反应堆$的基础知识 -book.rbmk.title1=介绍 -book.rbmk.page1=§lRBMK石墨式反应堆§r是一个完全模块化的核反应堆. 与大多数其他反应堆不同的是, 该反应堆没有"多方块结构核心"和尺寸上的限制, 而反应堆的性能和效率仅取决于你是如何建造它的, 以及各个组件如何相互作用. -book.rbmk.title2=热量 -book.rbmk.page2=当反应堆运行时, 它将会产生 §l热量§r. 热量会在各个组件之间扩散, 并在这个过程中会慢慢减少. 我们的目标是在不让反应堆熔化的情况下 产生尽可能多的热量, 并将热量传递到蒸汽管道中, 从而冷却反应堆并产生蒸汽. -book.rbmk.title3=燃料棒 -book.rbmk.page3=反应堆中的 §l燃料棒§r 将捕获周围的中子, 使棒内的燃料发生核反应, 并在此过程中释放中子. 中子会向四个方向释放, 最大释放范围为5格. 释放中子量的多少取决于所用的核燃料. -book.rbmk.title4=控制棒 -book.rbmk.page4=反应堆中的 §l控制棒§r 将减少中子通过它的数量. 完全插入时, 它会阻挡所有中子; 当插入一半时, 它只会阻挡一半中子. 控制棒用于调节反应堆的活跃状态和使其关闭. -book.rbmk.title5=控制棒 - 使用 -book.rbmk.title5.scale=0.9 -book.rbmk.page5=当前控制棒插入的程度将显示在GUI的中心. 边的彩色按钮将把控制棒添加到不同的颜色组中, 这对于在 §lRBMK石墨式反应堆§r 控制台上快速选择屏幕上不同区域的控制棒非常有用. 右侧的按钮允许您以每次25%的增量手动插入. -book.rbmk.title6=自动控制棒 -book.rbmk.page6=§L自动控制棒§r 与常规控制棒几乎相同, 但它们不能手动调整, 而是根据当前温度来调整控制棒插入的程度. 使用哪种功能, 在多少的温度插入多少的深度必须被事先设定好. -book.rbmk.title7=蒸汽管道 -book.rbmk.page7=反应堆中的 §l蒸汽管道§r 是唯一能有效降低反应堆热水平的组件. 如果一个蒸汽管道组件的沸点高于其设定的蒸汽类型的沸点, 那么它将试图消耗尽可能多的水 并产生尽可能多的蒸汽来冷却到沸点以下. -book.rbmk.title8=碳化钨中子反射器 -book.rbmk.page8=反应堆中的 §l碳化钨中子反射器§r 将阻止中子的通过, 相反,中子将被反射回它们来自的燃料棒上. 这对于使用中子是有用的, 否则这些中子一旦离开反应堆就会被浪费掉. -book.rbmk.title9=硼中子吸收器 -book.rbmk.page9=§l硼中子吸收器§r 只是阻挡中子. 被吸收的中子不会产生热量,会被有效地吸收. 这有助于防止燃料棒发生过度反应从而超出临界值. -book.rbmk.title10=石墨慢化剂 -book.rbmk.page10=§l石墨慢化剂§r 把穿过它的快中子转换成慢中子. 大多数核燃料反应释放出快中子, 而引起裂变需要慢中子, 所以强烈建议使用慢化剂. -book.rbmk.title11=结构柱 -book.rbmk.page11=§l结构柱§r 对中子没有任何影响也没有任何特殊用途. 建议在没有其他合适组件的情况下用结构柱填充反应堆, 因为结构柱能够传热. -book.rbmk.title12=控制台 -book.rbmk.page12=§lRBMK石墨式反应堆控制台§r 允许你远程控制反应堆. 使用 §lRBMK石墨式反应堆连接装置记录反应堆§r 然后潜行右击控制台就能把反应堆和控制台连接起来. 一个控制台只能控制15x15个组件, 对于大型反应堆可以使用多个控制台. -book.rbmk.title13=控制台的使用 -book.rbmk.page13=单击屏幕上的组件将选择或取消选择它们. 使用彩色按钮,可以快速选择该颜色组中的所有控制棒. 按钮“A”将选择所有控制棒, “X”将取消选择所有控制棒. -book.rbmk.page14=在绿色框中输入一个介于0和100之间的数字, 然后按下旁边的按钮, 将所有选定的控制棒拔出程度设置到该位置. 按钮“AZ-5”将使所有控制棒完全插入. -book.rbmk.title15=核燃料 -book.rbmk.page15= §l核燃料§r 的反应取决于许多因素. 主要是 §l核燃料强度§r, §l氙中毒程度§r 和接收到的 §l中子数量§r. 氙元素会在核燃料的中子含量较低时积聚起来, 并在正常运行时燃烧殆尽. 中子的效率取决于其类型, 大多数核燃料 §l用慢中子轰击来裂变效果最好§r. -book.rbmk.title16=熔毁 -book.rbmk.page16=§4§l尽量避免发生, 你不会想让这样一场核灾难发生在你的存档或服务器里的. - -book.starter.cover=重建$社会的实业家$指南 -book.starter.title1=介绍 -book.starter.page1=如果你正在读这篇文章,很可能社会已经因这样或 那样的方式完全崩溃了。政府、国家和权威是过去的概念, 以及文明生活的所有便利设施。因此,本指南将 告诉您如何通过重新创造过去的行业和技术 来改善自己的生活,从而改变这种状况。 -book.starter.title2=煤和芥子气 -book.starter.page2=虽然无法预测世界末日后的实际状态, 但目前形式的战争和工业不太可能没有结束。 为了保护自己的肺部,一种有效且廉价的方法是 在§L布§r上小便,制作一个§L防毒面具§r, 以使你免受煤尘或芥子气的伤害. -book.starter.title3=铁砧和锻压机 -book.starter.page3=开始工业振兴的精髓是§l砧§r和§l火力锻压机§r. 铁砧将允许您手动组合早期机械,如组装机, 而火力锻压机将允许您制作 无法用铁砧制作的板材、电线和电路. -book.starter.title4=模板 -book.starter.page4=为了将金属冲压成有用的 形状、组装机械和执行 化学反应,您需要创建 一个§L机器模板文件夹§r, 以创建右侧显示的 各种锻模以及配方。 -book.starter.title5=废墟探索 -book.starter.page5=根据最初的世界末日事件对世界现有结构的影响程度, 有可能直接从中抢救出许多有用的材料和机器。 钢铁等金属合金、电路等部件,甚至核电站的 裂变材料都可能在等着你。 然而,要小心某些废墟,因为那里可能潜伏着过度的危险, 就像草丛中的蛇一样; 等待着用辐射、陷阱或无法形容的恐怖袭击你... -book.starter.title6=早期机械 -book.starter.page6a=您应首先制造的两台机器是§l高炉§r和§l装配机§r. 前者允许您制造合金,如§L钢§r、§l工业级铜§r和§l高级合金§r; 你需要将这些金属用于机器的机身、 电路的布线、高级电磁铁等. -book.starter.page6b=装配机将用于制造本指南中描述的几乎所有其他机器. 您需要一个电源,如§L火力§r§L发电机§r或§L太阳能锅炉§r. -book.starter.page7a=§l粉碎机§r以及一对粉碎机刀片将会非常有用, 能将大多数矿石粉碎成可熔炼的粉末,使其产量提高一倍. 这些粉末对于开始为各种机器制作电路也至关重要, 例如§l增强电路§r和§l超频电路§r。 -book.starter.page7b=使用您的新机器,您可以制造§L化工厂§r, 用于合成更好的电路、混凝土或进行石化产品加工等。 -book.starter.title8=黑金 -book.starter.page8a=使用§l石油§l储层§r§l探测仪§r, 您可以通过测量一个区域 来发现地下的油岩以 放置§l石油钻机§r或 §l钻油塔§r来开采 记住,石油储备会随着时间 的推移而耗尽 -book.starter.page8b=在§l炼油厂§r中提炼和分离石油 成分之前,你必须在§l锅炉§r中将 石油加热至300°C. -book.starter.title9=石油化工产品 -book.starter.page9=使用§l化工厂§r, §l分馏§r§l塔§r和§l催化裂化§r§l塔§r, 你可以将分离出的油转化为各种有用的产品. §l催化裂化§r§l塔§r, 可以将分离出的油转化为各种有用的产品。 例如:§l聚合物§r或§l电木§r, 耐用又柔性的塑料; §lDesh§r, 一种非常耐用和耐热的稀土金属合金; §l固体燃料§r, 可燃烧获取能量; 甚至是§l液体燃料§r, 比如§l汽油§r, §l柴油§r, §l煤油§r等等。 -book.starter.title10=先进的机械 -book.starter.page10=通过一套成熟的石油加工系统,您可以制造§l离心机§r, 这将使矿石的产量增加三倍; §l矿物§l结晶机§r将 矿石结晶后,产量将进一步提高; 以及§lSILEX同位素激光分离室+§lFEL§r, 这两个现代工程的奇迹可以轻松地分离材料的同位素. 你需要更多的能量来驱动这些; 可通过§l柴油发电机§r,§l工业发电机§r, 甚至核反应堆等来源获取更多的能量。 -book.starter.title11=特殊地层 -book.starter.page11=在你行走的地面之下,有几个 自然形成的§l岩层§r,或者说特殊的 矿层和岩层。 §l片岩地层§r是蓝色的含锂层, 其中有铀、铁、铜、石棉和其他矿石 可供你使用。 §l深层岩石§r含有大量稀有矿物, 如§l锆§r、§l硼§r和§l朱砂§r等, 但你需要炸药才能采集 -book.starter.title12=辐射 -book.starter.page12a=本书其余部分将讨论与辐射有关的问题。 为了您和他人的安全,我将提供一些建议以说明如何缓解和处理暴露于此的风险。 -book.starter.page12b=充分暴露在辐射中会导致身体伤害. 第一步是预防; 一定要限制接触,并穿戴防护装备,如§l防辐射套装§r, 或在衣服或盔甲上加装§l防辐射覆层/涂料§r; 你也可以服用§lRad-X防辐射药§r来限制你的辐射量. 多亏了现代医学,第二步可以在必要时移除; 例如,§l玩家§l去污器§r将缓慢减少身体吸收的辐射. §l消辐宁§r还可以用作暴露后预防,快速有效地逆转 电离辐射对身体造成的损害。 -book.starter.title13=铀浓缩 -book.starter.page13=核反应堆的燃料有几个简单的选择; 例如,§l天然铀§r或§l钍燃料§r。 然而, 如果你寻找更强力的东西,你可以设置两台§l气体离心机§r 的浓缩级联,用剩余的§l铀-238§r生产§l铀燃料§r. 你必须将天然铀转化为§l黄饼§r,然后是§l六氟化§l铀§r. -book.starter.title14=芝加哥反应堆 -book.starter.page14=或者,您可以使用§l芝加哥反应堆§r从天然铀中增殖出 §l反应堆级钚§r,这是一种更强大的燃料. 通过堆叠石墨块并在其中钻孔,您可以将燃料棒插入钚 和中子源棒,例如§l镭226-铍中子源§r,以开始反应. 确保测试你的设计;为防止过热, 可能需要隔开或限制石墨块的数量。 -book.starter.title15=ZIRNOX锆诺克斯 -book.starter.page15=最终,你可以制造你的第一个§o真正§r的能源来源: §lZIRNOX§r核反应堆. 与其他能量源相比,核反应堆需要更多的准备; 首先,你需要有一个强悍的水源,比如§l重型§l无限水罐§r. 要从反应堆堆芯中排出热量并将水煮沸成蒸汽, 你需要足够的§l二氧化碳§r. 你只需要足够的压力, 不要让压力§o太§r大! 你还需要三个蒸汽涡轮机来利用产生的蒸汽来制造能量; §l蒸汽§l轮机§r或§l大型工业§l汽轮机§r将是最佳的. 最后,需要一个§l冷凝器§r或§l冷却塔§r来将残余蒸汽冷凝成水, 在这个冷却回路中可以将其排空或回收。 -book.starter.title16=结论 -book.starter.page16=如果你已经走到了这一步,你已经走在重建文明大道上了. 你已经成功地用核能, 石油化工等重新制造了世界末日前的那些先进机器. 我不知道你将如何利用这些新发现的科技, 但我个人希望你利用这些优势是为了自己和他人的利益 - 或者至少是为了自卫. 再见! -book.starter.title18=关于作者 -book.starter.page18=v?r只是一个被困在"传声头像"的§o《一生一次》§r中的 灰色虚空中太久的人. 有一次, 他发现了一扇工作室的门, 但令他沮丧的是, 他发现那是一个纸板剪出来的 - -#book.rbmk.cover=HOW 2 RBMK:$The Basics$of Reactor$Construction -#book.rbmk.title1=Introduction -#book.rbmk.page1=The §lRBMK§r is a fully modular nuclear reactor. Unlike most other reactors, there is no "core", and no size limitations, rather, the behavior and efficiency of the reactor comes from how it is built and how the different pieces interact with each other. -#book.rbmk.title2=Heat -#book.rbmk.page2=As the reactor operates, it will generate §lheat§r. Heat will spread between parts, slowly decreasing in the process. The goal is to produce as much heat as possible without melting the reactor, and to move that heat to a §lsteam channel§r which cools the reactor and produces steam. -#book.rbmk.title3=Fuel Rod -#book.rbmk.page3=The §lfuel rod§r will capture neutron flux, causing the fuel inside the fuel rod to react, giving off neutrons in the process. Neutrons are released in all four cardinal directions with a maximum range of 5 blocks. The amount of neutrons released depends on the §lfuel§r used. -#book.rbmk.title4=Control Rod -#book.rbmk.page4=The §lcontrol rod§r will decrease the amount of neutrons passing though it. Fully inserted, it will block all neutrons, at half insertion, it will only block half. Control rods are used to regulate the reactor's activity and to turn it off. -#book.rbmk.title5=Control Rod - Usage -#book.rbmk.page5=The center of the GUI will display the current rod insertion. The colored buttons on the left will add a control rod to a color group, which is useful to quickly select grouped rods from the §lRBMK console§r. The buttons on the right allow for manual insertion in increments of 25%%. -#book.rbmk.title6=Automatic Control Rod -#book.rbmk.page6=§lAutomatic control rods§r function nearly identical to regular control rods, but they cannot be configured manually, instead they will adjust the rod position based on the current temperature. What function to use and how deep to insert at what temperature has to be defined first. -#book.rbmk.title7=Steam Channel -#book.rbmk.page7=The §lsteam channel§r is the only part that will actively reduce the reactor's heat level. If the component's temperature exceeds the boiling point of the set steam type, it will try to consume as much water and produce as much steam as needed to cool back below the boiling point. -#book.rbmk.title8=Neutron Reflector -#book.rbmk.page8=The §lneutron reflector§r will block neutrons from passing it, instead the neutrons will be reflected back at the fuel rod they came from. This is useful for utilizing neutrons that would otherwise be wasted by simply exiting the reactor. -#book.rbmk.title9=Neutron Absorber -#book.rbmk.page9=The §lneutron absorber§r will simply block neutrons. Neutrons absorbed will not generate heat and be effectively voided. This is useful to prevent fuel rods from reacting that would otherwise be in range. -#book.rbmk.title10=Graphite Moderator -#book.rbmk.page10=The §lgraphite moderator§r will convert fast neutrons passing through it into slow neutrons. Most fuels fission into fast neutrons while needing slow neutrons to split, so using moderators is strongly recommended. -#book.rbmk.title11=Structural Column -#book.rbmk.page11=The §lstructural column§r will not interfere with neutrons, nor does it have special uses. It is recommended to fill the reactor with structural columns where no other parts will be, because structural columns are capable of transporting heat. -#book.rbmk.title12=Console -#book.rbmk.page12=The §lRBMK console§r lets you control the reactor from afar. Using the §lRBMK§r §lconsole linking device§r on an RBMK part and then the console will link the reactor to the console. The console can only manage 15x15 parts, for larger reactors you might want to use multiple consoles. -#book.rbmk.title13=Console Usage -#book.rbmk.page13=Clicking on the parts will select and deselect them. Using the colored buttons, you can quickly select all control rods of that color group. Button 'A' will select all control rods, 'X' will deselect all. -#book.rbmk.page14=Entering a number 0-100 in the green box and then hitting the button next to it will set all selected control rods to this position. Button 'AZ-5' will cause all control rods to fully insert. -#book.rbmk.title15=Fuel -#book.rbmk.page15=The §lfuel§r's reactivity is based on multiple factors. The main ones are the §lenrichment§r, §lxenon poison§r and the amount of incoming §lneutrons§r. Xenon builds up when the fuel receives few neutrons and burns away during normal operation. The effectivity of neutrons depends on the type, most fuels §lsplit best with slow neutrons§r. -#book.rbmk.title16=Meltdown -#book.rbmk.page16=§4§lAvoid. - -book_lore.author=%s 著 -book_lore.test.name=测试 -book_lore.test.author=那个家伙 -book_lore.test.page.0=>哈喽 在我开始之前 我得先澄清一下 我不是同性恋 >做我 >今天晚上 >六点 >趁爸妈出去几天 我和铁哥们去外面玩 >我们成了铁哥们已经有一年了 >喝了点酒 打了很多游戏 还点了个披萨 >我们玩得正高兴 >晚上 在一个什么时候 大概九点吧 他讲了个很好笑的笑话 我记不清了 但是我记着 那笑话让我俩笑疯了 >没来得及细想 我拿手捋了捋他的头发 黑色的微卷的头发 还说他真有意思 >他脸红了 >我意识到自己慌了 >我们有点太亲密了 >突然他亲了我 不知道为什么 我亲回去了 >我们做爱了 >抱在一起睡着了 >半夜我醒了 发现他脑袋贴着我的胸和脖子 >这种感觉很奇妙 但我真的不是同性恋 -book_lore.test.page.1=我打这些字的时候他正在我 怀里睡觉。我怎么就这样让 我哥们失望了?我不想变成 [数据删除] /b/ -book_lore.test.page.2=3 -book_lore.test.page.3=4 -book_lore.test.page.4=5 - -book_lore.book_iodine.name=笔记 -book_lore.book_iodine.author=戴夫 -book_lore.book_iodine.page.0=说起来你肯定不信:“风向 标”那老家伙在离开两个月 之后又重新出现了。而且更 惊人的是,他打算把那伙人 在峡谷里干的秘密勾当泄露 出去。 -book_lore.book_iodine.page.1=搞研发的那群白痴们偶然发 现了一种化合物:大部分是 无机的,很像自然界中的 毒素。但是注意:被这种毒素 杀死的细胞会产生更多的同 种毒素,并将其释放到皮肤 外面,这就产生了传染性极 强的气溶胶。 -book_lore.book_iodine.page.2=这东西像病毒但又不是病毒。 这种物质非常奇怪,你在家 随便找一个瓶子就能混合 出来,但是必须要搞对顺序。 博士告诉我,第一种原料是 粉末状碘晶体,放在 第%d格。 - -book_lore.book_phosphorous.name=笔记 -book_lore.book_phosphorous.author=戴夫 -book_lore.book_phosphorous.page.0=哈喽,又是我。你应该看到 我的上一篇备忘录了吧。 博士对我写备忘录这件事有 点生气,所以我得快点写完。 那群搞研发的傻帽又开始一 个劲地抱怨,估计还是什 么钱的事。 -book_lore.book_phosphorous.page.1=对了,“风向标”博士发现了 第二种原料是红磷,应该 放在第%d格。 - -book_lore.book_dust.name=笔记 -book_lore.book_dust.author=戴夫 -book_lore.book_dust.page.0=博士发现搞研发的那群呆子 还留了个样品之后气得要命, 大喊大叫了一通“总体过失” 和“世界末日”什么的。 我告诉他先冷静一下, -book_lore.book_dust.page.1=太激动对血压不好,而且他 本身就没有那么多血。那群 呆子里面的一个在上周的通 报里说漏了嘴。他们管他们 调出来的那玩意儿叫“MKU” ——管他是什么意思,而且 那玩意儿里面还有家里的 绒毛。 -book_lore.book_dust.page.2=你肯定不信,那群呆子最危 险的发明之一里面还有灰尘 ——奇怪的是,他们甚至提到 这东西应该放在第%d格。 - -book_lore.book_mercury.name=笔记 -book_lore.book_mercury.author=戴夫 -book_lore.book_mercury.page.0=就是这么回事。不算吐血的 部分,毒理学报告很大程度 上呈现了汞中毒的特征。 为什么?因为那堆混合物里 也含有水银! -book_lore.book_mercury.page.1=我很好奇,这东西被细胞复 制的时候,复制出来的物质 是从哪来的? 扯远了。水银应该放到 第%d格。 - -book_lore.book_flower.name=笔记 -book_lore.book_flower.author=戴夫 -book_lore.book_flower.page.0=还记得我在第一篇备忘录里 提到了“这东西大部分是无 机的”吗?你猜怎么着, 老“风向标”跟我分享了第 四样原料:一种花,学名叫 “ipomoea nil”。是牵牛花! -book_lore.book_flower.page.1=可能是由于牵牛花较低的硫 含量,用别的花都不行。 牵牛花应该放在第%d格。 - -book_lore.book_syringe.name=笔记 -book_lore.book_syringe.author=戴夫 -book_lore.book_syringe.page.0=对我第五篇备忘录的一点 补充:很显然你应该找个容 器把这些MKU装进去。搞 研发的那帮疯子用的是从医 疗机构弄到的普通金属注射 器——我推测还有不少多余 的。他们弄了几千个,然后 扔的到处都是。 -book_lore.book_syringe.page.1=金属注射器 应该放在第%d格。 - -book_lore.resignation_note.name=辞职信 -book_lore.resignation_note.author=科斯马 -book_lore.resignation_note.page.0=管理层昨天又对我们的部门 进行裁员了。那群白痴要怪 只能怪他们自己,我都不知 道他们在那场惨败后还在期 待什么。到底是谁他妈泄露 了那种程度的信息? -book_lore.resignation_note.page.1=我们损失了几百万,而且现 在失业的还是爷。老子希望 你们这帮混蛋最后能从你们 的一堆问题中学到点教训然 后给爷滚去自闭。 -book_lore.resignation_note.page.2=我周五不回来了。 记得把工资发我。 - -book_lore.memo_stocks.name=公司内部备忘录 -book_lore.memo_stocks.page.0=投资人相关 - $ $ 上季度报告提供的数字中已 经出现了明显差异。财政部 门即使做出一些调整也是相 当谨慎的,因此无需担心。 - -book_lore.memo_schrab_gsa.name=内部备忘录 -book_lore.memo_schrab_gsa.page.0=合同管理记录 - $ $ 法务部在与DLA的谈判中 取得了突破。他们批准了 450亿的联邦采购服务 总署投资资金用于异变金属 的采购与研究。 -book_lore.memo_schrab_gsa.page.1=就目前的预期,相关事项能 够带来至少40%%的利润, 以及获得未来合同的更大可 能。由于此事件的保密性质, 所有财政证据都将保持机密。 - -book_lore.memo_schrab_rd.name=内部备忘录 -book_lore.memo_schrab_rd.page.0=研发 - $ $ 目前我们生产异变金属的 主要方法是使用新型粒子加 速器。然而,与产出量相比, 能源成本高得惊人。 -book_lore.memo_schrab_rd.page.1=然而,施拉鲍尔博士发现了 一种全新的相互作用—— 暂称为“奇异轻子振荡”—— 该作用可以显著降低生产 成本。通过一个目前未被完 全理解的的过程,提供的电子 被一种奇特的“魔力”转化 为极高能量的光子。 -book_lore.memo_schrab_rd.page.2=这是许多已明确的粒子转换 定律的极端例外。但初步实 验证明,这些质子先转变为 上下夸克,最终形成了异变 金属。 -book_lore.memo_schrab_rd.page.3=奇怪的是,原型机中需要钨与 少量异变金属形成的合金。 另外,原型机中也需要一个 特殊的电容器,用于消除多 余的正电荷。 - -book_lore.memo_schrab_nuke.name=研究报告 -book_lore.memo_schrab_nuke.author=施拉鲍尔博士 -book_lore.memo_schrab_nuke.page.0=最近的研究将我们引至了核 爆对材料的影响。多亏了外 界的拨款,我们“意外地” 测试了我们的铀定向合成异 变金属理论。 -book_lore.memo_schrab_nuke.page.1=而此前我们只在回旋加速器 中制作出异变金属。然而, 我们在埃弗韦彭的地下实验 室的铀矿石中发现了微量的 异变金属,附近所有的纯 金属铀则都发生了裂变。 -book_lore.memo_schrab_nuke.page.2=既然如此,那么使用浓缩到 临界质量附近的铀矿石,或 者是含有大量可裂变核废料 的脏弹,都有可能在理论上 创造足以人工收集的量的 异变金属。 - -book_lore.bf_bomb_1.name=私人笔记 -book_lore.bf_bomb_1.author=M. 波特 -book_lore.bf_bomb_1.page.0=虽然过了很久,但我的工作 调动申请终于批下来了。那 些刚升级的毕业生已经够难 对付了,更别提上边那些人 ——他们一点专业素质 都没有。 $ 换工作地点也不全是好事—— 现在这个实验室拒绝提供进 一步的细节,而且我已经被 另外一个魔法般的新发现 搞得够乱了。 -book_lore.bf_bomb_1.page.1=就是这样。那些学生们各有 各的疑惑 (想想他们多有 精神就知道这有多让人奇怪), 而我唯一的……同事 (竞争 对手?) 只是在做发小册 子的工作。这些事之间的联 系绝对比我想的要复杂。他 的笔记很打击人: -book_lore.bf_bomb_1.page.2=“又有一种奇异物质被偶然 发现;这种物质被指明是反 物质和一种边缘同位素的复 合物。小册子上说它叫‘旋素’ ——鬼知道这名字什么意思, 然后就没了。 -book_lore.bf_bomb_1.page.3=“怪不得他们想找个理论物 理学家,还不是因为他们连 这东西是什么都不知道。但 另一方面,基本上随便什么 工作都比我的旧职位强, 所以我也别抱怨这上面基本 什么都没有了。” - -book_lore.bf_bomb_2.name=私人笔记 -book_lore.bf_bomb_2.author=M. 波特 -book_lore.bf_bomb_2.page.0=即使那本小册子上缺少大量 信息,我还是希望他们知道 的比我更多一点。但是他们 也不知道别的了。其他年长 一些的研究员都对这种物质 有一种盲目的信念:他们的 命题都是完全合理的。 我压根无话可说! -book_lore.bf_bomb_2.page.1=而且我甚至没法责备他们。 “旋素”没个屁的合理性! 这东西和我见过的其他物质 完全不一样。它的外表令人 毛骨悚然:它的颜色不停变 换着,霓虹绿色的表面上弥 漫着颜色略深的线条。 -book_lore.bf_bomb_2.page.2=更糟的是这东西还是个能量 源。我们样品的存在本身 就是对“ALARA”规则的 违背:当样本到达实验室时, 我们都撤离了实验室,唯一 一个够勇敢的人 (叫“梅菲因博士”) 也只穿着A级防护服移动了 样品20米。 -book_lore.bf_bomb_2.page.3=实验上的数据也没有好多少。 这东西辐射的能量非常强, 强到好像热力学第一定律都 要被打破一样;在这东西附 近的任何地方待着——甚至隔 着一米厚的铅——都十分恐怖。 我们做了光谱学方面的推断 就冲出了实验室,但什么新 发现都没有。 -book_lore.bf_bomb_2.page.4=但在这些事之后,科研团队 里的那群白痴竟然一点都没 有动摇!在那么些“讨论” 的时候干坐着够难受了; 一个带头人还胡乱说对这项 试验的禁令会被取消,也就 是说接下来几周我们可以逃 脱这些烂摊子来好好造炸弹。 -book_lore.bf_bomb_2.page.5=他们心里到底觉得谁会来干 这件事?麻烦得要命。最后, 一个理智的助手 (叫安德鲁) 给这种物质起了个外号叫 “野火”——因为和这东西比 起来,在火葬堆上被活活烧 死的痛苦都不算什么。 - -book_lore.bf_bomb_3.name=私人笔记 -book_lore.bf_bomb_3.author=M. 波特 -book_lore.bf_bomb_3.page.0=我和我的团队取得了一些突 破。谈一下我的“分离” ——我把自己从那些更“虔诚” 的人里面分离出来之后,在 那工作变得好受多了。虽然 我们仍然对野火的具体性质 不甚了解 (因为研究一个 会毁了设备的东西非常难) , -book_lore.bf_bomb_3.page.1=但对野火与其他物质相互作 用的研究取得了丰硕成果。 值得注意的是,野火会与其 他物质形成“气态”;所有人 里面,只有安德鲁提醒我: 那其实是悬浮在稀有气体中 的微小野火粒子形成的胶体, -book_lore.bf_bomb_3.page.2=每个野火粒子都被带正电的 “气体泡”包裹着,这样这些 粒子就不会沉降。谁能想到 这东西的致命伽马辐射会有 好处?反正不是我。 -book_lore.bf_bomb_3.page.3=我尽量不去想他们是怎么把 样品转化成微粒的,但我并 不能把这些气态野火的实用 性一笔带过——气态野火使得 对野火的研究更加安全了。 $ 说到安全,带头人 (冷酷无情事不关己地) 做了一项差点让他掉脑袋的 发现。 -book_lore.bf_bomb_3.page.4=他决定把自己“弄脏”: 让一单元量的野火胶体和极 其昂贵的反物质直接反应。 产生的爆炸把它们所在的桌 子化成了一块被大量辐照过 的废渣,并在桌面上刻出了 一个几乎完美的半球, -book_lore.bf_bomb_3.page.5=还让领头人的脑袋吸收了足 以引起急性放射综合征的辐 射。我觉得我们现在知道了 怎么引爆野火, 但是某些人…… - -book_lore.bf_bomb_4.name=私人笔记 -book_lore.bf_bomb_4.author=M. 波特 -book_lore.bf_bomb_4.page.0=我没办法逃脱我的旧工作。 现在这种死气沉沉的动荡 时代,只有这个地方在招人 了;但我不会再回我那个坑 里了。 $ 他们只是在诱惑我,因为我 需要出去,需要挣快钱。 还记得我们一周前退出的空 中试验协定吗? -book_lore.bf_bomb_4.page.1=那些掌管我们实验室的烂人 终于做对了一次。谴责与我 们将野火武器化需要的一大 批科学家一同到来。这里缺 少的批判性思维真是令人费 解——安德鲁甚至在第一份 该死的野火炸弹设计开始草 拟的那一刻突然不干了。 -book_lore.bf_bomb_4.page.2=那个梅菲因看上去打小算盘 打得很高兴,难道他搬野火 样品的时候脑子坏掉了? ——他还提出了使用固化的野 火以及高压电池的傻逼设计。 -book_lore.bf_bomb_4.page.3=很显然,这种形式的物质输 出的能量和激活途径或者别 的什么玩意和传统核弹比, 就像钚跟铀在传统核弹里面 比一样;但最终的结果是初 始的震荡引发了爆炸。 这倒是挺有意思。 -book_lore.bf_bomb_4.page.4=他们这些人都把注意力集中 在了激活上,而完全忽略了 具体机制——因为他们连点头 绪都摸不着!现在看来或许 就是魔法,然而那些人还在 尝试参透整个过程——也只是 为了制造更多战争用的武器 而已。 - -book_lore.bf_bomb_5.name=私人笔记 -book_lore.bf_bomb_5.author=M. 波特 -book_lore.bf_bomb_5.page.0=就算过了很多天,我…… 还是理解不了这些。整个科 研团队对安全的轻率,似乎 让整个事情成了必然结局。 $ $ 梅菲因·M.S.博士,已经 离开了,或许已经离开这个 世界了。悲剧,就在我的眼皮 底下,就在他们的试验仓里, 发生了。 -book_lore.bf_bomb_5.page.1=那时候我们刚刚得到另外一 批野火纯品,而且他已经修 好了用来测试他的提案的电 子设备和能量源。我不知道 到底是什么导致的 (开机了吗?还是开始得 太早了?) ,但是悲剧貌似 已经痛苦地、缓慢地开始了。 -book_lore.bf_bomb_5.page.2=野火的绿色光芒逐渐吞噬了 桌子,吞噬了电池,吞噬了站 在一米之外的梅菲因博士, 甚至桌子都被降解成了地板 上一滩滚烫的金属,但梅菲 因还没有燃烧。我不知道他 从自己的眼里看到了什么…… $ $ 或许,恐惧,或者敬畏笼罩了 梅菲因最后的生存时间? -book_lore.bf_bomb_5.page.3=不管我们的“奇迹”物质是 什么,它都不在乎。突然间, 一束炽热的闪光出现,闪光 过后,梅菲因就消失了。他蒸 发了?被烧化了?还是湮灭 了?见鬼去吧,我没法知道 了! -book_lore.bf_bomb_5.page.4=领头人让我感觉很恶心。 “我们本来能更小心”“本来 能一直监控着”,还有其他 管它是什么的提高士气的污 物从他嘴里呕出来。这家伙 永远都不会明白“玩火自焚”! -book_lore.bf_bomb_5.page.5=我不嫌辞职麻烦,就立马卷 了铺盖,向山里跑去。但后 果并没有那么严重;考虑到 那边缺少电话,而且看到从 我的 (前) 工作地点升起 的蘑菇云,他们应该不是被 炸飞了,就是上了最高等级 的军事法庭了。 -book_lore.bf_bomb_5.page.6=在“死体解剖”和“活体解剖” 之间,我们必须要做出选择; 有一个选项已经在他们身上 明明白白地失败了。他们 想解剖多少金属或者原子就 能解剖多少;但是批判现实、 解剖现实这件事,只能在更 多的梅菲因身上走向终结。 谁知道呢! -book_lore.bf_bomb_5.page.7=到最后,政府还是想把这堆 烂摊子拿来研发炸弹。或许, 我们还会看到更多的战争, 看到更多的人被迫接受比死 亡更惨的命运。 他们不可能永远都藏着掖着。 -book_lore.bf_bomb_5.page.8=我不在乎了。再也不在乎了。 老天爷啊,让我回到真正的 科学之中吧! $ $ 该死,Mae,找找你自己…… - -book_lore.beacon.name=信号信标说明书 -book_lore.beacon.author=Flim Flam工业 -book_lore.beacon.page.0=感谢您购买Mk.2照明信号信标 (版本1.3)! 这本小册子将简要介绍信标 的操作及其内部工作原理。 -book_lore.beacon.page.1=第1章:构成 $ 每个单元由四个主要部分 组成:控制电路、灯笼、雾号 和容纳其他部分的外壳。 有关主电路的详细说明,请 参考外壳维护盖内部的 电路图。 -book_lore.beacon.page.2=灯笼由聚碳酸酯外壳组成, 外壳内有一个标准200mm 的双色250瓦卤素灯泡, 替换用灯泡可以从我们的 商店订购。 -book_lore.beacon.page.3=不建议使用第三方灯泡,因为 我们无法确保安全操作。外壳 由专门的镀锌不锈钢制成, 具有耐用性。 -book_lore.beacon.page.4=第2章:灯笼 $ 灯笼的主要用途是在恶劣的 天气条件下提供照明以便 维护,同时指示信标的状态。 如果开机自检 (POST) 失败,灯将 -book_lore.beacon.page.5=亮起红色,否则就会亮起 绿色。请注意,颜色可能因 替换用灯泡的不同而有所 不同。 -book_lore.beacon.page.6=第3章:雾号 $ 雾号是信标的主要通信设备。 该信标被设计用于点对点 (P2P) 通信以及 消息广播。 -book_lore.beacon.page.7=第4章:P2P通信 $ 有关通信的详细信息,请参阅 通信手册。建立P2P连接的 简要介绍如下:首先,信标 必须给出“开始连接”信号, -book_lore.beacon.page.8=该信号是单一的长音。所有 可用的对等端也应使用一个 长音进行响应 (由接近度指定的顺序,以及 手册“响应连接”一节中 概述的通信指南) -book_lore.beacon.page.9=一旦所需对等端做出响应, 则给出“接受连接”信号, 即两个长音,然后对等端也 将用两个长音调进行响应。 之后的所有通信都必须使用 预先协商的信号来进行, -book_lore.beacon.page.10=最常用的是FAR-5M标准。 如果没有协商标准,通信将 立即结束,起到“ping” 的作用。如果通信继续, 可以使用另一个长单音 “结束连接”来结束连接。 -book_lore.beacon.page.11=第5章:保修 $ [页面故意留空] - -cannery.f1=[按F1键获取帮助] - -cannery.centrifuge=气体离心机 -cannery.centrifuge.0=气体离心机可以使用通用流体管道传输流体。 -cannery.centrifuge.1=大多数配方需要多台离心机。中间产品不能通过管道运输。 -cannery.centrifuge.2=该侧用作将中间产品输出到相邻离心机的连接口。 -cannery.centrifuge.3=六氟化铀只需两台离心机即可加工,但这将只产出铀燃料和铀-238。 -cannery.centrifuge.4=将其完全加工成铀-235和铀-238总共需要四台离心机。 -cannery.centrifuge.5=一些配方还需要离心机超频升级。 - -cannery.crucible=坩埚 -cannery.crucible.0=坩埚用于熔炼矿石、铸锭或其他金属物品以进行合金化,并将其铸造成不同形状。 -cannery.crucible.1=它需要一个外部热源连接到底部,例如燃烧室。 -cannery.crucible.2=一旦加热,坩埚可以以两种方式运行,有或没有配方模板。 -cannery.crucible.3=坩埚有两个材料储存缓冲区: -cannery.crucible.4=左边的缓冲区用于缓存§a副产品§r,所有没有配方模板的熔炼材料都将缓存在这里。 -cannery.crucible.5=如果有熔炼配方,与配方不匹配的材料也将存储在这里。 -cannery.crucible.6=该缓冲区中的材料不会相互反应,只能从绿色出口输出用于铸造。 -cannery.crucible.7=右侧的缓冲区用于放入§c配方§r,如果安装了一个配方,并且该特定材料与该配方相关,则它将储存在此处。 -cannery.crucible.8=这些材料将慢慢结合成输出材料,从红色出口自动输出。 -cannery.crucible.9=请注意,只有这个缓冲区处理配方。如果更换模板,副产品缓冲区中的材料不会结合,也不会转移到配方缓冲区。 -cannery.crucible.10=如果目标有效,例如铸造通道或模具,出口将自动输出材料。 -cannery.crucible.11=与所有铸造块一样,可以使用铲子从坩埚中移除所有材料。 - -cannery.fensu=FEnSU -cannery.fensu.0=FEnSU能够存储超过9EHE(即9后18个零)的荒谬能量。 -cannery.fensu.1=只有在其底部有一个电线接口。 -cannery.fensu.2=这也是FEnSU唯一可以接收红石信号的地方。 - -cannery.firebox=燃烧室 -cannery.firebox.0=燃烧室通过燃烧可燃物品产生热量。 -cannery.firebox.1=它可以燃烧任何可燃物品,但更高质量的燃料如煤、焦炭和固体燃料燃烧时间更长,温度更高。 -cannery.firebox.2=燃烧室顶部的铜触点可以传导热量。底部具有相同触点的机器可以通过放置在燃烧室顶部来接收热量。 -cannery.firebox.3=如果热量没有用完,且热量缓冲器变满,燃烧室将暂停运行,以防止燃料浪费。 -cannery.firebox.4=一种这样的机器是斯特林发电机,它将热量直接转化为能量。 - -cannery.foundryChannel=铸造通道 -cannery.foundryChannel.0=铸造通道用于将熔融材料从坩埚或储罐输送到模具中。 -cannery.foundryChannel.1=通道可以通过从顶部(通过出口或直接连接坩埚)或从其他通道的侧面倾倒来接收材料。 -cannery.foundryChannel.2=运输材料时,渠道将优先考虑出口和浅铸造池等方块。 -cannery.foundryChannel.3=当无法供应出口或模具时,材料将流入相邻通道。 -cannery.foundryChannel.4=剩余材料可以用铲子清除。 - -cannery.silex=FEL & SILEX -cannery.silex.0=自由电子激光器(FEL)利用能量和激光晶体产生强大的激光束。 -cannery.silex.1=小心,因为激光会烧毁或熔化较脆弱的方块… -cannery.silex.2=…但不是防爆的。 -cannery.silex.3=FEL用于为激光同位素分离室(SILEX)提供能量。FEL和SILEX必须至少相隔两个方块。 -cannery.silex.4=激光必须通过SILEX的玻璃开口进入。在错误的方向上入射可能会摧毁它。 -cannery.silex.5=侧面的开口可以使流体管道连接至SILEX上。 -cannery.silex.6=除了侧面的两个连接口之外,底部还有第三个隐藏连接口,可以从中抽取产品。 -cannery.silex.7=每个配方都需要特定的激光类型。使用比所需类型更强的激光将更快地处理项目。 -cannery.silex.8=一台FEL最多可以为5台SILEX供能。每个SILEX之间必须间隔一个方块。 - -cannery.stirling=斯特林发电机 -cannery.stirling.0=斯特林发电机使用来自外部的热能来产生能量。 -cannery.stirling.1=它需要放置在发热机器的顶部,如燃烧室。 -cannery.stirling.2=然而,它可以利用的热量有限,过旋转可能导致灾难性故障。 -cannery.stirling.3=升级版可以在不损坏的情况下承受更多热量。 - -cannery.willow=芥子柳 -cannery.willow.0=芥子柳是一种可以富集镉金属的植物。 -cannery.willow.1=芥子柳可以种植在泥土、草地上,甚至是泥渣或油泥上,但它们需要水才能生长。 -cannery.willow.2=芥子柳可以用骨粉或工业肥料催熟。它们不需要光就可以生长。 -cannery.willow.3=在第二阶段的生长之后,它们将需要在上方有至少一个方块的空间才能进一步生长。 -cannery.willow.4=在生长的第四阶段之后,它们需要下面有泥渣或油泥。 -cannery.willow.5=这可以通过在泥渣或油泥上手动种植芥子柳来实现,也可以通过在附近设置一个不断污染地面的水力压裂塔来实现。 -cannery.willow.6=到达最后阶段后,芥子柳将清除地面上的污染物,使泥渣或油泥恢复为正常的泥土。 -cannery.willow.7=现在芥子柳的叶子可以收割了。打破顶部的块状物会掉落一株3-6片叶子的小芥子柳,并保持植物底部的完整。 -cannery.willow.8=很快,这种植物就会重新开始生长,如果泥土被油泥取代,就会长出更多的叶子。叶子可以用酸化机加工成镉粉。 -cannery.willow.9=使用自动锯可以自动收割柳叶,它只会打碎准备收割的植物。 - -cannery.hadron=粒子加速器 -cannery.hadron.0=粒子加速器包含3个主要部分: 核心,粒子分析室以及一系列的超导线圈。 -cannery.hadron.1=画面上的方块为粒子加速器核心组件,会以相对论的速度沿线圈向粒子分析室发射粒子。 -cannery.hadron.2=粒子会从此面发射; -cannery.hadron.3=在环形加速器中,会回到此面。 -cannery.hadron.4=每个线圈区段由8个致密线圈构成,中间留空(或放置粒子加速器核心)。 -cannery.hadron.5=线圈区段本身也必须被粒子加速器镀层包裹。 -cannery.hadron.6=加速器中还需要添加一个或多个粒子加速器接入终端,以与核心组件交互。 -cannery.hadron.7=核心组件也需要电力运行,因此需要在边缘添加电源接口。 -cannery.hadron.8=粒子加速器需要足够的电源接口来供给至少10kHE每单位线圈强度的能量。 -cannery.hadron.9=注意:环绕核心组件的线圈区段不参与线圈强度计算, -cannery.hadron.10=而且完全的直线粒子加速器不需要此区段。 -cannery.hadron.11=环形加速器中,需要如下的转角结构来改变粒子的方向: -cannery.hadron.12=外侧转角的线圈可以被完全去除。 -cannery.hadron.13=粒子加速器的最终部分是粒子分析室,这是一个由分析室方块包围的3x3x3空间。 -cannery.hadron.14=搭建完成的粒子加速器的外观应该类似下面这样: - -cannery.hadron.math.0=致密钕线圈强度:50 -cannery.hadron.math.1=50 x 8 x 10KHE = 400 x 10KHE = 4MHE -cannery.hadron.math.2=致密星辉线圈强度:1,000 -cannery.hadron.math.3=1,000 x 8 x 10KHE = 8,000 x 10KHE = 80MHE - -cannery.schottky=肖基特二极管 -cannery.schottky.0=画面上的方块为肖基特二极管。此方块可用于更复杂的粒子加速器设计,也可用于节省电能。 -cannery.schottky.1=默认状态下,二极管会阻挡所有粒子,需要使用螺丝刀进行配置。 -cannery.schottky.2=此面会接受进入的粒子, -cannery.schottky.3=而此面会将进入的粒子发射出去。 -cannery.schottky.4=现在图中的二极管含有两个出口,会表现出“量子”行为:在每个出口创造一个“虚拟粒子”。 -cannery.schottky.5=一旦所有的“虚拟粒子”都达到了分析室,粒子加速器就会选择动量需求最低的配方执行。 -cannery.schottky.6=被选中的粒子会经历“波函数坍缩”,变成真实的粒子,并且加速器只会消耗“坍缩”的虚拟粒子需求的能量。 -cannery.schottky.7=如果某一个虚拟粒子进入了结构不正确的区段,所有的虚拟粒子都会被销毁,而且坍缩的将是出错的粒子而非其他到达分析室的粒子。 -cannery.schottky.8=注意:同一个虚拟粒子只会经过同一个二极管的同一出口一次。虚拟粒子不会进入死循环,但仍然可以进入另一个二极管。 -cannery.schottky.9=肖基特二极管周围应具有合适的结构,使得粒子在每个交叉点处都有路可走。 - -chem.ARSENIC=砷提取 -chem.ASPHALT=沥青生产 -chem.BAKELITE=电木生产 -chem.BALEFIRE=野火火箭燃料混合 -chem.BP_BIOFUEL=生物燃料酯化 -chem.BP_BIOGAS=沼气生产 -chem.C4=C-4合成 -chem.CC_CENTRIFUGE=氯方解石分离 -chem.CC_ELECTROLYSIS=氯化钙电解 -chem.CC_HEATING=高级煤液化 -chem.CC_HEAVY=初级煤液化 -chem.CC_I=强化煤液化 -chem.CC_NAPHTHA=煤液化石脑油 -chem.CC_OIL=煤液化 -chem.CIRCUIT_4=超频电路生产 -chem.CIRCUIT_5=高性能电路生产 -chem.CO2=二氧化碳生产 -chem.COALGAS_LEADED=含铅煤汽油混合 -chem.COLTAN_CLEANING=钶钽铁矿提纯 -chem.COLTAN_CRYSTAL=钽结晶 -chem.COLTAN_PAIN=Pn(III)钽铁溶液生产 -chem.CONCRETE=混凝土生产 -chem.CONCRETE_ASBESTOS=石棉夹层混凝土生产 -chem.COOLANT=冷却液混合 -chem.CORDITE=无烟火药生产 -chem.CRYOGEL=冷凝胶混合 -chem.DESH=Desh生产 -chem.DEUTERIUM=氘萃取 -chem.DUCRETE=贫铀混凝土生产 -chem.DYN_DNT=双聚中子态素合成 -chem.DYN_EUPH=Ep合成 -chem.DYN_SCHRAB=Sa326合成 -chem.DYNAMITE=炸药合成 -chem.ELECTROLYSIS=低温电解水 -chem.EPEARL=末影珍珠合成 -chem.ETHANOL=乙醇生产 -chem.FC_BITUMEN=沥青裂化 -chem.FC_DIESEL_KEROSENE=柴油裂化 -chem.FC_GAS_PETROLEUM=天然气裂化 -chem.FC_I_NAPHTHA=工业油裂化 -chem.FC_KEROSENE_PETROLEUM=煤油裂化 -chem.FP_HEAVYOIL=重油加工 -chem.FP_LIGHTOIL=轻油加工 -chem.FP_NAPHTHA=石脑油加工 -chem.FP_SMEAR=工业油加工 -chem.FR_PETROIL=汽油混合 -chem.FR_REOIL=原油再加工 -chem.FRACKSOL=压裂液生产 -chem.GASOLINE=含铅汽油生产 -chem.GASOLINE_LEADED=含铅汽油混合 -chem.HEAVY_ELECTROLYSIS=低温电解重水 -chem.HELIUM3=使用月球草皮提取氦-3 -chem.KEVLAR=凯夫拉生产 -chem.LAMINATE=强化夹层玻璃生产 -chem.LPG=石油天然气液化 -chem.LUBRICANT=润滑剂混合 -chem.MEAT_PROCESSING=异虫肉矿物提取 -chem.METH=甲基苯丙胺合成 -chem.NITAN=NITAN牌超级燃料混合 -chem.NITRIC_ACID=硝酸生产 -chem.OIL_SAND=沥青砂提取 -chem.OSMIRIDIUM_DEATH=锇酸溶液生产 -chem.PC=聚碳酸酯合成 -chem.PC_ELECTROLYSIS=氯化钾电解 -chem.PEROXIDE=过氧化氢生产 -chem.PET=PET合成 -chem.PETROIL_LEADED=含铅石油混合 -chem.POLYMER=聚合物合成 -chem.PUF6=六氟化钚生产 -chem.PVC=聚氯乙烯合成 -chem.RUBBER=橡胶生产 -chem.SAS3=三硫化Sa生产 -chem.SATURN=土星锭生产 -chem.SCHRABIDATE=Sa酸铁生产 -chem.SCHRABIDIC=Sa酸合成 -chem.SF_BIOFUEL=生物燃料固化 -chem.SF_BIOGAS=沼气固化 -chem.SF_DIESEL=柴油凝固 -chem.SF_GAS=天然气固化 -chem.SF_HEATINGOIL=燃油固化 -chem.SF_HEAVYOIL=重油固化 -chem.SF_KEROSENE=煤油固化 -chem.SF_LIGHTOIL=轻油固化 -chem.SF_LUBRICANT=润滑剂固化 -chem.SF_NAPHTHA=石脑油固化 -chem.SF_OIL=原油固化 -chem.SF_PETROIL=石油固化 -chem.SF_PETROLEUM=石油气固化 -chem.SF_RECLAIMED=再生油固化 -chem.SF_SMEAR=工业油固化 -chem.SHELL_CHLORINE=16英寸氯气炮弹生产 -chem.SHELL_MUSTARD=16英寸芥子气炮弹生产 -chem.SHELL_PHOSGENE=16英寸光气炮弹生产 -chem.SOLID_FUEL=固体火箭燃料生产 -chem.SOLVENT=有机溶剂混合 -chem.STEAM=烧水 -chem.SULFURIC_ACID=硫酸生产 -chem.TATB=TATB合成 -chem.TEL=四乙基铅混合 -chem.TEST=测试 -chem.THORIUM_SALT=钍盐富集 -chem.TNT=TNT合成 -chem.UF6=六氟化铀生产 -chem.VIT_GAS=气态核废料玻璃化 -chem.VIT_LIQUID=液态核废料玻璃化 -chem.XENON=林德循环制氙 -chem.XENON_OXY=增强林德循环制氙 -chem.YELLOWCAKE=黄饼生产 - -commands.satellite.no_satellite=未找到使用此频率的卫星! -commands.satellite.not_a_satellite=持有的物品不是卫星! -commands.satellite.satellite_descended=卫星成功降落。 -commands.satellite.satellite_orbited=卫星发射。 -commands.satellite.should_be_run_as_player=此命令应该由玩家运行! - -container.amsBase=AMS基座(装饰) -container.amsEmitter=AMS发射极(装饰) -container.amsLimiter=AMS稳能器(装饰) -container.anvil=%s级砧 -container.arcFurnace=电弧炉 -container.armorTable=装甲改装台 -container.ashpit=储灰槽 -container.assembler=装配机 -container.autocrafter=自动工作台 -container.barrel=桶 -container.bat9000=巨尻-9000 储罐 -container.battery=储能 -container.bombMulti=多用途炸弹 -container.catalyticReformer=催化重整器 -container.centrifuge=离心机 -container.chemplant=化工厂 -container.compactLauncher=紧凑型发射台 -container.craneBoxer=输送带打包机 -container.craneExtractor=输送带提取器 -container.craneGrabber=输送带抓斗 -container.craneInserter=输送带导入器 -container.craneRouter=传送路由器 -container.craneUnboxer=输送带解包机 -container.crateDesh=Desh箱 -container.crateIron=铁箱 -container.crateSteel=钢箱 -container.crateTemplate=模板箱 -container.crateTungsten=钨箱 -container.crystallizer=矿物酸化器 -container.cyclotron=回旋加速器 -container.dfcCore=暗核聚变堆核心 -container.dfcEmitter=DFC发射器 -container.dfcInjector=DFC燃料喷射器 -container.dfcReceiver=DFC接收器 -container.dfcStabilizer=DFC稳定器 -container.diFurnace=高炉 -container.diFurnaceRTG=核高炉 -container.droneCrate=运输无人机坞 -container.droneDock=物流无人机坞 -container.droneProvider=供应箱 -container.droneRequester=请求箱 -container.electricFurnace=电炉 -container.epress=电动锻压机 -container.exposureChamber=曝光室 -container.factoryAdvanced=高级工厂 -container.factoryTitanium=工厂 -container.fluidtank=储罐 -container.fileCabinet=文件柜 -container.forceField=力场发生器 -container.frackingTower=水力压裂塔 -container.furnaceBrick=砖砌炉 -container.furnaceCombination=复式炼焦炉 -container.furnaceIron=铁炉 -container.furnaceSteel=钢炉 -container.fusionMultiblock=大型聚变反应堆 -container.fusionaryWatzPlant=Watz聚变反应堆 -container.gasCentrifuge=气体离心机 -container.gasFlare=高架火炬 -container.generator=研究型反应堆 -container.hadron=粒子加速器 -container.heaterFirebox=燃烧室 -container.heaterHeatex=热交换器 -container.heaterOilburner=流体燃烧器 -container.heaterOven=加热炉 -container.hydrotreater=加氢装置 -container.iGenerator=工业发电机 -container.keyForge=锁匠桌 -container.launchPad=导弹发射台 -container.launchPadRusted=导弹发射台 -container.launchTable=大型发射台 -container.leadBox=安全盒 -container.machineArcWelder=电弧焊机 -container.machineArcFurnaceLarge=电弧炉 -container.machineBoiler=锅炉 -container.machineCMB=CMB炼钢炉 -container.machineCoal=火力发电机 -container.machineCoker=焦化装置 -container.machineCompressor=压缩机 -container.machineCrucible=坩埚 -container.machineDiesel=柴油发电机 -container.machineElectricBoiler=电锅炉 -container.machineElectrolyser=电解机 -container.machineFEL=FEL -container.machineFunnel=组合漏斗 -container.machineICF=ICF反应堆 -container.machineICFPress=ICF燃料靶丸制造器 -container.machineITER=聚变反应堆 -container.machineLargeTurbine=工业汽轮机 -container.machineLiquefactor=液化机 -container.machineMixer=工业搅拌机 -container.machineOreSlopper=B.O.P. -container.machineRefinery=炼油厂 -container.machineSelenium=星型发动机 -container.machineShredder=粉碎机 -container.machineSILEX=激光同位素分离室 -container.machineSolderingStation=焊接台 -container.machineSolidifier=固化机 -container.machineStrandCaster=连续铸造机 -container.machineTurbine=汽轮机 -container.machineTurbofan=涡扇发动机 -container.machine_schrabidium_transmutator=Sa326嬗变装置 -container.machineWoodBurner=火力发电机 -container.massStorage=存储 -container.microwave=微波炉 -container.miningDrill=自动采矿钻机 -container.miningLaser=采矿激光 -container.missileAssembly=导弹装配台 -container.nukeBoy=小男孩 -container.nukeCustom=自定义核弹 -container.nukeFleija=F.L.E.I.J.A. -container.nukeFstbmb=野火炸弹 -container.nukeFurnace=核熔炉 -container.nukeGadget=小玩意 -container.nukeMan=胖子 -container.nukeMike=常春藤迈克 -container.nukeN2=N2炸弹 -container.nukeN45=N45水雷 -container.nukePrototype=原型 -container.nukeSolinium=蔚蓝洗礼 -container.nukeTsar=沙皇炸弹 -container.oilWell=钻油塔 -container.orbus=重型反物质储罐 -container.plasmaHeater=等离子加热器 -container.press=火力锻压机 -container.puf6_tank=六氟化钚储罐 -container.pumpjack=石油钻机 -container.radGen=辐射能量发电机 -container.radar=雷达 -container.radiobox=FM发射机 -container.radiolysis=RTG辐射裂解室 -container.radiorec=FM收音机 -container.rbmkBoiler=RBMK石墨式反应堆蒸汽管道 -container.rbmkControl=RBMK石墨式反应堆控制棒 -container.rbmkControlAuto=RBMK石墨式反应堆自动控制棒 -container.rbmkHeater=RBMK流体加热器 -container.rbmkOutgasser=RBMK石墨式反应堆辐照通道 -container.rbmkReaSim=RBMK石墨式反应堆燃料棒 (ReaSim) -container.rbmkRod=RBMK石墨式反应堆燃料棒 -container.rbmkStorage=RBMK 燃料存储棒 -container.reactorBreeding=增殖反应堆 -container.reactorControl=反应堆遥控模块 -container.reactorLarge=大型核反应堆 -container.reactorResearch=研究型反应堆 -container.reix=Rei-X主机 -container.rtg=放射性同位素发电机 -container.rtgFurnace=放射性同位素热力炉[RTG] -container.rttyCounter=无线红石物品计数器 -container.rttyLogic=无线红石逻辑接收器 -container.rttyReceiver=无线红石信号接收器 -container.rttySender=无线红石信号发射器 -container.safe=保险箱 -container.satDock=卸货平台 -container.satLinker=卫星ID管理 -container.siren=警报器 -container.soyuzCapsule=货物着陆舱 -container.soyuzLauncher=联盟号发射平台 -container.storageDrum=核废料处理桶 -container.teleLinker=炮塔ID管理 -container.teleporter=传送机 -container.trainTram=平板载货电车 -container.turbinegas=联合循环燃气轮机 -container.turretArty=重炮炮塔“格雷格” -container.turretChekhov=重机枪炮塔“契诃夫的枪” -container.turretFriendly=轻机枪炮塔“友好先生” -container.turretFritz=重型火焰喷射器炮塔“弗里茨” -container.turretHIMARS=火箭炮塔“亨利” -container.turretHoward=双联守门员近防系统“霍华德” -container.turretJeremy=重炮炮塔“杰里米” -container.turretMaxwell=高能微波炮塔”麦克斯韦” -container.turretRichard= 火箭炮塔“理查德” -container.turretSentry=哨兵炮塔“布朗” -container.turretTauon=陶子发射器炮塔“陶恩” -container.uf6_tank=六氟化铀储罐 -container.vacuumDistill=真空炼油厂 -container.wasteDrum=乏燃料池 -container.watzPowerplant=Watz发电厂 -container.zirnox=锆诺克斯核反应堆 - -crucible.aa=高级合金生产 -crucible.abronze=砷青铜生产 -crucible.bbronze=铋青铜生产 -crucible.bscco=BSCCO生产 -crucible.cdalloy=镉钢生产 -crucible.cmb=CMB钢生产 -crucible.ferro=铀铁合金生产 -crucible.hematite=赤铁矿炼铁 -crucible.hss=高速钢生产 -crucible.malachite=孔雀石炼铜 -crucible.magtung=磁化钨生产 -crucible.redcopper=紫铜生产 -crucible.steel=钢铁生产 -crucible.steelMeteoric=陨铁炼钢 -crucible.steelPig=生铁炼钢 -crucible.steelWrought=锻铁炼钢 -crucible.tcalloy=锝钢合金生产 - -death.attack.acid=%1$s 掉进了酸里 -death.attack.acidPlayer=%1$s 被 %2$s 溶解 -death.attack.ams=%1$s 沐浴在尚未被人类科学命名的致命粒子中 -death.attack.amsCore=%1$s 在奇点之火中蒸发 -death.attack.asbestos=%1$s现在有权获得经济补偿 -death.attack.bang=%1$s 被炸成小块碎片 -death.attack.blackhole=%1$s 粉身碎骨 -death.attack.blacklung=%1$s 死于尘肺病 -death.attack.blender=%1$s 被切成小块 -death.attack.boat=%1$s 被船撞了 -death.attack.boil=%1$s被%2$s活活煮沸 -death.attack.boxcar=%1$s 被一节坠落的车厢撞死了...好吧 -death.attack.broadcast=%1$s 的大脑融化了 -death.attack.building=%1$s 被从天而降的建筑砸中了 -death.attack.cheater=%1$s 的肠子变成了燕麦(???) -death.attack.chopperBullet=%1$s 被 %2$s 屠杀 -death.attack.cloud=%1$s 像冰棒一样在太阳下融化 -death.attack.cmb=%1$s 被 %2$s 搞得嘶嘶作响 -death.attack.digamma=%1$s 踏入深渊 -death.attack.electricity=%1$s 被电死 -death.attack.electrified=%1$s 被 %2$s 电死 -death.attack.euthanized=%1$s 被 %2$s 安乐死 -death.attack.euthanizedSelf2=%1$s 获得了达尔文奖 -death.attack.euthanizedSelf=%1$s 把自己安乐死了,可真傻 -death.attack.exhaust=%1$s 被火箭烤成了羊肉串 -death.attack.flamethrower=%1$s 被 %2$s 火化 -death.attack.flamethrower.item=%1$s 被 %2$s 使用 %3$s 火化 -death.attack.ice=%1$s 被 %2$s 做成了冰棒 -death.attack.laser=%1$s 被 %2$s 变成了灰烬 -death.attack.laser.item=%1$s 被 %2$s 使用 %3$s 变成灰烬 -death.attack.lead=%1$s 死于铅中毒 -death.attack.lunar=%1$s 忘记了给重要器官充电 -death.attack.meteorite=%1$s 被来自外太空的陨石击中 -death.attack.microwave=%1s 因微波辐射爆炸 -death.attack.mku=%1$s 死于不明原因 -death.attack.monoxide=%1$s忘了换一氧化碳探测器的电池 -death.attack.mudPoisoning=%1$s 死于毒泥浆中 -death.attack.nuclearBlast=%1$s 被核爆炸飞 -death.attack.overdose=%1$s 上瘾并窒息 -death.attack.pc=%1$s 在粉红色的云中变成了一个水坑 -death.attack.plasma=%1$s 被 %2$s 烧死 -death.attack.radiation=%1$s 死于辐射 -death.attack.revolverBullet=%1$s 被 %2$s 用 %3$s 击中头部 -death.attack.revolverBullet.item=%1$s 被 %2$s 使用 %3$s 爆头 -death.attack.rubble=%1$s 被碎片压扁了 -death.attack.shrapnel=%1$s 被榴弹碎片炸得千疮百孔 -death.attack.spikes=%1$s被刺穿了 -death.attack.subAtomic1=%1$s 的原子已被 %2$s 销毁. -death.attack.subAtomic2=%1$s 因为被 %2$s 篡改了实际速度,导致QPU没有对准 -death.attack.subAtomic3=由于 %2$s,1$s 的偏差下降到1%以下 -death.attack.subAtomic4=%1$s 因为 %2$s 被零除了 -death.attack.subAtomic5=%1$s 因为 %2$s 无效了 -death.attack.suicide=%1$s 打爆了自己的头 -death.attack.taint=%1$s 死于恶性肿瘤 -death.attack.tau=%1$s 被 %2$s 用带负电荷的陶子射穿 -death.attack.tauBlast=%1$s 对XVL1456充能时间过长,被炸成碎片 -death.attack.teleporter=%1$s 被传送到虚空 - -desc.gui.assembler.warning=§c错误:§r此机器需要装配机模板! -desc.gui.chemplant.warning=§c错误:§r此机器需要化工厂模板! -desc.gui.gasCent.enrichment=§2浓缩§r$浓缩铀需要串联$两个离心机串联将离心出$铀燃料,四个离心机串联$将完全分离出铀235。 -desc.gui.gasCent.output=§6流体输送§r$流体可通过输出端口输送至另一台离心机$进行进一步处理。 -desc.gui.nukeBoy.desc=§1需要:§r$ * 中子屏蔽罩$ * 铀-235弹头$ * 次临界铀-235标靶$ * 炸药$ * 点火器 -desc.gui.nukeGadget.desc=§1需要:§r$ * 4个 初代$ 炸药透镜阵列$ * 钚核心$ * 线路 -desc.gui.nukeMan.desc=§1需要:§r$ * 4个 初代$ 炸药透镜阵列$ * 钚核心$ * 点火器 -desc.gui.nukeMike.desc=§1需要:§r$ * 4个 炸药透镜阵列$ * 钚核心$ * 氘冷却装置$ * 铀涂层氘罐 * 氘罐 -desc.gui.nukeTsar.desc=§1需要:§r$ * 4个 炸药透镜阵列$ * 钚核心$§9可选:§r$ * 沙皇炸弹核心 -desc.gui.rttyLogic.cond0=信号§6小于§r常量 -desc.gui.rttyLogic.cond1=信号§6小于等于§r常量 -desc.gui.rttyLogic.cond2=信号§6大于等于§r常量 -desc.gui.rttyLogic.cond3=信号§6大于§r常量 -desc.gui.rttyLogic.cond4=信号§6等于§r常量 -desc.gui.rttyLogic.cond5=信号§6不等于§r常量 -desc.gui.rttyLogic.cond6=信号与字符串§6匹配§r -desc.gui.rttyLogic.cond7=信号与字符串§6不匹配§r -desc.gui.rttyLogic.cond8=信号§6包含§r字符串 -desc.gui.rttyLogic.cond9=信号§6不包含§r字符串 -desc.gui.radiolysis.desc=§9说明§r$该RTG比其他RTG更高效,$并且配备了一个用于$裂解和灭菌的辐解室。 -desc.gui.rtgBFurnace.desc=处理裂解配方至少需要15热量,$热量越高,运行速度越快$超过最高处理速度的热量不起作用$短寿命靶丸可能会衰变 -desc.gui.rtg.heat=§e当前热等级:%s -desc.gui.rtg.pellets=接受的靶丸: -desc.gui.rtg.pelletHeat=%s (%s 热量) -desc.gui.rtg.pelletPower=%s (%s HE/刻) -desc.gui.template=§9模板§r$模板可由$机器模板文件夹制作。 -desc.gui.turbinegas.automode=§2自动涡轮机节流模式§r$通过单击“AUTO”按钮,涡轮机$将根据网络所需的功率自动调整发电量$ -desc.gui.turbinegas.fuels=§6可接受的燃料:§r -desc.gui.turbinegas.warning=§c燃油或润滑油液位低!§r -desc.gui.upgrade=§l可接受的升级:§r -desc.gui.upgrade.afterburner=*§d加力燃烧§r:堆叠至3级 -desc.gui.upgrade.effectiveness=*§a效率§r:堆叠至3级 -desc.gui.upgrade.overdrive=*§7超速§r:堆叠至3级 -desc.gui.upgrade.power=*§1节能§r:堆叠至3级 -desc.gui.upgrade.speed=*§4速度§r:堆叠至3级 -desc.gui.zirnox.coolant=§3冷却剂§r$CO2将热量从堆芯转移到水中$这会令它变成成超热蒸汽$冷却和蒸汽生产的效率取决于压力。 -desc.gui.zirnox.pressure=§6压力§r$排放二氧化碳可以降低压力$然而,压力过低,冷却效率和蒸汽产量将降低$小心熔毁! -desc.gui.zirnox.warning1=§c错误:§r反应堆正常运行需要水! -desc.gui.zirnox.warning2=§c错误:§r二氧化碳是反应堆正常运行所必需的! - -desc.item.ammo.con_accuracy2=- 精度大幅降低 -desc.item.ammo.con_damage=- 伤害大幅降低 -desc.item.ammo.con_heavy_wear=- 大幅增加磨损 -desc.item.ammo.con_ling_fire=- 没有火焰 -desc.item.ammo.con_nn=- 甚至没有核爆 -desc.item.ammo.con_no_damage=- 没有伤害 -desc.item.ammo.con_no_explode1=- 非爆炸性 -desc.item.ammo.con_no_explode2=- 不破坏方块 -desc.item.ammo.con_no_explode3=- 无破片伤害 -desc.item.ammo.con_no_fire=- 不能引起燃烧 -desc.item.ammo.con_no_mirv=- 不建议在原始MIRV上使用 -desc.item.ammo.con_no_projectile=- 无抛射物 -desc.item.ammo.con_penetration=- 无穿透能力 -desc.item.ammo.con_radius=- 减小爆炸半径 -desc.item.ammo.con_range2=- 大幅降低射程 -desc.item.ammo.con_sing_projectile=- 单个弹头 -desc.item.ammo.con_speed=- 弹丸速度降低 -desc.item.ammo.con_super_wear=- 磨损严重增加 -desc.item.ammo.con_wear=- 加剧磨损 -desc.item.ammo.neu_40mm=* 这是一枚40毫米的榴弹,我们把它挤到枪管里! -desc.item.ammo.neu_blank=* 这是空包弹 -desc.item.ammo.neu_boat=* 船 -desc.item.ammo.neu_boxcar=* 车厢 -desc.item.ammo.neu_building=* 建筑物 -desc.item.ammo.neu_chlorophyte=* 叶绿 -desc.item.ammo.neu_eraser=* 用于消除重大错误 -desc.item.ammo.neu_fun=* 全家其乐无穷! -desc.item.ammo.neu_heavy_metal=* 重金属 -desc.item.ammo.neu_homing=* 追踪 -desc.item.ammo.neu_jolt=* 震荡 -desc.item.ammo.neu_leadburster=* 附着在表面并喷射子弹 -desc.item.ammo.neu_less_bouncy=* 弹性更小 -desc.item.ammo.neu_maskman_flechette=* 曳光弹,同时引发一场贫铀飞镖弹风暴 -desc.item.ammo.neu_maskman_meteorite=* 高伤害,同时召唤小陨石 -desc.item.ammo.neu_more_bouncy=* 额外弹性 -desc.item.ammo.neu_no_bounce=* 没有弹性 -desc.item.ammo.neu_no_con=* 没有缺点 -desc.item.ammo.neu_starmetal=* 星辉金属 -desc.item.ammo.neu_tracer=* 示踪剂 -desc.item.ammo.neu_uhh=* Uhhh -desc.item.ammo.neu_warcrime1=* 从技术上来讲触犯了战争罪 -desc.item.ammo.neu_warcrime2=* 一发触犯两条战争罪! -desc.item.ammo.pro_accurate1=+ 提升精度 -desc.item.ammo.pro_accurate2=+ 近乎完美的精度 -desc.item.ammo.pro_balefire=+ 野火 -desc.item.ammo.pro_bomb_count=+ 炸弹数量增加 -desc.item.ammo.pro_caustic=+ 腐蚀性 -desc.item.ammo.pro_chainsaw=+ 电锯 -desc.item.ammo.pro_chlorine=+ 氯气 -desc.item.ammo.pro_damage=+ 提升伤害 -desc.item.ammo.pro_damage_slight=+ 高于平均伤害 -desc.item.ammo.pro_emp=+ EMP -desc.item.ammo.pro_explosive=+ 爆炸 -desc.item.ammo.pro_fallout=+ 辐射尘 -desc.item.ammo.pro_fit_357=+ 适用于所有.357枪械 -desc.item.ammo.pro_flames=+ 火焰喷射量增加 -desc.item.ammo.pro_gravity=+ 下坠降低 -desc.item.ammo.pro_heavy_damage=+ 大幅增加伤害 -desc.item.ammo.pro_incendiary=+ 能引起燃烧 -desc.item.ammo.pro_lunatic=+ 疯子 -desc.item.ammo.pro_marauder=+ 立即消除烦人的和不平衡的敌人 -desc.item.ammo.pro_mining=+ 爆炸使所有方块掉落 -desc.item.ammo.pro_no_gravity=+ 不受重力影响 -desc.item.ammo.pro_nuclear=+ 核爆 -desc.item.ammo.pro_penetration=+ 穿透 -desc.item.ammo.pro_percussion=+ 冲击波 -desc.item.ammo.pro_phosphorus=+ 可致磷烧伤 -desc.item.ammo.pro_phosphorus_splash=+ 磷飞溅 -desc.item.ammo.pro_poison_gas=+ 毒物飞溅 -desc.item.ammo.pro_radius=+ 增加爆炸半径 -desc.item.ammo.pro_radius_high=+ 大幅增加爆炸半径 -desc.item.ammo.pro_range=+ 增加射程 -desc.item.ammo.pro_rocket=+ 火箭 -desc.item.ammo.pro_rocket_propelled=+ 火箭推进 -desc.item.ammo.pro_shrapnel=+ 破片 -desc.item.ammo.pro_speed=+ 提高弹头飞行速度 -desc.item.ammo.pro_stunning=+ 眩晕 -desc.item.ammo.pro_toxic=+ 剧毒 -desc.item.ammo.pro_wear=+ 减少磨损 -desc.item.ammo.pro_withering=+ 凋零 -desc.item.armorMod.display=显示已安装的装甲模块 -desc.item.battery.charge=储能: %s / %sHE -desc.item.battery.chargePerc=储能: %s%% -desc.item.battery.chargeRate=充电效率: %sHE/刻 -desc.item.battery.dischargeRate=放电效率: %sHE/刻 -desc.item.durability=耐久: %s -desc.item.grenade.fuse=引信: %s -desc.item.grenade.fuseImpact=碰炸 -desc.item.grenade.fuseInstant=瞬发 -desc.item.gun.ammo=弹药 %s -desc.item.gun.ammoBelt=从背包中使用 -desc.item.gun.ammoEnergy=能耗; %sHE 每发 -desc.item.gun.ammoEnergyAlt=%sHE 每发 -desc.item.gun.ammoMag=%s / %s -desc.item.gun.ammoType=弹药类型: %s -desc.item.gun.ammoTypeAlt=辅助弹药: %s -desc.item.gun.damage=伤害: %s - %s -desc.item.gun.damageAlt=伤害: %s -desc.item.gun.lore=查看深入的知识 -desc.item.gun.loreFunc=查看深入功能 -desc.item.gun.manufacturer=制造商: %s -desc.item.gun.name=名称: %s -desc.item.gun.pellets=弹丸数:%s-%s -desc.item.gun.penetration=装甲穿透值: %s -desc.item.kitArmor=装甲将被新的装备取代。 -desc.item.kitHaz=装甲将被防护服取代。 -desc.item.kitPack=真便宜! -desc.item.kitPool=请在打开前清空背包库存! -desc.item.pileRod=§e使用钻孔石墨插入$§E使用螺丝刀拔出$ -desc.item.pipette.corrosive=可处理腐蚀性液体。 -desc.item.pipette.laboratory=现在精度提高了50倍! -desc.item.pipette.noCorrosive=§e无法处理腐蚀性液体。 -desc.item.pipette.noEmpty=§e移液管未排空 -desc.item.rtgDecay=衰变为:%s -desc.item.rtgHeat=功率级别:%s -desc.item.storage.capacity=容量 %s%%s -desc.item.storage.proscons=查看利弊列表 -desc.misc.357=.357 马格南 -desc.misc.556=.223 雷明顿 -desc.misc.762=.308 温彻斯特 -desc.misc.func=§n-- 作用 -- -desc.misc.lanthanum="镧" -desc.misc.lctrl=§8按住 <§e§o左CTRL§8§o> %s -desc.misc.lore=§n-- 知识 -- -desc.misc.lshift=§8按住 <§e§o左SHIFT§8§o> %s -desc.misc.luna=§o20x155mm Lunatic -desc.misc.meltPoint=熔点: §c%s -desc.misc.noPos=未设置位置! -desc.misc.pos=将位置设置为:%s,%s,%s -desc.misc.posSet=位置已设置! -desc.item.wasteCooling=在乏燃料池中冷却 -desc.item.zirnoxBreedingRod=§2[ZIRNOX增殖棒]$§e放在燃料棒旁边增殖$§e持续 %d 刻 -desc.item.zirnoxRod=§a[ZIRNOX燃料棒]$§e每刻产生 %1$d 热量$§e持续 %2$d 刻 - -digamma.playerDigamma=玩家F-迪伽马辐照水平: -digamma.playerHealth=玩家所受F-迪伽马辐照影响: -digamma.playerRes=玩家F-迪伽马防护水平: -digamma.title=玩家F-迪伽马辐射自检器 - -entity.entity_cyber_crab.name=赛博螃蟹 -entity.entity_elder_one.name=上古鸭神 -entity.entity_fucc_a_ducc.name=鸭子 -entity.entity_glyphid.name=异虫 -entity.entity_glyphid_behemoth.name=巨兽异虫 -entity.entity_glyphid_blaster.name=爆破异虫 -entity.entity_glyphid_bombardier.name=投弹手异虫 -entity.entity_glyphid_brawler.name=狂战士异虫 -entity.entity_glyphid_brenda.name=布伦达 -entity.entity_glyphid_digger.name=掘地异虫 -entity.entity_glyphid_nuclear.name=大个子强森 -entity.entity_glyphid_scout.name=侦察异虫 -entity.entity_ntm_fbi.name=FBI探员 -entity.entity_ntm_fbi_drone.name=FBI无人机 -entity.entity_ntm_radiation_blaze.name=核融元素 -entity.hbm.entity_ntm_ufo.name=火星入侵者飞船 -entity.entity_mob_hunter_chopper.name=猎人直升机 -entity.entity_mob_mask_man.name=面具人 -entity.entity_mob_gold_creeper.name=黄金爬行者 -entity.entity_mob_nuclear_creeper.name=核爆爬行者 -entity.entity_mob_phosgene_creeper.name=光气爬行者 -entity.entity_mob_tainted_creeper.name=污染爬行者 -entity.entity_mob_volatile_creeper.name=不稳定爬行者 -entity.entity_parasite_maggot.name=寄生虫 -entity.entity_pigeon.name=鸽子 -entity.entity_plastic_bag.name=塑料袋 -entity.entity_taint_crab.name=污染螃蟹 -entity.entity_tesla_crab.name=磁暴螃蟹 -entity.hbm.entity_balls_o_tron.name=机械蠕虫 -entity.hbm.entity_balls_o_tron_seg.name=机械蠕虫 -entity.hbm.entity_bullet.name=子弹 -entity.hbm.entity_rocket.name=火箭弹 -entity.hbm.entity_schrabnel.name=Schrabnel - -excavator.crusher=粉碎开关 -excavator.drill=挖掘开关 -excavator.silktouch=精准采集开关 -excavator.veinminer=连锁挖矿开关 -excavator.walling=填充开关 - -flare.ignition=点火装置 -flare.valve=流量阀 - -fluid.acid_fluid=酸 -fluid.corium_fluid=堆芯熔融物 -fluid.mud_fluid=毒泥 -fluid.rad_lava_fluid=放射性火山熔岩 -fluid.schrabidic_fluid=Sa酸 -fluid.toxic_fluid=绿色软泥 -fluid.volcanic_lava_fluid=火山熔岩 - -foundry.filter=筛选器:%s -foundry.inverted=红石信号反转 -foundry.invertFilter=过滤器反转 -foundry.noCast=未安装模具! - -geiger.chunkRad=当前区块辐射: -geiger.envRad=环境总辐射量: -geiger.playerRad=玩家辐射: -geiger.playerRes=辐射抗性: -geiger.title=盖革计数器 -geiger.title.dosimeter=剂量计 - -gun.make.ARMALITE=阿玛莱特公司 -gun.make.AUTO_ORDINANCE=美国自动武器公司 -gun.make.BAE=英国宇航系统公司 -gun.make.BENELLI=伯奈利武器公司 -gun.make.BLACK_MESA=黑山研究所 -gun.make.CERIX=赛里克斯·马格努斯锻造世界 -gun.make.COLT=柯尔特制造公司 -gun.make.COMBINE=世界工会 -gun.make.CUBE=Cube 2: Sauerbraten -gun.make.DRG=深岩银河 -gun.make.ENZINGER=Enzinger工会 -gun.make.EQUESTRIA=小马国导弹系统 -gun.make.FLIMFLAM=FlimFlam“欺骗”工业 -gun.make.F_STRONG=史特朗堡 -gun.make.GLORIA=GLORIA公司 -gun.make.HASBRO=孩之宝 -gun.make.H_AND_K=黑克勒和科赫武器公司 -gun.make.H_AND_R=哈林顿-理查森武器公司 -gun.make.IF=蹄铁军工 -gun.make.IMI=以色列军事工业 -gun.make.IMI_BIGMT=以色列军事工业公司/大型MT -gun.make.LANGFORD=朗福德研究实验室 -gun.make.LUNA=月球防御公司 -gun.make.MAGNUM_R_IMI=马格南研究公司 / 以色列军事工业公司 -gun.make.MANN=Open Mann公司 -gun.make.MAXIM=海勒姆·马克沁 -gun.make.METRO=地铁枪手 -gun.make.MWT=MWT原型实验室 -gun.make.NAWS=Kayarm Industries -gun.make.ERFURT=埃尔福特机械制造厂 -gun.make.NONE=- -gun.make.RAYTHEON=导弹系统公司 -gun.make.REMINGTON=雷明登武器公司 -gun.make.ROCKWELL=罗克韦尔国际公司 -gun.make.ROCKWELL_U=罗克韦尔国际公司? -gun.make.RYAN=莱恩工业 -gun.make.SAAB=萨博博福斯动力公司 -gun.make.SACO=萨科防卫军械 -gun.make.TULSKY=图拉武器厂 -gun.make.UAC=联合宇宙航空公司 -gun.make.UNKNOWN=??? -gun.make.WESTTEK=WestTek研究设施 -gun.make.WGW=威廉·古斯特洛夫·维尔克 -gun.make.WINCHESTER=温彻斯特速射武器公司 -gun.make.WINCHESTER_BIGMT=温彻斯特速射武器公司/大型MT - -gun.name.ar15_50=AR-15 .50BMG型 -gun.name.baeAR=英国制式突击步枪 -gun.name.bel=野火蛋发射器 -gun.name.benelli=伯奈利M4 Super 90霰弹枪 -gun.name.benelliDrum=伯奈利M4 Super 90霰弹枪 (泵动供弹改进型) -gun.name.bio=RI No. 2 Mark 1 -gun.name.bolter=Manticora Pattern爆弹枪 -gun.name.congoLake=刚果湖水泵动榴弹发射器 -gun.name.cPython=柯尔特蟒蛇 -gun.name.cz53=CZ53 单兵转轮机枪 -gun.name.cz57=CZ57 复仇者机枪 -gun.name.dart=针枪 -gun.name.deagle=以色列军事工业公司沙漠之鹰 -gun.name.emp=EMP投射器 -gun.name.extinguisher=PROTEX灭火器6kg -gun.name.ffiV=FFI Viper -gun.name.ffiVInox=FFI Viper Inox -gun.name.ffiVLead=FFI Viper Lead -gun.name.ffiVN1=FFI Viper N1 -gun.name.ffiVN2=FFI Viper N2 -gun.name.ffiVUltra=FFI Viper Ultra -gun.name.ffivBling=FFI Viper Bling -gun.name.ffivSatur=FFI Viper D-25A -gun.name.g36=HK G36突击步枪 -gun.name.gPistol=HK69A1 手持单发榴弹发射器 -gun.name.gustav=卡尔·古斯塔夫M1无后坐力炮 -gun.name.ifHorseshoe=IF-18 蹄铁 -gun.name.ifPit=IF-18 蹄铁 Bottomless Pit -gun.name.ifScope=IF-18 蹄铁 Scoped -gun.name.ifStorm=IF-18 蹄铁 银色风暴 -gun.name.ifVanity=IF-18 蹄铁 Vanity -gun.name.karl=M1 卡尔·古斯塔夫 -gun.name.ks23=KS-23霰弹枪 -gun.name.lacunae=Auntie Lacunae -gun.name.lasetDet=霍普维尔激光雷管 -gun.name.lunaAR=1986 Bishamonten式突击步枪 -gun.name.lunaGun=1978 Rāhula type Standard Issue Sidearm (Revision 2) -gun.name.lunaHLR=1944嫦娥式轻机枪 -gun.name.lunaShotty=1978年关羽式散弹枪(第1次修订) -gun.name.lunaSMG=1956 ānanda type Submachine Gun -gun.name.lunaSniper=1915后羿式反器材步枪 -gun.name.lunaTWR=时间扭曲步枪 -gun.name.m2=M2式勃朗宁大口径重机枪 -gun.name.m42=M-42战术核弹发射器 -gun.name.m42MIRV=M-42实验MIRV -gun.name.m60=7.62毫米口径M60机枪 -gun.name.maxim=马克沁机枪 -gun.name.maximDouble=双重马克沁机枪 -gun.name.mg3=MG-42通用机枪 -gun.name.mp40=MP40冲锋枪 -gun.name.nerf=某些无良记者眼中的大规模杀伤性武器 -gun.name.osipr=守望标准型脉冲步枪 -gun.name.panz=反坦克火箭来复枪 54 -gun.name.quadro=OpenQuadro便携式导弹发射器 -gun.name.remington870=雷明顿870 -gun.name.revolverCursed=不列颠标准问题电动手枪 -gun.name.sauer=绍尔猎枪 -gun.name.spas12=弗兰基SPAS-12式12号霰弹枪 -gun.name.spiw=H&R SPIW -gun.name.stinger=FIM-92毒刺便携式防空系统 -gun.name.stingerOneSky=The One Sky 毒刺便携式防空系统 -gun.name.supershotty=双管战斗霰弹枪 -gun.name.tau=XVL1456 陶子加农炮 -gun.name.tommy9=M1A1冲锋枪9毫米型 -gun.name.tommy=M1A1冲锋枪 -gun.name.topaz=重型火焰燃烧器 -gun.name.uacCarbine=UAC-41卡宾枪 -gun.name.uacDeagle=UAC-H54“火星猛禽”大容量手枪 -gun.name.uacDMR=UAC-30 精确射手步枪 -gun.name.uacLMG=UAC-49轻机枪 -gun.name.uacPistol=UAC-B950 .45 标准型手枪 -gun.name.uacSMG=UAC-17小型冲锋枪 -gun.name.uboinik=Uboinik转轮霰弹枪 -gun.name.uzi=IMI Uzi -gun.name.uziSatur=IMI Uzi D-25A -gun.name.win1887=温彻斯特M1887杠杆式连发霰弹枪 -gun.name.win1887Inox=温彻斯特M1887杠杆式连发霰弹枪 Inox -gun.name.win20Inox=温彻斯特20型Inox -gun.name.win20Poly=温彻斯特20型聚合物 -gun.name.win20Satur=温彻斯特20型 D-25A -gun.name.zomg=EMC101棱镜负能量炮 - -hadron.analysis=正在分析... -hadron.buttonOn=分析室启动(如果存在) -hadron.buttonOff=分析室关闭 -hadron.error_generic=错误! -hadron.error_no_charge=错误 0x01 [能量不足] -hadron.error_no_analysis=错误 0x02 [无法分析] -hadron.error_obstructed_channel=错误 0x03 [通道阻塞] -hadron.error_expected_coil=错误 0x04 [缺少线圈] -hadron.error_malformed_segment=错误 0x05 [错误区段] -hadron.error_analysis_too_long=错误 0x06 [分析室过长] -hadron.error_analysis_too_short=错误 0x06 [分析室过长] -hadron.error_diode_collision=错误 0x08 [二极管方向错误] -hadron.error_branching_turn=错误 0x09 [多处分支] -hadron.hopper0=§e正常模式:$将使用所有物品 -hadron.hopper1=§e料斗模式:$将始终保留一个物品 -hadron.hopper2=§e单物品模式:$每个槽位只接受一个物品 -hadron.idle=空闲 -hadron.modeCircular=§e环形加速器模式:$磁铁必须环绕核心$解锁更多配方 -hadron.modeLine=§e直线加速器模式:$加速器末端有分析室$更少的配方 -hadron.noresult=无结果 -hadron.noresult_too_slow=动量不足! -hadron.noresult_wrong_ingredient=无效配方! -hadron.noresult_wrong_mode=错误模式! -hadron.progress=正在进行中... -hadron.stats=上一次结果: -hadron.stats_coord=错误位置:%s/%s/%s -hadron.stats_momentum=动量: %s -hadron.success=已完成! - -hazard.prot=防止危险: -hazard.noprot=不能防止: -hazard.bacteria=细菌/气溶胶 -hazard.corrosive=腐蚀性烟雾 -hazard.gasChlorine=化学气体 -hazard.gasInert=惰性气体/沥青 -hazard.gasMonoxide=一氧化碳 -hazard.light=亮光 -hazard.nerveAgent=神经毒剂 -hazard.neverProtects=无法防护: -hazard.particleCoarse=空气微粒 -hazard.particleFine=微粒 -hazard.sand=眼睛刺激物 - -hbm.key=HBM的核科技mod 热键 -hbm.key.calculator=计算器 -hbm.key.craneLoad=装卸起重机 -hbm.key.craneMoveDown=向后移动起重机 -hbm.key.craneMoveLeft=向左移动起重机 -hbm.key.craneMoveRight=向右移动起重机 -hbm.key.craneMoveUp=向前移动起重机 -hbm.key.dash=冲刺 (在config中解绑) -hbm.key.toggleBack=开关 喷气背包 -hbm.key.toggleHUD=开关 HUD -hbm.key.reload=装弹 - -hbmfluid.amat=反物质 -hbmfluid.aromatics=芳香烃 -hbmfluid.aschrab=反Sa326 -hbmfluid.balefire=野火火箭燃料 -hbmfluid.biofuel=生物燃料 -hbmfluid.biogas=沼气 -hbmfluid.bitumen=沥青 -hbmfluid.blood=血 -hbmfluid.blood_hot=热的血 -hbmfluid.calcium_chloride=氯化钙溶液 -hbmfluid.calcium_solution=钙溶液 -hbmfluid.carbondioxide=二氧化碳 -hbmfluid.chlorine=氯气 -hbmfluid.chlorocalcite_cleaned=纯净氯方解石溶液 -hbmfluid.chlorocalcite_mix=混合氯方解石溶液 -hbmfluid.chlorocalcite_solution=氯方解石溶液 -hbmfluid.cholesterol=胆固醇溶液 -hbmfluid.coalcreosote=煤焦杂酚油 -hbmfluid.coalgas=煤汽油 -hbmfluid.coalgas_leaded=含铅煤汽油 -hbmfluid.coaloil=煤液化油 -hbmfluid.colloid=胶体 -hbmfluid.coolant=冷却液 -hbmfluid.coolant_hot=热冷却液 -hbmfluid.crackoil=裂化油 -hbmfluid.crackoil_ds=脱硫裂化油 -hbmfluid.cryogel=冷凝胶 -hbmfluid.death=锇酸溶液 -hbmfluid.deuterium=氘 -hbmfluid.diesel=柴油 -hbmfluid.diesel_crack=裂化柴油 -hbmfluid.diesel_crack_reform=高辛烷值裂化柴油 -hbmfluid.diesel_reform=高辛烷值柴油 -hbmfluid.egg=蛋溶解液 -hbmfluid.estradiol=雌二醇溶液 -hbmfluid.ethanol=乙醇 -hbmfluid.enderjuice=末影果汁 -hbmfluid.fishoil=鱼油 -hbmfluid.fracksol=压裂液 -hbmfluid.fullerene=富勒烯溶液 -hbmfluid.gas=天然气 -hbmfluid.gas_coker=焦化气 -hbmfluid.gasoline=含铅汽油基油 -hbmfluid.gasoline_leaded=含铅汽油 -hbmfluid.heatingoil=燃油 -hbmfluid.heatingoil_vacuum=重质燃油 -hbmfluid.heavyoil=重油 -hbmfluid.heavyoil_vacuum=减压重油 -hbmfluid.heavywater=重水 -hbmfluid.heavywater_hot=高温重水 -hbmfluid.helium3=氦-3 -hbmfluid.helium4=氦-4 -hbmfluid.hotcrackoil=热裂化油 -hbmfluid.hotcrackoil_ds=热的脱硫裂化油 -hbmfluid.hotoil=热原油 -hbmfluid.hotoil_ds=热的脱硫原油 -hbmfluid.hotsteam=热蒸汽 -hbmfluid.hydrogen=液氢 -hbmfluid.iongel=离子凝胶 -hbmfluid.kerosene=煤油 -hbmfluid.kerosene_reform=喷气燃料 -hbmfluid.lava=岩浆 -hbmfluid.lightoil=轻油 -hbmfluid.lightoil_crack=裂化轻油 -hbmfluid.lightoil_ds=脱硫轻油 -hbmfluid.lightoil_vacuum=减压轻油 -hbmfluid.lpg=液化石油气 -hbmfluid.lubricant=润滑油 -hbmfluid.mercury=水银 -hbmfluid.mug=Mug牌树根饮料 -hbmfluid.mug_hot=热的Mug牌树根饮料 -hbmfluid.mustardgas=芥子气 -hbmfluid.naphtha=石脑油 -hbmfluid.naphtha_coker=焦化石脑油 -hbmfluid.naphtha_crack=裂化石脑油 -hbmfluid.naphtha_ds=脱硫石脑油 -hbmfluid.nitan=NITAN牌100号超级燃料 -hbmfluid.nitric_acid=硝酸 -hbmfluid.nitroglycerin=硝酸甘油 -hbmfluid.none=无 -hbmfluid.oil=原油 -hbmfluid.oil_coker=焦化油 -hbmfluid.oil_ds=脱硫原油 -hbmfluid.oxygen=液氧 -hbmfluid.oxyhydrogen=氢氧混合气 -hbmfluid.pain=Pn(III) 钽铁溶液 -hbmfluid.peroxide=过氧化氢 -hbmfluid.petroil=汽油 -hbmfluid.petroil_leaded=含铅石油 -hbmfluid.petroleum=石油气 -hbmfluid.phosgene=光气 -hbmfluid.pheromone=异虫信息素 -hbmfluid.pheromone_m=增强异虫信息素 -hbmfluid.plasma_bf=野火等离子体 -hbmfluid.plasma_dh3=氘-氦3 等离子体 -hbmfluid.plasma_dt=氘-氚等离子体 -hbmfluid.plasma_hd=氢-氘等离子体 -hbmfluid.plasma_ht=氢-氚等离子体 -hbmfluid.plasma_xm=液氧-氦-4等离子体 -hbmfluid.potassium_chloride=氯化钾溶液 -hbmfluid.puf6=六氟化钚 -hbmfluid.radiosolvent=高性能溶剂 -hbmfluid.reclaimed=再生油 -hbmfluid.redmud=红色泥浆 -hbmfluid.reformate=重整油 -hbmfluid.reformgas=重整气 -hbmfluid.salient=绿色液体 -hbmfluid.sas3=三硫化Sa -hbmfluid.schrabidic=Sa酸 -hbmfluid.seedslurry=播种浆料 -hbmfluid.slop=洗矿废水 -hbmfluid.smear=工业油 -hbmfluid.smoke=烟雾 -hbmfluid.smoke_leaded=含铅烟雾 -hbmfluid.smoke_poison=有毒烟雾 -hbmfluid.sodium=液态钠 -hbmfluid.sodium_hot=高温液态钠 -hbmfluid.solvent=有机溶剂 -hbmfluid.sourgas=高硫天然气 -hbmfluid.spentsteam=低压蒸汽 -hbmfluid.steam=蒸汽 -hbmfluid.stellar_flux=星流浆 -hbmfluid.sulfuric_acid=硫酸 -hbmfluid.sunfloweroil=葵花籽油 -hbmfluid.superhotsteam=超热蒸汽 -hbmfluid.syngas=合成气 -hbmfluid.thorium_salt=液态钍盐 -hbmfluid.thorium_salt_depleted=贫化液态钍盐 -hbmfluid.thorium_salt_hot=高温液态钍盐 -hbmfluid.tritium=氚 -hbmfluid.uf6=六氟化铀 -hbmfluid.ultrahotsteam=超浓密蒸汽 -hbmfluid.unsaturateds=不饱和烃 -hbmfluid.vitriol=硫酸盐 -hbmfluid.wastefluid=液态核废料 -hbmfluid.wastegas=气态核废料 -hbmfluid.water=水 -hbmfluid.watz=毒泥浆 -hbmfluid.woodoil=木油 -hbmfluid.xenon=氙气 -hbmfluid.xpjuice=经验汁 -hbmfluid.xylene=轻质芳烃(BTX) - -hbmpseudofluid.none=空 -hbmpseudofluid.heuf6=高浓缩六氟化铀 -hbmpseudofluid.meuf6=中浓缩六氟化铀 -hbmpseudofluid.leuf6=低浓缩六氟化铀 -hbmpseudofluid.nuf6=天然浓度六氟化铀 -hbmpseudofluid.pf6=六氟化钚 -hbmpseudofluid.mud_heavy=毒泥浆重馏分 -hbmpseudofluid.mud=毒泥浆气态物 - -hbmmat.actinium227=锕-227 -hbmmat.advancedalloy=高级合金 -hbmmat.aluminum=铝 -hbmmat.americiumrg=反应堆级镅 -hbmmat.americium241=镅-241 -hbmmat.americium242=镅-242 -hbmmat.arsenic=砷 -hbmmat.arsenicbronze=砷青铜 -hbmmat.asbestos=石棉 -hbmmat.bakelite=电木 -hbmmat.beryllium=铍 -hbmmat.bismuth=铋 -hbmmat.bismuthbronze=铋青铜 -hbmmat.borax=硼砂 -hbmmat.boron=硼 -hbmmat.bscco=BSCCO -hbmmat.cadmium=镉 -hbmmat.calcium=钙 -hbmmat.carbon=碳 -hbmmat.cdalloy=镉钢 -hbmmat.chlorocalcite=氯方解石 -hbmmat.cinnabar=朱砂 -hbmmat.cmbsteel=CMB钢 -hbmmat.coal=煤 -hbmmat.coalcoke=焦煤 -hbmmat.cobalt=钴 -hbmmat.cobalt60=钴-60 -hbmmat.coltan=钶钽铁矿 -hbmmat.copper=铜 -hbmmat.desh=Desh -hbmmat.diamond=钻石 -hbmmat.dineutronium=双聚中子态素 -hbmmat.durasteel=高速钢 -hbmmat.emerald=绿宝石 -hbmmat.euphemium=Ep -hbmmat.ferrouranium=铀铁合金 -hbmmat.fiberglass=玻璃纤维 -hbmmat.fluorite=氟石 -hbmmat.flux=助熔剂 -hbmmat.ghiorsium336=Gh-336 -hbmmat.gold=金 -hbmmat.gold198=金-198 -hbmmat.graphene=石墨烯 -hbmmat.graphite=石墨 -hbmmat.hematite=赤铁矿 -hbmmat.iron=铁 -hbmmat.lanthanum=镧 -hbmmat.lapis=青金石 -hbmmat.lead=铅 -hbmmat.lead209=铅-209 -hbmmat.lignitecoke=褐煤焦煤 -hbmmat.lignite=褐煤 -hbmmat.lithium=锂 -hbmmat.magnetizedtungsten=磁化钨 -hbmmat.malachite=孔雀石 -hbmmat.meteoriciron=陨铁 -hbmmat.mingrade=紫铜 -hbmmat.molysite=氯化铁 -hbmmat.neodymium=钕 -hbmmat.neptunium237=镎-237 -hbmmat.niobium=铌 -hbmmat.obsidian=黑曜石 -hbmmat.osmiridium=铱锇合金 -hbmmat.petcoke=石油焦炭 -hbmmat.pigiron=生铁 -hbmmat.plutonium=钚 -hbmmat.plutonium238=钚-238 -hbmmat.plutonium239=钚-239 -hbmmat.plutonium240=钚-240 -hbmmat.plutonium241=钚-241 -hbmmat.plutoniumrg=反应堆级钚 -hbmmat.polonium210=钋-210 -hbmmat.polymer=聚合物 -hbmmat.radium226=镭-226 -hbmmat.rareearth=稀土 -hbmmat.redphosphorus=红磷 -hbmmat.redstone=红石 -hbmmat.rubber=橡胶 -hbmmat.saltpeter=硝石 -hbmmat.saturnite=土星 -hbmmat.schrabidate=Sa酸铁 -hbmmat.schrabidium=Sa326 -hbmmat.schraranium=低丰度Sa326 -hbmmat.silicon=硅 -hbmmat.slag=炉渣 -hbmmat.sodalite=方钠石 -hbmmat.sodium=钠 -hbmmat.solinium=Sa327 -hbmmat.starmetal=星辉 -hbmmat.steel=钢 -hbmmat.stone=石头 -hbmmat.strontium=锶 -hbmmat.sulfur=硫 -hbmmat.tantalum=钽 -hbmmat.tcalloy=锝钢 -hbmmat.technetium99=锝-99 -hbmmat.titanium=钛 -hbmmat.thorium232=钍-232 -hbmmat.tungsten=钨 -hbmmat.uranium=铀 -hbmmat.uranium233=铀-233 -hbmmat.uranium235=铀-235 -hbmmat.uranium238=铀-238 -hbmmat.watzmud=毒泥浆 -hbmmat.whitephosphorus=白磷 -hbmmat.workersalloy=Desh -hbmmat.wroughtiron=锻铁 -hbmmat.zirconium=锆 - -matshape.block=%s 块 -matshape.blocks=%s 块 -matshape.ingot=%s 锭 -matshape.ingots=%s 锭 -matshape.nugget=%s 粒 -matshape.nuggets=%s 粒 -matshape.quantum=%s 量子 -matshape.quanta=%s 量子 - -icffuel.beryllium=铍 -icffuel.boron=硼 -icffuel.carbon=碳 -icffuel.calcium=钙 -icffuel.chlorine=氯 -icffuel.deuterium=氘 -icffuel.helium3=氦-3 -icffuel.helium4=氦-4 -icffuel.hydrogen=氢 -icffuel.lithium=锂 -icffuel.oxygen=氧 -icffuel.sodium=钠 -icffuel.tritium=氚 - -info.asbestos=我感觉我的肺在燃烧。 -info.coaldust=在这里很难呼吸。 -info.coil=线圈强度 -info.templatefolder=需要使用%s创建 -info.template_in=输入: -info.template_in_p=输入: -info.template_out=输出: -info.template_out_p=输出: -info.template_seconds=秒 -info.template_time=生产耗时: - -item.acetylene_torch.name=乙炔焊罐 -item.ajr_boots.name=AJR 动力装甲靴子 -item.ajr_helmet.name=AJR 动力装甲头盔 -item.ajr_legs.name=AJR 动力装甲护腿 -item.ajr_plate.name=AJR 动力装甲胸甲 -item.ajro_boots.name=AJR动力装甲靴子 -item.ajro_helmet.name=AJR 动力装甲头盔 -item.ajro_legs.name=AJR 动力装甲护腿 -item.ajro_plate.name=AJR 动力装甲胸甲 -item.alloy_axe.name=高级合金斧 -item.alloy_boots.name=高级合金靴子 -item.alloy_helmet.name=高级合金头盔 -item.alloy_hoe.name=高级合金锄 -item.alloy_legs.name=高级合金护腿 -item.alloy_pickaxe.name=高级合金镐 -item.alloy_plate.name=高级合金胸甲 -item.alloy_shovel.name=高级合金锹 -item.alloy_sword.name=高级合金剑 -item.ammo_12gauge.name=12号鹿弹 -item.ammo_12gauge_du.name=12号鹿弹[铀涂层] -item.ammo_12gauge_incendiary.name=12号鹿弹[燃烧] -item.ammo_12gauge_marauder.name=12号战术反掠夺鹿弹 -item.ammo_12gauge_percussion.name=12号冲击火药帽 -item.ammo_12gauge_shrapnel.name=12号鹿弹[榴霰弹] -item.ammo_12gauge_sleek.name=12号鹿弹[IF-R&D] -item.ammo_20gauge.name=20号鹿弹 -item.ammo_20gauge_caustic.name=20号鹿弹[腐蚀] -item.ammo_20gauge_explosive.name=20号鹿弹[高爆] -item.ammo_20gauge_flechette.name=20号箭霰弹 -item.ammo_20gauge_incendiary.name=20号鹿弹[燃烧] -item.ammo_20gauge_shock.name=20号鹿弹[震荡] -item.ammo_20gauge_shrapnel.name=20号鹿弹[榴霰弹] -item.ammo_20gauge_sleek.name=20号鹿弹[IF-R&D] -item.ammo_20gauge_slug.name=20号独头弹 -item.ammo_20gauge_wither.name=20号鹿弹[凋零] -item.ammo_22lr.name=.22LR子弹 -item.ammo_22lr_ap.name=.22LR子弹[AP] -item.ammo_22lr_chlorophyte.name=.22LR子弹[叶绿] -item.ammo_357_desh.name=.357马格南Desh子弹 -item.ammo_44.name=.44马格南子弹 -item.ammo_44_ap.name=.44马格南子弹[AP] -item.ammo_44_bj.name=.44马格南子弹[船] -item.ammo_44_chlorophyte.name=.44马格南子弹[叶绿] -item.ammo_44_du.name=.44马格南子弹[贫铀] -item.ammo_44_phosphorus.name=.44马格南子弹[白磷] -item.ammo_44_pip.name=.44马格南子弹[车厢] -item.ammo_44_rocket.name=.44马格南火箭 -item.ammo_44_silver.name=.44马格南子弹[建筑] -item.ammo_44_star.name=.44马格南子弹[星辉] -item.ammo_45.name=.45 ACP 子弹 -item.ammo_45_ap.name=.45 ACP 子弹[AP] -item.ammo_45_du.name=.45 ACP 子弹[贫铀] -item.ammo_4gauge.name=四号鹿弹 -item.ammo_4gauge_balefire.name=23mm野火榴弹 -item.ammo_4gauge_canister.name=23mm 火箭弹[榴霰弹] -item.ammo_4gauge_claw.name=4号爪弹 -item.ammo_4gauge_explosive.name=23mm榴弹 -item.ammo_4gauge_flechette.name=4号箭霰弹 -item.ammo_4gauge_flechette_phosphorus.name=4号箭霰弹[白磷] -item.ammo_4gauge_kampf.name=23mm火箭弹 -item.ammo_4gauge_semtex.name=23mm采矿弹药 -item.ammo_4gauge_sleek.name=4号鹿弹[IF-R&D] -item.ammo_4gauge_slug.name=四号实心独头弹 -item.ammo_4gauge_titan.name=4号Quacker鹿弹 -item.ammo_4gauge_vampire.name=4号木签弹 -item.ammo_4gauge_void.name=4号电离粒子弹 -item.ammo_50ae.name=.50AE子弹 -item.ammo_50ae_ap.name=.50AE子弹[AP] -item.ammo_50ae_chlorophyte.name=.50AE子弹[叶绿] -item.ammo_50ae_du.name=.50AE子弹[贫铀] -item.ammo_50ae_star.name=.50AE子弹[星辉] -item.ammo_50bmg.name=.50BMG子弹 -item.ammo_50bmg_ap.name=.50BMG子弹[AP] -item.ammo_50bmg_chlorophyte.name=.50BMG子弹[叶绿] -item.ammo_50bmg_du.name=.50BMG子弹[贫铀] -item.ammo_50bmg_explosive.name=.50BMG子弹[高爆] -item.ammo_50bmg_flechette.name=.50 BMG镖形弹 -item.ammo_50bmg_flechette_am.name=.50 BMG镖形弹[含镅] -item.ammo_50bmg_flechette_po.name=.50 BMG镖形弹[含钋] -item.ammo_50bmg_incendiary.name=.50BMG子弹[燃烧] -item.ammo_50bmg_phosphorus.name=.50BMG子弹[白磷] -item.ammo_50bmg_sleek.name=.50BMG子弹[IF-R&D] -item.ammo_50bmg_star.name=.50BMG子弹[星辉] -item.ammo_556.name=5.56mm子弹 -item.ammo_556_ap.name=5.56mm子弹[AP] -item.ammo_556_chlorophyte.name=5.56mm子弹[叶绿] -item.ammo_556_du.name=5.56mm子弹[贫铀] -item.ammo_556_flechette.name=5.56mm弗莱彻子弹 -item.ammo_556_flechette_chlorophyte.name=5.56mm弗莱彻子弹[叶绿] -item.ammo_556_flechette_du.name=5.56mm弗莱彻子弹 [贫铀穿甲] -item.ammo_556_flechette_incendiary.name=5.56mm弗莱彻子弹 [燃烧] -item.ammo_556_flechette_phosphorus.name=5.56mm弗莱彻子弹 [白磷穿甲] -item.ammo_556_flechette_sleek.name=5.56mm弗莱彻子弹[IF-R&D] -item.ammo_556_k.name=5.56mm空包弹 -item.ammo_556_phosphorus.name=5.56mm子弹[白磷] -item.ammo_556_sleek.name=5.56mm子弹[IF-R&D] -item.ammo_556_star.name=5.56mm子弹 [星辉] -item.ammo_556_tracer.name=5.56mm 子弹[曳光弹] -item.ammo_5mm.name=5mm子弹 -item.ammo_5mm_chlorophyte.name=5mm子弹[叶绿] -item.ammo_5mm_du.name=5mm子弹[贫铀] -item.ammo_5mm_explosive.name=5mm子弹[高爆] -item.ammo_5mm_star.name=5mm子弹[星辉] -item.ammo_75bolt.name=.75弹匣(30发) -item.ammo_75bolt_incendiary.name=.75燃烧弹匣(30发) -item.ammo_75bolt_he.name=.75高爆弹匣(30发) -item.ammo_762.name=7.62mm 子弹 -item.ammo_762_ap.name=7.62mm 子弹[AP] -item.ammo_762_du.name=7.62mm 子弹[贫铀] -item.ammo_762_k.name=7.62mm 空包弹 -item.ammo_762_phosphorus.name=7.62mm 子弹[白磷] -item.ammo_762_tracer.name=7.62mm 子弹[曳光] -item.ammo_9mm.name=9mm子弹 -item.ammo_9mm_ap.name=9mm子弹[AP] -item.ammo_9mm_chlorophyte.name=9mm子弹[叶绿] -item.ammo_9mm_du.name=9mm子弹[贫铀] -item.ammo_9mm_rocket.name=9mm火箭弹 -item.ammo_arty.name=16英寸炮弹 -item.ammo_arty_cargo.name=16英寸快递炮弹 -item.ammo_arty_chlorine.name=16英寸氯气炮弹 -item.ammo_arty_classic.name=16英寸炮弹 (特制) -item.ammo_arty_he.name=16英寸高爆炮弹 -item.ammo_arty_mini_nuke.name=16英寸微型核炮弹 -item.ammo_arty_mini_nuke_multi.name=16英寸多弹头微型核炮弹 -item.ammo_arty_mustard_gas.name=16英寸芥子气炮弹 -item.ammo_arty_nuke.name=16英寸核炮弹 -item.ammo_arty_phosgene.name=16英寸光气炮弹 -item.ammo_arty_phosphorus.name=16英寸磷炮弹 -item.ammo_arty_phosphorus_multi.name=16英寸多弹头磷炮弹 -item.ammo_cell.name=能量单元 -item.ammo_coilgun.name=钨制线圈枪子弹 -item.ammo_coilgun_du.name=铀铁合金制线圈枪子弹 -item.ammo_coilgun_rubber.name=橡胶制线圈枪子弹 -item.ammo_container.name=万能弹药盒 -item.ammo_dart.name=塑料镖[凋零] -item.ammo_dart_nerf.name=NERF 飞镖 -item.ammo_dart_nuclear.name=塑料镖[定时炸药] -item.ammo_dgk.name=双联守门员近防系统200发弹药 -item.ammo_fireext.name=灭火器 水罐 -item.ammo_fireext_foam.name=灭火器 泡沫罐 -item.ammo_fireext_sand.name=灭火器 硼沙罐 -item.ammo_folly.name=银弹 -item.ammo_folly_du.name=银弹[贫铀, 不爆炸] -item.ammo_folly_nuclear.name=银弹[核子] -item.ammo_fuel.name=柴油罐 -item.ammo_fuel_gas.name=毒气罐 -item.ammo_fuel_napalm.name=凝固汽油罐 -item.ammo_fuel_phosphorus.name=白磷罐 -item.ammo_fuel_vaporizer.name=汽化罐 -item.ammo_grenade.name=40mm榴弹 -item.ammo_grenade_concussion.name=40mm榴弹[震荡] -item.ammo_grenade_finned.name=40mm榴弹[尾翼稳定] -item.ammo_grenade_he.name=40mm榴弹[HE] -item.ammo_grenade_incendiary.name=40mm榴弹[燃烧] -item.ammo_grenade_kampf.name=40mm战术榴弹 -item.ammo_grenade_leadburster.name=40mm 开路先锋 -item.ammo_grenade_nuclear.name=40mm榴弹[核子] -item.ammo_grenade_phosphorus.name=40mm榴弹[白磷] -item.ammo_grenade_sleek.name=40mm榴弹[IF-R&D] -item.ammo_grenade_toxic.name=40mm榴弹[化学] -item.ammo_grenade_tracer.name=40mm训练榴弹 -item.ammo_himars_standard.name=M28制导火箭炮系统火箭弹舱 -item.ammo_himars_standard_he.name=227毫米制导火箭炮系统火箭吊舱(HE) -item.ammo_himars_standard_lava.name=227毫米制导火箭炮系统火箭吊舱(熔岩) -item.ammo_himars_standard_mini_nuke.name=227毫米制导火箭炮系统火箭吊舱(迷你核弹) -item.ammo_himars_standard_tb.name=227毫米制导火箭炮系统火箭吊舱(温压弹) -item.ammo_himars_standard_wp.name=227毫米制导火箭炮系统火箭吊舱(白磷) -item.ammo_himars_single.name=M39A1制导火箭炮系统火箭弹舱 -item.ammo_himars_single_tb.name=610毫米制导火炮火箭吊舱(温压弹) -item.ammo_luna.name=Lunatic狙击弹 -item.ammo_luna_explosive.name=Lunatic狙击爆炸弹 -item.ammo_luna_incendiary.name=Lunatic狙击燃烧弹 -item.ammo_mirv.name=迷你MIRV -item.ammo_mirv_high.name=迷你MIRV (高当量) -item.ammo_mirv_low.name=迷你MIRV (低当量) -item.ammo_mirv_safe.name=迷你MIRV (安全) -item.ammo_mirv_special.name=迷你MIRV -item.ammo_nuke.name=迷你核弹 -item.ammo_nuke_barrel.name=小型核废料桶 -item.ammo_nuke_high.name=迷你核弹 (高当量) -item.ammo_nuke_low.name=迷你核弹 (低当量) -item.ammo_nuke_pumpkin.name=南瓜炸弹 -item.ammo_nuke_safe.name=迷你核弹 (安全) -item.ammo_nuke_tots.name=迷你核弹 (幼体) -item.ammo_rocket.name=84mm火箭弹 -item.ammo_rocket_canister.name=84mm 火箭弹[榴霰弹] -item.ammo_rocket_digamma.name=§4归 零§r -item.ammo_rocket_emp.name=84mm火箭弹[EMP] -item.ammo_rocket_glare.name=84mm火箭弹[红光] -item.ammo_rocket_he.name=84mm火箭弹[HE] -item.ammo_rocket_incendiary.name=84mm火箭弹[燃烧] -item.ammo_rocket_nuclear.name=84mm火箭弹[核子] -item.ammo_rocket_phosphorus.name=84mm火箭弹[白磷] -item.ammo_rocket_rpc.name=84mm火箭弹[飞行电锯] -item.ammo_rocket_shrapnel.name=84mm火箭弹[破片] -item.ammo_rocket_sleek.name=84mm火箭弹[IF-R&D] -item.ammo_rocket_toxic.name=84mm火箭弹[化学] -item.ammo_shell.name=240mm炮弹 -item.ammo_shell_apfsds_du.name=240mm 贫铀尾翼稳定脱壳穿甲弹 -item.ammo_shell_apfsds_t.name=240mm 钨心尾翼稳定脱壳穿甲弹 -item.ammo_shell_explosive.name=240mm 高爆炮弹 -item.ammo_shell_w9.name=240mm W9核子炮弹 -item.ammo_stinger_rocket.name=毒刺导弹 -item.ammo_stinger_rocket_he.name=毒刺导弹[高爆] -item.ammo_stinger_rocket_incendiary.name=毒刺导弹[燃烧] -item.ammo_stinger_rocket_nuclear.name=毒刺导弹[Привет] -item.ammo_stinger_rocket_bones.name=毒刺导弹[寻骨] -item.ams_catalyst_aluminium.name=铝反应催化剂 -item.ams_catalyst_beryllium.name=铍反应催化剂 -item.ams_catalyst_blank.name=空白反应催化剂 -item.ams_catalyst_caesium.name=铯反应催化剂 -item.ams_catalyst_cerium.name=铈反应催化剂 -item.ams_catalyst_cobalt.name=钴反应催化剂 -item.ams_catalyst_copper.name=铜反应催化剂 -item.ams_catalyst_dineutronium.name=双聚中子态素反应催化剂 -item.ams_catalyst_euphemium.name=Ep反应催化剂 -item.ams_catalyst_iron.name=铁反应催化剂 -item.ams_catalyst_lithium.name=锂反应催化剂 -item.ams_catalyst_niobium.name=铌反应催化剂 -item.ams_catalyst_schrabidium.name=Sa326反应催化剂 -item.ams_catalyst_strontium.name=锶反应催化剂 -item.ams_catalyst_thorium.name=钍反应催化剂 -item.ams_catalyst_tungsten.name=钨反应催化剂 -item.ams_core_eyeofharmony.name=和谐之眼[AMS/DFC核心] -item.ams_core_sing.name=活跃奇点[AMS/DFC核心] -item.ams_core_thingy.name=Thingy[AMS/DFC核心] -item.ams_core_wormhole.name=微型虫洞[AMS/DFC核心] -item.ams_focus_blank.name=空白稳定器焦点 -item.ams_focus_booster.name=增压型稳定器焦点 -item.ams_focus_booster.desc=较弱的约束场和核心能量注入:$更多的热量产生,更多的能量。 -item.ams_focus_limiter.name=限制稳定器焦点 -item.ams_focus_limiter.desc=限制领域的最高性能:$标准冷却,无能源加成。 -item.ams_lens.name=稳定透镜 -item.ams_muzzle.name=激活射线发射极 -item.ams_muzzle.desc=...它可以发出一束能量束。 -item.analysis_tool.name=分析工具 -item.analyzer.name=分析仪 -item.anchor_remote.name=召回设备 -item.antiknock.name=四乙基铅抗爆剂 -item.apple_euphemium.name=Ep苹果 -item.apple_lead.name=铅苹果 -item.apple_schrabidium.name=Sa326苹果 -item.arc_electrode.name=石墨电极 -item.arc_electrode.desh.name=Desh电极 -item.arc_electrode.graphite.name=石墨电极 -item.arc_electrode.lanthanium.name=镧电极 -item.arc_electrode.saturnite.name=土星电极 -item.arc_electrode_burnt.name=熔化电极 -item.arc_electrode_burnt.desh.name=熔化Desh电极 -item.arc_electrode_burnt.graphite.name=熔化石墨电极 -item.arc_electrode_burnt.lanthanium.name=熔化镧电极 -item.arc_electrode_burnt.saturnite.name=熔化土星电极 -item.arc_electrode_desh.name=Desh电极 -item.armor_polish.name=亮甲牌装甲抛光剂 -item.asbestos_boots.name=防火靴 -item.asbestos_cloth.name=防火布 -item.asbestos_helmet.name=防火头盔 -item.asbestos_legs.name=防火护腿 -item.asbestos_plate.name=防火胸甲 -item.ashglasses.name=防灰烬护目镜 -item.assembly_45.name=.45 ACP子弹[待装配] -item.assembly_556.name=5.56mm子弹[待装配] -item.assembly_762.name=7.62mm子弹[待装配] -item.assembly_actionexpress.name=.50 AE子弹[待装配] -item.assembly_calamity.name=.50 BMG子弹[待装配] -item.assembly_desh.name=Desh子弹[待装配] -item.assembly_gold.name=金子弹[待装配] -item.assembly_iron.name=铁子弹[待装配] -item.assembly_lacunae.name=.5mm子弹[待装配] -item.assembly_lead.name=玻璃子弹[待装配] -item.assembly_luna.name=Lunatic狙击子弹[待装配] -item.assembly_nightmare.name=钨子弹[待装配] -item.assembly_nopip.name=.44马格南[待装配] -item.assembly_nuke.name=迷你核弹外壳 -item.assembly_pip.name=污染子弹[待装配] -item.assembly_schrabidium.name=Sa326子弹[待装配] -item.assembly_smg.name=9mm子弹[待装配] -item.assembly_steel.name=铅子弹[待装配] -item.assembly_template.name=装配机模板: -item.assembly_uzi.name=.22 LR子弹[待装配] -item.attachment_mask.name=附加型防毒面具 -item.attachment_mask_mono.name=可接入式半面罩防毒面具 -item.australium_iii.name=MkIII寿命延长剂 -item.australium_iv.name=MkIV寿命延长剂 -item.australium_v.name=MkV寿命延长剂 -item.back_tesla.name=背负式特斯拉线圈 -item.balefire_and_ham.name=火腿野火蛋 -item.balefire_and_steel.name=野火打火石 -item.balefire_scrambled.name=炒野火蛋 -item.ball_dynamite.name=硝糖炸药 -item.ball_fireclay.name=耐火粘土 -item.ball_resin.name=乳胶 -item.ball_tatb.name=三氨基三硝基苯(TATB) -item.ball_tnt.name=TNT炸药 -item.ballistic_gauntlet.name=冲击拳套 -item.ballistite.name=混合无烟火药 -item.bandaid.name=邦迪创可贴 -item.bathwater.name=有毒肥皂水 -item.bathwater_mk2.name=有毒肥皂水(马香味) -item.battery_advanced.name=高级电池 -item.battery_advanced_cell.name=高级电池组 -item.battery_advanced_cell_12.name=十二联高级电池组 -item.battery_advanced_cell_4.name=四联高级电池组 -item.battery_creative.name=无限电池 -item.battery_generic.name=电池 -item.battery_lithium.name=锂电池 -item.battery_lithium_cell.name=锂电池组 -item.battery_lithium_cell_3.name=三联锂电池组 -item.battery_lithium_cell_6.name=六联锂电池组 -item.battery_potato.name=马铃薯电池 -item.battery_potatos.name=马铃薯OS -item.battery_red_cell.name=红石电池组 -item.battery_red_cell_24.name=二十四联红石电池组 -item.battery_red_cell_6.name=六联红石电池组 -item.battery_sc_americium.name=自充电 镅-241电池 -item.battery_sc_gold.name=自充电 金-198电池 -item.battery_sc_lead.name=自充电 铅-209电池 -item.battery_sc_plutonium.name=自充电 钚-238电池 -item.battery_sc_polonium.name=自充电 钋-210电池 -item.battery_sc_technetium.name=自充电 锝-98电池 -item.battery_sc_uranium.name=自充电 铀-238电池 -item.battery_schrabidium.name=Sa326电池 -item.battery_schrabidium_cell.name=Sa326电池组 -item.battery_schrabidium_cell_2.name=双联Sa326电池组 -item.battery_schrabidium_cell_4.name=四联Sa326电池组 -item.battery_spark.name=Spark电池 -item.battery_spark_cell_100.name=Spark神秘储能电池组 -item.battery_spark_cell_1000.name=Spark神秘物质能量空间 -item.battery_spark_cell_10000.name=Spark时空晶体 -item.battery_spark_cell_25.name=Spark神秘汽车电池 -item.battery_spark_cell_2500.name=Spark神秘迪拉克之海 -item.battery_spark_cell_6.name=Spark电池组 -item.battery_spark_cell_power.name=Spark反物理储能装置 -item.battery_steam.name=蒸汽动力储能罐 -item.battery_steam_large.name=大型蒸汽动力储能罐 -item.battery_su.name=SU-电池 -item.battery_su_l.name=大型SU-电池 -item.battery_trixite.name=杂牌Spark电池 -item.bdcl.name=BDCL -item.bedrock_ore.grade.base.name=%s基岩矿石 -item.bedrock_ore.grade.base_roasted.name=焙烧%s基岩矿石 -item.bedrock_ore.grade.base_washed.name=洗净%s基岩矿石 -item.bedrock_ore.grade.primary.name=%s基岩矿石主产物 -item.bedrock_ore.grade.primary_roasted.name=焙烧%s基岩矿石主产物 -item.bedrock_ore.grade.primary_sulfuric.name=酸浸%s基岩矿石主产物 -item.bedrock_ore.grade.primary_nosulfuric.name=离心酸浸%s基岩矿石主产物 -item.bedrock_ore.grade.primary_solvent.name=溶解%s基岩矿石主产物 -item.bedrock_ore.grade.primary_nosolvent.name=离心溶解%s基岩矿石主产物 -item.bedrock_ore.grade.primary_rad.name=清洁%s基岩矿石主产物 -item.bedrock_ore.grade.primary_norad.name=离心清洁%s基岩矿石主产物 -item.bedrock_ore.grade.primary_first.name=高重量%s基岩矿石主产物 -item.bedrock_ore.grade.primary_second.name=低重量%s基岩矿石主产物 -item.bedrock_ore.grade.crumbs.name=%s基岩矿石矿渣 -item.bedrock_ore.grade.sulfuric_byproduct.name=酸浸%s基岩矿石副产物 -item.bedrock_ore.grade.sulfuric_roasted.name=焙烧酸浸%s基岩矿石副产物 -item.bedrock_ore.grade.sulfuric_arc.name=灼热酸浸%s基岩矿石副产物 -item.bedrock_ore.grade.sulfuric_washed.name=洗净酸浸%s基岩矿石副产物 -item.bedrock_ore.grade.solvent_byproduct.name=溶解%s基岩矿石副产物 -item.bedrock_ore.grade.solvent_roasted.name=焙烧溶解%s基岩矿石副产物 -item.bedrock_ore.grade.solvent_arc.name=灼热溶解%s基岩矿石副产物 -item.bedrock_ore.grade.solvent_washed.name=洗净溶解%s基岩矿石副产物 -item.bedrock_ore.grade.rad_byproduct.name=清洁%s基岩矿石副产物 -item.bedrock_ore.grade.rad_roasted.name=焙烧清洁%s基岩矿石副产物 -item.bedrock_ore.grade.rad_arc.name=灼热清洁%s基岩矿石副产物 -item.bedrock_ore.grade.rad_washed.name=洗净清洁%s基岩矿石副产物 -item.bedrock_ore.trait.arc=§6电弧炉煅烧 -item.bedrock_ore.trait.centrifuged=§9离心处理 -item.bedrock_ore.trait.rad=§a高性能溶剂处理 -item.bedrock_ore.trait.roasted=§e复式炼焦炉焙烧 -item.bedrock_ore.trait.solvent=§f有机溶剂处理 -item.bedrock_ore.trait.sulfuric=§6硫酸处理 -item.bedrock_ore.trait.washed=§b水洗 -item.bedrock_ore.type.actinide.name=锕系元素 -item.bedrock_ore.type.crystal.name=晶体 -item.bedrock_ore.type.heavy.name=重金属 -item.bedrock_ore.type.light.name=轻金属 -item.bedrock_ore.type.nonmetal.name=非金属 -item.bedrock_ore.type.rare.name=稀土 -item.bedrock_ore_base.name=基岩矿石原矿 -item.bedrock_ore_fragment.name=%s基岩矿石碎片 -item.beta.name=Beta测试版功能 -item.big_sword.name=大剑 -item.billet_actinium.name=锕-227坯料 -item.billet_am_mix.name=反应堆级镅坯料 -item.billet_am241.name=镅-241坯料 -item.billet_am242.name=镅-242坯料 -item.billet_americium_fuel.name=镅燃料坯料 -item.billet_au198.name=金-198坯料 -item.billet_australium.name=奥斯坯料 -item.billet_australium_greater.name=富集奥斯坯料 -item.billet_australium_lesser.name=贫化奥斯坯料 -item.billet_balefire_gold.name=激活态金-198坯料 -item.billet_beryllium.name=铍坯料 -item.billet_bismuth.name=铋坯料 -item.billet_co60.name=钴-60坯料 -item.billet_cobalt.name=钴坯料 -item.billet_flashlead.name=闪光铅坯料 -item.billet_flashlead.desc=晶格衰变,引起反物质湮灭反应,导致π介子释放,衰变为μ子,催化原子核融合,产生新的元素$请尽量跟上。 -item.billet_gh336.name=Gh336坯料 -item.billet_gh336.desc=钅喜的同事 -item.billet_hes.name=高浓缩度Sa326燃料坯料 -item.billet_les.name=低浓缩度Sa326燃料坯料 -item.billet_mox_fuel.name=MOX燃料坯料 -item.billet_mox_fuel.desc=口袋摩西! -item.billet_neptunium.name=镎坯料 -item.billet_neptunium_fuel.name=镎核燃料坯料 -item.billet_nuclear_waste.name=核废料坯料 -item.billet_pb209.name=铅-209坯料 -item.billet_po210be.name=钋210-铍坯料 -item.billet_polonium.name=钋坯料 -item.billet_pu_mix.name=反应堆级钚坯料 -item.billet_pu238.name=钚-238坯料 -item.billet_pu238be.name=钚238-铍坯料 -item.billet_pu239.name=钚-239坯料 -item.billet_pu240.name=钚-240坯料 -item.billet_pu241.name=钚-241坯料 -item.billet_plutonium.name=钚坯料 -item.billet_plutonium_fuel.name=钚燃料坯料 -item.billet_ra226.name=镭-226坯料 -item.billet_ra226be.name=镭226-铍坯料 -item.billet_schrabidium.name=Sa326坯料 -item.billet_schrabidium_fuel.name= Sa326燃料坯料 -item.billet_silicon.name=硅晶圆 -item.billet_solinium.name=Sa327坯料 -item.billet_sr90.name=锶-90坯料 -item.billet_technetium.name=锝-99坯料 -item.billet_th232.name=钍-232坯料 -item.billet_thorium_fuel.name=钍燃料坯料 -item.billet_u233.name=铀-233坯料 -item.billet_u235.name=铀-235坯料 -item.billet_u238.name=铀-238坯料 -item.billet_uranium.name=铀坯料 -item.billet_uranium_fuel.name=铀燃料坯料 -item.billet_yharonite.name=犽戎龙素坯料 -item.billet_zfb_am_mix.name=反应堆级镅 ZFB坯料 -item.billet_zfb_bismuth.name=铋 ZFB坯料 -item.billet_zfb_pu241.name=钚-241 ZFB坯料 -item.billet_zirconium.name=锆坯料 -item.bio_wafer.name=海藻晶片 -item.biomass.name=生物质 -item.biomass_compressed.name=压缩生物质 -item.bismuth_boots.name=铋凉鞋 -item.bismuth_helmet.name=铋头饰 -item.bismuth_legs.name=铋护膝 -item.bismuth_axe.name=铋斧 -item.bismuth_pickaxe.name=铋镐 -item.bismuth_plate.name=铋质护肩、项链和腰带 -item.bismuth_tool.name=磁力提取器 -item.bj_boots.name=§4月神§r钉靴 -item.bj_helmet.name=热传感器眼罩 -item.bj_legs.name=§4月神§r护腿 -item.bj_plate.name=§4月神§r胸甲 -item.bj_plate_jetpack.name=§4月神§r胸甲 (带翼) -item.black_diamond.name=黑色钻石 -item.black_hole.name=微型黑洞 -item.blade_meteorite.name=陨石刀 -item.blade_titanium.name=钛扇片 -item.blade_tungsten.name=钨强化扇片 -item.blades_advanced_alloy.name=高级合金刀片 -item.blades_desh.name=Desh制刀片 -item.blades_steel.name=钢制刀片 -item.blades_titanium.name=钛制刀片 -item.blowtorch.name=喷灯 -item.board_copper.name=铜片 -item.boat_rubber.name=橡胶船 -item.bobmazon_hidden.name=隐藏目录 -item.bobmazon_machines.name=Bobmazon: 方块和机器 -item.bobmazon_materials.name=Bobmazon: 材料 -item.bobmazon_tools.name=Bobmazon: 工具 -item.bobmazon_weapons.name=Bobmazon: 武器和爆炸物 -item.boltntm.name=%s螺栓 -item.bolt_compound.name=加强涡轮机轴 -item.bolt_dura_steel.name=高速钢螺栓 -item.bolt_tungsten.name=钨螺栓 -item.bolt_spike.name=铁路道钉 -item.bolt_spike.desc=不知何故,散发着威胁的气息 -item.boltgun.name=气动射钉枪 -item.bomb_caller.name=空袭指示器 -item.bomb_waffle.name=大规模杀伤性华夫饼 -item.book_guide.name=HBM指导书 -item.book_of_.name=车厢书 -item.book_lemegeton.name=所罗门之钥 -item.book_secret.name=3-596-50802-9 -item.bottle2_empty.name=空瓶 -item.bottle2_fritz.name=弗里茨可乐 -item.bottle2_fritz_special.name=第一弗里茨可乐 -item.bottle2_korl.name=Korl -item.bottle2_korl_special.name=第一Korl -item.bottle2_sunset.name=夕阳沙士 -item.bottle_cherry.name=樱桃味核子可乐 -item.bottle_empty.name=空可乐瓶 -item.bottle_mercury.name=一瓶水银 -item.bottle_nuka.name=核子可乐 -item.bottle_opener.name=Hbm自制开瓶器 -item.bottle_quantum.name=量子核子可乐 -item.bottle_rad.name=辐射S~核子可乐 -item.bottle_sparkle.name=S~核子可乐 -item.bottled_cloud.name=瓶中云 -item.boy_bullet.name=铀-235弹头 -item.boy_igniter.name=点火器 -item.boy_kit.name=小男孩 套件 -item.boy_propellant.name=炸药 -item.boy_shielding.name=中子屏蔽罩 -item.boy_target.name=次临界铀-235标靶 -item.briquette.coal.name=煤球 -item.briquette.lignite.name=褐煤煤球 -item.briquette.wood.name=木屑球 -item.bucket_acid.name=一桶酸 -item.bucket_mud.name=一桶毒泥 -item.bucket_schrabidic_acid.name=一桶Sa酸 -item.bucket_sulfuric_acid.name=一桶硫酸 -item.bucket_toxic.name=一桶绿色软泥 -item.burnt_bark.name=烧焦树皮 -item.burnt_bark.desc=爆炸的金橡树的树皮。 -item.can_bepis.name=白事 -item.can_breen.name=布雷恩博士的私人珍藏 -item.can_creature.name='生物'能量饮料 -item.can_empty.name=空罐 -item.can_key.name=罐头拉环 -item.can_luna.name=黑梅萨露娜-黑可乐 -item.can_mrsugar.name='糖博士'软饮料 -item.can_mug.name=MUG牌树根啤酒 -item.can_overcharge.name=超频DeliriumXT -item.can_redbomb.name='红色炸弹'能量饮料 -item.can_smart.name="智慧"能量饮料 -item.canister_NITAN.name=桶装NITAN 100号超级燃料 -item.canister_biofuel.name=桶装生物燃料 -item.canister_bitumen.name=桶装沥青 -item.canister_canola.name=桶装润滑油 -item.canister_empty.name=空油桶 -item.canister_ethanol.name=桶装乙醇 -item.canister_fracksol.name=桶装压裂液 -item.canister_fuel.name=桶装柴油 -item.canister_fuel.desc=大家欢呼吧! -item.canister_full.name=油桶: -item.canister_gasoline.name=桶装含铅汽油 -item.canister_gasoline.desc=铅就是朋友$让朋友进入你的血液$*上膛声*现在就做 -item.canister_heatingoil.name=桶装燃油 -item.canister_heavyoil.name=桶装重油 -item.canister_kerosene.name=桶装煤油 -item.canister_lightoil.name=桶装轻油 -item.canister_napalm.name=桶装凝固汽油B -item.canister_naphtha.name=桶装石脑油 -item.canister_oil.name=桶装原油 -item.canister_petroil.name=桶装汽油 -item.canister_reoil.name=桶装再生油 -item.canister_smear.name=桶装工业油 -item.canned_asbestos.name=石棉罐头 -item.canned_asbestos.desc=尝尝石棉肺! -item.canned_ass.name=驴罐头 -item.canned_ass.desc=100%优质驴肉!* -item.canned_bark.name=松树皮罐头 -item.canned_bark.desc=更加的“松”脆! -item.canned_beef.name=牛肉罐头 -item.canned_beef.desc=几个世纪前,一头牛为此而死。 -item.canned_bhole.name=黑洞罐头 -item.canned_bhole.desc=奇点是我肚肚里的美味! -item.canned_cheese.name=融化奶酪罐头 -item.canned_cheese.desc=是奶酪吗?是橡胶水泥吗?谁知道,谁在乎。 -item.canned_chinese.name=中餐罐头 -item.canned_chinese.desc=在中国,中餐被称为饭。 -item.canned_diesel.name=柴油罐头 -item.canned_diesel.desc=我渐渐地就抖不出包袱了 -item.canned_fist.name=拳头罐头 -item.canned_fist.desc=给你一拳! -item.canned_fried.name=炸鸡罐头 -item.canned_fried.desc=甚至罐头都是油炸的! -item.canned_hotdogs.name=热狗罐头 -item.canned_hotdogs.desc=不要与冷猫混淆。 -item.canned_jizz.name=FlimFlam工业牌?马奶罐头 -item.canned_jizz.desc=等等什么—— -item.canned_kerosene.name=煤油罐头 -item.canned_kerosene.desc=想象一下这句俏皮的台词。 -item.canned_leftovers.name=剩菜罐头 -item.canned_leftovers.desc=你来的太迟了 -item.canned_milk.name=罐装炼乳 -item.canned_milk.desc=牛奶2:比以往任何时候都更固体! -item.canned_mystery.name=神秘肉类罐头 -item.canned_mystery.desc=里面是什么?只有一种方法可以找到! -item.canned_napalm.name=凝固汽油罐头 -item.canned_napalm.desc=我喜欢早上闻着老梗的味道! -item.canned_oil.name=机油罐头 -item.canned_oil.desc=它既然能让发动机运转的更流畅,那为什么不能用在人类身上? -item.canned_pashtet.name=牛排罐头 -item.canned_pashtet.desc=翻译服务不可用блядь! -item.canned_pizza.name=意大利香肠比萨罐头 -item.canned_pizza.desc=反人类罪 -item.canned_recursion.name=循环罐头 -item.canned_recursion.desc=封闭递归 -item.canned_spam.name=SPAM斯帕姆午餐肉 -item.canned_spam.desc=这段三分半钟的幽默剧是以布朗利虚构的绿侏儒咖啡馆为背景。$一位女服务生与不喜欢吃午餐肉的本太太之间发生了争执,$女服务生背诵了一份几乎每道菜都含有午餐肉的菜单。$本太太要了一道没有午餐肉的菜,这让她爱吃午餐肉的丈夫大吃一惊。$女服务员也对这个要求很反感。本先生提出要替换她的午餐肉,并要了一道含有大量午餐肉和烤豆的菜。$服务员拒绝了,因为烤豆子已经吃完了;当本先生要求替换午餐肉时,女服务员再次表示厌恶。$有几次,餐厅里的一群维京人高声歌唱午餐肉,打断了谈话。$那个愤怒的女服务员命令他们闭嘴,但他们依旧大声唱歌。$这时一名匈牙利游客来到柜台,试图用一本完全不准确的匈牙利语/英语手册(参考之前的小品)点菜。$紧接着这名匈牙利游客就被一名警察迅速护送离开。$然后这段幽默剧突然切换镜头,一位历史学家在电视演播室谈论维京人在咖啡馆的起源。$他继续说,并开始越来越多地在每一句话中插入“午餐肉”一词。$然后背景被抬高,露出背后的餐厅场景。$那个历史学家加入了维京人的歌曲,本夫妇通过电线离开现场,而歌声还在继续。$在最初的电视表演中,结尾的字幕开始滚动,背景中仍然可以听到歌声。 -item.canned_stew.name=蘑菇煲罐头 -item.canned_stew.desc=... -item.canned_tomato.name=番茄汤罐头 -item.canned_tomato.desc=谁要浓浓的红糊糊? -item.canned_tube.name=宇航员食品管 -item.canned_tube.desc=美味的蘑菇。 -item.canned_tuna.name=金枪鱼罐头 -item.canned_tuna.desc=我不知道那是金枪鱼还是干水泥。 -item.canned_yogurt.name=酸奶罐头 -item.canned_yogurt.desc=可能坏掉了,但管它呢 -item.canteen_13.name=Vault13水壶 -item.canteen_fab.name=极品伏特加 -item.canteen_vodka.name=伏特加 -item.cap_fritz.name=弗里茨瓶盖 -item.cap_korl.name=Korl瓶盖 -item.cap_nuka.name=核子可乐瓶盖 -item.cap_quantum.name=樱桃味核子可乐瓶盖 -item.cap_rad.name=辐射S~核子可乐瓶盖 -item.cap_sparkle.name=S~核子可乐瓶盖 -item.cap_star.name=夕阳沙士星星瓶盖 -item.cap_sunset.name=夕阳沙士瓶盖 -item.cape_ayy.name=Ayy披风 -item.cape_codered_.name=codered_披风 -item.cape_dafnik.name=Dafnik披风 -item.cape_gasmask.name=披风[防毒面具] -item.cape_hbm.name=Hbm披风 -item.cape_hidden.name=隐藏斗篷 -item.cape_lpkukin.name=LPkukin披风 -item.cape_nostalgia.name=DrNostalgia披风 -item.cape_radiation.name=披风[辐射] -item.cape_schrabidium.name=披风[Sa326] -item.cape_vertice.name=Lord Vertice披风 -item.card_aos.name=黑桃A -item.card_qos.name=黑桃皇后 -item.cart.crate.name=板条箱运输车 -item.cart.destroyer.name=废品销毁车 -item.cart.empty.name=钢箱矿车 -item.casing_357.name=.357马格南弹壳[x16] -item.casing_44.name=.44马格南弹壳[x16] -item.casing_50.name=大口径弹壳[x8] -item.casing_9.name=小口径弹壳[x24] -item.casing_buckshot.name=鹿弹弹壳[x8] -item.catalyst_clay.name=黏土催化剂 -item.catalytic_converter.name=催化转化器 -item.cbt_device.name=CBT装置 -item.cell_anti_schrabidium.name=反Sa326单元 -item.cell_antimatter.name=反物质单元 -item.cell_balefire.name=气态野火单元 -item.cell_deuterium.name=氘单元 -item.cell_empty.name=空单元 -item.cell_puf6.name=六氟化钚单元 -item.cell_sas3.name=三硫化Sa单元 -item.cell_tritium.name=氚单元 -item.cell_uf6.name=六氟化铀单元 -item.centri_stick.name=便携离心机 -item.centrifuge_element.name=离心元件 -item.centrifuge_tower.name=离心塔 -item.chainsaw.name=链锯 -item.cheese.name=奶酪 -item.cheese_quesadilla.name=奶酪油炸玉米粉饼 -item.chemical_dye.black.name=化学染料(黑色) -item.chemical_dye.blue.name=化学染料(蓝色) -item.chemical_dye.brown.name=化学染料(棕色) -item.chemical_dye.cyan.name=化学染料(青色) -item.chemical_dye.gray.name=化学染料(灰色) -item.chemical_dye.green.name=化学染料(绿色) -item.chemical_dye.lightblue.name=化学染料(浅蓝色) -item.chemical_dye.lime.name=化学染料(石灰) -item.chemical_dye.magenta.name=化学染料(品红色) -item.chemical_dye.orange.name=化学染料(橙色) -item.chemical_dye.pink.name=化学染料(粉色) -item.chemical_dye.purple.name=化学染料(紫色) -item.chemical_dye.red.name=化学染料(红色) -item.chemical_dye.silver.name=化学染料(浅灰色) -item.chemical_dye.white.name=化学染料(白色) -item.chemical_dye.yellow.name=化学染料(黄色) -item.chemistry_set.name=实验室玻璃器皿 -item.chemistry_set_boron.name=实验室玻璃器皿(硼玻璃) -item.chemistry_template.name=化工厂模板: -item.chernobylsign.name=辐射警告标志战斧 -item.chlorine_pinwheel.name=氯气转轮 -item.chlorophyte_axe.name=叶绿斧 -item.chlorophyte_pickaxe.name=叶绿镐 -item.chocolate.name=“我是-镭牌”巧克力 -item.chocolate.desc=镭巧克力?我很确定这是冰毒。 -item.chocolate_milk.name=巧克力牛奶 -item.chopper.name=猎人直升机 -item.chopper_blades.name=猎人直升机旋翼 -item.chopper_gun.name=猎人直升机机枪 -item.chopper_head.name=猎人直升机驾驶舱 -item.chopper_tail.name=猎人直升机尾部 -item.chopper_torso.name=猎人直升机主体 -item.chopper_wing.name=猎人直升机翼片 -item.chunk_ore.rare.name=稀土矿石块 -item.cigarette.name=FFI牌香烟 -item.cinnebar.name=朱砂 -item.circuit.advanced.name=军用级电路板 -item.circuit.analog.name=模拟电路板 -item.circuit.atomic_clock.name=原子钟 -item.circuit.basic.name=集成电路板 -item.circuit.bismoid.name=多功能电路板 -item.circuit.capacitor.name=电容器 -item.circuit.capacitor_board.name=电容板 -item.circuit.capacitor_tantalium.name=钽电容器 -item.circuit.chip.name=微芯片 -item.circuit.chip_bismoid.name=多功能集成电路 -item.circuit.chip_quantum.name=固态量子处理器 -item.circuit.controller.name=控制单元 -item.circuit.controller_advanced.name=高级控制单元 -item.circuit.controller_chassis.name=控制单元外壳 -item.circuit.controller_quantum.name=量子计算机 -item.circuit.pcb.name=印刷电路板 -item.circuit.quantum.name=量子处理单元 -item.circuit.silicon.name=压印硅晶圆 -item.circuit.vacuum_tube.name=真空管 -item.circuit_aluminium.name=基础电路 -item.circuit_arsenic.name=自适应电路 -item.circuit_arsenic_raw.name=自适应电路组件 -item.circuit_bismuth.name=多功能芯片组 -item.circuit_bismuth_raw.name=多功能芯片组组件 -item.circuit_copper.name=增强电路 -item.circuit_gold.name=超频电路 -item.circuit_raw.name=基本电路组件 -item.circuit_red_copper.name=高级电路 -item.circuit_schrabidium.name=高性能电路 -item.circuit_star.name=星控制 电路板 -item.circuit_star.desc=目前未使用,因为它缺少操作系统。 -item.circuit_star_component.card.name=星控制 扩展卡 -item.circuit_star_component.chipset.name=星控制 芯片组 -item.circuit_star_component.cpu.name=星控制 CPU -item.circuit_star_component.ram.name=星控制 RAM -item.circuit_star_piece.board_blank.name=SC-印刷电路板 -item.circuit_star_piece.board_converter.name=SC-电压转换器 -item.circuit_star_piece.board_transistor.name=SC-晶体管 -item.circuit_star_piece.bridge_bios.name=SC-BIOS芯片 -item.circuit_star_piece.bridge_bus.name=SC-总线 -item.circuit_star_piece.bridge_chipset.name=SC-芯片组 -item.circuit_star_piece.bridge_cmos.name=SC-CMOS存储器 -item.circuit_star_piece.bridge_io.name=SC-IO芯片 -item.circuit_star_piece.bridge_north.name=SC-北桥 -item.circuit_star_piece.bridge_south.name=SC-南桥 -item.circuit_star_piece.card_board.name=SC-扩展卡底板 -item.circuit_star_piece.card_processor.name=SC-扩展卡处理器 -item.circuit_star_piece.cpu_cache.name=SC-CPU缓存 -item.circuit_star_piece.cpu_clock.name=SC-CPU时钟 -item.circuit_star_piece.cpu_ext.name=SC-砷半导体外延片 -item.circuit_star_piece.cpu_logic.name=SC-算术逻辑单元 -item.circuit_star_piece.cpu_register.name=SC-CPU寄存器 -item.circuit_star_piece.cpu_socket.name=SC-CPU插槽 -item.circuit_star_piece.mem_socket.name=SC-存储插座 -item.circuit_star_piece.mem_16k_a.name=SC-16k内存条插槽 A -item.circuit_star_piece.mem_16k_b.name=SC-16k内存条插槽 B -item.circuit_star_piece.mem_16k_c.name=SC-16k内存条插槽 C -item.circuit_star_piece.mem_16k_d.name=SC-16k内存条插槽 D -item.circuit_tantalium.name=电容板 -item.circuit_tantalium_raw.name=电容板组件 -item.circuit_targeting_tier1.name=军用级电路板[1级] -item.circuit_targeting_tier2.name=军用级电路板[2级] -item.circuit_targeting_tier3.name=军用级电路板[3级] -item.circuit_targeting_tier4.name=军用级电路板[4级] -item.circuit_targeting_tier5.name=军用级电路板[5级] -item.circuit_targeting_tier6.name=军用级电路板[6级] -item.cladding_desh.name=Desh覆层 -item.cladding_ghiorsium.name=Gh336覆层 -item.cladding_iron.name=铁覆层 -item.cladding_lead.name=铅覆层 -item.cladding_obsidian.name=黑曜石覆层 -item.cladding_paint.name=铅涂料 -item.cladding_rubber.name=橡胶覆层 -item.clip_bf.name=两包野火子弹 -item.clip_bolt_action.name=盒装12x74独头弹 -item.clip_cryolator.name=急冻单元箱 -item.clip_defabricator.name=毁灭者能量电池弹药带 -item.clip_emp.name=小包能量电池 -item.clip_euthanasia.name=最后的医疗箱 -item.clip_fatman.name=六个核弹 -item.clip_hp.name=墨水缸 -item.clip_immolator.name=焚烧者燃料箱 -item.clip_jack.name=盒装四联12x70鹿弹 -item.clip_lever_action.name=盒装12x74鹿弹 -item.clip_mirv.name=三合一微型MIRV包 -item.clip_mp.name=小型无发射药机枪子弹盒 -item.clip_mp40.name=9mm冲锋枪子弹盒 -item.clip_osipr.name=AR2 弹盒 -item.clip_revolver.name=盒装.357马格南 -item.clip_revolver_cursed.name=钢子弹弹匣 -item.clip_revolver_gold.name=小盒金子弹 -item.clip_revolver_iron.name=盒装铁子弹 -item.clip_revolver_lead.name=盒装核子弹 -item.clip_revolver_nightmare.name=子弹袋 -item.clip_revolver_nightmare2.name=激光弹药带 -item.clip_revolver_nopip.name=盒装.44子弹 -item.clip_revolver_pip.name=左轮快速装弹器 -item.clip_revolver_schrabidium.name=Sa326弹药盒 -item.clip_rpg.name=火箭弹箱 -item.clip_spark.name=大型电磁子弹 -item.clip_stinger.name=包装毒刺导弹 -item.clip_uboinik.name=盒装12x70鹿弹 -item.clip_uzi.name=32发装.22LR子弹盒 -item.clip_xvl1456.name=大型同位素盒 -item.cmb_axe.name=CMB钢斧 -item.cmb_boots.name=CMB钢靴子 -item.cmb_helmet.name=CMB钢头盔 -item.cmb_hoe.name=CMB钢锄 -item.cmb_legs.name=CMB钢护腿 -item.cmb_pickaxe.name=CMB钢镐 -item.cmb_plate.name=CMB钢胸甲 -item.cmb_shovel.name=CMB钢锹 -item.cmb_sword.name=CMB钢剑 -item.coal_infernal.name=地狱煤炭 -item.cobalt_axe.name=钴斧 -item.cobalt_boots.name=钴靴子 -item.cobalt_decorated_axe.name=镶嵌钴斧 -item.cobalt_decorated_hoe.name=镶嵌钴锄 -item.cobalt_decorated_pickaxe.name=镶嵌钴镐 -item.cobalt_decorated_shovel.name=镶嵌钴锹 -item.cobalt_decorated_sword.name=镶嵌钴剑 -item.cobalt_helmet.name=钴头盔 -item.cobalt_hoe.name=钴锄 -item.cobalt_legs.name=钴护腿 -item.cobalt_pickaxe.name=钴镐 -item.cobalt_plate.name=钴胸甲 -item.cobalt_shovel.name=钴锹 -item.cobalt_sword.name=钴剑 -item.coffee.name=咖啡 -item.coffee_radium.name=加镭咖啡 -item.coil_advanced_alloy.name=超导线圈 -item.coil_advanced_torus.name=超导环形线圈 -item.coil_copper.name=紫铜线圈 -item.coil_copper_torus.name=紫铜环形线圈 -item.coil_gold.name=金线圈 -item.coil_gold_torus.name=金环形线圈 -item.coil_magnetized_tungsten.name=4000K高温超导线圈 -item.coil_tungsten.name=加热线圈 -item.coin_creeper.name=核爆爬行者硬币 -item.coin_maskman.name=面具硬币 -item.coin_radiation.name=辐射硬币 -item.coin_siege.name=围城硬币 -item.coin_ufo.name=UFO硬币 -item.coin_worm.name=机械蠕虫硬币 -item.coke.coal.name=煤焦炭 -item.coke.lignite.name=褐煤焦炭 -item.coke.petroleum.name=石油焦炭 -item.coltan_tool.name=钶钽铁矿指针 -item.combine_scrap.name=CMB钢废料 -item.component_emitter.name=发射器组件 -item.component_limiter.name=稳定器组件 -item.containment_box.name=安全盒 -item.cordite.name=无烟线状火药 -item.cotton_candy.name=放射性棉花糖 -item.crackpipe.name=健康烟壶 -item.crate_caller.name=空投召唤器 -item.crayon.black.name=黑色蜡笔 -item.crayon.blue.name=蓝色蜡笔 -item.crayon.brown.name=棕色蜡笔 -item.crayon.cyan.name=青色蜡笔 -item.crayon.gray.name=灰色蜡笔 -item.crayon.green.name=绿色蜡笔 -item.crayon.lightblue.name=浅蓝色蜡笔 -item.crayon.lime.name=青色蜡笔 -item.crayon.magenta.name=品红蜡笔 -item.crayon.orange.name=橙色蜡笔 -item.crayon.pink.name=粉红蜡笔 -item.crayon.purple.name=紫色蜡笔 -item.crayon.red.name=红色蜡笔 -item.crayon.silver.name=浅灰色蜡笔 -item.crayon.white.name=白色蜡笔 -item.crayon.yellow.name=黄色蜡笔 -item.crowbar.name=Mk.V开箱装置"物理学圣剑" -item.crucible.name=裁决剑 -item.crucible_template.name=坩埚模板 -item.crystal_aluminium.name=铝晶体 -item.crystal_beryllium.name=铍晶体 -item.crystal_charred.name=烧焦的水晶 -item.crystal_charred.desc=优质硅酸盐,轻微灼烧。 -item.crystal_charred.desc.P11=也是一个真正的号角。奇怪吧? -item.crystal_coal.name=煤晶体 -item.crystal_cobalt.name=钴晶体 -item.crystal_copper.name=铜晶体 -item.crystal_cinnebar.name=朱砂晶体 -item.crystal_diamond.name=钻石晶体 -item.crystal_energy.name=能量晶体 -item.crystal_fluorite.name=氟晶体 -item.crystal_gold.name=金晶体 -item.crystal_horn.name=水晶角 -item.crystal_horn.desc=不是真正的号角。 -item.crystal_horn.desc.P11=真正的号角。 -item.crystal_iron.name=铁晶体 -item.crystal_lead.name=铅晶体 -item.crystal_lapis.name=青金石晶体 -item.crystal_lithium.name=锂晶体 -item.crystal_niter.name=硝石晶体 -item.crystal_osmiridium.name=铱锇晶体 -item.crystal_phosphorus.name=磷晶体 -item.crystal_plutonium.name=钚晶体 -item.crystal_rare.name=稀土晶体 -item.crystal_redstone.name=红石晶体 -item.crystal_schrabidium.name=Sa326晶体 -item.crystal_schraranium.name=低丰度Sa326晶体 -item.crystal_starmetal.name=星辉晶体 -item.crystal_sulfur.name=硫晶体 -item.crystal_thorium.name=钍晶体 -item.crystal_titanium.name=钛晶体 -item.crystal_trixite.name=赛瑞克晶体 -item.crystal_tungsten.name=钨晶体 -item.crystal_uranium.name=铀晶体 -item.crystal_xen.name=人造X晶体 -item.crt_display.name=阴极射线管 -item.cube_power.name=电子块 -item.custom_amat.name=自定义核弹-反物质棒 -item.custom_dirty.name=自定义核弹-核废料棒 -item.custom_fall.name=自定义核弹-掉落升级 -item.custom_fall.desc=这就是你一一一直在等待的$使炸弹在激活时下落 -item.custom_hydro.name=自定义核弹-氢棒 -item.custom_kit.name=自定义核弹 套件 -item.custom_nuke.name=自定义核弹-铀棒 -item.custom_schrab.name=自定义核弹-Sa326棒 -item.custom_tnt.name=自定义核弹-炸药 -item.cyclotron_tower.name=回旋加速器塔 -item.debris_concrete.name=碎混凝土 -item.debris_element.name=断裂的锆诺克斯燃料元件 -item.debris_exchanger.name=换热器片 -item.debris_fuel.name=RBMK石墨式反应堆燃料块 -item.debris_graphite.name=热石墨块 -item.debris_metal.name=断裂金属棒 -item.debris_shrapnel.name=走道碎片 -item.definitelyfood.name=完全不脏牌军粮 -item.defuser.name=高科技拆弹装置 -item.defuser_gold.name=黄金剪线钳 -item.demon_core_closed.name=封闭的恶魔核心 -item.demon_core_open.name=打开的恶魔核心 -item.desh_axe.name=工人合金斧 -item.desh_hoe.name=工人合金锄 -item.desh_pickaxe.name=工人合金镐 -item.desh_shovel.name=工人合金锹 -item.desh_sword.name=工人合金剑 -item.designator.name=短程目标指示器 -item.designator_arty_range.name=远程火炮遥控器 -item.designator_manual.name=手动目标指示器 -item.designator_range.name=远程目标指示器 -item.detonator.name=起爆器 -item.detonator_de.name=死亡炸弹 -item.detonator_deadman.name=死亡雷管 -item.detonator_laser.name=激光起爆器 -item.detonator_multi.name=多发起爆器 -item.deuterium_filter.name=氘过滤器 -item.diamond_gavel.name=钻石槌 -item.dieselsuit_boots.name=柴油动力高跟鞋 -item.dieselsuit_helmet.name=柴油动力头戴式环境传感器 -item.dieselsuit_legs.name=柴油动力腿部伺服系统 -item.dieselsuit_plate.name=柴油动力控制器 -item.digamma_diagnostic.name=玩家F-迪伽马辐射自检器 -item.disperser_canister.name=流体雾化手雷: -item.disperser_canister_empty.name=流体雾化手雷 -item.dns_boots.name=DNT双聚中子态素高科技全环境作战服靴子 -item.dns_legs.name=DNT双聚中子态素高科技全环境作战服护腿 -item.dns_helmet.name=DNT双聚中子态素高科技全环境作战服头盔 -item.dns_plate.name=DNT双聚中子态素高科技全环境作战服胸甲 -item.dnt_boots.name=双聚态中子素 靴子 -item.dnt_legs.name=双聚态中子素 护腿 -item.dnt_helmet.name=双聚态中子素 头盔 -item.dnt_plate.name=双聚态中子素 胸甲 -item.door_bunker.name=仓门 -item.door_metal.name=金属门 -item.door_office.name=办公室门 -item.door_red.name=红门 -item.dosimeter.name=剂量计 -item.drax.name=采掘钻 -item.drax_mk2.name=强化型采掘钻 -item.drax_mk3.name=Sa326采掘钻 -item.drillbit_desh.name=Desh钻头 -item.drillbit_desh_diamond.name=Desh钻头(镶钻) -item.drillbit_ferro.name=铀铁合金钻头 -item.drillbit_ferro_diamond.name=铀铁合金钻头(镶钻) -item.drillbit_hss.name=高速钢钻头 -item.drillbit_hss_diamond.name=高速钢钻头(镶钻) -item.drillbit_steel.name=钢钻头 -item.drillbit_steel_diamond.name=钢钻头(镶钻) -item.drillbit_tcalloy.name=锝钢钻头 -item.drillbit_tcalloy_diamond.name=锝钢钻头(镶钻) -item.drill_titanium.name=钛钻头 -item.drone.patrol.name=运输无人机 -item.drone.patrol.desc=跟随航路点运动$到达运输无人机坞时会尝试装货/卸货$右键单击运输无人机坞顶面放置 -item.drone.patrol_chunkloading.name=区块加载无人机 -item.drone.patrol_chunkloading.desc=跟随航路点运动$到达运输无人机坞时会尝试装货/卸货$右键单击运输无人机坞顶面放置$加载区块 -item.drone.patrol_express.name=快速无人机 -item.drone.patrol_express.desc=跟随航路点运动$到达运输无人机坞时会尝试装货/卸货$右键单击运输无人机坞顶面放置 -item.drone.patrol_express_chunkloading.name=区块加载快速无人机 -item.drone.patrol_express_chunkloading.desc=跟随航路点运动$到达运输无人机坞时会尝试装货/卸货$右键单击运输无人机坞顶面放置$加载区块 -item.drone.request.name=物流无人机 -item.drone.request.desc=用于使物流无人机坞生成物流无人机$生成的物流无人机会跟随物流无人机航路点$完成一次物流任务后会回到无人机坞 -item.drone_linker.name=运输无人机链接器 -item.ducttape.name=胶带 -item.dust.name=灰尘 -item.dust.desc=我讨厌灰尘! -item.dust.desc.P11=又一小撮灰尘! -item.dust_tiny.name=一小撮灰尘 -item.dwarven_pickaxe.name=矮人镐 -item.dynosphere_base.name=空白动力球 -item.dynosphere_desh.name=Desh动力球 -item.dynosphere_desh_charged.name=Desh动力球[带电] -item.dynosphere_dineutronium.name=双聚中子态素动力球 -item.dynosphere_dineutronium_charged.name=双聚中子态素动力球[带电] -item.dynosphere_euphemium.name=Ep动力球 -item.dynosphere_euphemium_charged.name=Ep动力球[带电] -item.dynosphere_schrabidium.name=Sa326动力球 -item.dynosphere_schrabidium_charged.name=Sa326动力球[带电] -item.dysfunctional_reactor.name=失控反应堆 -item.early_explosive_lenses.name=初代炸药透镜阵列 -item.early_explosive_lenses.desc=8个炸药透镜的组装,带有铝合金推进器、硬铝外壳和桥丝雷管。 -item.egg_balefire.name=野火蛋 -item.egg_balefire.desc=什么样的鸟儿才会下带有放射性的蛋? -item.egg_balefire_shard.name=野火蛋碎片 -item.egg_glyphid.name=异虫蛋 -item.elec_axe.name=电锯 -item.elec_pickaxe.name=冲击钻 -item.elec_shovel.name=螺旋钻 -item.elec_sword.name=电棍 -item.energy_core.name=临时能源核心 -item.entanglement_kit.name=纠缠部件 -item.entanglement_kit.desc=传送机制作零件$通过$铍增强型资源扫描仪实现尺寸转换。 -item.envsuit_boots.name=M1TTY环境套装靴子 -item.envsuit_helmet.name=M1TTY环境套装头盔 -item.envsuit_legs.name=M1TTY环境套装护腿 -item.envsuit_plate.name=M1TTY环境套装胸甲 -item.euphemium_boots.name=Ep靴子 -item.euphemium_capacitor.name=Ep电容 -item.euphemium_capacitor.desc=允许被动分散累积的正能量。 -item.euphemium_helmet.name=Ep头盔 -item.euphemium_kit.name=Ep工具箱 -item.euphemium_legs.name=Ep护腿 -item.euphemium_plate.name=Ep胸甲 -item.euphemium_stopper.name=Ep-阻滞者 -item.explosive_lenses.name=炸药透镜阵列 -item.explosive_lenses.desc=8个PBX炸药组装的阵列,带有一个薄的$铝推进器、硬铝外壳和$小型桥丝雷管。 -item.fabsols_vodka.name=Fabsol伏特加 -item.factory_core_advanced.name=高级工厂能源组件 -item.factory_core_titanium.name=工厂能源组件 -item.fallout.name=一堆辐射尘 -item.fau_boots.name=Fau靴子 -item.fau_helmet.name=Fau头盔 -item.fau_legs.name=Fau护腿 -item.fau_plate.name=Fau胸甲 -item.filter_coal.name=活性炭过滤器 -item.fins_big_steel.name=大型钢栅格翼 -item.fins_flat.name=扁钢外壳 -item.fins_quad_titanium.name=小型钛翼 -item.fins_small_steel.name=小型钢栅格翼 -item.fins_tri_steel.name=大型钢翼 -item.five_htp.name=5-羟色胺药丸 -item.five_htp.desc=移除所有迪伽马辐射,并获得10分钟稳定效果 -item.flame_conspiracy.name=阴谋论 -item.flame_conspiracy.desc=钢梁不能熔化喷气燃料! -item.flame_opinion.name=个人观点 -item.flame_opinion.desc=呃,我喜欢... -item.flame_politics.name=政治话题 -item.flame_politics.desc=唐老鸭将会修建一堵墙! -item.flame_pony.name=卡通小马画 -item.flame_pony.desc=黄马胜于蓝马,这是不争的事实! -item.flask_infusion.shield.name=护盾药水 -item.fleija_core.name=F.L.E.I.J.A.铀-235装药 -item.fleija_igniter.name=脉冲点火器 -item.fleija_kit.name=F.L.E.I.J.A. 套件 -item.fleija_propellant.name=Sa326炸药 -item.fluid_barrel_empty.name=空流体桶 -item.fluid_barrel_full.name=流体桶: -item.fluid_barrel_infinite.name=无限流体桶 -item.fluid_duct.name=流体管道: -item.fluid_identifier.name=流体识别码 -item.fluid_identifier.info=流体标识码用于: -item.fluid_identifier.usage0=在流体管道上单击右键,为该管道指定运输的流体。 -item.fluid_identifier.usage1=按住Shift键并流体管道上单击右键以指定相邻管道 -item.fluid_identifier.usage2=最大范围为64格管道。 -item.fluid_identifier_multi.name=多类型流体识别码 -item.fluid_identifier_multi.info=通用流体识别码: -item.fluid_identifier_multi.info2=次要类型: -item.fluid_tank_empty.name=空通用流体罐 -item.fluid_tank_full.name=通用流体罐: -item.fluid_tank_lead_empty.name=空危险品罐 -item.fluid_tank_lead_full.name=危险品罐: -item.fluorite.name=氟石粉 -item.flywheel_beryllium.name=铍制飞轮 -item.fmn.name=氟硝西泮片 -item.fmn.desc=移除2000mDRX以上的所有迪伽马辐射 -item.folly_bullet.name=128mm星辉弹头 -item.folly_bullet_du.name=128mm贫铀弹头 -item.folly_bullet_nuclear.name=128mm核弹头 -item.folly_shell.name=银弹壳 -item.fooditem.name=食物 -item.fragment_actinium.name=锕碎片 -item.fragment_boron.name=硼碎片 -item.fragment_cerium.name=铈碎片 -item.fragment_cobalt.name=钴碎片 -item.fragment_coltan.name=钶钽铁矿碎片 -item.fragment_lanthanium.name=镧碎片 -item.fragment_meteorite.name=陨石碎片 -item.fragment_neodymium.name=钕碎片 -item.fragment_niobium.name=铌碎片 -item.fuel_additive.antiknock.name=四乙基铅抗爆剂 -item.fuel_additive.deicer.name=除冰剂 -item.fuel_tank_large.name=大型燃料罐 -item.fuel_tank_medium.name=中型燃料罐 -item.fuel_tank_small.name=小型燃料罐 -item.fuse.name=保险丝 -item.fusion_core.name=聚变能源核心 -item.fusion_core_infinite.name=无限能源核心 -item.fusion_shield_chlorophyte.name=叶绿金属聚变反应堆覆层 -item.fusion_shield_desh.name=Desh聚变反应堆覆层 -item.fusion_shield_tungsten.name=钨聚变反应堆覆层 -item.fusion_shield_vaporwave.name=蒸汽波反应堆覆层 -item.gadget_core.name=钚核心 -item.gadget_explosive.name=炸药 -item.gadget_kit.name=小玩意 套件 -item.gadget_wireing.name=线路 -item.gas_biogas.name=沼气罐 -item.gas_empty.name=空气罐 -item.gas_full.name=气体罐: -item.gas_lpg.name=液化石油气罐 -item.gas_mask.name=防毒面具 -item.gas_mask_filter.name=防毒面具过滤器 -item.gas_mask_filter_combo.name=防毒面具组合式过滤器 -item.gas_mask_filter_mono.name=催化性面罩过滤器 -item.gas_mask_filter_piss.name=先进的简易防毒面具过滤器 -item.gas_mask_filter_rag.name=临时防毒面具过滤器 -item.gas_mask_m65.name=M65-Z防毒面具 -item.gas_mask_mono.name=半面罩防毒面具 -item.gas_mask_olde.name=皮革防毒面具 -item.gas_petroleum.name=石油气罐 -item.gas_tester.name=气体传感器 -item.gear_large.name=大型齿轮 -item.gear_large_steel.name=大型钢齿轮 -item.geiger_counter.name=手持盖革计数器 -item.gem_alexandrite.name=亚历山大变石 -item.gem_rad.name=放射性宝石 -item.gem_sodalite.name=方钠石 -item.gem_tantalium.name=钽晶体 -item.gem_tantalium.desc=“钽” -item.gem_tantalium.desc.P11=又名钽。 -item.gem_volcanic.name=火山宝石 -item.generator_front.name=发电机前部 -item.generator_steel.name=发电机主体 -item.glitch.name=故障 -item.glowing_stew.name=发光真菌煲 -item.glyphid_meat.name=异虫肉 -item.glyphid_meat_grilled.name=熟异虫肉 -item.glyphid_gland.name=囊腺 -item.glyphid_gland_empty.name=异虫腺体 -item.goggles.name=护目镜 -item.grenade_aschrab.name=可抛反Sa326 -item.grenade_black_hole.name=黑洞手榴弹 -item.grenade_breach.name=破甲手榴弹 -item.grenade_burst.name=挖掘手榴弹 -item.grenate_cats.name=猫猫手榴弹 -item.grenade_cloud.name=一罐云 -item.grenade_cluster.name=集束手榴弹 -item.grenade_electric.name=闪电炸弹 -item.grenade_fire.name=燃烧破片手榴弹 -item.grenade_flare.name=信号弹 -item.grenade_frag.name=破片手榴弹 -item.grenade_gas.name=毒气手榴弹 -item.grenade_gascan.name=可抛油桶 -item.grenade_generic.name=手榴弹 -item.grenade_if_bouncy.name=IF-弹性手榴弹 -item.grenade_if_brimstone.name=IF-可抛硫磺矿 -item.grenade_if_concussion.name=IF-震荡手榴弹 -item.grenade_if_generic.name=IF-手榴弹 -item.grenade_if_he.name=IF-HE手榴弹 -item.grenade_if_hopwire.name=IF-旋涡热线 -item.grenade_if_impact.name=IF-冲击手榴弹 -item.grenade_if_incendiary.name=IF-燃烧手榴弹 -item.grenade_if_mystery.name=IF-M-手榴弹 -item.grenade_if_null.name=IF-清除手榴弹 -item.grenade_if_spark.name=IF-S-手榴弹 -item.grenade_if_sticky.name=IF-粘性手榴弹 -item.grenade_if_toxic.name=IF-毒物手榴弹 -item.grenade_kit.name=手榴弹 套件 -item.grenade_kyiv.name=基辅特供 -item.grenade_lemon.name=可燃柠檬 -item.grenade_mirv.name=MIRV型破片手榴弹 -item.grenade_mk2.name=Mk2手榴弹“菠萝大使” -item.grenade_nuclear.name=核子手榴弹 -item.grenade_nuke.name=MkVI钻地手榴弹 -item.grenade_pink_cloud.name=一罐粉雾 -item.grenade_plasma.name=等离子手榴弹 -item.grenade_poison.name=剧毒手榴弹 -item.grenade_pulse.name=脉冲手榴弹 -item.grenade_schrabidium.name=Sa326手榴弹 -item.grenade_shrapnel.name=榴霰弹手榴弹 -item.grenade_smart.name=智能手榴弹 -item.grenade_strong.name=增强型手榴弹 -item.grenade_tau.name=陶子手榴弹 -item.grenade_zomg.name=负能量湮灭手榴弹 -item.gun_ar15.name=阿玛莱特AR15式5.56mm自动步枪 -item.gun_avenger.name=CZ57复仇者机枪 -item.gun_b92.name=§9B92能量手枪§r -item.gun_b92_ammo.name=§9B92能量单元§r -item.gun_b93.name=§cB93能量手枪§r -item.gun_benelli.name=伯奈利自动霰弹枪(Drum Mod) -item.gun_bf.name=BEL -item.gun_bf_ammo.name=Mk.V小型AMAT-炮弹 –野火型 -item.gun_bio_revolver.name=Atlas -item.gun_bolt_action.name=栓动式霰弹枪[原版] -item.gun_bolt_action_ammo.name=12x74 独头弹 -item.gun_bolt_action_green.name=栓动式霰弹枪[绿色] -item.gun_bolt_action_saturnite.name=土星来复枪 -item.gun_bolter.name=爆弹枪 -item.gun_bolter_digamma.name=迪伽马爆弹枪 -item.gun_calamity.name=希特勒的电锯 -item.gun_calamity_ammo.name=.50BMG子弹 -item.gun_calamity_dual.name=马鞍枪 -item.gun_chemthrower.name=化学喷射器 -item.gun_coilgun.name=线圈枪 -item.gun_congolake.name=刚果湖 -item.gun_cryocannon.name=低温炮 -item.gun_cryolator.name=冻结者 -item.gun_cryolator_ammo.name=急冻单元 -item.gun_dampfmaschine.name=绝对不是开玩笑的武器 -item.gun_darter.name=飞镖枪 -item.gun_deagle.name=大手枪 -item.gun_defabricator.name=毁灭者 -item.gun_defabricator_ammo.name=毁灭者能量电池 -item.gun_detonator.name=激光引爆器 -item.gun_emp.name=EMP射线 -item.gun_emp_ammo.name=能量电池 -item.gun_euthanasia.name=安乐死 -item.gun_euthanasia_ammo.name=注射器 -item.gun_fatman.name=M42核弹发射器 "胖子" -item.gun_fatman_ammo.name=迷你核弹 -item.gun_fireext.name=灭火器 -item.gun_flamer.name="黄玉先生"喷射器 -item.gun_flechette.name=弗莱彻突击步枪 -item.gun_folly.name=Digamma原型"愚蠢" -item.gun_glass_cannon.name=玻璃大炮 -item.gun_hk69.name=榴弹手枪 -item.gun_hp.name=HPP射线炮 -item.gun_hp_ammo.name=墨盒 -item.gun_immolator.name=焚烧者 -item.gun_immolator_ammo.name=焚烧者燃料 -item.gun_jack.name=汽锤 -item.gun_jack_ammo.name=四联散弹子弹 -item.gun_karl.name=卡尔-古斯塔夫M3式84mm火箭筒 -item.gun_kit_1.name=枪械润滑油 -item.gun_kit_2.name=枪械修理包 -item.gun_ks23.name=KS-23霰弹枪 -item.gun_lacunae.name=CZ33亚巴顿 -item.gun_lacunae_ammo.name=5mm子弹 -item.gun_lever_action.name=马腿杠杆式霰弹枪[原版] -item.gun_lever_action_ammo.name=12x74 鹿弹 -item.gun_lever_action_dark.name=马腿杠杆式霰弹枪[黑暗] -item.gun_lever_action_sonata.name=自杀霰弹 -item.gun_lever_action_sonata_2.name=§cSonata的麦克风§r -item.gun_lunatic_marksman.name=Lunatic狙击步枪 -item.gun_m2.name=勃朗宁M2HB型重机枪 -item.gun_minigun.name=CZ53机枪 -item.gun_mirv.name=M42核弹发射器 "试验型MIRV" -item.gun_mirv_ammo.name=八倍MIRV -item.gun_moist_nugget.name=莫辛纳甘[迫真] -item.gun_mp.name=和平主义的机枪 -item.gun_mp40.name=MP40冲锋枪 -item.gun_mp40_ammo.name=冲锋枪子弹 -item.gun_pm_ammo.name=小型无发射药机枪子弹 -item.gun_mymy.name=Nietes软弹枪 -item.gun_osipr.name=标准型脉冲机枪 -item.gun_osipr_ammo.name=暗能量脉冲弹 -item.gun_osipr_ammo2.name=融合球 -item.gun_panzerschreck.name=战车噩梦 -item.gun_proto.name=M42核弹发射器 "原始MIRV" -item.gun_quadro.name=四喜丸子 -item.gun_remington.name=バイデン ブラスト [拜登冲击波] -item.gun_revolver.name=强化左轮手枪 -item.gun_revolver_ammo.name=铅左轮子弹 -item.gun_revolver_blackjack.name=黑杰克五发装左轮枪 -item.gun_revolver_cursed.name=诅咒手枪 -item.gun_revolver_cursed_ammo.name=钢左轮子弹 -item.gun_revolver_gold.name=黄金左轮手枪 -item.gun_revolver_gold_ammo.name=金左轮子弹 -item.gun_revolver_inverted.name=自杀左轮手枪 -item.gun_revolver_iron.name=简易左轮手枪 -item.gun_revolver_iron_ammo.name=铁左轮子弹 -item.gun_revolver_lead.name=核子左轮手枪 -item.gun_revolver_lead_ammo.name=玻璃左轮子弹 -item.gun_revolver_nightmare.name=梦魇左轮手枪[原版] -item.gun_revolver_nightmare2.name=梦魇左轮手枪[黑暗] -item.gun_revolver_nightmare2_ammo.name=激光子弹 -item.gun_revolver_nightmare_ammo.name=噩梦子弹 -item.gun_revolver_nopip.name=Novac -item.gun_revolver_nopip_ammo.name=.44马格南子弹 -item.gun_revolver_pip.name=小麦金塔 -item.gun_revolver_pip_ammo.name=污染子弹 -item.gun_revolver_red.name=红钥匙左轮手枪 -item.gun_revolver_saturnite.name=土星手枪 -item.gun_revolver_schrabidium.name=Sa326左轮手枪 -item.gun_revolver_schrabidium_ammo.name=Sa326左轮子弹 -item.gun_revolver_silver.name=银质左轮手枪 -item.gun_rpg.name=卡尔-古斯塔夫M4无后座力炮 -item.gun_rpg_ammo.name=火箭弹 -item.gun_sauer.name=斯坦-索尔的猎枪 -item.gun_skystinger.name=毒刺-The One Sky -item.gun_spark.name=Spark Plug -item.gun_spark_ammo.name=电磁弹 -item.gun_spas12.name=SPAS-12霰弹枪 -item.gun_stinger.name=FIM-92毒刺导弹 -item.gun_stinger_ammo.name=毒刺导弹 -item.gun_super_shotgun.name="超级"猎枪 -item.gun_super_shotgun.desc=超级烂! -item.gun_supershotgun.name=超级猎枪 -item.gun_thompson.name=汤姆森冲锋枪 -item.gun_uac_pistol.name=UAC .45手枪 -item.gun_uboinik.name=Uboinik -item.gun_uboinik_ammo.name=12x70 鹿弹 -item.gun_uzi.name=Uzi冲锋枪 -item.gun_uzi_ammo.name=.22LR子弹 -item.gun_uzi_saturnite.name=土星Uzi冲锋枪 -item.gun_uzi_saturnite_silencer.name=带消音器的土星Uzi冲锋枪 -item.gun_uzi_silencer.name=带消音器的Uzi冲锋枪 -item.gun_xvl1456.name=XVL1456陶子加农炮原型机 -item.gun_xvl1456_ammo.name=贫化铀235子弹 -item.gun_zomg.name=奇点能湮灭射线“ZOMG炮” -item.hand_drill.name=手钻 -item.hand_drill_desh.name=Desh手钻 -item.hazmat_boots.name=防辐射靴 -item.hazmat_boots_grey.name=高性能防辐射靴 -item.hazmat_boots_red.name=高级防辐射靴 -item.hazmat_cloth.name=防辐射布 -item.hazmat_cloth_grey.name=铅防辐射布 -item.hazmat_cloth_red.name=高级防辐射布 -item.hazmat_grey_kit.name=高性能防护套装 -item.hazmat_helmet.name=防辐射头盔 -item.hazmat_helmet_grey.name=高性能防辐射头盔 -item.hazmat_helmet_red.name=高级防辐射头盔 -item.hazmat_kit.name=防护套装 -item.hazmat_legs.name=防辐射护腿 -item.hazmat_legs_grey.name=高性能防辐射护腿 -item.hazmat_legs_red.name=高级防辐射护腿 -item.hazmat_paa_boots.name=PaA战斗防辐射套装 靴子 -item.hazmat_paa_helmet.name=PaA战斗防辐射套装 头盔 -item.hazmat_paa_legs.name=PaA战斗防辐射套装 护腿 -item.hazmat_paa_plate.name=PaA战斗防辐射套装 胸甲 -item.hazmat_plate.name=防辐射胸甲 -item.hazmat_plate_grey.name=高性能防辐射胸甲 -item.hazmat_plate_red.name=高级防辐射胸甲 -item.hazmat_red_kit.name=高级防护套装 -item.heart_booster.name=心之增强器 -item.heart_container.name=心之容器 -item.heart_fab.name=心脏抗原结合器 -item.heart_piece.name=心之碎片 -item.heavy_component.name=重型%s组件 -item.hev_battery.name=套装电池 -item.hev_boots.name=HEV Mk.IV 靴子 -item.hev_plate.name=HEV Mk.IV 胸甲 -item.hev_helmet.name=HEV Mk.IV 头盔 -item.hev_legs.name=HEV Mk.IV 护腿 -item.holotape_damaged.name=损坏的全息卡带 -item.holotape_image.name=全息卡带 -item.horseshoe_magnet.name=马蹄形磁铁 -item.hull_big_aluminium.name=大型铝壳 -item.hull_big_steel.name=大型钢壳 -item.hull_big_titanium.name=大型钛壳 -item.hull_small_aluminium.name=小型铝壳 -item.hull_small_aluminium.desc=可插入钻孔石墨中 -item.hull_small_steel.name=小型钢壳 -item.icf_pellet.name=ICF燃料靶丸 -item.icf_pellet_depleted.name=枯竭ICF燃料靶丸 -item.icf_pellet_empty.name=空ICF燃料靶丸 -item.igniter.name=点火器 -item.igniter.desc=(鼠标右键点击原型)$这是一个绿色金属手柄,带有$亮红色按钮和一个小盖子$在底部,缩写N.E.刻着美元。不管N.E.是谁,他对绿色的色调很有品味。 -item.industrial_magnet.name=工业磁铁 -item.inf_antimatter.name=无限反物质罐 -item.inf_antischrabidium.name=无限反Sa326罐 -item.inf_coolant.name=无限冷却液罐 -item.inf_deuterium.name=无限氘罐 -item.inf_diesel.name=无限柴油罐 -item.inf_sulfur.name=无限硫磺罐 -item.inf_tritium.name=无限氚罐 -item.inf_water.name=无限水罐 -item.inf_water_mk2.name=重型无限水罐 -item.ingot_actinium.name=半稳定锕锭 -item.ingot_advanced_alloy.name=高级合金锭 -item.ingot_aluminium.name=铝锭 -item.ingot_am_mix.name=反应堆级镅锭 -item.ingot_am241.name=镅-241锭 -item.ingot_am242.name=镅-242锭 -item.ingot_americium_fuel.name=镅燃料锭 -item.ingot_arsenic.name=砷锭 -item.ingot_arsenic_bronze.name=砷青铜锭 -item.ingot_asbestos.name=石棉板 -item.ingot_asbestos.desc=§o\“充满了生命、自我怀疑和石棉。这是空气带来的。\”§r -item.ingot_au198.name=金-198锭 -item.ingot_australium.name=奥斯锭 -item.ingot_bakelite.name=电木锭 -item.ingot_beryllium.name=铍锭 -item.ingot_biorubber.name=乳胶锭 -item.ingot_bismuth.name=铋锭 -item.ingot_bismuth_bronze.name=铋青铜锭 -item.ingot_boron.name=硼锭 -item.ingot_bscco.name=BSCCO锭 -item.ingot_c4.name=一块C-4 -item.ingot_cadmium.name=镉锭 -item.ingot_calcium.name=钙锭 -item.ingot_cdalloy.name=镉钢锭 -item.ingot_cft.name=晶化富勒烯 -item.ingot_chainsteel.name=重链钢 -item.ingot_co60.name=钴-60锭 -item.ingot_cobalt.name=钴锭 -item.ingot_combine_steel.name=CMB钢锭 -item.ingot_combine_steel.desc=*在此处插入民事保护参考* -item.ingot_copper.name=工业级铜锭 -item.ingot_daffergon.name=达夫贡锭 -item.ingot_desh.name=Desh锭 -item.ingot_dineutronium.name=双聚中子态素锭 -item.ingot_dura_steel.name=高速钢锭 -item.ingot_electronium.name=电素锭 -item.ingot_euphemium.name=Ep锭 -item.ingot_euphemium.desc=一个非常特殊但又奇怪的元素。 -item.ingot_ferrouranium.name=铀铁合金锭 -item.ingot_fiberglass.name=玻璃纤维 -item.ingot_fiberglass.desc=纤维含量高,玻璃含量高。身体需要的一切。 -item.ingot_firebrick.name=耐火砖 -item.ingot_gh336.name=Gh336锭 -item.ingot_gh336.desc=钅喜的同事。 -item.ingot_graphite.name=石墨锭 -item.ingot_hes.name=高浓度Sa326燃料锭 -item.ingot_lanthanium.name=半稳定镧锭 -item.ingot_lanthanium.desc=“镧” -item.ingot_lanthanium.desc.P11=实际上就是镧,无论怎么说。 -item.ingot_lead.name=铅锭 -item.ingot_les.name=低浓度Sa326燃料锭 -item.ingot_magnetized_tungsten.name=磁化钨锭 -item.ingot_meteorite.name=陨石锭 -item.ingot_meteorite_forged.name=锻造陨石锭 -item.ingot_mox_fuel.name=MOX燃料锭 -item.ingot_mud.name=固化毒泥浆砖 -item.ingot_neptunium.name=镎锭 -item.ingot_neptunium.desc=那是我最喜欢的! -item.ingot_neptunium.desc.P11=哇,吓人! -item.ingot_neptunium_fuel.name=镎燃料锭 -item.ingot_niobium.name=铌锭 -item.ingot_osmiridium.name=铱锇锭 -item.ingot_pb209.name=铅-209锭 -item.ingot_pc.name=硬质塑料锭 -item.ingot_pet.name=铝金属化PET锭 -item.ingot_phosphorus.name=白磷锭 -item.ingot_plutonium.name=钚锭 -item.ingot_plutonium_fuel.name=钚燃料锭 -item.ingot_polonium.name=钋锭 -item.ingot_polymer.name=聚合物锭 -item.ingot_pu_mix.name=反应堆级钚锭 -item.ingot_pu238.name=钚-238锭 -item.ingot_pu239.name=钚-239锭 -item.ingot_pu240.name=钚-240锭 -item.ingot_pu241.name=钚-241锭 -item.ingot_pvc.name=聚氯乙烯锭(PVC) -item.ingot_ra226.name=镭-226锭 -item.ingot_red_copper.name=紫铜锭 -item.ingot_reiium.name=雷恩锭 -item.ingot_rubber.name=橡胶锭 -item.ingot_saturnite.name=土星锭 -item.ingot_schrabidate.name=Sa酸铁锭 -item.ingot_schrabidium.name=Sa326锭 -item.ingot_schrabidium_fuel.name=Sa326燃料锭 -item.ingot_schraranium.name=低丰度Sa326锭 -item.ingot_schraranium.desc=在Sa326嬗变器中由铀制成 -item.ingot_semtex.name=塞姆汀塑胶炸药块 -item.ingot_silicon.name=硅晶 -item.ingot_smore.name=S'more 锭 -item.ingot_solinium.name=Sa327锭 -item.ingot_sr90.name=锶-90锭 -item.ingot_starmetal.name=§9星辉锭§r -item.ingot_steel.name=钢锭 -item.ingot_steel_dusted.name=粉末钢锭 -item.ingot_tantalium.name=钽锭 -item.ingot_tantalium.desc=“钽” -item.ingot_tantalium.desc.P11=又名钽。 -item.ingot_tcalloy.name=锝-钢合金锭 -item.ingot_technetium.name=锝-99锭 -item.ingot_th232.name=钍-232锭 -item.ingot_thorium_fuel.name=钍燃料锭 -item.ingot_titanium.name=钛锭 -item.ingot_tungsten.name=钨锭 -item.ingot_u233.name=铀-233锭 -item.ingot_u235.name=铀-235锭 -item.ingot_u238.name=铀-238锭 -item.ingot_u238m2.name=亚稳铀238-2锭 -item.ingot_unobtainium.name=难得素锭 -item.ingot_uranium.name=铀锭 -item.ingot_uranium_fuel.name=铀燃料锭 -item.ingot_verticium.name=韦德赛锭 -item.ingot_weidanium.name=魏丹锭 -item.ingot_zirconium.name=锆块 -item.injector_5htp.name=5-HTP自动药物注射器 -item.injector_knife.name=8英寸刀片自动药物注射器 -item.ink.name=林 墨水 -item.insert_doxium.name=掺砷Doxium插板 -item.insert_du.name=贫铀插板 -item.insert_era.name=反应装甲插板 -item.insert_esapi.name=ESAPI插板 -item.insert_ghiorsium.name=Gh插板 -item.insert_kevlar.name=凯夫拉插板 -item.insert_sapi.name=SAPI插板 -item.insert_polonium.name=钋插板 -item.insert_steel.name=重型钢插板 -item.insert_xsapi.name=XSAPI插板 -item.insert_yharonite.name=犽戎龙素插板 -item.item_secret.canister.name=SB-26成分 -item.item_secret.controller.name=专用控制单元 -item.iv_blood.name=血袋 -item.iv_empty.name=静脉输液袋 -item.iv_xp.name=经验包 -item.iv_xp_empty.name=空的经验包 -item.jackt.name=时尚防弹夹克 -item.jackt2.name=时尚防弹夹克2:东京漂移 -item.jetpack_boost.name=弹跳背包 -item.jetpack_break.name=缓降背包 -item.jetpack_fly.name=喷气背包 -item.jetpack_tank.name=喷气背包备用燃料罐 -item.jetpack_vector.name=矢量喷气背包 -item.journal_bj.name=被威士忌浸透的笔记本 -item.journal_pip.name=生存主义者日记 -item.journal_silver.name=承包商注释 -item.key.name=钥匙 -item.key_fake.name=伪造钥匙 -item.key_kit.name=钥匙仿制套件 -item.key_red.name=红色钥匙 -item.key_red.desc=探索另一边。 -item.key_red.desc.P11=§4e§r -item.key_red_cracked.name=破碎的钥匙 -item.key_red_cracked.desc=??? -item.key_red.key_red_cracked.P11=§4???§r -item.kit_toolbox.name=工具箱 -item.kit_toolbox_empty.name=空工具箱 -item.laser_crystal_bismuth.desc=铋-钐-铀-钍晶体基质 -item.laser_crystal_bismuth.name=铋-钐-铀-钍激光晶体 -item.laser_crystal_cmb.desc=反Sa326被镶嵌在CMB-Sa326合金晶格 -item.laser_crystal_cmb.name=CMB-Sa326反物质激光晶体 -item.laser_crystal_co2.desc=二氧化碳被包裹在结晶的Desh中 -item.laser_crystal_co2.name=CO2-Desh激光晶体 -item.laser_crystal_digamma.name=Digamma迪伽马激光晶体 -item.laser_crystal_dnt.desc=双聚态中子-Spark费米子超晶体 -item.laser_crystal_dnt.name=Spark激光晶体 -item.launch_code.name=发射井发射代码 -item.launch_code_piece.name=发射井发射代码碎片 -item.launch_key.name=发射井发射钥匙 -item.lead_gavel.name=铅槌 -item.lemon.name="柠檬" -item.letter.name=快捷邮件 -item.levitation_unit.name=重力控制器 -item.lignite.name=褐煤 -item.limiter.name=发电机限制器 -item.linker.name=链接器 -item.liquidator_boots.name=核废土清道夫套装靴子 -item.liquidator_helmet.name=核废土清道夫套装头盔 -item.liquidator_legs.name=核废土清道夫套装护腿 -item.liquidator_plate.name=核废土清道夫套装胸甲 -item.lithium.name=锂锭 -item.lodestone.name=磁石 -item.loop_stew.name=程序猿专属早餐 -item.loops.name=五彩麦圈 -item.loot_10.name=10号导弹战利箱 -item.loot_15.name=15号导弹战利箱 -item.loot_misc.name=普通导弹战利箱 -item.magnet_circular.name=扁磁铁 -item.magnet_dee.name=D型磁铁 -item.magnetron.name=磁控管 -item.man_core.name=钚核心 -item.man_explosive.name=炸药 -item.man_igniter.name=点火器 -item.man_kit.name=胖子 套件 -item.marshmallow.name=穿在木棍上的棉花糖 -item.mask_of_infamy.name=耻辱面具 -item.mask_piss.name=战壕面具 -item.mask_rag.name=粗糙防护面罩 -item.matchstick.name=火柴 -item.mech_key.name=大号银钥匙 -item.mech_key.desc=它充满力量。 -item.mechanism_launcher_1.name=发射机构 -item.mechanism_launcher_2.name=先进发射机构 -item.mechanism_revolver_1.name=转轮机构 -item.mechanism_revolver_2.name=先进转轮机构 -item.mechanism_rifle_1.name=步枪机构 -item.mechanism_rifle_2.name=先进步枪机构 -item.mechanism_special.name=高科技武器机构 -item.med_bag.name=医疗包 -item.med_ipecac.name=吐根酊催吐剂 -item.med_ptsd.name=PTSD治疗药物 -item.med_schiziphrenia.name=抗精神分裂症药物 -item.medal_liquidator.name=核废土清道夫勋章 -item.meltdown_tool.name=达洛夫快速熔毁装置 -item.memespoon.name=§ee花园园丁 -item.memory.name=item.null.name -item.mese_gavel.name=Mese槌 -item.mese_axe.name=Mese斧 -item.mese_pickaxe.name=Mese镐 -item.meteor_charm.name=陨石项链 -item.meteor_remote.name=陨石召唤器 -item.meteorite_sword.name=陨石剑 -item.meteorite_sword_seared.name=陨石剑(烧焦) -item.meteorite_sword_reforged.name=陨石剑(重铸) -item.meteorite_sword_hardened.name=陨石剑(硬化) -item.meteorite_sword_alloyed.name=陨石剑(合金) -item.meteorite_sword_machined.name=陨石剑(机械加工) -item.meteorite_sword_treated.name=陨石剑(精制) -item.meteorite_sword_etched.name=陨石剑(刻蚀) -item.meteorite_sword_bred.name=陨石剑(增殖) -item.meteorite_sword_irradiated.name=陨石剑(辐照) -item.meteorite_sword_fused.name=陨石剑(熔融) -item.meteorite_sword_baleful.name=陨石剑(凶恶) -item.mike_cooling_unit.name=氘冷却装置 -item.mike_core.name=铀涂层氘罐 -item.mike_deut.name=氘罐 -item.mike_kit.name=常春藤麦克 套件 -item.mirror_tool.name=定日镜调整工具 -item.mirror_tool.linked=设置对齐位置! -item.mirror_tool.desc=右键单击“太阳能锅炉”以记忆位置 $再单击“定日镜”可将其转向太阳能锅炉 -item.missile_anti_ballistic.name=反弹道导弹 -item.missile_assembly.name=小型导弹[待装配] -item.missile_bhole.name=黑洞导弹 -item.missile_burst.name=洲际导弹 -item.missile_buster.name=掩体破坏弹 -item.missile_buster_strong.name=强化型掩体破坏弹 -item.missile_carrier.name=HTR-01运载火箭 -item.missile_cluster.name=集束导弹 -item.missile_cluster_strong.name=强化型集束导弹 -item.missile_custom.name=定制导弹 -item.missile_decoy.name=诱饵弹 -item.missile_doomsday.name=末日导弹 -item.missile_doomsday_rusted.name=损坏的末日导弹 -item.missile_drill.name=掩体裂解者 -item.missile_emp.name=EMP导弹 -item.missile_emp_strong.name=强化型EMP导弹 -item.missile_endo.name=吸热导弹 -item.missile_exo.name=放热导弹 -item.missile_generic.name=高爆导弹 -item.missile_incendiary.name=燃烧导弹 -item.missile_incendiary_strong.name=强化型燃烧导弹 -item.missile_inferno.name=Mk.II G.R.N.地狱导弹 -item.missile_kit.name=导弹工具箱 -item.missile_micro.name=战术核导弹 -item.missile_nuclear.name=核导弹 -item.missile_nuclear_cluster.name=热核导弹 -item.missile_rain.name=炸弹雨 -item.missile_schrabidium.name=Sa326导弹 -item.missile_shuttle.name=万金罗宾航天飞机 -item.missile_skin_camo.name=导弹外壳:迷彩 -item.missile_skin_color.desc=我再也找不到我的导弹了! -item.missile_skin_desert.name=导弹外壳:沙漠迷彩 -item.missile_skin_desert.desc=看起来像沙子,尝起来像金属。 -item.missile_skin_flames.name=导弹外壳:火焰 -item.missile_skin_flames.desc=不同凡响的! -item.missile_skin_manly_pink.name=导弹外壳:猛男粉 -item.missile_skin_manly_pink.desc=粉色,最有男子气概的颜色。 -item.missile_skin_metal.name=导弹外壳:全金属外壳 -item.missile_skin_metal.desc=金属板和金属螺栓,用金属加固。 -item.missile_skin_orange_insulation.name=导弹外壳:橙色绝缘 -item.missile_skin_orange_insulation.desc=不是橙汁瓶$不要试图喝里面的东西。 -item.missile_skin_sleek.name=导弹外壳:IF-R&D -item.missile_skin_sleek.desc=V字形很酷! -item.missile_skin_soviet_glory.name=导弹外壳:苏联荣耀 -item.missile_skin_soviet_glory.desc=услуга перевода недоступна -item.missile_skin_soviet_stank.name=导弹外壳:苏维埃不朽 -item.missile_skin_soviet_stank.desc=这个真的很有60年代的味道。 -item.missile_soyuz.name=联盟-FG运载火箭 -item.missile_soyuz_lander.name=联盟号轨道舱 -item.missile_soyuz_lander.desc=劣质着陆器! -item.missile_stealth.name=隐身导弹 -item.missile_strong.name=强化型高爆导弹 -item.missile_taint.name=污染导弹 -item.missile_volcano.name=构造导弹 -item.missile_volcano.desc=利用核爆的威力,我们可以召唤一座火山! -item.mold_base.name=毛坯铸造模具 -item.mold.name=铸造模具 -item.morning_glory.name=牵牛花 -item.motor.name=马达 -item.motor_bismuth.name=铋马达 -item.motor_desh.name=Desh马达 -item.mp_c_1.name=1级导弹制导芯片 -item.mp_c_2.name=2级导弹制导芯片 -item.mp_c_3.name=3级导弹制导芯片 -item.mp_c_4.name=4级导弹制导芯片 -item.mp_c_5.name=5级导弹制导芯片 -item.mp_fuselage_10_15_balefire.name=10/15号弹体[野火燃料] -item.mp_fuselage_10_15_hydrogen.name=10/15号弹体[液氢] -item.mp_fuselage_10_15_kerosene.name=10/15号弹体[煤油] -item.mp_fuselage_10_15_solid.name=10/15号弹体[固体燃料] -item.mp_fuselage_10_kerosene.name=10号弹体[煤油] -item.mp_fuselage_10_kerosene_camo.name=10号弹体[煤油] -item.mp_fuselage_10_kerosene_desert.name=10号弹体[煤油] -item.mp_fuselage_10_kerosene_flames.name=10号弹体[煤油] -item.mp_fuselage_10_kerosene_insulation.name=10号弹体[煤油] -item.mp_fuselage_10_kerosene_metal.name=10号弹体[煤油] -item.mp_fuselage_10_kerosene_sky.name=10号弹体[煤油] -item.mp_fuselage_10_kerosene_sleek.name=10号弹体[煤油] -item.mp_fuselage_10_kerosene_taint.name=10号弹体[煤油] -item.mp_fuselage_10_long_kerosene.name=10号长弹体[煤油] -item.mp_fuselage_10_long_kerosene_camo.name=10号长弹体[煤油] -item.mp_fuselage_10_long_kerosene_dash.name=10号长弹体[煤油] -item.mp_fuselage_10_long_kerosene_desert.name=10号长弹体[煤油] -item.mp_fuselage_10_long_kerosene_flames.name=10号长弹体[煤油] -item.mp_fuselage_10_long_kerosene_insulation.name=10号长弹体[煤油] -item.mp_fuselage_10_long_kerosene_metal.name=10号长弹体[煤油] -item.mp_fuselage_10_long_kerosene_sky.name=10号长弹体[煤油] -item.mp_fuselage_10_long_kerosene_sleek.name=10号长弹体[煤油] -item.mp_fuselage_10_long_kerosene_taint.name=10号长弹体[煤油] -item.mp_fuselage_10_long_kerosene_vap.name=10号长弹体[煤油] -item.mp_fuselage_10_long_solid.name=10号长弹体[固体燃料] -item.mp_fuselage_10_long_solid_bullet.name=10号长弹体[固体燃料] -item.mp_fuselage_10_long_solid_flames.name=10号长弹体[固体燃料] -item.mp_fuselage_10_long_solid_insulation.name=10号长弹体[固体燃料] -item.mp_fuselage_10_long_solid_silvermoonlight.name=10号长弹体[固体燃料] -item.mp_fuselage_10_long_solid_sleek.name=10号长弹体[固体燃料] -item.mp_fuselage_10_long_solid_soviet_glory.name=10号长弹体[固体燃料] -item.mp_fuselage_10_solid.name=10号弹体[固体燃料] -item.mp_fuselage_10_solid_battery.name=10号弹体[固体燃料] -item.mp_fuselage_10_solid_cathedral.name=10号弹体[固体燃料] -item.mp_fuselage_10_solid_duracell.name=10号弹体[固体燃料] -item.mp_fuselage_10_solid_flames.name=10号弹体[固体燃料] -item.mp_fuselage_10_solid_insulation.name=10号弹体[固体燃料] -item.mp_fuselage_10_solid_moonlit.name=10号弹体[固体燃料] -item.mp_fuselage_10_solid_sleek.name=10号弹体[固体燃料] -item.mp_fuselage_10_solid_soviet_glory.name=10号弹体[固体燃料] -item.mp_fuselage_10_xenon.name=10号弹体[氙] -item.mp_fuselage_10_xenon_bhole.name=10号弹体[氙] -item.mp_fuselage_15_20_kerosene.name=15/20号弹体[煤油] -item.mp_fuselage_15_20_kerosene_magnusson.name=15/20号弹体[煤油] -item.mp_fuselage_15_20_solid.name=15/20号弹体[固体燃料] -item.mp_fuselage_15_balefire.name=15号弹体[野火燃料] -item.mp_fuselage_15_hydrogen.name=15号弹体[液氢] -item.mp_fuselage_15_hydrogen_cathedral.name=15号弹体[液氢] -item.mp_fuselage_15_kerosene.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_blackjack.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_camo.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_decorated.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_desert.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_insulation.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_lambda.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_metal.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_minuteman.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_pip.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_polite.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_sky.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_steampunk.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_taint.name=15号弹体[煤油] -item.mp_fuselage_15_kerosene_yuck.name=15号弹体[煤油] -item.mp_fuselage_15_solid.name=15号弹体[固体燃料] -item.mp_fuselage_15_solid_desh.name=15号弹体[固体燃料] -item.mp_fuselage_15_solid_faust.name=15号弹体[固体燃料] -item.mp_fuselage_15_solid_insulation.name=15号弹体[固体燃料] -item.mp_fuselage_15_solid_mimi.name=15号弹体[固体燃料] -item.mp_fuselage_15_solid_panorama.name=15号弹体[固体燃料] -item.mp_fuselage_15_solid_roses.name=15号弹体[固体燃料] -item.mp_fuselage_15_solid_silvermoonlight.name=15号弹体[固体燃料] -item.mp_fuselage_15_solid_snowy.name=15号弹体[固体燃料] -item.mp_fuselage_15_solid_soviet_glory.name=15号弹体[固体燃料] -item.mp_fuselage_15_solid_soviet_stank.name=15号弹体[固体燃料] -item.mp_stability_10_cruise.name=10号巡航翼 -item.mp_stability_10_flat.name=10号水平翼 -item.mp_stability_10_space.name=10号航天翼 -item.mp_stability_15_flat.name=15号水平翼 -item.mp_stability_15_soyuz.name=15号尖翼 -item.mp_stability_15_thin.name=15号薄翼 -item.mp_thruster_10_kerosene.name=10号液体燃料推进器 -item.mp_thruster_10_solid.name=10号固体燃料推进器 -item.mp_thruster_10_xenon.name=10号离子推进器 -item.mp_thruster_15_balefire.name=15号带核预热器的野火燃料推进器 -item.mp_thruster_15_balefire_large.name=15号带核预热器的野火燃料推进器[重型喷管] -item.mp_thruster_15_balefire_large_rad.name=15号带核预热器的野火燃料推进器[重型喷管-稀有] -item.mp_thruster_15_balefire_short.name=15号带核预热器的野火燃料推进器[缩短版] -item.mp_thruster_15_hydrogen.name=15号液氢推进器 -item.mp_thruster_15_hydrogen_dual.name=15号双喷管氢推进器 -item.mp_thruster_15_kerosene.name=15号液体燃料推进器 -item.mp_thruster_15_kerosene_dual.name=15号双喷管液体燃料推进器 -item.mp_thruster_15_kerosene_triple.name=15号三喷管液体燃料推进器 -item.mp_thruster_15_solid.name=15号固体燃料推进器 -item.mp_thruster_15_solid_hexdecuple.name=15号十六喷管固体燃料推进器 -item.mp_thruster_20_kerosene.name=20号液体燃料推进器 -item.mp_thruster_20_kerosene_dual.name=20号液体燃料推进器 -item.mp_thruster_20_kerosene_triple.name=20号液体燃料推进器 -item.mp_thruster_20_solid.name=20号固体燃料推进器 -item.mp_thruster_20_solid_multi.name=20号三十喷管固体燃料推进器 -item.mp_thruster_20_solid_multier.name=20号四十七喷管固体燃料推进器 -item.mp_warhead_10_buster.name=10号掩体破坏弹头 -item.mp_warhead_10_cloud.name=10号粉雾弹头 -item.mp_warhead_10_he.name=10号HE弹头 -item.mp_warhead_10_incendiary.name=10号燃烧弹头 -item.mp_warhead_10_nuclear.name=10号微型核弹头 -item.mp_warhead_10_nuclear_large.name=10号核弹头 -item.mp_warhead_10_taint.name=10号污染弹头 -item.mp_warhead_15_balefire.name=15号野火弹头 -item.mp_warhead_15_boxcar.name=15号 车厢? -item.mp_warhead_15_he.name=15号HE弹头 -item.mp_warhead_15_incendiary.name=15号燃烧弹头 -item.mp_warhead_15_n2.name=15号N2炸弹 -item.mp_warhead_15_nuclear.name=15号核弹头 -item.mp_warhead_15_nuclear_mimi.name=15号核弹头 -item.mp_warhead_15_nuclear_shark.name=15号核弹头 -item.mp_warhead_15_turbine.name=15号喷气发动机弹头 -item.mucho_mango.name=亚利桑那芒果味饮料 -item.multi_kit.name=多用途炸弹 套件 -item.multitool_beam.name=动力拳套[热射线] -item.multitool_decon.name=动力拳套[净化] -item.multitool_dig.name=动力拳套[挖掘] -item.multitool_ext.name=动力拳套[矿物提取] -item.multitool_hit.name=动力拳套[攻击] -item.multitool_joule.name=动力拳套[千兆焦耳] -item.multitool_mega.name=动力拳套[超级重拳] -item.multitool_miner.name=动力拳套[采矿激光] -item.multitool_silk.name=动力拳套[精准采集] -item.multitool_sky.name=动力拳套[划破天际] -item.mysteryshovel.name=易碎锹 -item.n2_charge.name=大型炸药 -item.neutrino_lens.name=中微子透镜 -item.neutron_reflector.name=中子反射板 -item.night_vision.name=夜视眼镜 -item.night_vision.description.item=提供夜视功能(需要全套电动设备) -item.night_vision.description.in_armor=%s(允许夜视) -item.niter.name=硝石粉 -item.nitra.name=Nitra -item.nitra_small.name=小撮Nitra -item.no9.name=矿工头盔 -item.nossy_hat.name=华丽的帽子 -item.nothing.name=没有东西 -item.nuclear_waste.name=核废料 -item.nuclear_waste_pearl.name=放射性珍珠 -item.nuclear_waste_tiny.name=小撮核废料 -item.nuclear_waste_long.name=长半衰期核废料 -item.nuclear_waste_long_tiny.name=小撮长半衰期核废料 -item.nuclear_waste_long_depleted.name=腐化的长半衰期核废料 -item.nuclear_waste_long_depleted_tiny.name=小撮腐化的长半衰期核废料 -item.nuclear_waste_short.name=短半衰期核废料 -item.nuclear_waste_short_tiny.name=小撮短半衰期核废料 -item.nuclear_waste_short_depleted.name=腐化的短半衰期核废料 -item.nuclear_waste_short_depleted_tiny.name=小撮腐化的短半衰期核废料 -item.nuclear_waste_vitrified.name=玻璃化核废料 -item.nuclear_waste_vitrified_tiny.name=小撮玻璃化核废料 -item.nugget.name=鸡块 -item.nugget_actinium.name=锕-227粒 -item.nugget_am_mix.name=反应堆级镅粒 -item.nugget_am241.name=镅-241粒 -item.nugget_am242.name=镅-242粒 -item.nugget_americium_fuel.name=镅燃料粒 -item.nugget_arsenic.name=砷粒 -item.nugget_au198.name=金-198粒 -item.nugget_australium.name=奥斯粒 -item.nugget_australium_greater.name=富集奥斯粒 -item.nugget_australium_lesser.name=贫化奥斯粒 -item.nugget_beryllium.name=铍粒 -item.nugget_bismuth.name=铋粒 -item.nugget_co60.name=钴-60粒 -item.nugget_cobalt.name=钴粒 -item.nugget_daffergon.name=达夫贡粒 -item.nugget_desh.name=Desh粒 -item.nugget_dineutronium.name=双聚中子态素粒 -item.nugget_euphemium.name=Ep粒 -item.nugget_euphemium.desc=一小块粉红色的金属$它的属性仍然未知,请小心处理。 -item.nugget_gh336.name=Gh336粒 -item.nugget_gh336.desc=钅喜的同事。 -item.nugget_hes.name=高浓度Sa326燃料粒 -item.nugget_lead.name=铅粒 -item.nugget_les.name=低浓度Sa326燃料粒 -item.nugget_mercury_tiny.name=一小滴水银 -item.nugget_mercury.name=一滴水银 -item.nugget_mox_fuel.name=MOX燃料粒 -item.nugget_mox_fuel.desc=摩西说:§l逃税。§r -item.nugget_neptunium.name=镎粒 -item.nugget_neptunium_fuel.name=镎燃料粒 -item.nugget_niobium.name=铌粒 -item.nugget_osmiridium.name=铱锇粒 -item.nugget_pb209.name=铅-209粒 -item.nugget_plutonium.name=钚粒 -item.nugget_plutonium_fuel.name=钚燃料粒 -item.nugget_polonium.name=钋粒 -item.nugget_pu_mix.name=反应堆级钚粒 -item.nugget_pu238.name=钚-238粒 -item.nugget_pu239.name=钚-239粒 -item.nugget_pu240.name=钚-240粒 -item.nugget_pu241.name=钚-241粒 -item.nugget_ra226.name=镭-226粒 -item.nugget_reiium.name=雷恩粒 -item.nugget_schrabidium.name=Sa326粒 -item.nugget_schrabidium_fuel.name=Sa326燃料粒 -item.nugget_silicon.name=硅粒 -item.nugget_solinium.name=Sa327粒 -item.nugget_sr90.name=锶-90粒 -item.nugget_tantalium.name=钽粒 -item.nugget_tantalium.desc=“钽” -item.nugget_tantalium.desc.P11=又名钽。 -item.nugget_technetium.name=锝-99粒 -item.nugget_th232.name=钍232粒 -item.nugget_thorium_fuel.name=钍燃料粒 -item.nugget_u233.name=铀-233粒 -item.nugget_u235.name=铀-235粒 -item.nugget_u238.name=铀-238粒 -item.nugget_unobtainium.name=难得素粒 -item.nugget_uranium.name=铀粒 -item.nugget_uranium_fuel.name=铀燃料粒 -item.nugget_verticium.name=韦德赛粒 -item.nugget_weidanium.name=魏丹粒 -item.nugget_zirconium.name=锆碎片 -item.nuke_advanced_kit.name=原子学高级工具箱 -item.nuke_commercially_kit.name=商用原子学工具箱 -item.nuke_electric_kit.name=电子工程师工具箱 -item.nuke_starter_kit.name=原子学入门工具箱 -item.oil_canola.name=菜籽油 -item.oil_detector.name=石油探测仪 -item.oil_detector.desc1=单击右键扫描地下是否存在油田 -item.oil_detector.desc2=探测仪只会发现大片油田 -item.oil_detector.bullseye=正下方发现油田! -item.oil_detector.detected=附近存在油田 -item.oil_detector.noOil=未发现油田 -item.oil_tar.coal.name=煤焦油 -item.oil_tar.crude.name=焦油 -item.oil_tar.crack.name=裂化焦油 -item.oil_tar.paraffin.name=石蜡 -item.oil_tar.wax.name=氯化石蜡 -item.oil_tar.wood.name=木馏油 -item.ore.asbestos=石棉 -item.ore.borax=硼砂 -item.ore.chlorocalcite=氯方解石 -item.ore.copper=铜 -item.ore.fluorite=氟石 -item.ore.gold=金 -item.ore.hematite=赤铁矿 -item.ore.iron=铁 -item.ore.malachite=孔雀石 -item.ore.neodymium=钕 -item.ore.niobium=铌 -item.ore.titanium=钛 -item.ore.tungsten=钨 -item.ore.thorium232=钍 -item.ore.uranium=铀 -item.ore_bedrock.name=基岩%s矿 -item.ore_byproduct.b_aluminium.name=铝晶体碎片 -item.ore_byproduct.b_bismuth.name=铋晶体碎片 -item.ore_byproduct.b_calcium.name=钙晶体碎片 -item.ore_byproduct.b_copper.name=铜晶体碎片 -item.ore_byproduct.b_iron.name=铁晶体碎片 -item.ore_byproduct.b_lead.name=铅晶体碎片 -item.ore_byproduct.b_lithium.name=锂晶体碎片 -item.ore_byproduct.b_polonium.name=钋晶体碎片 -item.ore_byproduct.b_radium.name=镭晶体碎片 -item.ore_byproduct.b_silicon.name=硅晶体碎片 -item.ore_byproduct.b_sulfur.name=硫晶体碎片 -item.ore_byproduct.b_technetium.name=锝晶体碎片 -item.ore_byproduct.b_titanium.name=钛晶体碎片 -item.ore_byproduct.b_uranium.name=铀晶体碎片 -item.ore_centrifuged.name=离心%s矿 -item.ore_cleaned.name=清洁%s矿 -item.ore_deepcleaned.name=深清洁%s矿 -item.ore_density_scanner.name=基岩矿石丰度扫描仪 -item.ore_enriched.name=富集%s矿 -item.ore_nitrated.name=硝化%s矿 -item.ore_nitrocrystalline.name=亚硝基结晶%s矿 -item.ore_purified.name=净化%s矿 -item.ore_radcleaned.name=经辐射清洁的%s矿 -item.ore_seared.name=灼热的%s矿 -item.ore_separated.name=分离的%s矿 -item.overfuse.name=奇异螺丝刀 -item.overfuse.desc=说啥? -item.oxy_mask.name=氧气面罩 -item.paa_boots.name=PaA "好鞋" -item.paa_legs.name=PaA加固护腿 -item.paa_plate.name=PaA加固护胸 -item.padlock.name=挂锁 -item.padlock_reinforced.name=加强挂锁 -item.padlock_rusty.name=生锈的挂锁 -item.padlock_unbreakable.name=牢不可破的挂锁 -item.pads_rubber.name=橡胶垫 -item.pads_slime.name=粘液垫 -item.pads_static.name=静电垫 -item.page_of_.page1.name=书页之一 -item.page_of_.page2.name=书页之二 -item.page_of_.page3.name=书页之三 -item.page_of_.page4.name=书页之四 -item.page_of_.page5.name=书页之五 -item.page_of_.page6.name=书页之六 -item.page_of_.page7.name=书页之七 -item.page_of_.page8.name=书页之八 -item.pancake.name=用废金属、螺栓和宝石粉做成的薄饼 -item.part_beryllium.name=铍粉盒 -item.part_carbon.name=碳粉盒 -item.part_copper.name=铜粉盒 -item.part_generic.hde.name=重型元件 -item.part_generic.lde.name=低密度元件 -item.part_generic.piston_electric.name=电动活塞 -item.part_generic.piston_hydraulic.name=液压活塞 -item.part_generic.piston_pneumatic.name=气动活塞 -item.part_lithium.name=锂粉盒 -item.part_plutonium.name=钚粉盒 -item.particle_aelectron.name=正电子胶囊 -item.particle_amat.name=反物质胶囊 -item.particle_aproton.name=反质子胶囊 -item.particle_aschrab.name=反Sa326胶囊 -item.particle_copper.name=铜离子胶囊 -item.particle_dark.name=暗物质胶囊 -item.particle_digamma.name=§c迪伽马粒子胶囊§r -item.particle_empty.name=空粒子胶囊 -item.particle_higgs.name=希格斯玻色子胶囊 -item.particle_hydrogen.name=氢离子胶囊 -item.particle_lead.name=铅离子胶囊 -item.particle_lutece.name=Lutece镥准粒子胶囊 -item.particle_muon.name=μ子胶囊 -item.particle_sparkticle.name=Spark粒子胶囊 -item.particle_strange.name=奇异夸克胶囊 -item.particle_tachyon.name=超光速粒子密封胶囊 -item.parts_legendary.name=传奇零件 -item.peas.name=豌豆 -item.pedestal_steel.name=钢底座 -item.pellet_advanced.name=高级Watz性能增强剂 -item.pellet_antimatter.name=反物质团 -item.pellet_beryllium.name=铍慢化靶丸 -item.pellet_buckshot.name=铅弹丸 -item.pellet_canister.name=榴霰弹弹丸 -item.pellet_charged.name=电离粒子 -item.pellet_chlorophyte.name=叶绿弹丸 -item.pellet_claws.name=金属利爪 -item.pellet_cluster.name=爆炸弹丸 -item.pellet_cluster.desc=用于多用途炸弹:$增加了一些额外的爆炸力! -item.pellet_coal.name=致密煤 -item.pellet_coolant.name=冷却液组 -item.pellet_flechette.name=箭霰弹 -item.pellet_gas.name=毒气筒 -item.pellet_gas.desc=用于多用途炸弹:$*咳嗽*请停止! -item.pellet_hes.name=HES Watz靶丸 -item.pellet_lead.name=铅反射靶丸 -item.pellet_les.name=LES Watz靶丸 -item.pellet_mercury.name=水银弹丸 -item.pellet_mes.name=MES Watz靶丸 -item.pellet_meteorite.name=陨石弹丸 -item.pellet_neptunium.name=镎Watz靶丸 -item.pellet_rtg.name=钚238放射性同位素燃料靶丸 -item.pellet_rtg.desc=无限能量的RTG靶丸!(差不多) -item.pellet_rtg_actinium.name=锕放射性同位素燃料靶丸 -item.pellet_rtg_actinium.desc= -item.pellet_rtg_americium.name=镅-241放射性同位素燃料靶丸 -item.pellet_rtg_americium.desc=稀有可靠,好的老镅! -item.pellet_rtg_berkelium.name=锫放射性同位素燃料靶丸 -item.pellet_rtg_berkelium.desc= -item.pellet_rtg_cobalt.name=钴-60放射性同位素燃料靶丸 -item.pellet_rtg_cobalt.desc=不是最好的RTG,但对伽马辐射很好! -item.pellet_rtg_depleted.bismuth.name=枯竭铋放射性同位素燃料靶丸 -item.pellet_rtg_depleted.lead.name=枯竭铅放射性同位素燃料靶丸 -item.pellet_rtg_depleted.neptunium.name=枯竭镎放射性同位素燃料靶丸 -item.pellet_rtg_depleted.mercury.name=枯竭汞放射性同位素燃料靶丸 -item.pellet_rtg_depleted.nickel.name=枯竭镍放射性同位素燃料靶丸 -item.pellet_rtg_depleted.zirconium.name=枯竭锆放射性同位素燃料靶丸 -item.pellet_rtg_lead.name=铅-209 放射性同位素燃料靶丸 -item.pellet_rtg_lead.desc=接触会导致立即死亡。 -item.pellet_rtg_gold.name=金-198放射性同位素燃料靶丸 -item.pellet_rtg_gold.desc=由稀有的、高度不稳定的金同位素制成。 -item.pellet_rtg_polonium.name=钋210放射性同位素燃料靶丸 -item.pellet_rtg_polonium.desc=更多粉末状RTG靶丸,由最好的钋制成! -item.pellet_rtg_strontium.name=锶-90放射性同位素燃料靶丸 -item.pellet_rtg_strontium.desc= -item.pellet_rtg_radium.name=镭-226放射性同位素燃料靶丸 -item.pellet_rtg_radium.desc=伟大的启动靶丸,来自全天然镭! -item.pellet_rtg_weak.name=贫铀放射性同位素燃料靶丸 -item.pellet_rtg_weak.desc=更便宜更弱的靶丸,含有更多的铀238! -item.pellet_schrabidium.name=纯Sa326Watz靶丸 -item.photo_panel.name=光伏板 -item.pile_rod_boron.name=芝加哥反应堆 控制棒 -item.pile_rod_boron.desc=§9[中子吸收器]$§E单击以切换 -item.pile_rod_detector.name=芝加哥反应堆控制/探测棒 -item.pile_rod_detector.desc=§9[中子探测器/吸收器]$§e使用拆弹器增加/减少中子通量限值$§e使用螺丝刀检查中子通量 -item.pile_rod_lithium.name=芝加哥反应堆锂燃料棒 -item.pile_rod_lithium.desc=§a[可增殖燃料棒]$§e使用手钻检查棒芯 -item.pile_rod_plutonium.name=芝加哥反应堆 钚棒 -item.pile_rod_plutonium.desc=§d[中子源棒] -item.pile_rod_pu239.name=芝加哥反应堆增殖铀棒 -item.pile_rod_pu239.desc=§a[可反应核燃料]$§e富含钚-239 -item.pile_rod_source.name=芝加哥反应堆 镭226-铍中子源 -item.pile_rod_source.desc=§d[中子源棒] -item.pile_rod_uranium.name=芝加哥反应堆 铀棒 -item.pile_rod_uranium.desc=§a[可反应核燃料]$§e使用手钻取堆芯样本 -item.pill_iodine.name=碘丸 -item.pill_iodine.desc=消除负面buff -item.pill_herbal.name=草药膏 -item.pill_herbal.desc=有效治疗肺部疾病和轻度辐射中毒$有副作用 -item.pill_red.name=红色药丸 -item.pin.name=发夹 -item.pin.desc=撬开标准锁的成功率约为10%。 -item.pipentm.name=%s管 -item.pipes_steel.name=钢管 -item.pipes_steel.desc=为了避免合成冲突,所以造价如此高昂 -item.pipette.name=移液管 -item.pipette_boron.name=硼玻璃移液管 -item.pipette_laboratory.name=移液器 -item.piston_selenium.name=星型发动机活塞 -item.piston_set_desh.name=Desh活塞组 -item.piston_set_dura.name=高速钢活塞组 -item.piston_set_starmetal.name=星辉活塞组 -item.piston_set_steel.name=钢活塞组 -item.plan_c.name=C计划 -item.plan_c.desc=致死 -item.plant_item.mustardwillow.name=芥子柳叶 -item.plant_item.rope.name=麻绳 -item.plant_item.tobacco.name=烟叶 -item.plastic_bag.name=塑料袋 -item.plate_advanced_alloy.name=高级合金板 -item.plate_aluminium.name=铝板 -item.plate_armor_ajr.name=铁皮装甲板 -item.plate_armor_dnt.name=DNT装甲板 -item.plate_armor_fau.name=Fau装甲板 -item.plate_armor_hev.name=反应装甲板 -item.plate_armor_lunar.name=月球镀层 -item.plate_armor_titanium.name=钛装甲板 -item.plate_bismuth.name=铋复合板 -item.plate_bismuth.desc=伙计们,这是铋的炼金术符号,我发誓。 -item.plate_cast.name=铸造%s板 -item.plate_combine_steel.name=CMB钢板 -item.plate_copper.name=铜板 -item.plate_dalekanium.name=愤怒的金属 -item.plate_desh.name=Desh复合板 -item.plate_dineutronium.name=双聚中子态素复合板 -item.plate_dura_steel.name=高速钢板 -item.plate_euphemium.name=Ep复合板 -item.plate_fuel_mox.name=MOX 板状燃料 -item.plate_fuel_pu238be.name=钚238-铍 板状燃料 -item.plate_fuel_pu239.name=高浓度钚-239 板状燃料 -item.plate_fuel_ra226be.name=镭226-铍 板状燃料 -item.plate_fuel_sa326.name=高浓度Sa326 板状燃料 -item.plate_fuel_u233.name=高浓度铀-233 板状燃料 -item.plate_fuel_u235.name=高浓度铀-235 板状燃料 -item.plate_gold.name=金板 -item.plate_iron.name=铁板 -item.plate_kevlar.name=凯夫拉陶瓷复合材料 -item.plate_lead.name=铅板 -item.plate_mixed.name=合金板 -item.plate_paa.name=PaA合金板 -item.plate_polymer.name=绝缘体 -item.plate_saturnite.name=土星板 -item.plate_schrabidium.name=Sa326板 -item.plate_steel.name=钢板 -item.plate_titanium.name=钛板 -item.plate_welded.name=焊接%s板 -item.polaroid.name=偏光片 -item.pollution_detector.name=污染探测器 -item.powder_actinium.name=锕粉 -item.powder_actinium_tiny.name=小撮锕粉 -item.powder_advanced_alloy.name=高级合金粉 -item.powder_aluminium.name=铝粉 -item.powder_asbestos.name=石棉粉 -item.powder_asbestos.desc=§o\"Sniffffffff- MHHHHHHMHHHHHHHHH\"§r -item.powder_ash.coal.name=煤灰 -item.powder_ash.fly.name=飞尘 -item.powder_ash.fullerene.name=富勒烯 -item.powder_ash.misc.name=灰尘 -item.powder_ash.soot.name=细烟灰 -item.powder_ash.wood.name=木灰 -item.powder_astatine.name=砹粉 -item.powder_at209.name=砹-209粉 -item.powder_au198.name=金-198粉 -item.powder_australium.name=奥斯粉 -item.powder_bakelite.name=电木粉 -item.powder_balefire.name=热核灰烬 -item.powder_beryllium.name=铍粉 -item.powder_bismuth.name=铋粉 -item.powder_borax.name=硼砂 -item.powder_boron.name=硼粉 -item.powder_boron_tiny.name=小撮硼粉 -item.powder_bromine.name=溴粉 -item.powder_cadmium.name=镉粉 -item.powder_caesium.name=铯粉 -item.powder_calcium.name=钙粉 -item.powder_cement.name=水泥 -item.powder_cerium.name=铈粉 -item.powder_cerium_tiny.name=小撮铈粉 -item.powder_chlorocalcite.name=氯方解石 -item.powder_chlorophyte.name=叶绿粉 -item.powder_cloud.name=云粉末 -item.powder_co60.name=钴-60粉 -item.powder_coal.name=煤粉 -item.powder_coal_tiny.name=小撮煤粉 -item.powder_cobalt.name=钴粉 -item.powder_cobalt_tiny.name=小撮钴粉 -item.powder_coltan.name=纯钽铁矿 -item.powder_coltan_ore.name=粉碎的钶钽铁矿石 -item.powder_combine_steel.name=CMB钢粉 -item.powder_copper.name=铜粉 -item.powder_cs137.name=铯-137粉 -item.powder_cs137_tiny.name=小撮铯-137粉 -item.powder_daffergon.name=达夫贡粉 -item.powder_desh.name=Desh粉 -item.powder_desh_mix.name=Desh混合物 -item.powder_desh_ready.name=DeshReady混合物 -item.powder_diamond.name=钻石粉 -item.powder_dineutronium.name=双聚中子态素粉 -item.powder_dura_steel.name=高速钢粉 -item.powder_emerald.name=绿宝石粉 -item.powder_euphemium.name=Ep粉 -item.powder_euphemium.desc=粉红色$尝起来像草莓。 -item.powder_fertilizer.name=工业肥料 -item.powder_fire.name=红磷粉 -item.powder_fire.desc=用于多用途炸弹:燃烧弹很有趣! -item.powder_flux.name=助熔剂 -item.powder_gold.name=金粉 -item.powder_i131.name=碘-131粉 -item.powder_i131_tiny.name=小撮碘-131粉 -item.powder_ice.name=冷冻粉 -item.powder_impure_osmiridium.name=不纯铱锇粉 -item.powder_iodine.name=碘粉 -item.powder_iron.name=铁粉 -item.powder_lanthanium.name=镧粉 -item.powder_lanthanium_tiny.name=小撮镧粉 -item.powder_lapis.name=青金石粉 -item.powder_lead.name=铅粉 -item.powder_lignite.name=褐煤粉 -item.powder_limestone.name=石灰石粉 -item.powder_lithium.name=锂粉 -item.powder_lithium_tiny.name=小撮锂粉 -item.powder_magic.name=粉碎的魔法 -item.powder_magnetized_tungsten.name=磁化钨粉 -item.powder_meteorite.name=陨石粉 -item.powder_meteorite_tiny.name=小撮陨石粉 -item.powder_molysite.name=氯化铁 -item.powder_neodymium.name=钕粉 -item.powder_neodymium_tiny.name=小撮钕粉 -item.powder_neptunium.name=镎粉 -item.powder_niobium.name=铌粉 -item.powder_niobium_tiny.name=小撮铌粉 -item.powder_nitan_mix.name=Nitan混合物 -item.powder_paleogenite.name=古近纪岩石粉末 -item.powder_paleogenite_tiny.name=小撮古近纪岩石粉末 -item.powder_plutonium.name=钚粉 -item.powder_poison.name=剧毒粉 -item.powder_poison.desc=用于多用途炸弹:警告:有毒! -item.powder_polonium.name=钋粉 -item.powder_polymer.name=聚合物粉 -item.powder_power.name=能量粉 -item.powder_quartz.name=石英粉 -item.powder_ra226.name=镭-226粉 -item.powder_red_copper.name=紫铜粉 -item.powder_reiium.name=雷恩粉 -item.powder_sawdust.name=锯末 -item.powder_schrabidate.name=Sa酸铁粉 -item.powder_schrabidium.name=Sa326粉 -item.powder_semtex_mix.name=塞姆汀塑胶炸药混合物 -item.powder_sodium.name=钠 -item.powder_spark_mix.name=Spark闪闪奥术混合物 -item.powder_sr90.name=锶-90粉 -item.powder_sr90_tiny.name=小撮锶-90粉末 -item.powder_steel.name=钢粉 -item.powder_steel_tiny.name=小撮钢粉 -item.powder_strontium.name=锶粉 -item.powder_tantalium.name=钽粉 -item.powder_tantalium.desc=“钽” -item.powder_tantalium.desc.P11=又名钽。 -item.powder_tcalloy.name=锝-钢粉 -item.powder_tektite.name=熔融石粉 -item.powder_tennessine.name=Ts粉 -item.powder_thermite.name=铝热剂 -item.powder_thorium.name=钍粉 -item.powder_titanium.name=钛粉 -item.powder_tungsten.name=钨粉 -item.powder_unobtainium.name=难得素粉 -item.powder_uranium.name=铀粉 -item.powder_verticium.name=韦德赛粉 -item.powder_weidanium.name=魏丹粉 -item.powder_xe135.name=氙-135粉 -item.powder_xe135_tiny.name=小撮氙-135粉 -item.powder_yellowcake.name=黄饼 -item.powder_zirconium.name=锆粉 -item.power_net_tool.name=电缆网络分析工具 -item.primer_357.name=.357马格南底火[x24] -item.primer_44.name=.44马格南底火[x24] -item.primer_50.name=大口径底火[x12] -item.primer_9.name=小口径底火[x32] -item.primer_buckshot.name=鹿弹底火[x12] -item.protection_charm.name=守护项链 -item.prototype_kit.name=原型 套件 -item.pudding.name=布丁 -item.pwr_fuel.bfb_am_mix.name=燃料级镅压水堆BFB燃料棒 -item.pwr_fuel.bfb_pu241.name=钚-241压水堆BFB棒 -item.pwr_fuel.hea242.name=HEA-242 高浓缩度镅-242压水堆燃料棒 -item.pwr_fuel.hen237.name=HEN-237 高浓缩度镎-237压水堆燃料棒 -item.pwr_fuel.hep239.name=HEP-239 高浓缩度钚-239压水堆燃料棒 -item.pwr_fuel.hep241.name=HEP-241 高浓缩度钚-241压水堆燃料棒 -item.pwr_fuel.hes326.name=HES-326 高浓缩度Sa326压水堆燃料棒 -item.pwr_fuel.hes327.name=HES-327 高浓缩度Sa327压水堆燃料棒 -item.pwr_fuel.heu233.name=HEU-233 高浓缩度铀-233压水堆燃料棒 -item.pwr_fuel.heu235.name=HEU-235 高浓缩度铀-235压水堆燃料棒 -item.pwr_fuel.mea.name=MEA 中浓缩度镅压水堆燃料棒 -item.pwr_fuel.men.name=MEN 中浓缩度镎压水堆燃料棒 -item.pwr_fuel.mep.name=MEP 中浓缩度钚压水堆燃料棒 -item.pwr_fuel.meu.name=MEU 中浓缩度铀压水堆燃料棒 -item.pwr_fuel.mox.name=MOX 压水堆燃料棒 -item.pwr_fuel_depleted.bfb_am_mix.name=枯竭燃料级镅压水堆BFB燃料棒 -item.pwr_fuel_depleted.bfb_pu241.name=枯竭钚-241压水堆BFB棒 -item.pwr_fuel_depleted.hea242.name=枯竭 HEA-242 高浓缩度镅-242压水堆燃料棒 -item.pwr_fuel_depleted.hen237.name=枯竭 HEN-237 高浓缩度镎-237压水堆燃料棒 -item.pwr_fuel_depleted.hep239.name=枯竭 HEP-239 高浓缩度钚-239压水堆燃料棒 -item.pwr_fuel_depleted.hep241.name=枯竭 HEP-241 高浓缩度钚-241压水堆燃料棒 -item.pwr_fuel_depleted.hes326.name=枯竭 HES-326 高浓缩度Sa326压水堆燃料棒 -item.pwr_fuel_depleted.hes327.name=枯竭 HES-327 高浓缩度Sa327压水堆燃料棒 -item.pwr_fuel_depleted.heu233.name=枯竭 HEU-233 高浓缩度铀-233压水堆燃料棒 -item.pwr_fuel_depleted.heu235.name=枯竭 HEU-235 高浓缩度铀-235压水堆燃料棒 -item.pwr_fuel_depleted.mea.name=枯竭 MEA 中浓缩度镅压水堆燃料棒 -item.pwr_fuel_depleted.men.name=枯竭 MEN 中浓缩度镎压水堆燃料棒 -item.pwr_fuel_depleted.mep.name=枯竭 MEP 中浓缩度钚压水堆燃料棒 -item.pwr_fuel_depleted.meu.name=枯竭 MEU 中浓缩度铀压水堆燃料棒 -item.pwr_fuel_depleted.mox.name=枯竭 MOX 压水堆燃料棒 -item.pwr_fuel_hot.bfb_am_mix.name=高温 燃料级镅压水堆BFB燃料棒 -item.pwr_fuel_hot.bfb_pu241.name=高温 钚-241压水堆BFB棒 -item.pwr_fuel_hot.hea242.name=高温 HEA-242 高浓缩度镅-242压水堆燃料棒 -item.pwr_fuel_hot.hen237.name=高温 HEN-237 高浓缩度镎-237压水堆燃料棒 -item.pwr_fuel_hot.hep239.name=高温 HEP-239 高浓缩度钚-239压水堆燃料棒 -item.pwr_fuel_hot.hep241.name=高温 HEP-241 高浓缩度钚-241压水堆燃料棒 -item.pwr_fuel_hot.hes326.name=高温 HES-326 高浓缩度Sa326压水堆燃料棒 -item.pwr_fuel_hot.hes327.name=高温 HES-327 高浓缩度Sa327压水堆燃料棒 -item.pwr_fuel_hot.heu233.name=高温 HEU-233 高浓缩度铀-233压水堆燃料棒 -item.pwr_fuel_hot.heu235.name=高温 HEU-235 高浓缩度铀-235压水堆燃料棒 -item.pwr_fuel_hot.mea.name=高温 MEA 中浓缩度镅压水堆燃料棒 -item.pwr_fuel_hot.men.name=高温 MEN 中浓缩度镎压水堆燃料棒 -item.pwr_fuel_hot.mep.name=高温 MEP 中浓缩度钚压水堆燃料棒 -item.pwr_fuel_hot.meu.name=高温 MEU 中浓缩度铀压水堆燃料棒 -item.pwr_fuel_hot.mox.name=高温 MOX压水堆燃料棒 -item.quartz_plutonium.name=深成石英 -item.radar_linker.name=雷达连接器 -item.radaway.name=消辐宁 -item.radaway_flush.name=超级消辐宁 -item.radaway_strong.name=强效消辐宁 -item.radx.name=防辐射药 -item.radx.desc=在3分钟内增加0.2(37%)的抗辐射能力 -item.rag.name=布 -item.rag_damp.name=湿布 -item.rag_piss.name=沾有尿的布 -item.rbmk_fuel_balefire.name=RBMK反应堆野火燃料棒 -item.rbmk_fuel_balefire_gold.name=RBMK反应堆激活态金-198燃料棒 -item.rbmk_fuel_drx.name=§cRBMK反应堆F迪伽马粒子燃料棒§r -item.rbmk_fuel_empty.name=空 RBMK反应堆燃料棒 -item.rbmk_fuel_flashlead.name=RBMK反应堆闪光铅燃料棒 -item.rbmk_fuel_hea241.name=HEA-241 RBMK反应堆高浓缩度镅-241燃料棒 -item.rbmk_fuel_hea242.name=HEA-242 RBMK反应堆高浓缩度镅-242燃料棒 -item.rbmk_fuel_heaus.name=HEAus RBMK反应堆高浓缩度奥斯燃料棒 -item.rbmk_fuel_hen.name=HEN RBMK反应堆高浓缩度镎燃料棒 -item.rbmk_fuel_hes.name=HES RBMK反应堆高浓缩度Sa326燃料棒 -item.rbmk_fuel_hep.name=HEP-239 RBMK反应堆高浓缩度钚-239燃料棒 -item.rbmk_fuel_hep241.name=HEP-241 RBMK反应堆高浓缩度钚-241燃料棒 -item.rbmk_fuel_heu233.name=HEU-233 RBMK反应堆高浓缩度铀-233燃料棒 -item.rbmk_fuel_heu235.name=HEU-235 RBMK反应堆高浓缩度铀-235燃料棒 -item.rbmk_fuel_lea.name=LEA RBMK反应堆低浓缩度镅-242燃料棒 -item.rbmk_fuel_leaus.name=LEAus RBMK反应堆低浓缩度奥斯燃料棒 -item.rbmk_fuel_lep.name=LEP RBMK反应堆低浓缩度钚-239燃料棒 -item.rbmk_fuel_les.name=LES RBMK反应堆低浓缩度Sa326燃料棒 -item.rbmk_fuel_mea.name=MEA RBMK反应堆中浓缩度镅-242燃料棒 -item.rbmk_fuel_men.name=MEN RBMK反应堆中浓缩度镎-237燃料棒 -item.rbmk_fuel_mep.name=MEP RBMK反应堆中浓缩度钚-239燃料棒 -item.rbmk_fuel_mes.name=MES RBMK中浓缩度Sa326燃料棒 -item.rbmk_fuel_meu.name=MEU RBMK中浓缩度铀-235燃料棒 -item.rbmk_fuel_mox.name=MOX RBMK反应堆燃料棒 -item.rbmk_fuel_po210be.name=钋210-铍 RBMK反应堆中子源 -item.rbmk_fuel_pu238be.name=钚238-铍 RBMK反应堆中子源 -item.rbmk_fuel_ra226be.name=镭226-铍 RBMK反应堆中子源 -item.rbmk_fuel_thmeu.name=ThMEU RBMK反应堆中浓缩度铀-233导向钍燃料棒 -item.rbmk_fuel_ueu.name=NU RBMK反应堆未浓缩铀燃料棒 -item.rbmk_fuel_zfb_am_mix.name=ZFB 燃料级镅RBMK反应堆燃料棒 -item.rbmk_fuel_zfb_bismuth.name=ZFB 铋RBMK反应堆燃料棒 -item.rbmk_fuel_zfb_pu241.name=ZFB 钚-241RBMK反应堆燃料棒 -item.rbmk_lid.name=RBMK反应堆覆盖层 -item.rbmk_lid_glass.name=RBMK反应堆玻璃覆盖层 -item.rbmk_pellet_balefire.name=野火燃料芯块 -item.rbmk_pellet_balefire_gold.name=激活态金-198燃料芯块 -item.rbmk_pellet_drx.name=§cF迪伽马粒子燃料芯块§r -item.rbmk_pellet_flashlead.name=闪光铅燃料芯块 -item.rbmk_pellet_hea241.name=HEA-241 高浓缩度镅-241料芯块 -item.rbmk_pellet_hea242.name=HEA-242 高浓缩度镅-242燃料芯块 -item.rbmk_pellet_heaus.name=HEAus 高浓缩度奥斯燃料芯块 -item.rbmk_pellet_hen.name=HEN 高浓缩度镎燃料芯块 -item.rbmk_pellet_hep239.name=HEP-239 高浓缩度钚-239燃料芯块 -item.rbmk_pellet_hep241.name=HEP-241 高浓缩度钚-241燃料芯块 -item.rbmk_pellet_heu233.name=HEU-233 高浓缩度铀-233燃料芯块 -item.rbmk_pellet_heu235.name=HEU-235 高浓缩度铀-235燃料芯块 -item.rbmk_pellet_hes.name=HES 高浓缩度Sa-326燃料芯块 -item.rbmk_pellet_lea.name=LEA 低浓缩度镅-242燃料芯块 -item.rbmk_pellet_leaus.name=LEAus 低浓缩度奥斯燃料芯块 -item.rbmk_pellet_lep.name=LEP 低浓缩度钚-239燃料芯块 -item.rbmk_pellet_les.name=LES 低浓缩度Sa-326燃料芯块 -item.rbmk_pellet_mea.name=MEA 中浓缩度镅-242燃料芯块 -item.rbmk_pellet_men.name=MEN 中浓缩度镎-237燃料芯块 -item.rbmk_pellet_mep.name=MEP 中浓缩度钚-239燃料芯块 -item.rbmk_pellet_mes.name=MES 中浓缩度Sa-326燃料芯块 -item.rbmk_pellet_meu.name=MEU 中浓缩度铀-235燃料芯块 -item.rbmk_pellet_mox.name=MOX燃料芯块 -item.rbmk_pellet_po210be.name=钋210-铍 中子源芯块 -item.rbmk_pellet_pu238be.name=钚238-铍 中子源芯块 -item.rbmk_pellet_ra226be.name=镭226-铍 中子源芯块 -item.rbmk_pellet_thmeu.name=ThMEU 浓缩度铀-235导向钍燃料芯块 -item.rbmk_pellet_ueu.name=未浓缩铀燃料芯块 -item.rbmk_pellet_zfb_am_mix.name=ZFB 燃料级镅燃料芯块 -item.rbmk_pellet_zfb_bismuth.name=ZFB 铋燃料芯块 -item.rbmk_pellet_zfb_pu241.name=ZFB 钚-241燃料芯块 -item.rbmk_tool.name=RBMK石墨式反应堆控制台连接装置 -item.rbmk_tool.desc=按住Shift右击RBMK石墨式反应堆保存其坐标,$按住Shift右击控制台以连接反应堆! -item.rbmk_tool.linked=反应堆坐标已记录! -item.rbmk_tool.set=反应堆已连接! -item.reacher.name=钨长臂夹 -item.reactor_core.name=增殖反应堆核心 -item.reactor_sensor.name=反应堆遥感器 -item.record.glass.desc=? ? ? -item.record.lc.desc=Valve - Diabolic Adrenaline Guitar/Lambda Core -item.record.ss.desc=Valve - Sector Sweep -item.record.vc.desc=Valve - Vortal Combat -item.redcoil_capacitor.name=红圈电容器 -item.redstone_depleted.name=不饱和红石粉 -item.redstone_sword.name=红石剑 -item.reer_graar.name=The Reer Graar -item.remote.name=损坏的遥控器 -item.ring_pull.name=拉环 -item.ring_starmetal.name=§9星辉拉环§r -item.robes_boots.name=战地靴 -item.robes_helmet.name=休闲兜帽 -item.robes_legs.name=休闲裤 -item.robes_plate.name=休闲毛衣 -item.rocket_fuel.name=固体燃料[火箭推进剂] -item.rod_empty.name=空燃料棒 -item.rod.lithium.name=锂棒 -item.rod.tritium.name=氚棒 -item.rod.co.name=钴棒 -item.rod.co60.name=钴-60棒 -item.rod.ra226.name=镭-226棒 -item.rod.ac227.name=锕-227棒 -item.rod.th232.name=钍-232棒 -item.rod.thf.name=钍燃料棒 -item.rod.u235.name=铀-235棒 -item.rod.np237.name=镎-237棒 -item.rod.u238.name=铀-238棒 -item.rod.pu238.name=钚-238棒 -item.rod.pu239.name=钚-239棒 -item.rod.rgp.name=反应堆级钚棒 -item.rod.waste.name=核废料棒 -item.rod.lead.name=铅棒 -item.rod.uranium.name=铀棒 -item.rod_dual_empty.name=空双联燃料棒 -item.rod_dual.lithium.name=双联锂棒 -item.rod_dual.tritium.name=双联氚棒 -item.rod_dual.co.name=双联钴棒 -item.rod_dual.co60.name=双联钴-60棒 -item.rod_dual.ra226.name=双联镭-226棒 -item.rod_dual.ac227.name=双联锕-227棒 -item.rod_dual.th232.name=双联钍-232棒 -item.rod_dual.thf.name=双联钍燃料棒 -item.rod_dual.u235.name=双联铀-235棒 -item.rod_dual.np237.name=双联镎-237棒 -item.rod_dual.u238.name=双联铀-238棒 -item.rod_dual.pu238.name=双联钚-238棒 -item.rod_dual.pu239.name=双联钚-239棒 -item.rod_dual.rgp.name=双联反应堆级钚棒 -item.rod_dual.waste.name=双联核废料棒 -item.rod_dual.lead.name=双联铅棒 -item.rod_dual.uranium.name=双联铀棒 -item.rod_quad_empty.name=空四联燃料棒 -item.rod_quad.lithium.name=四联锂棒 -item.rod_quad.tritium.name=四联氚棒 -item.rod_quad.co.name=四联钴棒 -item.rod_quad.co60.name=四联钴-60棒 -item.rod_quad.ra226.name=四联镭-226棒 -item.rod_quad.ac227.name=四联锕-227棒 -item.rod_quad.th232.name=四联钍-232棒 -item.rod_quad.thf.name=四联钍燃料棒 -item.rod_quad.u235.name=四联铀-235棒 -item.rod_quad.np237.name=四联镎-237棒 -item.rod_quad.u238.name=四联铀-238棒 -item.rod_quad.pu238.name=四联钚-238棒 -item.rod_quad.pu239.name=四联钚-239棒 -item.rod_quad.rgp.name=四联反应堆级钚棒 -item.rod_quad.waste.name=四联核废料棒 -item.rod_quad.lead.name=四联铅棒 -item.rod_quad.uranium.name=四联铀棒 -item.rod_australium.name=奥斯棒 -item.rod_balefire.name=野火燃料棒 -item.rod_balefire_blazing.name=炽热的野火燃料棒 -item.rod_coolant.name=燃料棒[冷却液] -item.rod_daffergon.name=达夫贡棒 -item.rod_dual_balefire.name=双联野火燃料棒 -item.rod_dual_balefire_blazing.name=炽热的双联野火燃料棒 -item.rod_dual_coolant.name=双联燃料棒[冷却液] -item.rod_dual_lead.name=双联铅棒 -item.rod_dual_lithium.name=双联锂棒 -item.rod_dual_mox_fuel.name=核反应堆 双联MOX燃料棒 -item.rod_dual_mox_fuel_depleted.name=核反应堆 枯竭MOX燃料棒 -item.rod_dual_neptunium.name=双联镎燃料棒 -item.rod_dual_plutonium.name=双联钚棒 -item.rod_dual_plutonium_fuel.name=核反应堆 双联钚燃料棒 -item.rod_dual_plutonium_fuel_depleted.name=核反应堆 双联枯竭钚燃料棒 -item.rod_dual_polonium.name=双联钋棒 -item.rod_dual_pu238.name=双联钚-238燃料棒 -item.rod_dual_pu239.name=双联钚-239燃料棒 -item.rod_dual_pu240.name=双联钚-240燃料棒 -item.rod_dual_schrabidium.name=双联Sa326燃料棒 -item.rod_dual_schrabidium_fuel.name=核反应堆 双联Sa326燃料棒 -item.rod_dual_schrabidium_fuel_depleted.name=双联枯竭Sa326燃料棒 -item.rod_dual_solinium.name=双联Sa327燃料棒 -item.rod_dual_th232.name=双联钍-232燃料棒 -item.rod_dual_thorium_fuel.name=双联钍燃料棒 -item.rod_dual_thorium_fuel_depleted.name=双联枯竭钍燃料棒 -item.rod_dual_tritium.name=双联氚燃料棒 -item.rod_dual_u233.name=双联铀-233燃料棒 -item.rod_dual_u235.name=双联铀-235燃料棒 -item.rod_dual_u238.name=双联铀-238燃料棒 -item.rod_dual_uranium.name=双联铀棒 -item.rod_dual_uranium_fuel.name=核反应堆 双联铀燃料棒 -item.rod_dual_uranium_fuel_depleted.name=核反应堆 双联枯竭铀燃料棒 -item.rod_dual_waste.name=双联核废料棒 -item.rod_dual_water.name=双联燃料棒[水] -item.rod_euphemium.name=Ep棒 -item.rod_lead.name=铅棒 -item.rod_lithium.name=锂棒 -item.rod_mox_fuel.name=核反应堆 MOX燃料棒 -item.rod_mox_fuel_depleted.name=核反应堆 枯竭MOX燃料棒 -item.rod_neptunium.name=镎燃料棒 -item.rod_of_discord.name=混沌传送杖 -item.rod_plutonium.name=钚棒 -item.rod_plutonium_fuel.name=核反应堆 钚燃料棒 -item.rod_plutonium_fuel_depleted.name=核反应堆 枯竭钚燃料棒 -item.rod_polonium.name=钋棒 -item.rod_pu238.name=钚-238燃料棒 -item.rod_pu239.name=钚-239燃料棒 -item.rod_pu240.name=钚-240燃料棒 -item.rod_quad_balefire.name=四联野火燃料棒 -item.rod_quad_balefire_blazing.name=炽热的四联野火燃料棒 -item.rod_quad_coolant.name=四联燃料棒[冷却液] -item.rod_quad_euphemium.name=枯竭的四联Sa326燃料棒 -item.rod_quad_lead.name=四联铅棒 -item.rod_quad_lithium.name=四联锂棒 -item.rod_quad_mox_fuel.name=核反应堆 四联MOX燃料棒 -item.rod_quad_mox_fuel_depleted.name=核反应堆 枯竭MOX燃料棒 -item.rod_quad_neptunium.name=四联镎燃料棒 -item.rod_quad_plutonium.name=四联钚棒 -item.rod_quad_plutonium_fuel.name=四联钚燃料棒 -item.rod_quad_plutonium_fuel_depleted.name=四联枯竭钚燃料棒 -item.rod_quad_polonium.name=四联钋棒 -item.rod_quad_pu238.name=四联钚-238燃料棒 -item.rod_quad_pu239.name=四联钚-239燃料棒 -item.rod_quad_pu240.name=四联钚-240燃料棒 -item.rod_quad_schrabidium.name=四联Sa326燃料棒 -item.rod_quad_schrabidium_fuel.name=核反应堆 四联Sa326燃料棒 -item.rod_quad_schrabidium_fuel_depleted.name=核反应堆 四联枯竭Sa326燃料棒 -item.rod_quad_solinium.name=四联Sa327燃料棒 -item.rod_quad_th232.name=四联钍-232燃料棒 -item.rod_quad_thorium_fuel.name=核反应堆 四联钍燃料棒 -item.rod_quad_thorium_fuel_depleted.name=四联枯竭钍燃料棒 -item.rod_quad_tritium.name=四联氚燃料棒 -item.rod_quad_u233.name=四联铀-233燃料棒 -item.rod_quad_u235.name=四联铀-235燃料棒 -item.rod_quad_u238.name=四联铀-238燃料棒 -item.rod_quad_uranium.name=四联铀棒 -item.rod_quad_uranium_fuel.name=核反应堆 四联铀燃料棒 -item.rod_quad_uranium_fuel_depleted.name=四联枯竭铀燃料棒 -item.rod_quad_waste.name=四联核废料棒 -item.rod_quad_water.name=四联燃料棒[水] -item.rod_reiium.name=雷恩棒 -item.rod_schrabidium.name=Sa326燃料棒 -item.rod_schrabidium_fuel.name=Sa326燃料棒 -item.rod_schrabidium_fuel_depleted.name=核反应堆 枯竭Sa326燃料棒 -item.rod_solinium.name=Sa327燃料棒 -item.rod_th232.name=钍-232燃料棒 -item.rod_thorium_fuel.name=钍燃料棒 -item.rod_thorium_fuel_depleted.name=核反应堆 枯竭钍燃料棒 -item.rod_tritium.name=氚燃料棒 -item.rod_u233.name=铀-233燃料棒 -item.rod_u235.name=铀-235燃料棒 -item.rod_u238.name=铀-238燃料棒 -item.rod_unobtainium.name=难得素棒 -item.rod_uranium.name=铀棒 -item.rod_uranium_fuel.name=核反应堆 铀燃料棒 -item.rod_uranium_fuel_depleted.name=核反应堆 枯竭铀燃料棒 -item.rod_verticium.name=韦德赛棒 -item.rod_waste.name=核废料棒 -item.rod_water.name=燃料棒[水] -item.rod_weidanium.name=魏丹棒 -item.rod_zirnox_empty.name=空锆诺克斯燃料棒 -item.rod_zirnox_natural_uranium_fuel.name=锆诺克斯 天然铀燃料棒 -item.rod_zirnox_uranium_fuel.name=锆诺克斯 铀燃料棒 -item.rod_zirnox_th232.name=锆诺克斯 钍-232燃料棒 -item.rod_zirnox_thorium_fuel.name=锆诺克斯 钍燃料棒 -item.rod_zirnox_mox_fuel.name=锆诺克斯 MOX燃料棒 -item.rod_zirnox_plutonium_fuel.name=锆诺克斯 钚燃料棒 -item.rod_zirnox_u233_fuel.name=锆诺克斯 铀-233燃料棒 -item.rod_zirnox_u235_fuel.name=锆诺克斯 铀-235燃料棒 -item.rod_zirnox_les_fuel.name=锆诺克斯 LES低浓度Sa326燃料棒 -item.rod_zirnox_lithium.name=锆诺克斯 锂燃料棒 -item.rod_zirnox_tritium.name=锆诺克斯 氚燃料棒 -item.rod_zirnox_zfb_mox.name=锆诺克斯 ZFB MOX燃料棒 -item.rod_zirnox_natural_uranium_fuel_depleted.name=锆诺克斯 枯竭天然铀燃料棒 -item.rod_zirnox_uranium_fuel_depleted.name=锆诺克斯 枯竭铀燃料棒 -item.rod_zirnox_thorium_fuel_depleted.name=锆诺克斯 枯竭钍燃料棒 -item.rod_zirnox_mox_fuel_depleted.name=锆诺克斯 枯竭MOX燃料棒 -item.rod_zirnox_plutonium_fuel_depleted.name=锆诺克斯 枯竭钚燃料棒 -item.rod_zirnox_u233_fuel_depleted.name=锆诺克斯 枯竭铀-233燃料棒 -item.rod_zirnox_u235_fuel_depleted.name=锆诺克斯 枯竭铀-235燃料棒 -item.rod_zirnox_les_fuel_depleted.name=锆诺克斯 枯竭LES低浓度Sa326燃料棒 -item.rod_zirnox_zfb_mox_depleted.name=锆诺克斯 ZFB 枯竭MOX燃料棒 -item.rotor_steel.name=大型钢转子 -item.rpa_boots.name=动力装甲 靴子 -item.rpa_helmet.name=动力装甲 头盔 -item.rpa_legs.name=动力护甲 护腿 -item.rpa_plate.name=动力装甲 胸甲 -item.rtg_unit.name=放射性同位素单元 -item.rubber_gloves.name=厚橡胶手套 -item.rune_blank.name=空白催化剂基质 -item.rune_dagaz.name=平衡催化剂基质 -item.rune_hagalaz.name=粗催化剂基质 -item.rune_isa.name=冷却催化剂基质 -item.rune_jera.name=增殖催化剂基质 -item.rune_thurisaz.name=添加剂催化剂基质 -item.safety_fuse.name=安全保险丝 -item.sat_base.name=卫星基座 -item.sat_chip.name=卫星ID芯片 -item.sat_coord.name=卫星指示器 -item.sat_designator.name=卫星激光指示器 -item.sat_relay.name=卫星雷达中继器 -item.sat_foeq.name=实验型核能PEAF-Mk.I FOEQ Duna探测器 -item.sat_gerald.name=Gerald建筑机器人 -item.sat_head_laser.name=死光发射器 -item.sat_head_mapper.name=高增益光学摄像头 -item.sat_head_radar.name=雷达天线 -item.sat_head_resonator.name=Xenium共振器 -item.sat_head_scanner.name=M700测量扫描仪 -item.sat_interface.name=卫星操作接口 -item.sat_laser.name=轨道死光炮 -item.sat_lunar_miner.name=月球采矿飞船 -item.sat_mapper.name=地表测绘卫星 -item.sat_miner.name=小行星采矿飞船 -item.sat_radar.name=雷达探测卫星 -item.sat_resonator.name=X晶体共振卫星 -item.sat_scanner.name=绘测和资源探测卫星 -item.sawblade.name=锯片 -item.schnitzel_vegan.name=“素”肉排 -item.schrabidium_axe.name=Sa326斧 -item.schrabidium_boots.name=Sa326靴子 -item.schrabidium_hammer.name=Sa326锤 -item.schrabidium_helmet.name=Sa326头盔 -item.schrabidium_hoe.name=Sa326锄 -item.schrabidium_legs.name=Sa326护腿 -item.schrabidium_pickaxe.name=Sa326镐 -item.schrabidium_plate.name=Sa326胸甲 -item.schrabidium_shovel.name=Sa326锹 -item.schrabidium_sword.name=Sa326剑 -item.scrap.name=废料 -item.scrap_nuclear.name=放射性废料 -item.scrap_oil.name=油性废料 -item.scrap_plastic.name=塑料废料 -item.scraps.name=铸造废料 -item.screwdriver.name=螺丝刀 -item.screwdriver.desc=可以用来代替保险丝…… -item.screwdriver_desh.name=Desh螺丝刀 -item.scrumpy.name=一瓶烈性苹果酒 -item.security_boots.name=防护靴子 -item.security_helmet.name=防护头盔 -item.security_legs.name=防护裤 -item.security_plate.name=防护胸甲 -item.seg_10.name=10号连接器 -item.seg_15.name=15号连接器 -item.seg_20.name=20号连接器 -item.serum.name=血清 -item.servo_set.name=伺服装置 -item.servo_set_desh.name=Desh伺服装置 -item.shackles.name=枷锁 -item.shellntm.name=%s壳 -item.shimmer_axe.name=闪耀斧 -item.shimmer_axe_head.name=重型斧头 -item.shimmer_handle.name=强化聚合物手柄 -item.shimmer_head.name=重型锤头 -item.shimmer_sledge.name=闪耀锤 -item.singularity.name=奇点 -item.singularity_counter_resonant.name=可控反振谐奇点 -item.singularity_micro.name=微型奇点 -item.singularity_spark.name=Spark奇点 -item.singularity_super_heated.name=超热共振奇点 -item.siox.name=SiOX抗癌药物 -item.siox.desc=使用石棉的力量逆转间皮瘤! -item.siphon.name=虹吸管 -item.siren_track.name=警报声轨 -item.sliding_blast_door_skin.0.name=滑动防爆门 皮肤:默认 -item.sliding_blast_door_skin.1.name=滑动防爆门 皮肤:变型1 -item.sliding_blast_door_skin.2.name=滑动防爆门 皮肤:变型2 -item.smashing_hammer.name=粉碎锤 -item.solid_fuel.name=固体燃料 -item.solid_fuel_bf.name=固体燃料(野火) -item.solid_fuel_presto.name=Presto固体燃料 -item.solid_fuel_presto_bf.name=Presto固体燃料(野火) -item.solid_fuel_presto_triplet.name=增强型Presto固体燃料 -item.solid_fuel_presto_triplet_bf.name=增强型Presto固体燃料(野火) -item.solinium_core.name=半稳定Sa327核心 -item.solinium_igniter.name=Sa327脉冲点火器 -item.solinium_kit.name=蔚蓝洗礼套件 -item.solinium_propellant.name=Sa327压缩装药 -item.sopsign.name=Sop标志战斧 -item.spawn_duck.name=金蛋 -item.spawn_ufo.name=火星入侵者飞船 -item.spawn_worm.name=机械蠕虫 -item.sphere_steel.name=钢球 -item.spider_milk.name=一瓶蜘蛛奶 -item.spongebob_macaroni.name=海绵宝宝通心粉 -item.stamp_357.name=.357马格南锻模 -item.stamp_44.name=.44马格南锻模 -item.stamp_50.name=大口径弹壳锻模 -item.stamp_9.name=小口径弹壳锻模 -item.stamp_book.printing1.name=书页锻模之一 -item.stamp_book.printing2.name=书页锻模之二 -item.stamp_book.printing3.name=书页锻模之三 -item.stamp_book.printing4.name=书页锻模之四 -item.stamp_book.printing5.name=书页锻模之五 -item.stamp_book.printing6.name=书页锻模之六 -item.stamp_book.printing7.name=书页锻模之七 -item.stamp_book.printing8.name=书页锻模之八 -item.stamp_desh_circuit.name=Desh电路板锻模 -item.stamp_desh_flat.name=Desh锻模 -item.stamp_desh_plate.name=Desh板锻模 -item.stamp_desh_wire.name=Desh电线锻模 -item.stamp_desh_357.name=.357马格南锻模 (Desh) -item.stamp_desh_44.name=.44马格南锻模 (Desh) -item.stamp_desh_50.name=大口径弹壳锻模(Desh) -item.stamp_desh_9.name=小口径弹壳锻模(Desh) -item.stamp_iron_circuit.name=铁质电路板锻模 -item.stamp_iron_flat.name=铁质锻模 -item.stamp_iron_plate.name=铁质板锻模 -item.stamp_iron_wire.name=铁质电线锻模 -item.stamp_obsidian_circuit.name=黑曜石电路板锻模 -item.stamp_obsidian_flat.name=黑曜石锻模 -item.stamp_obsidian_plate.name=黑曜石板锻模 -item.stamp_obsidian_wire.name=黑曜石电线锻模 -item.stamp_steel_circuit.name=钢质电路板锻模 -item.stamp_steel_flat.name=钢质锻模 -item.stamp_steel_plate.name=钢质板锻模 -item.stamp_steel_wire.name=钢质电线锻模 -item.stamp_stone_circuit.name=石质电路板锻模 -item.stamp_stone_flat.name=石质锻模 -item.stamp_stone_plate.name=石质板锻模 -item.stamp_stone_wire.name=石质电线锻模 -item.stamp_titanium_circuit.name=钛质电路板锻模 -item.stamp_titanium_flat.name=钛质锻模 -item.stamp_titanium_plate.name=钛质板锻模 -item.stamp_titanium_wire.name=钛质电线锻模 -item.starmetal_axe.name=星辉斧 -item.starmetal_boots.name=星辉靴子 -item.starmetal_helmet.name=星辉头盔 -item.starmetal_hoe.name=星辉锄 -item.starmetal_legs.name=星辉护腿 -item.starmetal_pickaxe.name=星辉镐 -item.starmetal_plate.name=星辉胸甲 -item.starmetal_shovel.name=星辉锹 -item.starmetal_sword.name=星辉剑 -item.static_sandwich.name=TV三明治 -item.stealth_boy.name=隐形小子 -item.steamsuit_boots.name=蒸汽动力靴子 -item.steamsuit_helmet.name=蒸汽动力呼吸器头盔 -item.steamsuit_legs.name=蒸汽动力护腿 -item.steamsuit_plate.name=蒸汽动力胸甲 -item.steel_axe.name=钢斧 -item.steel_boots.name=钢靴子 -item.steel_helmet.name=钢头盔 -item.steel_hoe.name=钢锄 -item.steel_legs.name=钢护腿 -item.steel_pickaxe.name=钢镐 -item.steel_plate.name=钢胸甲 -item.steel_shovel.name=钢锹 -item.steel_sword.name=钢剑 -item.stick_c4.name=C-4炸药棒 -item.stick_dynamite.name=炸药棒 -item.stick_dynamite_fishing.name=捕鱼炸药棒 -item.stick_semtex.name=塞姆汀塑胶炸药棒 -item.stick_tnt.name=TNT棒 -item.stopsign.name=停车标志战斧 -item.sulfur.name=硫粉 -item.survey_scanner.name=勘测扫描仪 -item.syringe_antidote.name=解毒剂 -item.syringe_awesome.name=米青采彡 -item.syringe_empty.name=空注射器 -item.syringe_metal_empty.name=金属注射器 -item.syringe_metal_medx.name=Med-X抗痛宁 -item.syringe_metal_psycho.name=Psycho"捷特" -item.syringe_metal_stimpak.name=治疗针 -item.syringe_metal_super.name=超级治疗针 -item.syringe_mkunicorn.name=独角兽 -item.syringe_poison.name=毒针 -item.syringe_taint.name=污染水注射液 -item.t45_boots.name=T45动力装甲 靴子 -item.t45_helmet.name=T45动力装甲 头盔 -item.t45_kit.name=T45动力装甲套装 -item.t45_legs.name=T45动力装甲 护腿 -item.t45_plate.name=T45动力装甲 胸甲 -item.tank_steel.name=钢罐 -item.tank_waste_0.name=泥浆容器 -item.tank_waste_1.name=泥浆容器 -item.tank_waste_2.name=泥浆容器 -item.tank_waste_3.name=泥浆容器 -item.tank_waste_4.name=泥浆容器 -item.tank_waste_5.name=泥浆容器 -item.tank_waste_6.name=泥浆容器 -item.tank_waste_7.name=泥浆容器 -item.tank_waste_8.name=泥浆容器 -item.telepad.name=传送部件 -item.tem_flakes.name=Tem薄片 -item.template_folder.name=机器模板文件夹 -item.template_folder.desc=机器模板:纸张+染料$流体识别码:铁板+染料$锻模:空白锻模 $警报声轨:绝缘体+钢板 -item.test_nuke_igniter.name=点火器 -item.test_nuke_propellant.name=推进剂 -item.test_nuke_tier1_bullet.name=铀235弹头[1级] -item.test_nuke_tier1_shielding.name=中子反射器[1级] -item.test_nuke_tier1_target.name=次临界铀235靶丸[1级] -item.test_nuke_tier2_bullet.name=MOX弹头[2级] -item.test_nuke_tier2_shielding.name=中子反射器[2级] -item.test_nuke_tier2_target.name=次临界MOX靶丸[2级] -item.thermo_element.name=热电元件 -item.thermo_unit_empty.name=热量分配装置 -item.thermo_unit_endo.name=吸热装置 -item.thermo_unit_exo.name=放热装置 -item.thruster_large.name=大型推进器 -item.thruster_medium.name=中型推进器 -item.thruster_nuclear.name=LV-N核能火箭发动机 -item.thruster_small.name=小型推进器 -item.titanium_axe.name=钛斧 -item.titanium_boots.name=钛靴子 -item.titanium_filter.name=钛过滤器 -item.titanium_helmet.name=钛头盔 -item.titanium_hoe.name=钛锄 -item.titanium_legs.name=钛护腿 -item.titanium_pickaxe.name=钛镐 -item.titanium_plate.name=钛胸甲 -item.titanium_shovel.name=钛锹 -item.titanium_sword.name=钛剑 -item.toothpicks.name=牙签 -item.train.cargo_tram.name=平板载货电车 -item.trenchmaster_boots.name=Trenchmaster的靴子 -item.trenchmaster_helmet.name=Trenchmaster的头盔 -item.trenchmaster_legs.name=Trenchmaster的护腿 -item.trenchmaster_plate.name=Trenchmaster的胸甲 -item.trinitite.name=玻璃石 -item.tritium_deuterium_cake.name=氚氘饼 -item.tritium_deuterium_cake.desc=不是真正的蛋糕,而是很棒的$聚变燃料! -item.tsar_core.name=沙皇炸弹核心 -item.tsar_kit.name=沙皇炸弹 套件 -item.turbine_titanium.name=钛汽轮转子 -item.turbine_tungsten.name=强化汽轮转子 -item.turret_biometry.name=炮塔遥测卡 -item.turret_cheapo_ammo.name=6x24奇普机枪炮台弹药 -item.turret_chip.name=炮塔AI芯片 -item.turret_control.name=炮塔控制器 -item.turret_cwis_ammo.name=近防系统20mm弹药筒 -item.turret_flamer_ammo.name=火焰炮塔燃料箱 -item.turret_heavy_ammo.name=重型机枪炮塔弹药箱 -item.turret_light_ammo.name=轻型机枪炮塔弹药箱 -item.turret_rocket_ammo.name=火箭炮塔弹药 -item.turret_spitfire_ammo.name=防空炮弹 -item.turret_tau_ammo.name=陶子炮塔铀弹药 -item.twinkie.name=小蛋糕 -item.ullapool_caber.name=阿勒浦长木杆 -item.undefined.name=形态未定义物质 -item.upgrade_5g.name=5G辐射发射器升级 -item.upgrade_afterburn_1.name=一级粉色机器升级 -item.upgrade_afterburn_2.name=二级粉色机器升级 -item.upgrade_afterburn_3.name=三级粉色机器升级 -item.upgrade_centrifuge.name=采矿激光升级-自动离心 -item.upgrade_crystallizer.name=采矿激光升级-自动结晶 -item.upgrade_effect_1.name=一级绿色机器升级 -item.upgrade_effect_2.name=二级绿色机器升级 -item.upgrade_effect_3.name=三级绿色机器升级 -item.upgrade_ejector_1.name=一级弹射速度升级 -item.upgrade_ejector_2.name=二级弹射速度升级 -item.upgrade_ejector_3.name=三级弹射速度升级 -item.upgrade_fortune_1.name=一级紫色机器升级 -item.upgrade_fortune_2.name=二级紫色机器升级 -item.upgrade_fortune_3.name=三级紫色机器升级 -item.upgrade_gc_speed.name=气体离心机超频升级 -item.upgrade_health.name=粉色力场发生器升级 -item.upgrade_muffler.name=消音器 -item.upgrade_nullifier.name=采矿激光升级-自动销毁 -item.upgrade_overdrive_1.name=一级超速传动机器升级 -item.upgrade_overdrive_2.name=二级超速传动机器升级 -item.upgrade_overdrive_3.name=三级超速传动机器升级 -item.upgrade_power_1.name=一级蓝色机器升级 -item.upgrade_power_2.name=二级蓝色机器升级 -item.upgrade_power_3.name=三级蓝色机器升级 -item.upgrade_radius.name=青色力场发生器升级 -item.upgrade_screm.name=采矿激光升级-目 力 科 学 家 -item.upgrade_shredder.name=采矿激光升级-自动粉碎 -item.upgrade_smelter.name=采矿激光升级-自动熔炼 -item.upgrade_speed_1.name=一级红色机器升级 -item.upgrade_speed_2.name=二级红色机器升级 -item.upgrade_speed_3.name=三级红色机器升级 -item.upgrade_stack_1.name=一级堆叠弹出升级 -item.upgrade_stack_2.name=二级堆叠弹出升级 -item.upgrade_stack_3.name=三级堆叠弹出升级 -item.upgrade_template.name=机器升级模板 -item.volcanic_pickaxe.name=熔岩镐 -item.volcanic_axe.name=熔岩斧 -item.wand_d.name=调试魔杖 -item.wand_k.name=建筑魔杖 -item.wand_s.name=结构魔杖 -item.structure_custommachine.name=自定义机器结构输出杖 -item.warhead_buster_large.name=大型掩体破坏弹头 -item.warhead_buster_medium.name=中型掩体破坏弹头 -item.warhead_buster_small.name=小型掩体破坏弹头 -item.warhead_cluster_large.name=大型集束弹头 -item.warhead_cluster_medium.name=中型集束弹头 -item.warhead_cluster_small.name=小型集束弹头 -item.warhead_generic_large.name=大型弹头 -item.warhead_generic_medium.name=中型弹头 -item.warhead_generic_small.name=小型弹头 -item.warhead_incendiary_large.name=大型燃烧弹头 -item.warhead_incendiary_medium.name=中型燃烧弹头 -item.warhead_incendiary_small.name=小型燃烧弹头 -item.warhead_mirv.name=热核弹头 -item.warhead_mirvlet.name=MIRV -item.warhead_nuclear.name=核弹头 -item.warhead_thermo_endo.name=吸热弹头 -item.warhead_thermo_exo.name=放热弹头 -item.warhead_volcano.name=构造弹头 -item.waste_mox.name=枯竭MOX燃料 -item.waste_natural_uranium.name=枯竭天然铀燃料 -item.waste_plate_mox.name=枯竭MOX 板状燃料 -item.waste_plate_pu238be.name=枯竭钚238-铍 板状燃料 -item.waste_plate_pu239.name=枯竭高浓度钚-239 板状燃料 -item.waste_plate_ra226be.name=枯竭镭226-铍 板状燃料 -item.waste_plate_sa326.name=枯竭高浓度Sa326 板状燃料 -item.waste_plate_u233.name=枯竭高浓度铀-233 板状燃料 -item.waste_plate_u235.name=枯竭高浓度铀-235 板状燃料 -item.waste_plutonium.name=枯竭钚燃料 -item.waste_schrabidium.name=枯竭Sa326燃料 -item.waste_thorium.name=枯竭钍燃料 -item.waste_u235.name=枯竭铀-235燃料 -item.waste_u233.name=枯竭铀-233燃料 -item.waste_uranium.name=枯竭铀燃料 -item.waste_zfb_mox.name=枯竭的ZFB MOX燃料 -item.watch.name=破旧怀表 -item.watch.desc=一块蓝色的小怀表$玻璃上有一些裂缝,还有一些碎片不见了$指针定格在了2点34分。 -item.watz_pellet.boron.name=硼吸收靶丸 -item.watz_pellet.du.name=贫铀吸收靶丸 -item.watz_pellet.hes.name=HES Watz靶丸 -item.watz_pellet.lead.name=铅吸收靶丸 -item.watz_pellet.les.name=LES Watz靶丸 -item.watz_pellet.mes.name=MES Watz靶丸 -item.watz_pellet.mep.name=MEP Watz靶丸 -item.watz_pellet.meu.name=MEU Watz靶丸 -item.watz_pellet.nqd.name=浓缩硅岩金属 Watz靶丸 -item.watz_pellet.nqr.name=硅岩金属化合物 Watz靶丸 -item.watz_pellet.hen.name=HEN Watz靶丸 -item.watz_pellet.schrabidium.name=Sa326 Watz靶丸 -item.watz_pellet_depleted.boron.name=硼吸收靶丸(枯竭) -item.watz_pellet_depleted.du.name=贫铀吸收靶丸(枯竭) -item.watz_pellet_depleted.hes.name=HES Watz靶丸(枯竭) -item.watz_pellet_depleted.lead.name=铅吸收靶丸(枯竭) -item.watz_pellet_depleted.les.name=LES Watz靶丸(枯竭) -item.watz_pellet_depleted.mes.name=MES Watz靶丸(枯竭) -item.watz_pellet_depleted.mep.name=MEP Watz靶丸(枯竭) -item.watz_pellet_depleted.meu.name=MEU Watz靶丸(枯竭) -item.watz_pellet_depleted.nqd.name=浓缩硅岩金属 Watz靶丸(枯竭) -item.watz_pellet_depleted.nqr.name=硅岩金属化合物 Watz靶丸(枯竭) -item.watz_pellet_depleted.hen.name=HEN Watz靶丸(枯竭) -item.watz_pellet_depleted.schrabidium.name=Sa326 Watz靶丸(枯竭) -item.weapon_bat.name=板球棒 -item.weapon_bat_nail.name=板上钉钉 -item.weapon_golf_club.name=黑手党快乐杆 -item.weapon_pipe_lead.name=手动覆盖控制 -item.weapon_pipe_rusty.name=姿态调节器 -item.weapon_saw.name=肢解骨锯 -item.weaponized_starblaster_cell.name=§c星际爆能电池§r -item.wd40.name=VT-40 -item.wild_p.name=野生珀伽索斯干威士忌 -item.wings_limp.name=无力之翼 -item.wings_murk.name=暗黑之翼 -item.wire_advanced_alloy.name=超导体 -item.wire_aluminium.name=铝线 -item.wire_copper.name=铜线 -item.wire_dense.name=致密%s线 -item.wire_fine.name=%s线 -item.wire_gold.name=金线 -item.wire_magnetized_tungsten.name=4000K高温超导体 -item.wire_red_copper.name=紫铜线 -item.wire_schrabidium.name=Sa326线 -item.wire_tungsten.name=钨线 -item.wiring_red_copper.name=电缆卷 -item.wood_gavel.name=木槌 -item.wrench.name=管道扳手 -item.wrench_archineer.name=Archineer扳手 -item.wrench_flipped.name=刺刀扳手 -item.xanax.name=NAXA 抗迪伽马药物 -item.xanax.desc=移除500mDRX迪伽马辐射 -item.zirconium_legs.name=锆质护腿 - -itemGroup.tabBlocks=HBM 矿石和方块 -itemGroup.tabConsumable=HBM 食物和装备 -itemGroup.tabControl=HBM 机器项目和燃料 -itemGroup.tabMachine=HBM 机器 -itemGroup.tabMissile=HBM 导弹和卫星 -itemGroup.tabNuke=HBM 炸弹 -itemGroup.tabParts=HBM 资源和零件 -itemGroup.tabTemplate=HBM 模板 -itemGroup.tabTest=HBM的核科技mod测试项[S166、Bismarck、Nukesteve、牛牛联合汉化] -itemGroup.tabWeapon=HBM 武器和炮塔 - -potion.hbm_bang=! ! ! -potion.hbm_death=重度突变 -potion.hbm_lead=铅中毒 -potion.hbm_mutation=变异 -potion.hbm_phosphorus=磷烧伤 -potion.hbm_potionsickness=药水病 -potion.hbm_radaway=消辐宁 -potion.hbm_radiation=辐射 -potion.hbm_radx=抗辐射 -potion.hbm_stability=稳定 -potion.hbm_taint=污染 -potion.hbm_telekinesis=! ! ! - -radar.clearMap=清空地图 -radar.detectMissiles=探测导弹 -radar.detectPlayers=探测玩家 -radar.detectShells=探测炮弹 -radar.redMode=红石控制模式$开启: 基于导弹距离输出红石信号$关闭: 基于导弹级别输出红石信号 -radar.showMap=显示地图 -radar.smartMode=智能模式$有红石信号时忽略上升段的导弹 -radar.toggleGui=切换视图 - -radar.target.abm=反弹道导弹 -radar.target.custom10=10号定制导弹 -radar.target.custom1015=10/15号定制导弹 -radar.target.custom15=15号定制导弹 -radar.target.custom1520=15/20号定制导弹 -radar.target.custom20=20号定制导弹 -radar.target.doomsday=末日导弹 -radar.target.shuttle=万金罗宾航天飞机 -radar.target.tier0=0级导弹 -radar.target.tier1=1级导弹 -radar.target.tier2=2级导弹 -radar.target.tier3=3级导弹 -radar.target.tier4=4级导弹 - -rbmk.heat=柱体温度: %s -rbmk.boiler.water=供水速率: %s / %s -rbmk.boiler.steam=蒸汽产生速率: %s / %s -rbmk.boiler.type=蒸汽压缩等级: %s -rbmk.console.assign=将选定列分配给屏幕#%s -rbmk.console.none=Off -rbmk.console.col_temp=监测平均柱温 -rbmk.console.rod_extraction=监控平均控制棒抽出量 -rbmk.console.fuel_depletion=监测平均燃料消耗 -rbmk.console.fuel_poison=监测平均氙中毒程度 -rbmk.console.fuel_temp=监测平均燃料温度 -rbmk.control.level=%s -rbmk.control.red=§c红色组 -rbmk.control.yellow=§e黄色组 -rbmk.control.green=§a绿色组 -rbmk.control.blue=§1蓝色组 -rbmk.control.purple=§5紫色组 -rbmk.moderated=慢化剂 -rbmk.rod.depletion=燃料消耗: %s -rbmk.rod.xenon=氙元素堆积程度: %s -rbmk.rod.coreTemp=核心温度: %s -rbmk.rod.skinTemp=表面温度: %s / %s -rbmk.screen.core=核心:%s -rbmk.screen.depletion=消耗: %s -rbmk.screen.rod=控制:%s -rbmk.screen.temp=温度:%s -rbmk.screen.xenon=氙:%s - -shape.billet=坯料 -shape.blade=扇片 -shape.blades=粉碎机刀片 -shape.block=块 -shape.dust=粉末 -shape.dusttiny=小撮粉末 -shape.hull_big=大型外壳 -shape.hull_small=小型外壳 -shape.ingot=锭 -shape.nugget=粒 -shape.quantum=量子 -shape.quart=四分之一块 -shape.ntmpipe=管 -shape.plate=板 -shape.plateTriple=铸造板 -shape.shell=外壳 -shape.stamp=锻模 -shape.wireFine=线 -shape.wireDense=致密线 -shape.wiresDense=致密线 - -soundCategory.ntmMachines=NTM机器 - -tile.absorber.name=辐射吸收器 -tile.absorber_green.name=高级辐射吸收器 -tile.absorber_pink.name=精英辐射吸收器 -tile.absorber_red.name=增强型辐射吸收器 -tile.acid_block.name=酸 -tile.ams_base.name=AMS基座 [开发中] -tile.ams_emitter.name=AMS发射极 [开发中] -tile.ams_limiter.name=AMS稳能器 [开发中] -tile.ancient_scrap.name=古代废金属 -tile.anvil_arsenic_bronze.name=砷青铜砧 -tile.anvil_bismuth.name=铋砧 -tile.anvil_bismuth_bronze.name=铋青铜砧 -tile.anvil_desh.name=Desh砧 -tile.anvil_dnt.name=双聚中子态素砧 -tile.anvil_ferrouranium.name=铀铁合金砧 -tile.anvil_iron.name=铁砧 -tile.anvil_lead.name=铅砧 -tile.anvil_meteorite.name=陨石砧 -tile.anvil_murky.name=暗黑砧 -tile.anvil_osmiridium.name=铱锇合金砧 -tile.anvil_saturnite.name=土星砧 -tile.anvil_schrabidate.name=Sa酸铁砧 -tile.anvil_starmetal.name=星辉金属砧 -tile.anvil_steel.name=钢砧 -tile.ash_digamma.name=灰烬 -tile.asphalt.name=沥青 -tile.asphalt_stairs.name=沥青楼梯 -tile.asphalt_light.name=发光沥青 -tile.barbed_wire.name=带刺铁丝网 -tile.barbed_wire_acid.name=腐蚀铁丝网 -tile.barbed_wire_fire.name=烈焰铁丝网 -tile.barbed_wire_poison.name=剧毒铁丝网 -tile.barbed_wire_ultradeath.name=辐射铁丝网 -tile.barbed_wire_wither.name=凋零铁丝网 -tile.barrel_antimatter.name=磁约束反物质容器 -tile.barrel_corroded.name=被腐蚀的桶 -tile.barrel_iron.name=铁桶 -tile.barrel_plastic.name=安全桶 -tile.barrel_steel.name=钢桶 -tile.barrel_tcalloy.name=锝-钢合金桶 -tile.barricade.name=沙袋 -tile.basalt.name=玄武岩 -tile.basalt_brick.name=玄武岩砖 -tile.basalt_polished.name=抛光玄武岩 -tile.basalt_smooth.name=平滑玄武岩 -tile.basalt_tiles.name=玄武岩砖 -tile.blast_door.name=防爆闸门 -tile.block_actinium.name=锕块 -tile.block_advanced_alloy.name=高级合金块 -tile.block_aluminium.name=铝块 -tile.block_asbestos.name=石棉块 -tile.block_australium.name=奥斯块 -tile.block_bakelite.name=电木块 -tile.block_beryllium.name=铍块 -tile.block_bismuth.name=铋块 -tile.block_boron.name=硼块 -tile.block_c4.name=C-4块 -tile.block_cadmium.name=镉块 -tile.block_cap_fritz.name=弗里茨瓶盖方块 -tile.block_cap_korl.name=Korl瓶盖方块 -tile.block_cap_nuka.name=核子可乐瓶盖方块 -tile.block_cap_quantum.name=樱桃味核子可乐瓶盖方块 -tile.block_cap_rad.name=辐射 S~核子可乐瓶盖方块 -tile.block_cap_sparkle.name=核子可乐瓶盖方块 -tile.block_cap_star.name=夕阳沙士星星瓶盖方块 -tile.block_cap_sunset.name=夕阳沙士瓶盖方块 -tile.block_cdalloy.name=镉钢块 -tile.block_cobalt.name=钴块 -tile.block_coke.coal.name=煤焦炭块 -tile.block_coke.lignite.name=褐煤焦炭块 -tile.block_coke.petroleum.name=石油焦炭块 -tile.block_coltan.name=钶钽铁矿块 -tile.block_combine_steel.name=CMB钢块 -tile.block_copper.name=铜块 -tile.block_corium.name=熔融堆芯冷凝物 -tile.block_corium_cobble.name= 熔融物凝固石 -tile.block_daffergon.name=达夫贡块 -tile.block_desh.name=Desh块 -tile.block_dineutronium.name=双聚中子态素块 -tile.block_dura_steel.name=强化高速钢块 -tile.block_electrical_scrap.name=电子废料块 -tile.block_euphemium.name=Ep块 -tile.block_euphemium_cluster.name=Ep刻蚀Sa326团 -tile.block_fallout.name=辐射尘块 -tile.block_fiberglass.name=玻璃纤维卷 -tile.block_fluorite.name=氟石块 -tile.block_foam.name=泡沫 -tile.block_insulator.name=绝缘卷 -tile.block_graphite.name=石墨块 -tile.block_graphite_detector.name=反应堆中子探测棒 -tile.block_graphite_drilled.name=钻孔石墨 -tile.block_graphite_fuel.name=反应堆燃料 -tile.block_graphite_lithium.name=反应堆锂燃料 -tile.block_graphite_plutonium.name=反应堆燃料(增殖) -tile.block_graphite_rod.name=反应堆控制棒 -tile.block_graphite_source.name=反应堆中子源 -tile.block_graphite_tritium.name=反应堆锂燃料(增殖) -tile.block_lead.name=铅块 -tile.block_lanthanium.name=镧块 -tile.block_lithium.name=锂块 -tile.block_magnetized_tungsten.name=磁化钨块 -tile.block_meteor.name=陨石块 -tile.block_meteor_broken.name=破碎的陨石块 -tile.block_meteor_cobble.name=陨石 -tile.block_meteor_molten.name=高温陨石 -tile.block_meteor_treasure.name=宝藏陨石块 -tile.block_mox_fuel.name=MOX燃料块 -tile.block_neptunium.name=镎块 -tile.block_niter.name=硝石块 -tile.block_niter_reinforced.name=硝石加固块 -tile.block_niobium.name=铌块 -tile.block_plutonium.name=钚块 -tile.block_plutonium_fuel.name=钚燃料块 -tile.block_polonium.name=钋块 -tile.block_polymer.name=聚合物块 -tile.block_pu_mix.name=反应堆级钚块 -tile.block_pu238.name=钚-238块 -tile.block_pu239.name=钚-239块 -tile.block_pu240.name=钚-240块 -tile.block_ra226.name=镭-226块 -tile.block_red_copper.name=紫铜块 -tile.block_red_phosphorus.name=红磷块 -tile.block_reiium.name=雷恩块 -tile.block_rubber.name=橡胶块 -tile.block_schrabidate.name=Sa酸铁块 -tile.block_schrabidium.name=Sa326块 -tile.block_schrabidium_cluster.name=Sa326团 -tile.block_schrabidium_fuel.name=Sa326燃料块 -tile.block_schraranium.name=低丰度Sa326块 -tile.block_scrap.name=废品块 -tile.block_semtex.name=塞姆汀块 -tile.block_slag.name=矿渣块 -tile.block_smore.name=S'more块 -tile.block_solinium.name=Sa327块 -tile.block_starmetal.name=星辉块 -tile.block_steel.name=钢块 -tile.block_sulfur.name=硫磺块 -tile.block_tantalium.name=钽块 -tile.block_tcalloy.name=锝钢块 -tile.block_thorium.name=钍块 -tile.block_thorium_fuel.name=钍燃料块 -tile.block_titanium.name=钛块 -tile.block_trinitite.name=玻璃石块 -tile.block_tritium.name=氚单元块 -tile.block_tungsten.name=钨块 -tile.block_u233.name=铀-233块 -tile.block_u235.name=铀-235块 -tile.block_u238.name=铀-238块 -tile.block_unobtainium.name=难得素块 -tile.block_uranium.name=铀块 -tile.block_uranium_fuel.name=铀燃料块 -tile.block_verticium.name=韦德赛块 -tile.block_waste.name=核废料块 -tile.block_waste_painted.name=带标志的核废料块 -tile.block_waste_vitrified.name=玻璃化核废料块 -tile.block_weidanium.name=魏丹块 -tile.block_white_phosphorus.name=白磷块 -tile.block_yellowcake.name=黄饼块 -tile.block_zirconium.name=锆块 -tile.boat.name=船 -tile.bobblehead.name=Bob的魔法娃娃 -tile.bomb_multi.name=多功能炸弹 -tile.bomber.name=坠毁轰炸机 -tile.book_guide.name=HBM的核科技mod手册[遗留] -tile.boxcar.name=车厢 -tile.brick_asbestos.name=石棉砖块 -tile.brick_asbestos_stairs.name=石棉砖楼梯 -tile.brick_compound.name=复合网格砖块 -tile.brick_compound_stairs.name=复合网格砖楼梯 -tile.brick_concrete.name=混凝土砖块 -tile.brick_concrete_stairs.name=混凝土砖楼梯 -tile.brick_concrete_broken.name=破碎混凝土砖块 -tile.brick_concrete_broken_stairs.name=破碎混凝土砖楼梯 -tile.brick_concrete_cracked.name=开裂混凝土砖块 -tile.brick_concrete_cracked_stairs.name=开裂混凝土砖楼梯 -tile.brick_concrete_marked.name=标记混凝土砖 -tile.brick_concrete_mossy.name=苔混凝土砖块 -tile.brick_concrete_mossy_stairs.name=苔混凝土砖楼梯 -tile.brick_ducrete.name=高密度贫铀混凝土砖块 -tile.brick_ducrete_stairs.name=高密度贫铀混凝土砖楼梯 -tile.brick_dungeon.name=硒铜砖 -tile.brick_dungeon_circle.name=圆环硒铜块 -tile.brick_dungeon_flat.name=硒铜块 -tile.brick_dungeon_tile.name=硒铜瓦 -tile.brick_fire.name=耐火砖块 -tile.brick_fire_stairs.name=耐火砖楼梯 -tile.brick_jungle.name=硫砷钢砖块 -tile.brick_jungle_circle.name=机械师之环 -tile.brick_jungle_cracked.name=开裂硫砷钢砖块 -tile.brick_jungle_fragile.name=粉碎硫砷钢砖块 -tile.brick_jungle_glyph.name=硫砷钢石雕砖块 -tile.brick_jungle_lava.name=岩浆硫砷钢砖块 -tile.brick_jungle_mystic.name=奥术硫砷钢砖块 -tile.brick_jungle_ooze.name=放射硫砷钢砖块 -tile.brick_jungle_trap.name=陷阱硫砷钢砖块 -tile.brick_light.name=轻质砖块 -tile.brick_light_stairs.name=轻质砖楼梯 -tile.brick_obsidian.name=黑曜石砖块 -tile.brick_obsidian_stairs.name=黑曜石砖楼梯 -tile.brick_red.name=红房间砖块 -tile.brick_slab.brick_asbestos.name=石棉砖台阶 -tile.brick_slab.brick_compound.name=复合网格砖台阶 -tile.brick_slab.brick_fire.name=耐火砖台阶 -tile.brick_slab.brick_light.name=轻质砖台阶 -tile.brick_slab.brick_obsidian.name=黑曜石砖台阶 -tile.brick_slab.reinforced_brick.name=强化石头台阶 -tile.brick_slab.reinforced_stone.name=致密石头台阶 -tile.broadcaster_pc.name=腐败广播 -tile.burning_earth.name=燃烧草地 -tile.c4.name=C-4 -tile.cable_detector.name=红石电源开关 -tile.cable_diode.name=紫铜二极管 -tile.cable_switch.name=电源开关 -tile.capacitor_bus.name=电容总线 -tile.capacitor_bus.desc=电容器的输出方块$可以连成一条直线 -tile.capacitor_copper.name=铜电容 -tile.capacitor_gold.name=金电容 -tile.capacitor_niobium.name=铌电容 -tile.capacitor_schrabidate.name=Sa酸铁电容 -tile.capacitor_tantalium.name=钽电容 -tile.capacitor.desc=输入:顶部$输出:底部,通过电容总线 -tile.charge_c4.name=炸药包 -tile.charge_dynamite.name=定时炸弹 -tile.charge_miner.name=定时采矿炸药 -tile.charge_semtex.name=塞姆汀采矿炸药 -tile.charger.name=充电站 -tile.cheater_virus.name=冻结Ep -tile.cheater_virus_seed.name=不稳定Ep Schrabide块 -tile.chimney_brick.name=烟囱 -tile.chimney_brick.desc=使用排气管连接污染机器$减少75%的污染排放 -tile.chimney_industrial.name=工业烟囱 -tile.chimney_industrial.desc=使用排气管连接污染机器$减少90%的污染排放 -tile.chlorine_gas.name=氯气 -tile.cluster_aluminium.name=铝矿簇 -tile.cluster_copper.name=铜矿簇 -tile.cluster_depth_iron.name=深层铁矿簇 -tile.cluster_depth_titanium.name=深层钛矿簇 -tile.cluster_depth_tungsten.name=深层钨矿簇 -tile.cluster_iron.name=铁矿簇 -tile.cluster_titanium.name=钛矿簇 -tile.custom_machine_anchor.name=自定义机器结构定位锚 -tile.cm_block.alloy.name=高级合金机器外壳 -tile.cm_block.desh.name=Desh机器外壳 -tile.cm_block.steel.name=钢制机器外壳 -tile.cm_block.tcalloy.name=锝钢机器外壳 -tile.cm_circuit.aluminium.name=一级电路块 -tile.cm_circuit.copper.name=二级电路块 -tile.cm_circuit.gold.name=四级电路块 -tile.cm_circuit.red_copper.name=三级电路块 -tile.cm_circuit.schrabidium.name=五级电路块 -tile.cm_engine.bismuth.name=铋电机组 -tile.cm_engine.desh.name=Desh电机组 -tile.cm_engine.standard.name=电机组 -tile.cm_flux.name=中子接收器 -tile.cm_heat.name=热量接收器 -tile.cm_port.alloy.name=高级合金端口 -tile.cm_port.desh.name=Desh端口 -tile.cm_port.steel.name=钢制端口 -tile.cm_port.tcalloy.name=锝钢端口 -tile.cm_sheet.alloy.name=高级合金建筑板 -tile.cm_sheet.desh.name=Desh建筑板 -tile.cm_sheet.steel.name=钢建筑板 -tile.cm_sheet.tcalloy.name=锝钢建筑板 -tile.cm_tank.alloy.name=高级合金储罐 -tile.cm_tank.desh.name=Desh储罐 -tile.cm_tank.steel.name=钢制储罐 -tile.cm_tank.tcalloy.name=锝钢储罐 -tile.cmb_brick.name=CMB钢瓦块 -tile.cmb_brick_reinforced.name=加固CMB钢砖块 -tile.compact_launcher.name=紧凑型发射台 -tile.concrete.name=混凝土瓦块 -tile.concrete_asbestos.name=石棉混凝土 -tile.concrete_asbestos_stairs.name=石棉混凝土楼梯 -tile.concrete_brick_slab.brick_concrete.name=混凝土砖台阶 -tile.concrete_brick_slab.brick_concrete_broken.name=破碎混凝土砖台阶 -tile.concrete_brick_slab.brick_concrete_cracked.name=开裂混凝土砖台阶 -tile.concrete_brick_slab.brick_concrete_mossy.name=苔混凝土砖台阶 -tile.concrete_brick_slab.brick_ducrete.name=高密度贫铀混凝土砖台阶 -tile.concrete_colored.black.name=黑色混凝土 -tile.concrete_colored.blue.name=蓝色混凝土 -tile.concrete_colored.brown.name=棕色混凝土 -tile.concrete_colored.cyan.name=青色混凝土 -tile.concrete_colored.gray.name=灰色混凝土 -tile.concrete_colored.green.name=绿色混凝土 -tile.concrete_colored.lightBlue.name=淡蓝色混凝土 -tile.concrete_colored.lime.name=黄绿色混凝土 -tile.concrete_colored.magenta.name=品红色混凝土 -tile.concrete_colored.orange.name=橙色混凝土 -tile.concrete_colored.pink.name=粉色混凝土 -tile.concrete_colored.purple.name=紫色混凝土 -tile.concrete_colored.red.name=红色混凝土 -tile.concrete_colored.silver.name=淡灰色混凝土 -tile.concrete_colored.white.name=白色混凝土 -tile.concrete_colored.yellow.name=黄色混凝土 -tile.concrete_colored_ext.bronze.name=建筑工指定混凝土-青铜板材 -tile.concrete_colored_ext.hazard.name=建筑工指定混凝土-危险地带 -tile.concrete_colored_ext.indigo.name=建筑工指定混凝土-深靛蓝 -tile.concrete_colored_ext.machine.name=建筑工指定混凝土-工业风 -tile.concrete_colored_ext.machine_stripe.name=建筑工指定混凝土-工业条纹 -tile.concrete_colored_ext.pink.name=建筑工指定混凝土-猛男粉 -tile.concrete_colored_ext.purple.name=建筑工指定混凝土-神秘紫 -tile.concrete_colored_ext.sand.name=建筑工指定混凝土-沙漠风暴 -tile.concrete_pillar.name=钢筋混凝土柱 -tile.concrete_slab.asphalt.name=沥青台阶 -tile.concrete_slab.concrete.name=混凝土瓦块台阶 -tile.concrete_slab.concrete_asbestos.name=石棉混凝土台阶 -tile.concrete_slab.concrete_smooth.name=混凝土台阶 -tile.concrete_slab.ducrete.name=高密度贫铀混凝土瓷砖台阶 -tile.concrete_slab.ducrete_smooth.name=高密度贫铀混凝土台阶 -tile.concrete_smooth.name=混凝土 -tile.concrete_smooth_stairs.name=混凝土楼梯 -tile.concrete_stairs.name=混凝土瓦块楼梯 -tile.concrete_super.name=über混凝土 -tile.concrete_super_broken.name=发霉的碎片 -tile.conveyor.name=输送带 -tile.conveyor.desc=移动掉在上面的物品$可以用螺丝刀顺时针旋转$用螺丝刀按住Shift键单击以转弯 -tile.conveyor_chute.name=输送带滑槽 -tile.conveyor_chute.desc=向下移动物品$最底部的滑槽将起到普通传送带的作用 -tile.conveyor_double.name=双轨道输送带 -tile.conveyor_double.desc=移动掉在上面的物品$可以用螺丝刀顺时针旋转$用螺丝刀按住Shift键单击以转弯 -tile.conveyor_express.name=快速输送带 -tile.conveyor_express.desc=快速移动掉在上面的物品$可以用螺丝刀顺时针旋转$用螺丝刀按Shift键转弯 -tile.conveyor_lift.name=垂直输送带 -tile.conveyor_lift.desc=向上移动物品$至少需要两个块才能正常工作 -tile.conveyor_triple.name=三轨道输送带 -tile.conveyor_triple.desc=移动掉在上面的物品$可以用螺丝刀顺时针旋转$用螺丝刀按住Shift键单击以转弯 -tile.corium_block.name=堆芯熔融物 -tile.crane_boxer.name=输送带打包机 -tile.crane_boxer.desc=将可配置数量的堆叠装载到沿着传送带移动的箱子中$用螺丝刀右键单击以设置输入侧$用螺丝起子平移单击以设置输出侧$单击两次以设置相反侧 -tile.crane_extractor.name=输送带提取器 -tile.crane_extractor.desc=从库存中取出物品并将其放置在传送带上$最多有9个带黑白名单的过滤器插槽$用螺丝刀右键单击以设置输出侧$手持螺丝刀按住Shift单击以设置输入侧$单击两次以设置相反侧 -tile.crane_grabber.name=输送带抓斗 -tile.crane_grabber.desc=从经过的输送带中取出物品并将其放入容器$将只从最近的通道中取出物品$最多有9个带黑白名单的过滤槽$用螺丝刀右键单击以设置输入侧$用螺丝起子平移单击以设置输出侧$单击两次以设置对侧 -tile.crane_inserter.name=输送带导入器 -tile.crane_partitioner.name=酸化器输入分隔器 -tile.crane_partitioner.desc=接受并存储至多9种输入矿物酸化器的物品$并在物品数量达到配方要求时将其输出$无配方物品也会被存储,需要从侧面导出 -tile.crane_inserter.desc=接受输送带上的物品并将其放入容器中$用螺丝刀右键单击以设置输入侧$用螺丝刀单击以设置输出侧$单击两次以设置相反侧 -tile.crane_router.name=输送带分拣机 -tile.crane_router.desc=根据定义的条件对项目排序$侧面可以定义为黑名单、白名单或通配符$只有在没有其他筛选器匹配的情况下才选择通配符侧面 -tile.crane_splitter.name=输送带分离器 -tile.crane_splitter.desc=将物品分开并均匀堆放在两条传送带上$其本身就是一条传送带,因此它可以直接输入到插入器或分拣器中 -tile.crane_unboxer.name=输送带解包机 -tile.crane_unboxer.desc=接收打包好的物品并解包$用螺丝刀右键单击以设置输出侧$手持螺丝刀按住Shift单击以设置输入侧$单击两次以设置相反侧 -tile.crashed_bomb.name=哑弹 -tile.crate.name=补给箱 -tile.crate_ammo.name=星辉补给箱 -tile.crate_can.name=罐头补给箱 -tile.crate_desh.name=Desh板条箱 -tile.crate_iron.name=铁箱 -tile.crate_jungle.name=硫砷钢箱 -tile.crate_lead.name=危险品补给箱 -tile.crate_metal.name=机器补给箱 -tile.crate_red.name=红色补给箱 -tile.crate_steel.name=钢箱 -tile.crate_template.name=模板箱 -tile.crate_tungsten.name=钨箱 -tile.crate_weapon.name=武器补给箱 -tile.crystal_hardened.name=硬化黑水晶 -tile.crystal_pulsar.name=脉动水晶 -tile.crystal_virus.name=黑水晶 -tile.deco_aluminium.name=铝装饰块 -tile.deco_asbestos.name=石棉瓦 -tile.deco_beryllium.name=铍装饰块 -tile.deco_computer.ibm_300pl.name=IBM个人电脑300PL -tile.deco_emitter.name=装饰性发光体 -tile.deco_crt.name=老CRT显示屏 -tile.deco_lead.name=铅装饰块 -tile.deco_rbmk.name=RBMK装饰块 -tile.deco_rbmk_smooth.name=平滑RBMK装饰块 -tile.deco_red_copper.name=紫铜装饰块 -tile.deco_pipe.name=钢制管道 -tile.deco_pipe_rusted.name=生锈的钢制管道 -tile.deco_pipe_green.name=绿色钢制管道 -tile.deco_pipe_green_rusted.name=生锈的绿色钢制管道 -tile.deco_pipe_red.name=红色钢制管道 -tile.deco_pipe_marked.name=气体管道 -tile.deco_pipe_framed.name=钢制管道 (镶框) -tile.deco_pipe_framed_rusted.name=生锈的钢制管道 (镶框) -tile.deco_pipe_framed_green.name=绿色钢制管道 (镶框) -tile.deco_pipe_framed_green_rusted.name=生锈的绿色钢制管道 (镶框) -tile.deco_pipe_framed_red.name=红色钢制管道 (镶框) -tile.deco_pipe_framed_marked.name=气体管道 (镶框) -tile.deco_pipe_quad.name=钢制管道束 -tile.deco_pipe_quad_rusted.name=生锈的钢制管道束 -tile.deco_pipe_quad_green.name=绿色钢制管道束 -tile.deco_pipe_quad_green_rusted.name=生锈的绿色钢制管道束 -tile.deco_pipe_quad_red.name=红色钢制管道束 -tile.deco_pipe_quad_marked.name=气体管道束 -tile.deco_pipe_rim.name=钢制管道 (镶边) -tile.deco_pipe_rim_rusted.name=生锈的钢制管道 (镶边) -tile.deco_pipe_rim_green.name=绿色钢制管道 (镶边) -tile.deco_pipe_rim_green_rusted.name=生锈的绿色钢制管道 (镶边) -tile.deco_pipe_rim_red.name=红色钢制管道 (镶边) -tile.deco_pipe_rim_marked.name=气体管道 (镶边) -tile.deco_steel.name=钢装饰块 -tile.deco_titanium.name=钛装饰块 -tile.deco_toaster.name=坏掉的烤面包机 -tile.deco_tungsten.name=钨装饰块 -tile.decon.name=玩家去污器 -tile.depth_brick.name=深层岩石砖 -tile.depth_dnt.name=DNT加固深层岩石砖 -tile.depth_nether_brick.name=下界深层岩石砖 -tile.depth_nether_tiles.name=下界深层岩石瓷砖 -tile.depth_tiles.name=深层岩石瓷砖 -tile.det_charge.name=炸药 -tile.det_cord.name=炸药引信 -tile.det_miner.name=采矿炸药 -tile.det_nuke.name=核炸药 -tile.dfc_core.name=暗核聚变堆核心 -tile.dfc_emitter.name=DFC发射器 -tile.dfc_injector.name=DFC燃料喷射器 -tile.dfc_receiver.name=DFC接收器 -tile.dfc_stabilizer.name=DFC稳定器 -tile.dirt_dead.name=泥渣 -tile.dirt_oily.name=油泥 -tile.drill_pipe.name=钻杆 -tile.drone_crate.name=运输无人机坞 -tile.drone_crate.desc=运输无人机的装货点和卸货点$也作为航路点使用, 需要使用运输无人机链接器与其他航路点链接$无人机必须从较高角度接近此方块,否则会被卡住 -tile.drone_crate_provider.name=物流供应箱 -tile.drone_crate_provider.desc=向物流网络提供物品$物流无人机会尝试将物品从物流供应箱移至物流请求箱 -tile.drone_crate_requester.name=物流请求箱 -tile.drone_crate_requester.desc=从物流网络请求物品$若物品栏内没有标记的物品,则会请求该物品 -tile.drone_dock.name=物流无人机坞 -tile.drone_dock.desc=物流无人机的生成点$只能检测5区块半径内的物流供应箱和物流请求箱$每个连接中物流无人机最多跟随10个路径点 -tile.drone_waypoint.name=运输无人机航路点 -tile.drone_waypoint.desc=运输无人机的航路点$使用运输无人机链接器设置路径$按顺序单击每个航路点和坞即可创建路径$Shift+右键单击以清除保存的位置$右键单击或Shift+右键单击航路点以更改航路点的高度偏移 -tile.drone_waypoint_request.name=物流无人机航路点 -tile.door_bunker.name=仓门 -tile.door_metal.name=金属门 -tile.door_office.name=办公室门 -tile.door_red.name=红门 -tile.ducrete.name=高密度贫铀混凝土瓷砖 -tile.ducrete_stairs.name=高密度贫铀混凝土瓷砖楼梯 -tile.ducrete_smooth.name=高密度贫铀混凝土 -tile.ducrete_smooth_stairs.name=高密度贫铀混凝土楼梯 -tile.dummy_block.name=虚拟方块 -tile.dummy_port.name=虚拟方块[电力接口] -tile.dungeon_chain.name=金属链 -tile.dynamite.name=炸药 -tile.emp_bomb.name=EMP炸弹 -tile.factory_advanced_conductor.name=高级工厂电力端口 -tile.factory_advanced_core.name=高级工厂核心组件 -tile.factory_advanced_furnace.name=高级工厂端口 -tile.factory_advanced_hull.name=高级工厂外壳 -tile.factory_titanium_conductor.name=工厂电力端口 -tile.factory_titanium_core.name=工厂核心组件 -tile.factory_titanium_furnace.name=工厂端口 -tile.factory_titanium_hull.name=工厂外壳 -tile.fallout.name=辐射尘 -tile.fan.name=风扇 -tile.fan.desc=使用红石激活$将实体推至最多10个方块外$用螺丝刀右键点击即可翻转 -tile.fence_metal.name=铁丝网围栏 -tile.fence_metal_post.name=铁丝网围栏立柱 -tile.field_disturber.name=高能场干扰机 -tile.filing_cabinet.green.name=蒙尘的文件柜 -tile.filing_cabinet.steel.name=钢制文件柜 -tile.fire_digamma.name=挥之不去的迪伽马之火 -tile.fire_door.name=防火门 -tile.fireworks.name=烟花箱 -tile.fireworks.charges=已充能: %s -tile.fireworks.message=信息: %s -tile.fireworks.color=颜色: %s -tile.fissure_bomb.name=裂缝炸弹 -tile.flame_war.name=盒中论战 -tile.float_bomb.name=悬浮炸弹 -tile.floodlight.name=电力泛光灯 -tile.fluid_duct.name=通用流体管道 -tile.fluid_duct_box.name=通用流体管道(方形) -tile.fluid_duct_exhaust.name=排气管 -tile.fluid_duct_gauge.name=流量计管 -tile.fluid_duct_gauge.desc=显示每个游戏刻在管网有多少流体移动的管道$由桶或罐连接的分离网络被视为一个共享网络。 -tile.fluid_duct_neo.name=通用流体管道 -tile.fluid_duct_paintable.name=可喷漆涂层通用流体导管 -tile.fluid_duct_solid.name=带涂层的通用流体导管 -tile.fluid_switch.name=红石流体阀 -tile.fluid_valve.name=流体阀 -tile.foam_layer.name=泡沫层 -tile.foundry_basin.name=铸造盘 -tile.foundry_channel.name=铸造浇道 -tile.foundry_tank.name=铸造池 -tile.foundry_mold.name=浅铸造池 -tile.foundry_outlet.name=浇筑出口 -tile.foundry_slagtap.name=炉渣出口 -tile.fraction_spacer.name=分馏塔分隔器 -tile.frozen_dirt.name=冰冻土 -tile.frozen_grass.name=冰冻草 -tile.frozen_log.name=冰冻原木 -tile.frozen_planks.name=冰冻木板 -tile.machine_furnace_brick_off.name=砖砌炉 -tile.machine_furnace_brick_on.name=砖砌炉 -tile.furnace_combination.name=复式炼焦炉 -tile.furnace_combination.desc=一种可以生产木炭和煤焦炭的大熔炉$产生流体副产品$传热速率:ΔT*0.25 TU/T -tile.furnace_iron.name=铁炉 -tile.furnace_iron.desc=更大、效率更高的炉子,在闲置时不会浪费燃料。 -tile.furnace_steel.name=钢炉 -tile.furnace_steel.desc=非常大的熔炉,冶炼矿石时可提供加成。$需要外部热源$传热率:ΔT*0.05tu/T$(Δ表示差值,T表示温度) -tile.fusion_center.name=中心磁铁 -tile.fusion_conductor.name=超导磁体 -tile.fusion_conductor_welded.name=超导磁体(焊接) -tile.fusion_core.name=聚变反应堆控制器 -tile.fusion_hatch.name=聚变反应堆端口 -tile.fusion_heater.name=等离子加热器 -tile.fusion_motor.name=磁体马达 -tile.fwatz_computer.name=Watz聚变反应堆计算矩阵 -tile.fwatz_conductor.name=4000K超导磁体 -tile.fwatz_cooler.name=冷却液罐壳 -tile.fwatz_core.name=Watz聚变反应堆控制器 -tile.fwatz_hatch.name=Watz聚变反应堆端口 -tile.fwatz_plasma.name=不稳定反Sa326等离子体 -tile.fwatz_scaffold.name=Watz聚变反应堆结构支架 -tile.fwatz_tank.name=冷却液罐 -tile.gas_asbestos.name=石棉粉尘 -tile.gas_coal.name=空气中的煤尘 -tile.gas_duct.name=输气管道 -tile.gas_duct_solid.name=密封输气管 -tile.gas_explosive.name=爆炸性气体 -tile.gas_flammable.name=可燃气体 -tile.gas_meltdown.name=熔毁气体 -tile.gas_monoxide.name=一氧化碳 -tile.gas_radon.name=氡气 -tile.gas_radon_dense.name=高浓度氡气 -tile.gas_radon_tomb.name=古墓气体 -tile.geiger.name=盖革计数器 -tile.glass_ash.name=灰烬玻璃 -tile.glass_boron.name=硼玻璃 -tile.glass_lead.name=铅玻璃 -tile.glass_polonium.name=钋玻璃 -tile.glass_quartz.name=石英玻璃 -tile.glass_trinitite.name=核融玻璃 -tile.glass_uranium.name=铀玻璃 -tile.glyphid_base.name=异虫蜂巢块 -tile.glyphid_spawner.name=异虫蜂巢繁殖方块 -tile.gneiss_brick.name=页岩砖 -tile.gneiss_chiseled.name=錾制页岩砖 -tile.gneiss_tile.name=页岩瓷砖 -tile.gravel_diamond.name=钻石砂砾 -tile.gravel_obsidian.name=碎黑曜石 -tile.hadron_access.name=粒子加速器接入终端 -tile.hadron_analysis.name=粒子加速器分析室壁 -tile.hadron_analysis_glass.name=粒子加速器分析室窗口 -tile.hadron_coil_alloy.name=致密超导线圈 -tile.hadron_coil_chlorophyte.name=致密叶绿线圈 -tile.hadron_coil_gold.name=致密金线圈 -tile.hadron_coil_magtung.name=致密4000K超导线圈 -tile.hadron_coil_mese.name=致密Mese线圈 -tile.hadron_coil_neodymium.name=致密钕线圈 -tile.hadron_coil_schrabidate.name=致密Sa酸铁线圈 -tile.hadron_coil_schrabidium.name=致密Sa326线圈 -tile.hadron_coil_starmetal.name=致密星辉线圈 -tile.hadron_cooler.name=粒子加速器冷却装置 -tile.hadron_cooler.desc=冷却功率:10$过冷阈值:10$冷却加成:+10%%$过冷惩罚:-25%% -tile.hadron_cooler_mk2.name=粒子加速器冷却装置-回文特制 -tile.hadron_cooler_mk2.desc=冷却功率:5$效率功能:2-(冷却-15)²/225$最高惩罚:-90%% -tile.hadron_core.name=粒子加速器核心组件 -tile.hadron_diode.name=肖基特二极管 -tile.hadron_plating.name=粒子加速器镀层 -tile.hadron_plating_black.name=粒子加速器镀层 (黑) -tile.hadron_plating_blue.name=粒子加速器镀层 (蓝) -tile.hadron_plating_glass.name=粒子加速器镀层 (窗口) -tile.hadron_plating_striped.name=粒子加速器镀层(低温危险) -tile.hadron_plating_voltz.name=粒子加速器镀层 (VOLTZ) -tile.hadron_plating_yellow.name=粒子加速器镀层(Yello染料) -tile.hadron_power.name=粒子加速器电源接口 -tile.hadron_power_10m.name=粒子加速器电源接口(10MHE) -tile.hadron_power_100m.name=粒子加速器电源接口(100MHE) -tile.hadron_power_1g.name=粒子加速器电源接口(1GHE) -tile.hadron_power_10g.name=粒子加速器电源接口(10GHE) -tile.hazmat.name=防辐射布块 -tile.heater_electric.name=电加热器 -tile.heater_electric.desc=利用电能产生热量$以85%的效率接受来自底部的热量$可使用螺丝刀进行配置。 -tile.heater_firebox.name=燃烧室 -tile.heater_firebox.desc=燃烧固体燃料以产生热量。 -tile.heater_heatex.name=换热加热器 -tile.heater_heatex.desc=从热流体中产生热量。 -tile.heater_oilburner.name=流体燃烧器 -tile.heater_oilburner.desc=燃烧可燃液体产生热量。 -tile.heater_oven.name=加热炉 -tile.heater_oven.desc=燃烧固体燃料以产生热量$以50%的效率接受来自底部的热量。 -tile.hev_battery.name=盔甲电池 -tile.impact_dirt.name=烧焦的泥土 -tile.icf.name=惯性约束聚变反应堆(ICF) -tile.icf_block.name=ICF激光器 -tile.icf_component.name=ICF稳定元件 -tile.icf_component.structure.name=ICF外壳 -tile.icf_component.structure_bolted.name=ICF外壳(铆接) -tile.icf_component.vessel.name=ICF密封容器壁 -tile.icf_component.vessel_welded.name=ICF密封容器壁(焊接) -tile.icf_controller.name=ICF激光器控制器 -tile.icf_laser_component.capacitor.name=ICF激光器电容 -tile.icf_laser_component.casing.name=ICF激光器外壳 -tile.icf_laser_component.cell.name=ICF激光器单元 -tile.icf_laser_component.emitter.name=ICF激光器闪光管 -tile.icf_laser_component.port.name=ICF激光器端口 -tile.icf_laser_component.turbo.name=ICF激光器涡轮增压器 -tile.iter.name=聚变反应堆 -tile.ladder_aluminium.name=铝制梯子 -tile.ladder_cobalt.name=钴制梯子 -tile.ladder_copper.name=铜制梯子 -tile.ladder_gold.name=金制梯子 -tile.ladder_iron.name=铁制梯子 -tile.ladder_lead.name=铅制梯子 -tile.ladder_steel.name=钢制梯子 -tile.ladder_sturdy.name=坚固木头制梯子 -tile.ladder_titanium.name=钛制梯子 -tile.ladder_tungsten.name=钨制梯子 -tile.lamp_demon.name=恶魔核心灯 -tile.lamp_tritium_blue_off.name=蓝色氚灯 -tile.lamp_tritium_blue_on.name=蓝色氚灯 -tile.lamp_tritium_green_off.name=绿色氚灯 -tile.lamp_tritium_green_on.name=绿色氚灯 -tile.lantern.name=路灯 -tile.lantern_behemoth.name=旧路灯 -tile.launch_pad.name=导弹发射台 -tile.launch_pad_large.name=发射台 -tile.launch_table.name=大型发射台 -tile.launch_pad_rusted.name=锈迹斑斑的发射台 -tile.leaves_layer.name=落叶 -tile.lox_barrel.name=液氧桶 -tile.machine_amgen.name=环境辐射发电机 -tile.machine_arc_furnace.name=大型电弧炉 -tile.machine_arc_furnace_off.name=电弧炉 -tile.machine_arc_furnace_on.name=电弧炉 -tile.machine_arc_welder.name=电弧焊机 -tile.machine_armor_table.name=装甲改装台 -tile.machine_ashpit.name=储灰槽 -tile.machine_ashpit.desc=收集来自燃烧室和加热炉的灰烬 -tile.machine_assembler.name=装配机 -tile.machine_assemfac.name=装配厂 -tile.machine_autocrafter.name=自动工作台 -tile.machine_autosaw.name=自动嗡嗡锯 -tile.machine_autosaw.desc=砍伐附近的植物,重新种植树木$接受:$-木油$-乙醇$-鱼油$-重油 -tile.machine_bat9000.name=巨尻-9000 储罐 -tile.machine_battery.name=蓄电池 -tile.machine_battery_potato.name=马铃薯电池组 -tile.machine_boiler.name=大型锅炉 -tile.machine_boiler.desc=可以烧水或加热油的大型锅炉$需要外部热源$传热速率:ΔT*0.01 TU/T -tile.machine_boiler_electric_off.name=电锅炉 -tile.machine_boiler_electric_on.name=电锅炉 -tile.machine_boiler_off.name=锅炉 -tile.machine_boiler_on.name=锅炉 -tile.machine_catalytic_cracker.name=催化裂化塔 -tile.machine_catalytic_reformer.name=催化重整器 -tile.machine_centrifuge.name=离心机 -tile.machine_chemfac.name=大型化工厂 -tile.machine_chemplant.name=化工厂 -tile.machine_chungus.name=“利维坦”巨型汽轮机 -tile.machine_chungus.desc=效率: 85%% -tile.machine_coal_off.name=火力发电机 -tile.machine_coal_on.name=火力发电机 -tile.machine_coker.name=焦化装置 -tile.machine_coker.desc=炼焦,并产生各类流体副产品$需要外部热源$传热速率:ΔT*0.025 TU/T -tile.machine_combine_factory.name=CMB炼钢炉 -tile.machine_combustion_engine.name=工业内燃机 -tile.machine_compressor.name=压缩机 -tile.machine_condenser.name=蒸汽冷凝器 -tile.machine_condenser_powered.name=大功率蒸汽冷凝器 -tile.machine_controller.name=反应堆遥控模块 -tile.machine_converter_he_rf.name=HE→RF转换器 -tile.machine_converter_rf_he.name=RF→HE转换器 -tile.machine_conveyor_press.name=输送带锻压机 -tile.machine_conveyor_press.desc=传送带从左向右移动$手持锻模右键单击以安装$使用螺丝刀移除锻模 -tile.machine_crucible.name=坩埚 -tile.machine_crystallizer.name=矿物酸化器 -tile.machine_cyclotron.name=回旋加速器 -tile.machine_detector.name=功率检测器 -tile.machine_deuterium_extractor.name=氘提取器 -tile.machine_deuterium_tower.name=氘萃取塔 -tile.machine_diesel.name=柴油发电机 -tile.machine_difurnace_extension.name=高炉烟道 -tile.machine_difurnace_off.name=高炉 -tile.machine_difurnace_on.name=高炉 -tile.machine_difurnace_rtg_off.name=核高炉 -tile.machine_difurnace_rtg_on.name=核高炉 -tile.machine_dineutronium_battery.name=Spark蓄电池 -tile.machine_drain.name=排液管 -tile.machine_drill.name=自动采矿钻机 -tile.machine_electric_furnace_off.name=电炉 -tile.machine_electric_furnace_on.name=电炉 -tile.machine_electrolyser.name=电解机 -tile.machine_epress.name=电动锻压机 -tile.machine_excavator.name=大型采矿钻机 -tile.machine_exposure_chamber.name=曝光室 -tile.machine_fel.name=FEL自由电子激光器 -tile.machine_fensu.name=FEnSU飞轮储能系统 -tile.machine_flare.name=高架火炬 -tile.machine_fluidtank.name=储罐 -tile.machine_forcefield.name=力场发生器 -tile.machine_fraction_tower.name=分馏塔 -tile.machine_fracking_tower.name=水力压裂塔 -tile.machine_funnel.name=组合漏斗 -tile.machine_funnel.desc=自动在2x2或3x3的合成格中压缩内部物品$顶面:输入$底面:输出$侧面:输出内部原料 -tile.machine_gascent.name=气体离心机 -tile.machine_generator.name=核反应堆[旧] -tile.machine_geo.name=地热发电机 -tile.machine_hephaestus.name=地热换热器 -tile.machine_hydrotreater.name=加氢装置 -tile.machine_icf_press.name=ICF燃料靶丸制造器 -tile.machine_icf_press.desc=用于装填ICF靶丸$左侧燃料槽接收顶面/底面输入,右侧燃料槽接收侧面输入$μ子胶囊和空靶丸可从任意面输入 -tile.machine_industrial_boiler.name=工业锅炉 -tile.machine_industrial_boiler.desc=可以烧水或加热油的大型锅炉$需要外部热源$传热率:ΔT*0.01 TU/T$不会爆炸 -tile.machine_industrial_generator.name=工业发电机 -tile.machine_keyforge.name=锁匠桌 -tile.machine_large_turbine.name=工业汽轮机 -tile.machine_large_turbine.desc=效率: 100%% -tile.machine_liquefactor.name=工业液化机 -tile.machine_liquefactor.desc=强大的通用机器,可将物品转化为液体$配有多功能催化组件、加热元件和用于石化液化的内置水合器。 -tile.machine_lithium_battery.name=锂蓄电池 -tile.machine_microwave.name=微波炉 -tile.machine_mining_laser.name=采矿激光 -tile.machine_minirtg.name=放射性同位素电池 -tile.machine_missile_assembly.name=导弹装配台 -tile.machine_mixer.name=工业搅拌机 -tile.machine_nuke_furnace_off.name=核熔炉 -tile.machine_nuke_furnace_on.name=核熔炉 -tile.machine_orbus.name=重型磁约束储罐 -tile.machine_ore_slopper.name=基岩矿石处理机 -tile.machine_powerrtg.name=PT同位素电池 -tile.machine_press.name=火力锻压机 -tile.machine_puf6_tank.name=六氟化钚储罐 -tile.machine_pumpjack.name=石油钻机 -tile.machine_radar.name=雷达 -tile.machine_radar_large.name=大型雷达 -tile.machine_radgen.name=辐射能量发电机 -tile.machine_radiolysis.name=放射性同位素热电机和辐射裂解室 -tile.machine_reactor.name=增殖反应堆 -tile.machine_reactor_small.name=研究型反应堆 -tile.machine_refinery.name=炼油厂 -tile.machine_reix_mainframe.name=Rei-X主机[开发中] -tile.machine_rtg_blue.name=对流发电机 -tile.machine_rtg_cyan.name=Sa326衰变发电机 [开发中] -tile.machine_rtg_furnace_off.name=放射性同位素热力炉[RTG] -tile.machine_rtg_furnace_on.name=放射性同位素热力炉[RTG] -tile.machine_rtg_green.name=韦德赛富集发电机 -tile.machine_rtg_grey.name=放射性同位素发电机 -tile.machine_rtg_orange.name=强RT发电机 -tile.machine_rtg_purple.name=反物质湮灭发发电机 -tile.machine_rtg_red.name=离子发生器 -tile.machine_rtg_yellow.name=奥斯超级燃料反应堆 -tile.machine_satlinker.name=卫星ID管理器 -tile.machine_sawmill.name=斯特林锯木机 -tile.machine_sawmill.desc=需要外部热源$传热速率:T*0.1 TU/T$最小进气量:100 TU/T,最大进气量:300 TU/T -tile.machine_schrabidium_battery.name=Sa326蓄电池 -tile.machine_schrabidium_transmutator.name=Sa326嬗变装置 -tile.machine_selenium.name=星型发动机 -tile.machine_shredder.name=粉碎机 -tile.machine_silex.name=SILEX激光同位素分离室 -tile.machine_siren.name=警报器 -tile.machine_solar_boiler.name=太阳能锅炉 -tile.machine_soldering_station.name=焊接台 -tile.machine_solidifier.name=工业固化机 -tile.machine_solidifier.desc=配备冷却系统和其他多功能工具的通用机器,用于使用冷冻和石化聚合等多种工艺将流体转化为固体。 -tile.machine_spp_bottom.name=ZPE电位发生器 [底部] -tile.machine_spp_top.name=ZPE电位发生器 [顶部] -tile.machine_steam_engine.name=蒸汽机 -tile.machine_steam_engine.desc=效率:85% -tile.machine_stirling.name=斯特林发电机 -tile.machine_stirling.desc=它将热量转化为能量。需要外部热源$传热率:T*0.1 TU/T$最大进气量:300 TU/T$效率:50% -tile.machine_stirling_creative.name=创造斯特林发动机 -tile.machine_stirling_creative.desc=将热量转化为能量。需要外部热源$传热率:T*0.1 TU/T$无限吸热/T$效率:100% -tile.machine_stirling_steel.name=重型斯特林发电机 -tile.machine_stirling_steel.desc=它将热量转化为能量。需要外部热源$使用更重的齿轮来支持更高的温度$传热率:T*0.1 TU/T$最大进气量:1500 TU/T$效率:50% -tile.machine_storage_drum.name=核废料处理桶 -tile.machine_strand_caster.name=连续铸造机 -tile.machine_telelinker.name=炮塔ID管理器 -tile.machine_teleporter.name=传送机 -tile.machine_tower_large.name=冷却塔 -tile.machine_tower_small.name=辅助冷却塔 -tile.machine_transformer.name=10k-20Hz变频器 -tile.machine_transformer_20.name=10k-1Hz变频器 -tile.machine_transformer_dnt.name=DNT-20Hz变频器 -tile.machine_transformer_dnt_20.name=DNT-1Hz变频器 -tile.machine_turbine.name=汽轮机 -tile.machine_turbine.desc=效率: 85%% -tile.machine_turbinegas.name=联合循环燃气轮机 -tile.machine_turbofan.name=涡扇发动机 -tile.machine_uf6_tank.name=六氟化铀储罐 -tile.machine_vacuum_distill.name=真空炼油厂 -tile.machine_waste_drum.name=乏燃料池 -tile.machine_well.name=钻油塔 -tile.machine_wood_burner.name=火力发电机 -tile.machine_wood_burner.desc=燃烧物品时100HE/t,同时$收集灰烬$可以以40mb/s的速度燃烧流体,效率为50%% -tile.machine_zirnox.name=锆诺克斯核反应堆 -tile.marker_structure.name=多方块结构信标 -tile.mass_storage.name=大规模存储单元 -tile.meteor_battery.name=星辉静电发生器 -tile.meteor_brick.name=陨石砖 -tile.meteor_brick_chiseled.name=錾制陨石砖 -tile.meteor_brick_cracked.name=裂纹陨石砖 -tile.meteor_brick_mossy.name=苔藓陨石砖 -tile.meteor_pillar.name=竖纹陨石砖 -tile.meteor_polished.name=平滑陨石块 -tile.meteor_spawner.name=赛博螃蟹组装机 -tile.mine_ap.name=反步兵地雷 -tile.mine_fat.name=核地雷 -tile.mine_he.name=反坦克地雷 -tile.mine_shrap.name=破片地雷 -tile.moon_turf.name=月壤 -tile.mud_block.name=毒泥 -tile.muffler.name=消声器 -tile.mush.name=发光真菌 -tile.ntm_dirt.name=泥土 -tile.nuke_boy.name=小男孩 -tile.nuke_custom.name=自定义核弹 -tile.nuke_fleija.name=F.L.E.I.J.A. -tile.nuke_fstbmb.name=野火炸弹 -tile.nuke_gadget.name=小玩意 -tile.nuke_man.name=胖子 -tile.nuke_mike.name=常春藤迈克 -tile.nuke_n2.name=N2炸弹 -tile.nuke_n45.name=N45水雷 -tile.nuke_prototype.name=原型 -tile.nuke_solinium.name=蔚蓝洗礼 -tile.nuke_tsar.name=沙皇炸弹 -tile.oil_duct.name=输油管 -tile.oil_duct_solid.name=粗输油管 -tile.oil_pipe.name=原油抽取管 -tile.oil_spill.name=泄漏的原油 -tile.ore_alexandrite.name=亚历山大变石矿 -tile.ore_aluminium.name=铝矿石 -tile.ore_asbestos.name=石棉矿 -tile.ore_australium.name=奥斯矿石 -tile.ore_basalt_asbestos.name=富含石棉的玄武岩 -tile.ore_basalt_fluorite.name=富含氟石的玄武岩 -tile.ore_basalt_gem.name=富含宝石的玄武岩 -tile.ore_basalt_molysite.name=富含氯化铁的玄武岩 -tile.ore_basalt_sulfur.name=富含硫的玄武岩 -tile.ore_bedrock.name=基岩矿石 -tile.ore_bedrock_coltan.name=基岩钶钽铁矿 -tile.ore_bedrock_oil.name=基岩油层 -tile.ore_beryllium.name=铍矿石 -tile.ore_cinnebar.name=朱砂矿石 -tile.ore_coal_oil.name=含油煤矿石 -tile.ore_coal_oil_burning.name=燃烧的含油煤矿石 -tile.ore_cobalt.name=钴矿石 -tile.ore_coltan.name=钶钽铁矿 -tile.ore_copper.name=铜矿石 -tile.ore_daffergon.name=达夫贡矿石 -tile.ore_depth_borax.name=深层硼砂矿 -tile.ore_depth_cinnebar.name=深层朱砂矿石 -tile.ore_depth_nether_neodymium.name=深层钕矿石 -tile.ore_depth_zirconium.name=深层锆矿石 -tile.ore_fluorite.name=氟石矿石 -tile.ore_gneiss_asbestos.name=石棉矿页岩 -tile.ore_gneiss_copper.name=铜矿页岩 -tile.ore_gneiss_gas.name=气页岩 -tile.ore_gneiss_gold.name=金矿页岩 -tile.ore_gneiss_iron.name=铁矿页岩 -tile.ore_gneiss_lithium.name=锂矿页岩 -tile.ore_gneiss_rare.name=稀土矿页岩 -tile.ore_gneiss_schrabidium.name=Sa326矿页岩 -tile.ore_gneiss_uranium.name=铀矿页岩 -tile.ore_gneiss_uranium_scorched.name=烧焦的铀矿页岩 -tile.ore_lead.name=铅矿石 -tile.ore_lignite.name=褐煤矿石 -tile.ore_meteor.aluminium.name=铝矿陨石 -tile.ore_meteor.cobalt.name=钴矿陨石 -tile.ore_meteor.copper.name=铜矿陨石 -tile.ore_meteor.iron.name=铁矿陨石 -tile.ore_meteor.rareearth.name=稀土矿陨石 -tile.ore_meteor_aluminium.name=铝矿陨石 -tile.ore_meteor_copper.name=铜矿陨石 -tile.ore_meteor_lead.name=铅矿陨石 -tile.ore_meteor_lithium.name=锂矿陨石 -tile.ore_meteor_starmetal.name=星辉矿陨石 -tile.ore_meteor_sulfur.name=硫磺矿陨石 -tile.ore_meteor_thorium.name=钍矿陨石 -tile.ore_meteor_titanium.name=钛矿陨石 -tile.ore_meteor_tungsten.name=钨矿陨石 -tile.ore_meteor_uranium.name=铀矿陨石 -tile.ore_nether_coal.name=燃烧下界煤矿 -tile.ore_nether_cobalt.name=下界钴矿石 -tile.ore_nether_fire.name=磷矿石 -tile.ore_nether_plutonium.name=下界钚矿石 -tile.ore_nether_schrabidium.name=下界Sa326矿石 -tile.ore_nether_smoldering.name=阴燃下界岩 -tile.ore_nether_sulfur.name=下界硫磺矿石 -tile.ore_nether_tungsten.name=下界钨矿石 -tile.ore_nether_uranium.name=下界铀矿石 -tile.ore_nether_uranium_scorched.name=烧焦的下界铀矿石 -tile.ore_niter.name=硝石矿石 -tile.ore_oil.name=油岩 -tile.ore_oil_empty.name=空油岩 -tile.ore_oil_sand.name=沥青砂 -tile.ore_random.name=%s 矿 -tile.ore_rare.name=稀土矿石 -tile.ore_reiium.name=雷恩矿石 -tile.ore_schrabidium.name=Sa326矿石 -tile.ore_sellafield_diamond.name=放射性熔融钻石矿 -tile.ore_sellafield_emerald.name=放射性熔融绿宝石矿 -tile.ore_sellafield_radgem.name=富含宝石的放射性熔融物 -tile.ore_sellafield_schrabidium.name=放射性熔融Sa326矿石 -tile.ore_sellafield_uranium_scorched.name=放射性熔融烧焦铀矿 -tile.ore_sulfur.name=硫磺矿石 -tile.ore_tektite_osmiridium.name=渗锇熔融石 -tile.ore_thorium.name=钍矿石 -tile.ore_tikite.name=赛瑞克矿石 -tile.ore_titanium.name=钛矿石 -tile.ore_tungsten.name=钨矿石 -tile.ore_unobtainium.name=难得素矿石 -tile.ore_uranium.name=铀矿石 -tile.ore_uranium_scorched.name=烧焦的铀矿石 -tile.ore_verticium.name=韦德赛矿石 -tile.ore_volcano.name=地热裂缝 -tile.ore_weidanium.name=魏丹矿石 -tile.part_emitter.name=装饰性粒子发射器 -tile.pedestal.name=物品基座 -tile.pink_barrel.name=煤油桶 -tile.pink_log.name=粉色原木 -tile.pink_planks.name=粉色木板 -tile.pink_slab.name=粉色木半砖 -tile.pink_stairs.name=粉色木台阶 -tile.piston_inserter.name=插入器 -tile.piston_inserter.desc=可以使用自动化接收一件物品$使用红石,它会将物品插入钻孔石墨中$钻孔石墨的物品都会被推出一格$插入器与钻孔石墨之间需要有一格空气 -tile.plant_dead.name=死亡植物 -tile.plant_flower.cd0.name=芥子柳 -tile.plant_flower.cd1.name=芥子柳 -tile.plant_flower.foxglove.name=毛地黄 -tile.plant_flower.nightshade.name=颠茄 -tile.plant_flower.tobacco.name=烟草 -tile.plant_flower.weed.name=大麻 -tile.plant_reeds.name=芦苇 -tile.plant_tall.cd2.name=芥子柳 -tile.plant_tall.cd3.name=芥子柳 -tile.plant_tall.cd4.name=芥子柳(成熟) -tile.plant_tall.weed.name=大麻 -tile.plasma.name=等离子 -tile.plasma_heater.name=等离子加热器 -tile.plushie.name=%s布娃娃 -tile.pole_satellite_receiver.name=卫星天线 -tile.pole_top.name=天线顶部 -tile.press_preheater.name=锻压机压力预热器 -tile.pribris.name=RBMK石墨式反应堆残骸 -tile.pribris_burning.name=燃烧的RBMK反应堆残骸 -tile.pribris_digamma.name=发黑的RBMK反应堆残骸 -tile.pribris_radiating.name=阴燃的RBMK反应堆残骸 -tile.pump_electric.name=电动地下水泵 -tile.pump_electric.desc=用电力抽取地下水$产水量高达10000mB/t$需要放置在Y:70以下 -tile.pump_steam.name=蒸汽动力地下水泵 -tile.pump_steam.desc=使用蒸汽抽取地下水$产水量高达1000mB/t$需要放置在Y:70以下 -tile.pwr_block.name=PWR压水反应堆 -tile.pwr_casing.name=PWR压力容器 -tile.pwr_casing.desc=需要覆盖反应堆的所有内部零件以形成$位置:外壳 -tile.pwr_channel.name=PWR冷却剂通道 -tile.pwr_channel.desc=传导热量以加热冷却剂$位置:任意 -tile.pwr_control.name=PWR控制棒 -tile.pwr_control.desc=允许控制连接的燃料棒$放置:各燃料棒连线网格之间 -tile.pwr_controller.name=PWR控制器 -tile.pwr_controller.desc=PWR的接入终端$位置:外壳,每个反应堆只要一个$右键单击以组装反应堆 -tile.pwr_fuel.name=PWR燃料棒 -tile.pwr_fuel.desc=增加压水堆燃料容量$位置:网格,用于增加反应效率 -tile.pwr_heatex.name=PWR换热器 -tile.pwr_heatex.desc=将核心热量转移到外壳$位置:任意 -tile.pwr_heatsink.name=PWR热容器 -tile.pwr_heatsink.desc=增加5%%的核心热容$略微降低冷却剂通道和换热器的效率$位置:任意 -tile.pwr_neutron_source.name=PWR中子源 -tile.pwr_neutron_source.desc=向堆芯添加20个中子通量$位置:任意$中子通量只有在连接打开时才能到达燃料棒 -tile.pwr_port.name=PWR接入端口 -tile.pwr_port.desc=允许物品和液体交换$位置:组件 -tile.pwr_reflector.name=PWR中子反射器 -tile.pwr_reflector.desc=将中子通量反射回燃料棒$位置:网格,用于增加反应速率$可作为外壳材料 -tile.rad_lava_block.name=放射性火山熔岩 -tile.radar_screen.name=雷达显示屏 -tile.radio_telex.name=电报机 -tile.radio_torch_counter.name=无线红石物品计数器 -tile.radio_torch_counter.desc=可在平坦表面或与比较器兼容的方块上放置$根据匹配物品的数量发出信号 -tile.radio_torch_logic.name=无线红石逻辑接收器 -tile.radio_torch_logic.desc=可在平坦表面或与比较器兼容的方块上放置$将红石信号与条件一一对应,并按照设定的顺序检测$输入的数值或字符串会与常量进行比较 -tile.radio_torch_receiver.name=无线红石信号接收器 -tile.radio_torch_receiver.desc=可在平坦表面或与比较器兼容的方块上放置 -tile.radio_torch_sender.name=无线红石信号发射器 -tile.radio_torch_sender.desc=可在平坦表面或比较器兼容的方块上放置$读取红石信号或比较器输入 -tile.radiobox.name=无线怪物清除箱 -tile.radiorec.name=坏掉的收音机 -tile.rail_booster.name=高速动力轨道 -tile.rail_highspeed.name=高速轨道 -tile.rail_large_buffer.name=标准轨距缓冲停止轨道(5m) -tile.rail_large_curve.name=标准轨距弯曲轨道(5m) -tile.rail_large_curve_7.name=标准轨距弯曲轨道(7m) -tile.rail_large_curve_9.name=标准轨距弯曲轨道(9m) -tile.rail_large_ramp.name=标准轨距坡道铁轨(5m) -tile.rail_large_straight.name=标准轨距铁轨(5m) -tile.rail_large_straight_short.name=标准轨距铁轨(1m) -tile.rail_large_switch.name=标准轨距铁路道岔(15m 左转) -tile.rail_large_switch_flipped.name=标准轨距铁路道岔(15m 右转) -tile.rail_narrow.name=窄轨距轨道 -tile.rail_wood.name=木制轨道 -tile.rbmk_absorber.name=RBMK反应堆硼中子吸收器 -tile.rbmk_blank.name=RBMK反应堆结构柱 -tile.rbmk_boiler.name=RBMK反应堆蒸汽管道 -tile.rbmk_console.name=RBMK石墨式反应堆控制台 -tile.rbmk_cooler.name=RBMK冷却器 -tile.rbmk_control.name=RBMK反应堆控制棒 -tile.rbmk_control_auto.name=RBMK反应堆自动控制棒 -tile.rbmk_control_mod.name= RBMK反应堆慢化控制棒 -tile.rbmk_crane_console.name=RBMK起重机控制台 -tile.rbmk_heater.name=RBMK流体加热器 -tile.rbmk_heatex.name=RBMK换热器 -tile.rbmk_loader.name=RBMK反应堆蒸汽导出器 -tile.rbmk_loader.desc=让RBMK反应堆在底部同时拥有水接口和蒸汽接口$在RBMK蒸汽管道下方放置水管道,再在下面放置蒸汽导出器$最后将管道连接至蒸汽导出器即可 -tile.rbmk_moderator.name=RBMK反应堆石墨慢化剂 -tile.rbmk_outgasser.name=RBMK反应堆辐照通道 -tile.rbmk_reflector.name=RBMK反应堆碳化钨中子反射器 -tile.rbmk_rod.name=RBMK反应堆燃料棒 -tile.rbmk_rod_mod.name= RBMK反应堆慢化燃料棒 -tile.rbmk_rod_reasim.name= RBMK反应堆燃料棒(ReaSim) -tile.rbmk_rod_reasim_mod.name= RBMK反应堆慢化燃料棒(ReaSim) -tile.rbmk_steam_inlet.name=RBMK ReaSim进水口 -tile.rbmk_steam_inlet.desc=当启用ReaSim锅炉时向反应堆内输入水$从侧面连接至反应堆结构 -tile.rbmk_steam_outlet.name=RBMK ReaSim蒸汽出口 -tile.rbmk_steam_outlet.desc=当启用ReaSim锅炉时从反应堆内输出超热蒸汽$从侧面连接至反应堆结构 -tile.rbmk_storage.name=RBMK燃料棒存储棒 -tile.reactor_computer.name=反应堆控制器 -tile.reactor_conductor.name=反应堆锅炉 -tile.reactor_control.name=控制棒 -tile.reactor_ejector.name=反应堆废料排出器 -tile.reactor_element.name=反应堆室 -tile.reactor_hatch.name=反应堆端口 -tile.reactor_inserter.name=反应堆燃料插入器 -tile.red_barrel.name=炸药桶 -tile.red_cable.name=紫铜电线 -tile.red_cable_classic.name=紫铜电缆(经典型) -tile.red_cable_gauge.name=功率计 -tile.red_cable_gauge.desc=显示每刻在网络中流动的电力$的电缆$由储能方块连接的拆分网络被视为一个共享网络。 -tile.red_cable_paintable.name=可涂漆紫铜线 -tile.red_connector.name=电力连接器 -tile.red_pylon.name=电线杆 -tile.red_pylon_large.name=大型输电塔 -tile.red_pylon_medium_steel.name=中型钢制电线杆 -tile.red_pylon_medium_steel_transformer.name=中型钢制电线杆(带变压器) -tile.red_pylon_medium_wood.name=中型木制电线杆 -tile.red_pylon_medium_wood_transformer.name=中型木制电线杆(带变压器) -tile.red_wire_coated.name=密封紫铜电缆 -tile.reinforced_brick.name=强化石头 -tile.reinforced_brick_stairs.name=强化石头楼梯 -tile.reinforced_ducrete.name=加固高密度贫铀混凝土 -tile.reinforced_glass.name=强化玻璃 -tile.reinforced_glass_pane.name=强化玻璃窗 -tile.reinforced_lamp_off.name=强化红石灯 -tile.reinforced_lamp_on.name=强化红石灯 -tile.reinforced_light.name=强化萤石 -tile.reinforced_sand.name=强化砂石 -tile.reinforced_stone.name=致密石头 -tile.reinforced_stone_stairs.name=致密石头楼梯 -tile.reinforced_laminate.name=强化夹层玻璃 -tile.reinforced_laminate_pane.name=强化夹层隔板 -tile.rejuvinator.name=再生装置 -tile.residue.name=云残留 -tile.safe.name=保险箱 -tile.sand_boron.name=硼沙 -tile.sand_boron_layer.name=硼沙层 -tile.sand_dirty.name=油砂 -tile.sand_dirty_red.name=红色油砂 -tile.sand_gold.name=金沙 -tile.sand_gold198.name=金-198沙 -tile.sand_lead.name=铅沙 -tile.sand_polonium.name=钋沙 -tile.sand_quartz.name=石英沙 -tile.sand_uranium.name=铀沙 -tile.sat_dock.name=卸货平台 -tile.sat_foeq.name=实验型核能PEAF-Mk.I FOEQ Duna探测器[装饰块] -tile.sat_laser.name=轨道死光炮[装饰块] -tile.sat_mapper.name=地表测绘卫星[装饰块] -tile.sat_radar.name=雷达探测卫星[装饰块] -tile.sat_resonator.name=X晶体共振卫星[装饰块] -tile.sat_scanner.name=绘测和资源探测卫星[装饰块] -tile.schrabidic_block.name=Sa酸 -tile.seal_controller.name=发射井舱门开关 -tile.seal_frame.name=发射井舱门框架 -tile.seal_hatch.name=发射井舱门 -tile.sellafield.0.name=放射性熔融凝固物 -tile.sellafield.1.name=高温放射性熔融凝固物 -tile.sellafield.2.name=沸腾的放射性熔融凝固物 -tile.sellafield.3.name=灼热的放射性熔融凝固物 -tile.sellafield.4.name=地狱般的放射性熔融凝固物 -tile.sellafield.5.name=放射性熔融凝固物核心 -tile.sellafield_slaked.name=消沉的放射性熔融凝固物 -tile.semtex.name=塞姆汀塑胶炸药 -tile.silo_hatch.name=发射井舱门 -tile.silo_hatch_large.name=大型发射井舱门 -tile.sliding_blast_door.name=滑动防爆门 -tile.solar_mirror.name=定日镜 -tile.soyuz_capsule.name=货物着陆舱 -tile.soyuz_launcher.name=联盟号发射平台 -tile.spikes.name=地刺 -tile.snowglobe.name=雪景球 -tile.spotlight_incandescent.name=罩灯 -tile.spotlight_fluoro.name=荧光灯 -tile.spotlight_halogen.name=卤素泛光灯 -tile.stalactite.asbestos.name=石棉钟乳石 -tile.stalactite.sulfur.name=含硫钟乳石 -tile.stalagmite.asbestos.name=石棉石笋 -tile.stalagmite.sulfur.name=含硫石笋 -tile.steel_beam.name=钢梁 -tile.steel_corner.name=钢墙角 -tile.steel_grate.name=钢格栅 -tile.steel_grate_wide.name=物品格栅 -tile.steel_grate_wide.desc=只会让物品和经验球掉落下去 -tile.steel_poles.name=钢杆 -tile.steel_roof.name=钢天花顶 -tile.steel_scaffold.name=钢脚手架 -tile.steel_wall.name=钢墙 -tile.stone_cracked.name=破碎的石头 -tile.stone_depth.name=深层岩石 -tile.stone_depth_nether.name=下界深层岩石 -tile.stone_keyhole.name=奇怪的石头 -tile.stone_gneiss.name=石墨页岩 -tile.stone_porous.name=多孔石 -tile.stone_resource.asbestos.name=温石棉 -tile.stone_resource.bauxite.name=铝土矿 -tile.stone_resource.hematite.name=赤铁矿 -tile.stone_resource.limestone.name=石灰石 -tile.stone_resource.malachite.name=孔雀石 -tile.stone_resource.sulfur.name=硫磺石 -tile.struct_icf_core.name=ICF反应堆核心组件 -tile.struct_iter_core.name=聚变反应堆核心组件 -tile.struct_launcher.name=发射台部件 -tile.struct_launcher_core.name=紧凑型发射台核心组件 -tile.struct_launcher_core_large.name=发射台核心组件 -tile.struct_plasma_core.name=等离子加热器核心组件 -tile.struct_scaffold.name=发射台骨架 -tile.struct_soyuz_core.name=联盟号发射器核心组件 -tile.struct_watz_core.name=Watz发电厂核心组件 -tile.substation.name=变电站 -tile.sulfuric_acid_block.name=硫酸 -tile.taint.name=腐质 -tile.taint_barrel.name=IMP残渣桶 -tile.tape_recorder.name=录音机 -tile.tektite.name=熔融石 -tile.teleanchor.name=传送锚 -tile.tesla.name=特斯拉线圈 -tile.test_nuke.name=测试核弹 -tile.therm_endo.name=吸热炸弹 -tile.therm_exo.name=放热炸弹 -tile.tile_lab.name=实验室瓷砖 -tile.tile_lab_broken.name=破损实验室瓷砖 -tile.tile_lab_cracked.name=开裂实验室瓷砖 -tile.tnt_ntm.name=货真价实的TNT -tile.toxic_block.name=绿色软泥 -tile.transition_seal.name=巨型安全门 -tile.turret_arty.name=重炮炮塔“格雷格” -tile.turret_cheapo.name=奇普-加特林哨兵 -tile.turret_chekhov.name=重机枪炮塔“契诃夫的枪” -tile.turret_cwis.name=Mk-15“密集阵”近防系统 -tile.turret_flamer.name=喷火炮塔 -tile.turret_friendly.name=轻机枪炮塔“友好先生” -tile.turret_fritz.name=重型火焰喷射器炮塔“弗里茨” -tile.turret_heavy.name=重型机枪炮塔 -tile.turret_himars.name=火箭炮塔“亨利” -tile.turret_howard.name=双联守门员近防系统“霍华德” -tile.turret_howard_damaged.name=CIWS双联守门员近防系统 "玛士撒拉" -tile.turret_jeremy.name=重炮炮塔“杰里米” -tile.turret_light.name=轻型机枪炮塔 -tile.turret_maxwell.name=高能微波炮塔 "麦克斯韦" -tile.turret_rocket.name=火箭炮塔 -tile.turret_richard.name=火箭炮塔“理查德” -tile.turret_spitfire.name=目前没有名字[开发中] -tile.turret_sentry.name=哨兵炮塔“布朗” -tile.turret_sentry_damaged.name=哨兵炮塔"埃德温" -tile.turret_tau.name=陶子炮塔 -tile.turret_tauon.name=XVL1456原型陶子发射器炮塔"陶恩" -tile.vacuum.name=真空 -tile.vault_door.name=避难所防爆门 -tile.vent_chlorine.name=氯气排气口 -tile.vent_chlorine_seal.name=氯气容器 -tile.vent_cloud.name=云排气口 -tile.vent_pink_cloud.name=粉雾排气口 -tile.vinyl_tile.large.name=大型乙烯基瓷砖 -tile.vinyl_tile.small.name=小型乙烯基瓷砖 -tile.vitrified_barrel.name=玻璃化核废料桶 -tile.volcanic_lava_block.name=火山熔岩 -tile.volcano_core.name=火山核心 -tile.volcano_rad_core.name=放射性火山核心 -tile.waste_earth.name=死亡草地 -tile.waste_leaves.name=枯叶 -tile.waste_log.name=烧焦原木 -tile.waste_mycelium.name=发光菌丝 -tile.waste_planks.name=烧焦木板 -tile.waste_trinitite.name=核融玻璃矿石 -tile.waste_trinitite_red.name=红色核融玻璃矿石 -tile.watz.name=Watz发电厂 -tile.watz_conductor.name=Watz电力端口 -tile.watz_control.name=加强控制棒 -tile.watz_cooler.name=Watz反应堆高效冷却器 -tile.watz_core.name=Watz反应堆控制器 -tile.watz_element.name=Watz反应室 -tile.watz_end.name=Watz反应堆稳定元件 -tile.watz_end_bolted.name=Watz反应堆稳定元件(铆接) -tile.watz_hatch.name=Watz反应堆端口 -tile.watz_pump.name=Watz压力泵 -tile.yellow_barrel.name=核废料桶 -tile.zirnox_destroyed.name=损毁的ZIRNOX - -tile.large_vehicle_door.name=大型机械门 -tile.water_door.name=水闸门 -tile.qe_containment.name=QE安全门 -tile.qe_sliding_door.name=QE滑动门 -tile.round_airlock_door.name=圆形气闸门 -tile.secure_access_door.name=安全检修门 -tile.sliding_seal_door.name=滑动密封门 - -trait.asbestos=石棉 -trait.blinding=致盲 -trait.coal=煤尘 -trait.digamma=迪伽马辐射 -trait.drop=掉落物危险 -trait.explosive=高度易燃/易爆 -trait.furnace=可在核熔炉中工作 %s 次 -trait.heat=提供 %s 热量 -trait.hlParticle=粒子半衰期: %s -trait.hlPlayer=玩家半衰期: %s -trait.hot=自燃/高温 -trait.hydro=与水反应 -trait.radioactive=放射性 -trait.radResistance=辐射抗性: %s - -trait.rbmk.coreTemp=核心温度: %s -trait.rbmk.depletion=燃料消耗: %s -trait.rbmk.diffusion=扩散度: %s -trait.rbmk.fluxFunc=中子放射函数: %s -trait.rbmk.funcType=中子放射函数类型: %s -trait.rbmk.heat=每接受一个中子产生的热量: %s -trait.rbmk.melt=熔点: %s -trait.rbmk.neutron.any=所有中子 -trait.rbmk.neutron.fast=快中子 -trait.rbmk.neutron.slow=慢中子 -trait.rbmk.skinTemp=表面温度: %s -trait.rbmk.source=自燃 -trait.rbmk.splitsInto=裂变后释放出: %s -trait.rbmk.splitsWith=裂变需要: %s -trait.rbmk.xenon=氙元素堆积程度: %s -trait.rbmk.xenonBurn=氙元素燃烧函数: %s -trait.rbmk.xenonGen=氙元素产生函数: %s - -trait.rbmx.coreTemp=核心熵: %s -trait.rbmx.depletion=衰变: %s -trait.rbmx.diffusion=能量潮涌: %s -trait.rbmx.fluxFunc=F迪伽马粒子放射函数: %s -trait.rbmx.funcType=F迪伽马粒子放射函数类型: %s -trait.rbmx.heat=满功率下每刻产生的热量: %s -trait.rbmx.melt=崩溃深度: %s -trait.rbmk.neutron.any.x=所有非欧几里德形时空平面 -trait.rbmk.neutron.fast.x=椭圆非欧几里德形时空平面 -trait.rbmk.neutron.slow.x=双曲非欧几里德形时空平面 -trait.rbmx.skinTemp=表面熵: %s -trait.rbmx.source=自燃 -trait.rbmx.splitsInto=释放: %s -trait.rbmx.splitsWith=接受: %s -trait.rbmx.xenon=铅元素堆积程度: %s -trait.rbmx.xenonBurn=铅元素寂灭函数: %s -trait.rbmx.xenonGen=铅元素产生函数: %s - -trait.tile.cluster=只有在被玩家破坏时才会掉落 -trait.tile.depth=只能被爆炸破坏 - -tool.ability.centrifuge=自动离心 -tool.ability.crystallizer=自动结晶 -tool.ability.explosion=爆破 -tool.ability.hammer=范围挖掘 -tool.ability.luck=时运 -tool.ability.mercury=水银提取 -tool.ability.midas=点石成金 -tool.ability.recursion=连锁挖矿 -tool.ability.shredder=自动粉碎 -tool.ability.silktouch=精准采集 -tool.ability.smelter=自动熔炼 - -turret.animals=被动目标:%s -turret.arty.artillery=§e火炮模式$最低射程: 250m$最大射程: 3,000m -turret.arty.cannon=§e炮塔模式$最低射程: 32m$射程: 250m -turret.arty.manual=§e手动模式$射程: 3,000m -turret.machines=以机械为目标: %s -turret.mobs=以怪物为目标: %s -turret.none=无 -turret.off=关 -turret.on=开 -turret.players=以玩家为目标:%s - -upgrade.acid=流体需求量 %s -upgrade.burn=燃烧内部天然气 %smB/t,产能 %sHE/t -upgrade.consumption=消耗 %s -upgrade.coolantConsumption=冷却剂消耗 %s -upgrade.delay=工作时间 %s -upgrade.efficiency=效率 %s -upgrade.fortune=时运 %s -upgrade.overheatChance=过热几率 %s -upgrade.range=范围 %s - -upgrade.gui.title=§l接受的升级:§r -upgrade.gui.afterburner= * §d加力燃烧§r:叠加至%s级 -upgrade.gui.effectiveness= * §a效率§r:叠加至%s级 -upgrade.gui.overdrive= * §7超速传动§r:叠加至%s级 -upgrade.gui.power= * §9节能§r:叠加至%s级 -upgrade.gui.speed= * §4速度§r:叠加至%s级 - -wavelengths.name.ir=红外线 -wavelengths.name.visible=可见光 -wavelengths.name.uv=紫外线 -wavelengths.name.gamma=伽马射线 -wavelengths.name.drx=迪伽玛 -wavelengths.waveRange.ir=780nm-1mm -wavelengths.waveRange.visible=400nm-780nm -wavelengths.waveRange.uv=100nm-400nm -wavelengths.waveRange.gamma=<100pm -wavelengths.waveRange.drx=1916169普朗克长度 - -weapon.ability.beheader=斩首 -weapon.ability.bobble=收藏家之运 -# Should rhyme with the translation for "chainsaw" -weapon.ability.chainsaw=痛苦面"锯" -weapon.ability.fire=燃烧 -weapon.ability.radiation=辐射 -weapon.ability.phosphorus=白磷刀刃 -weapon.ability.stun=震撼 -weapon.ability.vampire=吸血 -weapon.elecGun.modeChange=开火模式更改为: -weapon.elecGun.glass_cannon.radio=无线电波 -weapon.elecGun.glass_cannon.micro=微波 -weapon.elecGun.glass_cannon.ir=红外线 -weapon.elecGun.glass_cannon.visible=可见光 -weapon.elecGun.glass_cannon.uv=紫外线 -weapon.elecGun.glass_cannon.xray=X射线 -weapon.elecGun.glass_cannon.gamma=伽马射线 - -#Stuffs that Bob doesn't provide translation for -item.gun_vortex.name=涡流 -tile.crystal_power.name=能量水晶 -tile.crystal_energy.name=能量水晶 -tile.crystal_robust.name=坚固的水晶 -tile.crystal_trixite.name=赛瑞克水晶 \ No newline at end of file +achievement.acidizer.desc=啊艹,我的皮肤 +achievement.acidizer=酸 +achievement.assembly.desc=等等,已经凌晨1点了? +achievement.assembly=这家工厂正在成长 +achievement.FOEQ.desc=向火星轨道发射通讯卫星!...其实我是说Duna轨道 +achievement.FOEQ=飞马座运载火箭和发射架 +achievement.breeding.desc=谢谢你们,上帝保佑你们,上帝保佑镅利坚合众国。 +achievement.breeding=反话 +achievement.bismuth.desc=还记得那时候有人为这个抱怨了一个月吗?我还记得。 +achievement.bismuth=铋 +achievement.blastFurnace.desc=他们为制造探险者1号去打捞了一艘沉没的无畏舰。 +achievement.blastFurnace=煤和铁 +achievement.bossCreeper.desc=核爆苦力怕? 还有这东西?! +achievement.bossCreeper=四条腿的行走核弹 +achievement.bossMaskman.desc=淦飞那个大男孩 +achievement.bossMaskman=服了六个月的强制兵役,我得到的只是一件糟糕的T恤... +achievement.bossMeltdown.desc=比好事要坏,但是差不多得了 +achievement.bossMeltdown=3.6伦琴 +achievement.bossWorm.desc=绝学法杖?绝学法杖个屁。你自己好好看看。 +achievement.bossWorm=拆掉机械蠕虫 +achievement.bossUFO.desc=哟,现在是什么情况?一艘正在接近我们工事的巨大外星飞船? +achievement.bossUFO=啊哈哈哈,笑死我了 +achievement.burnerPress.desc=压力压在你我身上 +achievement.burnerPress=压力之下 +achievement.c20_5.desc=??? +achievement.c20_5=第[二十点五]章 +achievement.c44.desc=镀锌!我是说,锌! +achievement.c44=第四十四章 +achievement.centrifuge.desc=离心力是力请不要@我 +achievement.centrifuge=离心力 +achievement.chemplant.desc=现在你在考虑化学物质! +achievement.chemplant=这家工厂正在成长 第二季 +achievement.chicagoPile.desc=“当地人怎么样?” / “非常友好。” +achievement.chicagoPile=领航员在新大陆着陆 +achievement.concrete.desc=布尔什维克的最爱。 +achievement.concrete=可靠的老伙计 +achievement.desh.desc=“来吧,大家。我们有地方要去!\” +achievement.desh=勒威耶 +achievement.digammaFeel.desc=我的眼睛在流血 +achievement.digammaFeel=废水侵袭的废土世界 +achievement.digammaKauaiMoho.desc=一切都糟透了,这里有些热巧克力 +achievement.digammaKauaiMoho=唱吧,为我唱出奥亚吸蜜鸟的歌声吧 +achievement.digammaKnow.desc=关于这个世界 +achievement.digammaKnow=知 晓 的 恐 惧 +achievement.digammaSee.desc=里面有点黑,带个手电筒。 +achievement.digammaSee=踏 入 深 渊 +achievement.digammaUpOnTop.desc=仰慕我的儿子,他是我的克隆人 +achievement.digammaUpOnTop=仰慕我,仰慕我的家 +achievement.fiend.desc=卑鄙 +achievement.fiend2.desc=更卑鄙 +achievement.fiend2=残忍2:更残忍 +achievement.fiend=残忍 +achievement.freytag.desc=赫罗尔德的保镖 +achievement.freytag=弗赖塔格 +achievement.fusion.desc=氘核、氚核与能量的舞蹈。 +achievement.fusion=聚变 +achievement.gasCent.desc=未浓缩过的铀讨厌他! +achievement.gasCent=齐佩式离心 +achievement.goFish.desc=把鱼钉在十字架上 +achievement.goFish=去钓鱼 +achievement.hidden.desc=使用一节坠落的车厢杀死一只污染苦力怕 +achievement.hidden=隐藏目录 +achievement.horizonsBonus.desc=说实话,你到底怎么了 +achievement.horizonsBonus=地平线! +achievement.horizonsEnd.desc=送他回家 +achievement.horizonsEnd=地平线。 +achievement.horizonsStart.desc=将一个小伙子送上月球 +achievement.horizonsStart=地平线? +achievement.impossible.desc=你不可能取得该成就 +achievement.impossible=真的不可能 +achievement.inferno.desc=“把它变成灰烬!这还不够!投更多的炸弹!” +achievement.inferno=食人行动 +achievement.manhattan.desc=1945年8月6日 8:15 +achievement.manhattan=曼哈顿计划 +achievement.meltdown.desc=你都走到这一步了,怎么还能把事情搞砸? +achievement.meltdown=快速非计划拆卸 +achievement.no9.desc=“我希望我开采的铅能被用在你的油漆里” +achievement.no9=旧数字9 +achievement.omega12.desc=解决在这个可怜的星球上继续生存的问题 +achievement.omega12=欧米伽-12粒子加速器 +achievement.polymer.desc=美味、美味的微塑料。 +achievement.polymer=特氟隆 +achievement.potato.desc=你居然捅我!你没问——喔哦哦哦哦哦! +achievement.potato=反叛的AI +achievement.radDeath.desc=居里夫人开创了放射性理论、放射性治疗和放射性死亡。 +achievement.radDeath= +achievement.radium.desc=你 因 为 往 我 的 咖 啡 里 倒 镭 而 被 解 雇 了 ! +achievement.radium=不 可 思 议 先 生 +achievement.radPoison.desc=受辐射中毒的影响 +achievement.radPoison= +achievement.RBMKBoom.desc=谎言的代价是什么? +achievement.RBMKBoom=是15000伦琴 +achievement.RBMK.desc=他有妄想症,带他去医务室。 +achievement.RBMK=3.6伦琴? +achievement.redBalloons.desc=“这就是我们一直在等待的。就是这样,孩子们,这就是战争。” +achievement.redBalloons=99个红气球 +achievement.redRoom.desc=? +achievement.redRoom=另一边 +achievement.sacrifice.desc=直面火海并存活 +achievement.sacrifice=牺牲 +achievement.schrab.desc=不管怎样,我不会看太久。 +achievement.schrab=稳定岛 +achievement.selenium.desc=耶! +achievement.selenium=XVIII 月亮女神 +achievement.SILEX.desc=我保证这比听起来更酷。 +achievement.SILEX=激光激发法分离同位素 +achievement.slimeball.desc=粘液球 +achievement.slimeball=我应该把蛋蛋浸在硫酸里。 +achievement.stratum.desc=快刹车,Mitts! +achievement.stratum=岩层 +achievement.someWounds.desc=准备好 +achievement.someWounds=有些伤口永远无法愈合 +achievement.soyuz.desc=变得松脆 +achievement.soyuz=土豆烹饪 +achievement.space.desc=屡试屡败,浪费了价值9000万美元的资金 +achievement.space=最后的边疆——呃,算了吧 +achievement.sulfuric.desc=硫酸 +achievement.sulfuric=我不应该把蛋蛋浸在硫酸里的。 +achievement.tantalum.desc=一个难以捉摸但却永远需要的元素。 +achievement.tantalum=钽 +achievement.tasteofblood.desc=这不是任何测试的一部分 +achievement.tasteofblood=血的味道 +achievement.technetium.desc=它是药用的,它是药用的! +achievement.technetium=大个子,猪人 +achievement.watzBoom.desc=下次记得把毒泥浆容器清空 +achievement.watzBoom=令人厌恶 +achievement.watz.desc=可能包括Fólkvangr弗尔克范格场 +achievement.watz=126号元素的力量 +achievement.witchtaunter.desc=那些古怪的生物对你毫无兴趣! +achievement.witchtaunter=巫婆陶恩特 +achievement.ZIRNOXBoom.desc=生气了吗? +achievement.ZIRNOXBoom= +analyze.basic1=========NTM组件======== +analyze.basic2=更多信息请参阅Wiki。 +analyze.basic3=========附加信息======== +analyze.dummy=类型:Dummy Block +analyze.error=此方块的兼容性未正确设定。请将此问题作为Bug反馈! +analyze=名称:%s +analyze.noInfo=无附加信息。 +armor.blastProtection=修正 %s 的爆炸伤害 +armor.cap=伤害上限 %s +armor.damageModifier=修正 %s 对 %s 的伤害 +armor.dash=给予 %s 次冲刺 +armor.electricJetpack=离子喷射背包 +armor.explosionImmune=免疫除爆炸伤害外的一切伤害 +armor.fasterReload=快速装填 +armor.fastFall=快速降落 +armor.fireproof=防火 +armor.fullSetBonus=全套效果: +armor.geigerHUD=盖革计数器HUD +armor.geigerSound=盖革计数器警报 +armor.glider=滑翔 +armor.gravity=重力修正 %s +armor.hardLanding=硬着陆 +armor.ignoreLimit=防御值不受防御上限的影响 +armor.modifier=伤害修正 %s +armor.moreAmmo=更多弹药 +armor.nullDamage=免疫 %s 伤害 +armor.projectileProtection=免疫 %s 的弹射物伤害 +armor.rocketBoots=火箭靴 +armor.sprintBoost=冲刺辅助加速 +armor.stepSize=步长:%s +armor.thermal=热成像 +armor.threshold=伤害阈值 %s +armor.vats=敌对生物HUD +armor.yield=抵御低于%s的伤害 +armorMod.all=所有 +armorMod.applicableTo=适用于: +armorMod.boots=靴子 +armorMod.chestplates=胸甲 +armorMod.helmets=头盔 +armorMod.insertHere=插入装甲以改装。。。 +armorMod.leggings=护腿 +armorMod.type.battery=电池 +armorMod.type.boots=靴子 +armorMod.type.chestplate=胸甲 +armorMod.type.cladding=覆层 +armorMod.type.helmet=头盔 +armorMod.type.insert=插板 +armorMod.type.leggings=护腿 +armorMod.type.servo=伺服电机 +armorMod.type.special=特殊 +battery.mode.buffer=输入/输出模式 +battery.mode.input=输入模式 +battery.mode.off=关闭 +battery.mode.output=输出模式 +battery.priority.high=充电优先级:高 +battery.priority.high.desc=总是需要优先装满的紧急缓冲区 +battery.priority.low=充电优先级:低 +battery.priority.low.desc=在大多数情况下,需要在不影响机器性能的情况下$存储剩余的能量 +battery.priority.normal=充电优先级:正常 +battery.priority.normal.desc=较小的电网,其优先级无关紧要 +battery.priority.recommended=推荐用于: +battery.redstone.off=红石 关 +battery.redstone.on=红石 开 +bomb.detonated=成功引爆! +bomb.incompatible=设备无法触发! +bomb.launched=发射成功! +bomb.missingComponent=组件丢失! +bomb.nobomb=链接位置不兼容或已断开! +bomb.triggered=触发成功! +book.test.cover=停车坐爱枫林晚 +book.test.page1=测试页面1 +book.error.cover=粒子对撞机:$故障排除 +book.error.title1=错误 0x01 [能量不足] +book.error.page1=§l错误类型:§r \"错误_能量不足\" §l描述:§r 粒子到达了能量不足的部分。 §l修复方式:§r 用更高级的电源接口替换粒子成功通过的 其中一个电源接口,或者在粒子终止的段之前额外添加多一个电源接口。 +book.error.title2=错误 0x02 [无法分析] +book.error.page2=§l错误类型:§r \"错误_无法分析\" §l描述:§r 尽管没有通过分析室,但粒子已经到达核心。 §l修复方式:§r 确保加速器有一个分析室,并再次检查工作模式(线性/环形)。 +book.error.title3=错误 0x03 [通道阻塞] +book.error.page3=§l错误类型:§r \"错误_通道阻塞\" §l描述:§r 粒子与对撞机通道内的方块碰撞。 §l修复方式:§r 确保粒子对撞机内部没有任何障碍物, 粒子二极管和核心块除外。 +book.error.title4=错误 0x04 [缺少线圈] +book.error.page4=§l错误类型:§r \"错误_缺少线圈\" §l描述:§r 粒子通过了缺少一个或多个线圈的段。 §l修复方式:§r 移除冲突区域的对撞机镀层,并检查线圈结构是否完整。 这种错误也会发生在没有二极管的T型交叉口上。 +book.error.title5=错误 0x05 [错误区段] +book.error.page5=§l错误类型:§r \"错误_错误区段\" §l描述:§r 粒子通过了一个结构不正确的段(但既没有被阻塞也没有缺少线圈)。 §l修复方式:§r 确保有问题的部分都有镀层包裹,没有线圈暴露。 +book.error.title6=错误 0x06 [分析室过长] +book.error.page6=§l错误类型:§r \"错误_分析室过长\" §l描述:§r 粒子已通过三个以上所需的有效分析室段。 §l修复方式:§r 确保环形加速器的分析室长度正好为3个方块, 直线加速器的分析室长度至少为2个方块。 还要检查粒子是否未通过分支或 环形加速器中的多个分析室。 +book.error.title7=错误 0x07 [分析室过短] +book.error.page7=§l错误类型:§r \"错误_分析室过短\" §l描述:§r 粒子已离开分析室,尽管不符合长度要求。 §l修复方式:§r 确保环形加速器上的分析室正好有3个方块长。 有效的分析段没有线圈,镀层完全由分析室壁/窗组成。 带有线圈的分析室被视为规则段。 +book.error.title8=错误 0x08 [二极管方向错误] +book.error.page8=§l错误类型:§r \"错误_二极管方向错误\" §l描述:§r 该粒子与肖特基粒子二极管的非输入侧碰撞。§l修复方式:§r 检查二极管的配置是否正确。 粒子只能从带有绿色向内箭头的侧面进入二极管。 +book.error.title9=错误 0x09 [多处分支] +book.error.page9=§l错误类型:§r \"错误_多处分支\" §l描述:§r 粒子到达具有多个出口的转弯处。§l修复方式:§r 如果你的对撞机是正常的,检查所有需要的线圈是否都存在(即线圈中没有缺漏)。如果转弯处打算进行分支,则需要正确放置的肖特基粒子二极管。 +book.rbmk.cover=$我的第一个$RBMK石墨式反应堆:$建造一个$反应堆$的基础知识 +book.rbmk.title1=介绍 +book.rbmk.page1=§lRBMK石墨式反应堆§r是一个完全模块化的核反应堆. 与大多数其他反应堆不同的 +book.rbmk.title2=热量 +book.rbmk.page2=当反应堆运行 +book.rbmk.title3=燃料棒 +book.rbmk.page3=反应堆中的 §l燃料棒§r 将捕获周围的中 +book.rbmk.title4=控制棒 +book.rbmk.page4=反应堆中的 §l控制棒§r 将减少中子通过它的数量. 完全插入 +book.rbmk.title5=控制棒 - 使用 +book.rbmk.title5.scale= +book.rbmk.page5=当前控制棒插入的程度将显示在GUI的中心. 边的彩色按钮将把控制棒添加到不同的颜色组 +book.rbmk.title6=自动控制棒 +book.rbmk.page6=§L自动控制棒§r 与常规控制棒几乎相 +book.rbmk.title7=蒸汽管道 +book.rbmk.page7=反应堆中的 §l蒸汽管道§r 是唯一能有效降低反应堆热水平的组件. 如果一个蒸汽管道组件的沸点高于其设定的蒸汽类型的沸 +book.rbmk.title8=碳化钨中子反射器 +book.rbmk.page8=反应堆中的 §l碳化钨中子反射器§r 将阻止中子的通 +book.rbmk.title9=硼中子吸收器 +book.rbmk.page9=§l硼中子吸收器§r 只是阻挡中子. 被吸收的中子不会产生热量,会被有效地吸收. 这有助于防止燃料棒发生过度反应从而超出临界值. +book.rbmk.title10=石墨慢化剂 +book.rbmk.page10=§l石墨慢化剂§r 把穿过它的快中子转换成慢中子. 大多数核燃料反应释放出快中 +book.rbmk.title11=结构柱 +book.rbmk.page11=§l结构柱§r 对中子没有任何影响也没有任何特殊用途. 建议在没有其他合适组件的情况下用结构柱填充反应 +book.rbmk.title12=控制台 +book.rbmk.page12=§lRBMK石墨式反应堆控制台§r 允许你远程控制反应堆. 使用 §lRBMK石墨式反应堆连接装置记录反应堆§r 然后潜行右击控制台就能把反应堆和控制台连接起来. 一个控制台只能控制15x15个组 +book.rbmk.title13=控制台的使用 +book.rbmk.page13=单击屏幕上的组件将选择或取消选择它们. 使用彩色按钮,可以快速选择该颜色组中的所有控制棒. 按钮“A”将选择所有控制 +book.rbmk.page14=在绿色框中输入一个介于0和100之间的数 +book.rbmk.title15=核燃料 +book.rbmk.page15=§l核燃料§r 的反应取决于许多因素. 主要是 §l核燃料强度§ +book.rbmk.title16=熔毁 +book.rbmk.page16=§4§l尽量避免发 +book.starter.cover=重建$社会的实业家$指南 +book.starter.title1=介绍 +book.starter.page1=如果你正在读这篇文章,很可能社会已经因这样或 那样的方式完全崩溃了。政府、国家和权威是过去的概念, 以及文明生活的所有便利设施。因此,本指南将 告诉您如何通过重新创造过去的行业和技术 来改善自己的生活,从而改变这种状况。 +book.starter.title2=煤和芥子气 +book.starter.page2=虽然无法预测世界末日后的实际状态, 但目前形式的战争和工业不太可能没有结束。 为了保护自己的肺部,一种有效且廉价的方法是 在§L布§r上小便,制作一个§L防毒面具§r, 以使你免受煤尘或芥子气的伤害. +book.starter.title3=铁砧和锻压机 +book.starter.page3=开始工业振兴的精髓是§l砧§r和§l火力锻压机§r. 铁砧将允许您手动组合早期机械,如组装机, 而火力锻压机将允许您制作 无法用铁砧制作的板材、电线和电路. +book.starter.title4=模板 +book.starter.page4=为了将金属冲压成有用的 形状、组装机械和执行 化学反应,您需要创建 一个§L机器模板文件夹§r, 以创建右侧显示的 各种锻模以及配方。 +book.starter.title5=废墟探索 +book.starter.page5=根据最初的世界末日事件对世界现有结构的影响程度, 有可能直接从中抢救出许多有用的材料和机器。 钢铁等金属合金、电路等部件,甚至核电站的 裂变材料都可能在等着你。 然而,要小心某些废墟,因为那里可能潜伏着过度的危险, 就像草丛中的蛇一样; 等待着用辐射、陷阱或无法形容的恐怖袭击你... +book.starter.title6=早期机械 +book.starter.page6a=您应首先制造的两台机器是§l高炉§r和§l装配机§r. 前者允许您制造合金,如§L钢§r、§l工业级铜§r和§l高级合金§r; 你需要将这些金属用于机器的机身、 电路的布线、高级电磁铁等. +book.starter.page6b=装配机将用于制造本指南中描述的几乎所有其他机器. 您需要一个电源,如§L火力§r§L发电机§r或§L太阳能锅炉§r. +book.starter.page7a=§l粉碎机§r以及一对粉碎机刀片将会非常有用, 能将大多数矿石粉碎成可熔炼的粉末,使其产量提高一倍. 这些粉末对于开始为各种机器制作电路也至关重要, 例如§l增强电路§r和§l超频电路§r。 +book.starter.page7b=使用您的新机器,您可以制造§L化工厂§r, 用于合成更好的电路、混凝土或进行石化产品加工等。 +book.starter.title8=黑金 +book.starter.page8a=使用§l石油§l储层§r§l探测仪§ +book.starter.page8b=在§l炼油厂§r中提炼和分离石油 成分之 +book.starter.title9=石油化工产品 +book.starter.page9=使用§l化工厂§ +book.starter.title10=先进的机械 +book.starter.page10=通过一套成熟的石油加工系 +book.starter.title11=特殊地层 +book.starter.page11=在你行走的地面之下,有几个 自然形成的§l岩层§r,或者说特殊的 矿层和岩层。 §l片岩地层§r是蓝色的含锂层, 其中有铀、铁、铜、石棉和其他矿石 可供你使用。 §l深层岩石§r含有大量稀有矿 +book.starter.title12=辐射 +book.starter.page12a=本书其余部分将讨论与辐射有关的问题。 为了您和他人的安全,我将提供一些建议以说明如何缓解和处理暴露于此的风险。 +book.starter.page12b=充分暴露在辐射中会导致身体伤害. 第一步是预防; 一定要限制接触,并穿戴防护装备,如§l防辐射套装§ +book.starter.title13=铀浓缩 +book.starter.page13=核反应堆的燃料有几个简单的选择; 例如,§l天然铀§r或§l钍燃料§r。 然 +book.starter.title14=芝加哥反应堆 +book.starter.page14=或者,您可以使用§l芝加哥反应堆§r从天然铀中增殖出 §l反应堆级钚§r,这是一种更强大的燃料. 通过堆叠石墨块并在其中钻孔,您可以将燃料棒插入钚 和中子源棒,例如§l镭226-铍中子源§r,以开始反应. 确保测试你的设计;为防止过 +book.starter.title15=ZIRNOX锆诺克斯 +book.starter.page15=最终,你可以制造你的第一个§o真正§r的能源来源: §lZIRNOX§r核反应堆. 与其他能量源相比,核反应堆需要更多的准备; 首先,你需要有一个强悍的水源,比如§l重型§l无限水罐§r. 要从反应堆堆芯中排出热量并将水煮沸成蒸 +book.starter.title16=结论 +book.starter.page16=如果你已经走到了这一步,你已经走在重建文明大道上了. 你已经成功地用核 +book.starter.title18=关于作者 +book.starter.page18=v?r只是一个被困在\"传声头像\"的§o《一生一次》§r中的 灰色虚空中太久的人. 有一 +_comment=Stuffs that Bob doesn't provide translation for +book_lore.author=%s 著 +book_lore.test=测试 +book_lore.test.author=那个家伙 +book_lore.test.page.0=>哈喽 在我开始之前 我得先澄清一下 我不是同性恋 >做我 >今天晚上 >六点 >趁爸妈出去几天 我和铁哥们去外面玩 >我们成了铁哥们已经有一年了 >喝了点酒 打了很多游戏 还点了个披萨 >我们玩得正高兴 >晚上 在一个什么时候 大概九点吧 他讲了个很好笑的笑话 我记不清了 但是我记着 那笑话让我俩笑疯了 >没来得及细想 我拿手捋了捋他的头发 黑色的微卷的头发 还说他真有意思 >他脸红了 >我意识到自己慌了 >我们有点太亲密了 >突然他亲了我 不知道为什么 我亲回去了 >我们做爱了 >抱在一起睡着了 >半夜我醒了 发现他脑袋贴着我的胸和脖子 >这种感觉很奇妙 但我真的不是同性恋 +book_lore.test.page.1=我打这些字的时候他正在我 怀里睡觉。我怎么就这样让 我哥们失望了?我不想变成 [数据删除] /b/ +book_lore.test.page.2= +book_lore.test.page.3= +book_lore.test.page.4= +book_lore.book_iodine=笔记 +book_lore.book_iodine.author=戴夫 +book_lore.book_iodine.page.0=说起来你肯定不信:“风向 标”那老家伙在离开两个月 之后又重新出现了。而且更 惊人的是,他打算把那伙人 在峡谷里干的秘密勾当泄露 出去。 +book_lore.book_iodine.page.1=搞研发的那群白痴们偶然发 现了一种化合物:大部分是 无机的,很像自然界中的 毒素。但是注意:被这种毒素 杀死的细胞会产生更多的同 种毒素,并将其释放到皮肤 外面,这就产生了传染性极 强的气溶胶。 +book_lore.book_iodine.page.2=这东西像病毒但又不是病毒。 这种物质非常奇怪,你在家 随便找一个瓶子就能混合 出来,但是必须要搞对顺序。 博士告诉我,第一种原料是 粉末状碘晶体,放在 第%d格。 +book_lore.book_phosphorous=笔记 +book_lore.book_phosphorous.author=戴夫 +book_lore.book_phosphorous.page.0=哈喽,又是我。你应该看到 我的上一篇备忘录了吧。 博士对我写备忘录这件事有 点生气,所以我得快点写完。 那群搞研发的傻帽又开始一 个劲地抱怨,估计还是什 么钱的事。 +book_lore.book_phosphorous.page.1=对了,“风向标”博士发现了 第二种原料是红磷,应该 放在第%d格。 +book_lore.book_dust=笔记 +book_lore.book_dust.author=戴夫 +book_lore.book_dust.page.0=博士发现搞研发的那群呆子 还留了个样品之后气得要命, 大喊大叫了一通“总体过失” 和“世界末日”什么的。 我告诉他先冷静一下, +book_lore.book_dust.page.1=太激动对血压不好,而且他 本身就没有那么多血。那群 呆子里面的一个在上周的通 报里说漏了嘴。他们管他们 调出来的那玩意儿叫“MKU” ——管他是什么意思,而且 那玩意儿里面还有家里的 绒毛。 +book_lore.book_dust.page.2=你肯定不信,那群呆子最危 险的发明之一里面还有灰尘 ——奇怪的是,他们甚至提到 这东西应该放在第%d格。 +book_lore.book_mercury=笔记 +book_lore.book_mercury.author=戴夫 +book_lore.book_mercury.page.0=就是这么回事。不算吐血的 部分,毒理学报告很大程度 上呈现了汞中毒的特征。 为什么?因为那堆混合物里 也含有水银! +book_lore.book_mercury.page.1=我很好奇,这东西被细胞复 制的时候,复制出来的物质 是从哪来的? 扯远了。水银应该放到 第%d格。 +book_lore.book_flower=笔记 +book_lore.book_flower.author=戴夫 +book_lore.book_flower.page.0=还记得我在第一篇备忘录里 提到了“这东西大部分是无 机的”吗?你猜怎么着, 老“风向标”跟我分享了第 四样原料:一种花,学名叫 “ipomoea nil”。是牵牛花! +book_lore.book_flower.page.1=可能是由于牵牛花较低的硫 含量,用别的花都不行。 牵牛花应该放在第%d格。 +book_lore.book_syringe=笔记 +book_lore.book_syringe.author=戴夫 +book_lore.book_syringe.page.0=对我第五篇备忘录的一点 补充:很显然你应该找个容 器把这些MKU装进去。搞 研发的那帮疯子用的是从医 疗机构弄到的普通金属注射 器——我推测还有不少多余 的。他们弄了几千个,然后 扔的到处都是。 +book_lore.book_syringe.page.1=金属注射器 应该放在第%d格。 +book_lore.resignation_note=辞职信 +book_lore.resignation_note.author=科斯马 +book_lore.resignation_note.page.0=管理层昨天又对我们的部门 进行裁员了。那群白痴要怪 只能怪他们自己,我都不知 道他们在那场惨败后还在期 待什么。到底是谁他妈泄露 了那种程度的信息? +book_lore.resignation_note.page.1=我们损失了几百万,而且现 在失业的还是爷。老子希望 你们这帮混蛋最后能从你们 的一堆问题中学到点教训然 后给爷滚去自闭。 +book_lore.resignation_note.page.2=我周五不回来了。 记得把工资发我。 +book_lore.memo_stocks=公司内部备忘录 +book_lore.memo_stocks.page.0=投资人相关 - $ $ 上季度报告提供的数字中已 经出现了明显差异。财政部 门即使做出一些调整也是相 当谨慎的,因此无需担心。 +book_lore.memo_schrab_gsa=内部备忘录 +book_lore.memo_schrab_gsa.page.0=合同管理记录 - $ $ 法务部在与DLA的谈判中 取得了突破。他们批准了 450亿的联邦采购服务 总署投资资金用于异变金属 的采购与研究。 +book_lore.memo_schrab_gsa.page.1=就目前的预期,相关事项能 够带来至少40%%的利润, 以及获得未来合同的更大可 能。由于此事件的保密性质, 所有财政证据都将保持机密。 +book_lore.memo_schrab_rd=内部备忘录 +book_lore.memo_schrab_rd.page.0=研发 - $ $ 目前我们生产异变金属的 主要方法是使用新型粒子加 速器。然而,与产出量相比, 能源成本高得惊人。 +book_lore.memo_schrab_rd.page.1=然而,施拉鲍尔博士发现了 一种全新的相互作用—— 暂称为“奇异轻子振荡”—— 该作用可以显著降低生产 成本。通过一个目前未被完 全理解的的过程,提供的电子 被一种奇特的“魔力”转化 为极高能量的光子。 +book_lore.memo_schrab_rd.page.2=这是许多已明确的粒子转换 定律的极端例外。但初步实 验证明,这些质子先转变为 上下夸克,最终形成了异变 金属。 +book_lore.memo_schrab_rd.page.3=奇怪的是,原型机中需要钨与 少量异变金属形成的合金。 另外,原型机中也需要一个 特殊的电容器,用于消除多 余的正电荷。 +book_lore.memo_schrab_nuke=研究报告 +book_lore.memo_schrab_nuke.author=施拉鲍尔博士 +book_lore.memo_schrab_nuke.page.0=最近的研究将我们引至了核 爆对材料的影响。多亏了外 界的拨款,我们“意外地” 测试了我们的铀定向合成异 变金属理论。 +book_lore.memo_schrab_nuke.page.1=而此前我们只在回旋加速器 中制作出异变金属。然而, 我们在埃弗韦彭的地下实验 室的铀矿石中发现了微量的 异变金属,附近所有的纯 金属铀则都发生了裂变。 +book_lore.memo_schrab_nuke.page.2=既然如此,那么使用浓缩到 临界质量附近的铀矿石,或 者是含有大量可裂变核废料 的脏弹,都有可能在理论上 创造足以人工收集的量的 异变金属。 +book_lore.bf_bomb_1=私人笔记 +book_lore.bf_bomb_1.author=M. 波特 +book_lore.bf_bomb_1.page.0=虽然过了很久,但我的工作 调动申请终于批下来了。那 些刚升级的毕业生已经够难 对付了,更别提上边那些人 ——他们一点专业素质 都没有。 $ 换工作地点也不全是好事—— 现在这个实验室拒绝提供进 一步的细节,而且我已经被 另外一个魔法般的新发现 搞得够乱了。 +book_lore.bf_bomb_1.page.1=就是这样。那些学生们各有 各的疑惑 (想想他们多有 精神就知道这有多让人奇怪), 而我唯一的……同事 (竞争 对手?) 只是在做发小册 子的工作。这些事之间的联 系绝对比我想的要复杂。他 的笔记很打击人: +book_lore.bf_bomb_1.page.2=“又有一种奇异物质被偶然 发现;这种物质被指明是反 物质和一种边缘同位素的复 合物。小册子上说它叫‘旋素’ ——鬼知道这名字什么意思, 然后就没了。 +book_lore.bf_bomb_1.page.3=“怪不得他们想找个理论物 理学家,还不是因为他们连 这东西是什么都不知道。但 另一方面,基本上随便什么 工作都比我的旧职位强, 所以我也别抱怨这上面基本 什么都没有了。” +book_lore.bf_bomb_2=私人笔记 +book_lore.bf_bomb_2.author=M. 波特 +book_lore.bf_bomb_2.page.0=即使那本小册子上缺少大量 信息,我还是希望他们知道 的比我更多一点。但是他们 也不知道别的了。其他年长 一些的研究员都对这种物质 有一种盲目的信念:他们的 命题都是完全合理的。 我压根无话可说! +book_lore.bf_bomb_2.page.1=而且我甚至没法责备他们。 “旋素”没个屁的合理性! 这东西和我见过的其他物质 完全不一样。它的外表令人 毛骨悚然:它的颜色不停变 换着,霓虹绿色的表面上弥 漫着颜色略深的线条。 +book_lore.bf_bomb_2.page.2=更糟的是这东西还是个能量 源。我们样品的存在本身 就是对“ALARA”规则的 违背:当样本到达实验室时, 我们都撤离了实验室,唯一 一个够勇敢的人 (叫“梅菲因博士”) 也只穿着A级防护服移动了 样品20米。 +book_lore.bf_bomb_2.page.3=实验上的数据也没有好多少。 这东西辐射的能量非常强, 强到好像热力学第一定律都 要被打破一样;在这东西附 近的任何地方待着——甚至隔 着一米厚的铅——都十分恐怖。 我们做了光谱学方面的推断 就冲出了实验室,但什么新 发现都没有。 +book_lore.bf_bomb_2.page.4=但在这些事之后,科研团队 里的那群白痴竟然一点都没 有动摇!在那么些“讨论” 的时候干坐着够难受了; 一个带头人还胡乱说对这项 试验的禁令会被取消,也就 是说接下来几周我们可以逃 脱这些烂摊子来好好造炸弹。 +book_lore.bf_bomb_2.page.5=他们心里到底觉得谁会来干 这件事?麻烦得要命。最后, 一个理智的助手 (叫安德鲁) 给这种物质起了个外号叫 “野火”——因为和这东西比 起来,在火葬堆上被活活烧 死的痛苦都不算什么。 +book_lore.bf_bomb_3=私人笔记 +book_lore.bf_bomb_3.author=M. 波特 +book_lore.bf_bomb_3.page.0=我和我的团队取得了一些突 破。谈一下我的“分离” ——我把自己从那些更“虔诚” 的人里面分离出来之后,在 那工作变得好受多了。虽然 我们仍然对野火的具体性质 不甚了解 (因为研究一个 会毁了设备的东西非常难) , +book_lore.bf_bomb_3.page.1=但对野火与其他物质相互作 用的研究取得了丰硕成果。 值得注意的是,野火会与其 他物质形成“气态”;所有人 里面,只有安德鲁提醒我: 那其实是悬浮在稀有气体中 的微小野火粒子形成的胶体, +book_lore.bf_bomb_3.page.2=每个野火粒子都被带正电的 “气体泡”包裹着,这样这些 粒子就不会沉降。谁能想到 这东西的致命伽马辐射会有 好处?反正不是我。 +book_lore.bf_bomb_3.page.3=我尽量不去想他们是怎么把 样品转化成微粒的,但我并 不能把这些气态野火的实用 性一笔带过——气态野火使得 对野火的研究更加安全了。 $ 说到安全,带头人 (冷酷无情事不关己地) 做了一项差点让他掉脑袋的 发现。 +book_lore.bf_bomb_3.page.4=他决定把自己“弄脏”: 让一单元量的野火胶体和极 其昂贵的反物质直接反应。 产生的爆炸把它们所在的桌 子化成了一块被大量辐照过 的废渣,并在桌面上刻出了 一个几乎完美的半球, +book_lore.bf_bomb_3.page.5=还让领头人的脑袋吸收了足 以引起急性放射综合征的辐 射。我觉得我们现在知道了 怎么引爆野火, 但是某些人…… +book_lore.bf_bomb_4=私人笔记 +book_lore.bf_bomb_4.author=M. 波特 +book_lore.bf_bomb_4.page.0=我没办法逃脱我的旧工作。 现在这种死气沉沉的动荡 时代,只有这个地方在招人 了;但我不会再回我那个坑 里了。 $ 他们只是在诱惑我,因为我 需要出去,需要挣快钱。 还记得我们一周前退出的空 中试验协定吗? +book_lore.bf_bomb_4.page.1=那些掌管我们实验室的烂人 终于做对了一次。谴责与我 们将野火武器化需要的一大 批科学家一同到来。这里缺 少的批判性思维真是令人费 解——安德鲁甚至在第一份 该死的野火炸弹设计开始草 拟的那一刻突然不干了。 +book_lore.bf_bomb_4.page.2=那个梅菲因看上去打小算盘 打得很高兴,难道他搬野火 样品的时候脑子坏掉了? ——他还提出了使用固化的野 火以及高压电池的傻逼设计。 +book_lore.bf_bomb_4.page.3=很显然,这种形式的物质输 出的能量和激活途径或者别 的什么玩意和传统核弹比, 就像钚跟铀在传统核弹里面 比一样;但最终的结果是初 始的震荡引发了爆炸。 这倒是挺有意思。 +book_lore.bf_bomb_4.page.4=他们这些人都把注意力集中 在了激活上,而完全忽略了 具体机制——因为他们连点头 绪都摸不着!现在看来或许 就是魔法,然而那些人还在 尝试参透整个过程——也只是 为了制造更多战争用的武器 而已。 +book_lore.bf_bomb_5=私人笔记 +book_lore.bf_bomb_5.author=M. 波特 +book_lore.bf_bomb_5.page.0=就算过了很多天,我…… 还是理解不了这些。整个科 研团队对安全的轻率,似乎 让整个事情成了必然结局。 $ $ 梅菲因·M.S.博士,已经 离开了,或许已经离开这个 世界了。悲剧,就在我的眼皮 底下,就在他们的试验仓里, 发生了。 +book_lore.bf_bomb_5.page.1=那时候我们刚刚得到另外一 批野火纯品,而且他已经修 好了用来测试他的提案的电 子设备和能量源。我不知道 到底是什么导致的 (开机了吗?还是开始得 太早了?) ,但是悲剧貌似 已经痛苦地、缓慢地开始了。 +book_lore.bf_bomb_5.page.2=野火的绿色光芒逐渐吞噬了 桌子,吞噬了电池,吞噬了站 在一米之外的梅菲因博士, 甚至桌子都被降解成了地板 上一滩滚烫的金属,但梅菲 因还没有燃烧。我不知道他 从自己的眼里看到了什么…… $ $ 或许,恐惧,或者敬畏笼罩了 梅菲因最后的生存时间? +book_lore.bf_bomb_5.page.3=不管我们的“奇迹”物质是 什么,它都不在乎。突然间, 一束炽热的闪光出现,闪光 过后,梅菲因就消失了。他蒸 发了?被烧化了?还是湮灭 了?见鬼去吧,我没法知道 了! +book_lore.bf_bomb_5.page.4=领头人让我感觉很恶心。 “我们本来能更小心”“本来 能一直监控着”,还有其他 管它是什么的提高士气的污 物从他嘴里呕出来。这家伙 永远都不会明白“玩火自焚”! +book_lore.bf_bomb_5.page.5=我不嫌辞职麻烦,就立马卷 了铺盖,向山里跑去。但后 果并没有那么严重;考虑到 那边缺少电话,而且看到从 我的 (前) 工作地点升起 的蘑菇云,他们应该不是被 炸飞了,就是上了最高等级 的军事法庭了。 +book_lore.bf_bomb_5.page.6=在“死体解剖”和“活体解剖” 之间,我们必须要做出选择; 有一个选项已经在他们身上 明明白白地失败了。他们 想解剖多少金属或者原子就 能解剖多少;但是批判现实、 解剖现实这件事,只能在更 多的梅菲因身上走向终结。 谁知道呢! +book_lore.bf_bomb_5.page.7=到最后,政府还是想把这堆 烂摊子拿来研发炸弹。或许, 我们还会看到更多的战争, 看到更多的人被迫接受比死 亡更惨的命运。 他们不可能永远都藏着掖着。 +book_lore.bf_bomb_5.page.8=我不在乎了。再也不在乎了。 老天爷啊,让我回到真正的 科学之中吧! $ $ 该死,Mae,找找你自己…… +book_lore.beacon=信号信标说明书 +book_lore.beacon.author=Flim Flam工业 +book_lore.beacon.page.0=感谢您购买Mk.2照明信号信标 (版本1.3)! 这本小册子将简要介绍信标 的操作及其内部工作原理。 +book_lore.beacon.page.1=第1章:构成 $ 每个单元由四个主要部分 组成:控制电路、灯笼、雾号 和容纳其他部分的外壳。 有关主电路的详细说明,请 参考外壳维护盖内部的 电路图。 +book_lore.beacon.page.2=灯笼由聚碳酸酯外壳组成, 外壳内有一个标准200mm 的双色250瓦卤素灯泡, 替换用灯泡可以从我们的 商店订购。 +book_lore.beacon.page.3=不建议使用第三方灯泡,因为 我们无法确保安全操作。外壳 由专门的镀锌不锈钢制成, 具有耐用性。 +book_lore.beacon.page.4=第2章:灯笼 $ 灯笼的主要用途是在恶劣的 天气条件下提供照明以便 维护,同时指示信标的状态。 如果开机自检 (POST) 失败,灯将 +book_lore.beacon.page.5=亮起红色,否则就会亮起 绿色。请注意,颜色可能因 替换用灯泡的不同而有所 不同。 +book_lore.beacon.page.6=第3章:雾号 $ 雾号是信标的主要通信设备。 该信标被设计用于点对点 (P2P) 通信以及 消息广播。 +book_lore.beacon.page.7=第4章:P2P通信 $ 有关通信的详细信息,请参阅 通信手册。建立P2P连接的 简要介绍如下:首先,信标 必须给出“开始连接”信号, +book_lore.beacon.page.8=该信号是单一的长音。所有 可用的对等端也应使用一个 长音进行响应 (由接近度指定的顺序,以及 手册“响应连接”一节中 概述的通信指南) +book_lore.beacon.page.9=一旦所需对等端做出响应, 则给出“接受连接”信号, 即两个长音,然后对等端也 将用两个长音调进行响应。 之后的所有通信都必须使用 预先协商的信号来进行, +book_lore.beacon.page.10=最常用的是FAR-5M标准。 如果没有协商标准,通信将 立即结束,起到“ping” 的作用。如果通信继续, 可以使用另一个长单音 “结束连接”来结束连接。 +book_lore.beacon.page.11=第5章:保修 $ [页面故意留空] +cannery.f1=[按F1键获取帮助] +cannery.centrifuge=气体离心机 +cannery.centrifuge.0=气体离心机可以使用通用流体管道传输流体。 +cannery.centrifuge.1=大多数配方需要多台离心机。中间产品不能通过管道运输。 +cannery.centrifuge.2=该侧用作将中间产品输出到相邻离心机的连接口。 +cannery.centrifuge.3=六氟化铀只需两台离心机即可加工,但这将只产出铀燃料和铀-238。 +cannery.centrifuge.4=将其完全加工成铀-235和铀-238总共需要四台离心机。 +cannery.centrifuge.5=一些配方还需要离心机超频升级。 +cannery.crucible=坩埚 +cannery.crucible.0=坩埚用于熔炼矿石、铸锭或其他金属物品以进行合金化,并将其铸造成不同形状。 +cannery.crucible.1=它需要一个外部热源连接到底部,例如燃烧室。 +cannery.crucible.2=一旦加热,坩埚可以以两种方式运行,有或没有配方模板。 +cannery.crucible.3=坩埚有两个材料储存缓冲区: +cannery.crucible.4=左边的缓冲区用于缓存§a副产品§r,所有没有配方模板的熔炼材料都将缓存在这里。 +cannery.crucible.5=如果有熔炼配方,与配方不匹配的材料也将存储在这里。 +cannery.crucible.6=该缓冲区中的材料不会相互反应,只能从绿色出口输出用于铸造。 +cannery.crucible.7=右侧的缓冲区用于放入§c配方§r,如果安装了一个配方,并且该特定材料与该配方相关,则它将储存在此处。 +cannery.crucible.8=这些材料将慢慢结合成输出材料,从红色出口自动输出。 +cannery.crucible.9=请注意,只有这个缓冲区处理配方。如果更换模板,副产品缓冲区中的材料不会结合,也不会转移到配方缓冲区。 +cannery.crucible.10=如果目标有效,例如铸造通道或模具,出口将自动输出材料。 +cannery.crucible.11=与所有铸造块一样,可以使用铲子从坩埚中移除所有材料。 +cannery.fensu= +cannery.fensu.0=FEnSU能够存储超过9EHE(即9后18个零)的荒谬能量。 +cannery.fensu.1=只有在其底部有一个电线接口。 +cannery.fensu.2=这也是FEnSU唯一可以接收红石信号的地方。 +cannery.firebox=燃烧室 +cannery.firebox.0=燃烧室通过燃烧可燃物品产生热量。 +cannery.firebox.1=它可以燃烧任何可燃物品,但更高质量的燃料如煤、焦炭和固体燃料燃烧时间更长,温度更高。 +cannery.firebox.2=燃烧室顶部的铜触点可以传导热量。底部具有相同触点的机器可以通过放置在燃烧室顶部来接收热量。 +cannery.firebox.3=如果热量没有用完,且热量缓冲器变满,燃烧室将暂停运行,以防止燃料浪费。 +cannery.firebox.4=一种这样的机器是斯特林发电机,它将热量直接转化为能量。 +cannery.foundryChannel=铸造通道 +cannery.foundryChannel.0=铸造通道用于将熔融材料从坩埚或储罐输送到模具中。 +cannery.foundryChannel.1=通道可以通过从顶部(通过出口或直接连接坩埚)或从其他通道的侧面倾倒来接收材料。 +cannery.foundryChannel.2=运输材料时,渠道将优先考虑出口和浅铸造池等方块。 +cannery.foundryChannel.3=当无法供应出口或模具时,材料将流入相邻通道。 +cannery.foundryChannel.4=剩余材料可以用铲子清除。 +cannery.silex= +cannery.silex.0=自由电子激光器(FEL)利用能量和激光晶体产生强大的激光束。 +cannery.silex.1=小心,因为激光会烧毁或熔化较脆弱的方块… +cannery.silex.2=…但不是防爆的。 +cannery.silex.3=FEL用于为激光同位素分离室(SILEX)提供能量。FEL和SILEX必须至少相隔两个方块。 +cannery.silex.4=激光必须通过SILEX的玻璃开口进入。在错误的方向上入射可能会摧毁它。 +cannery.silex.5=侧面的开口可以使流体管道连接至SILEX上。 +cannery.silex.6=除了侧面的两个连接口之外,底部还有第三个隐藏连接口,可以从中抽取产品。 +cannery.silex.7=每个配方都需要特定的激光类型。使用比所需类型更强的激光将更快地处理项目。 +cannery.silex.8=一台FEL最多可以为5台SILEX供能。每个SILEX之间必须间隔一个方块。 +cannery.stirling=斯特林发电机 +cannery.stirling.0=斯特林发电机使用来自外部的热能来产生能量。 +cannery.stirling.1=它需要放置在发热机器的顶部,如燃烧室。 +cannery.stirling.2=然而,它可以利用的热量有限,过旋转可能导致灾难性故障。 +cannery.stirling.3=升级版可以在不损坏的情况下承受更多热量。 +cannery.willow=芥子柳 +cannery.willow.0=芥子柳是一种可以富集镉金属的植物。 +cannery.willow.1=芥子柳可以种植在泥土、草地上,甚至是泥渣或油泥上,但它们需要水才能生长。 +cannery.willow.2=芥子柳可以用骨粉或工业肥料催熟。它们不需要光就可以生长。 +cannery.willow.3=在第二阶段的生长之后,它们将需要在上方有至少一个方块的空间才能进一步生长。 +cannery.willow.4=在生长的第四阶段之后,它们需要下面有泥渣或油泥。 +cannery.willow.5=这可以通过在泥渣或油泥上手动种植芥子柳来实现,也可以通过在附近设置一个不断污染地面的水力压裂塔来实现。 +cannery.willow.6=到达最后阶段后,芥子柳将清除地面上的污染物,使泥渣或油泥恢复为正常的泥土。 +cannery.willow.7=现在芥子柳的叶子可以收割了。打破顶部的块状物会掉落一株3-6片叶子的小芥子柳,并保持植物底部的完整。 +cannery.willow.8=很快,这种植物就会重新开始生长,如果泥土被油泥取代,就会长出更多的叶子。叶子可以用酸化机加工成镉粉。 +cannery.willow.9=使用自动锯可以自动收割柳叶,它只会打碎准备收割的植物。 +cannery.hadron=粒子加速器 +cannery.hadron.0=粒子加速器包含3个主要部分: 核心,粒子分析室以及一系列的超导线圈。 +cannery.hadron.1=画面上的方块为粒子加速器核心组件,会以相对论的速度沿线圈向粒子分析室发射粒子。 +cannery.hadron.2=粒子会从此面发射; +cannery.hadron.3=在环形加速器中,会回到此面。 +cannery.hadron.4=每个线圈区段由8个致密线圈构成,中间留空(或放置粒子加速器核心)。 +cannery.hadron.5=线圈区段本身也必须被粒子加速器镀层包裹。 +cannery.hadron.6=加速器中还需要添加一个或多个粒子加速器接入终端,以与核心组件交互。 +cannery.hadron.7=核心组件也需要电力运行,因此需要在边缘添加电源接口。 +cannery.hadron.8=粒子加速器需要足够的电源接口来供给至少10kHE每单位线圈强度的能量。 +cannery.hadron.9=注意:环绕核心组件的线圈区段不参与线圈强度计算, +cannery.hadron.10=而且完全的直线粒子加速器不需要此区段。 +cannery.hadron.11=环形加速器中,需要如下的转角结构来改变粒子的方向: +cannery.hadron.12=外侧转角的线圈可以被完全去除。 +cannery.hadron.13=粒子加速器的最终部分是粒子分析室,这是一个由分析室方块包围的3x3x3空间。 +cannery.hadron.14=搭建完成的粒子加速器的外观应该类似下面这样: +cannery.hadron.math.0=致密钕线圈强度:50 +cannery.hadron.math.1= +cannery.hadron.math.2=致密星辉线圈强度: +cannery.hadron.math.3= +cannery.schottky=肖基特二极管 +cannery.schottky.0=画面上的方块为肖基特二极管。此方块可用于更复杂的粒子加速器设计,也可用于节省电能。 +cannery.schottky.1=默认状态下,二极管会阻挡所有粒子,需要使用螺丝刀进行配置。 +cannery.schottky.2=此面会接受进入的粒子, +cannery.schottky.3=而此面会将进入的粒子发射出去。 +cannery.schottky.4=现在图中的二极管含有两个出口,会表现出“量子”行为:在每个出口创造一个“虚拟粒子”。 +cannery.schottky.5=一旦所有的“虚拟粒子”都达到了分析室,粒子加速器就会选择动量需求最低的配方执行。 +cannery.schottky.6=被选中的粒子会经历“波函数坍缩”,变成真实的粒子,并且加速器只会消耗“坍缩”的虚拟粒子需求的能量。 +cannery.schottky.7=如果某一个虚拟粒子进入了结构不正确的区段,所有的虚拟粒子都会被销毁,而且坍缩的将是出错的粒子而非其他到达分析室的粒子。 +cannery.schottky.8=注意:同一个虚拟粒子只会经过同一个二极管的同一出口一次。虚拟粒子不会进入死循环,但仍然可以进入另一个二极管。 +cannery.schottky.9=肖基特二极管周围应具有合适的结构,使得粒子在每个交叉点处都有路可走。 +chem.ARSENIC=砷提取 +chem.ASPHALT=沥青生产 +chem.BAKELITE=电木生产 +chem.BALEFIRE=野火火箭燃料混合 +chem.BP_BIOFUEL=生物燃料酯化 +chem.BP_BIOGAS=沼气生产 +chem.C4=C-4合成 +chem.CC_CENTRIFUGE=氯方解石分离 +chem.CC_ELECTROLYSIS=氯化钙电解 +chem.CC_HEATING=高级煤液化 +chem.CC_HEAVY=初级煤液化 +chem.CC_I=强化煤液化 +chem.CC_NAPHTHA=煤液化石脑油 +chem.CC_OIL=煤液化 +chem.CIRCUIT_4=超频电路生产 +chem.CIRCUIT_5=高性能电路生产 +chem.CO2=二氧化碳生产 +chem.COALGAS_LEADED=含铅煤汽油混合 +chem.COLTAN_CLEANING=钶钽铁矿提纯 +chem.COLTAN_CRYSTAL=钽结晶 +chem.COLTAN_PAIN=Pn(III)钽铁溶液生产 +chem.CONCRETE=混凝土生产 +chem.CONCRETE_ASBESTOS=石棉夹层混凝土生产 +chem.COOLANT=冷却液混合 +chem.CORDITE=无烟火药生产 +chem.CRYOGEL=冷凝胶混合 +chem.DESH=Desh生产 +chem.DEUTERIUM=氘萃取 +chem.DUCRETE=贫铀混凝土生产 +chem.DYN_DNT=双聚中子态素合成 +chem.DYN_EUPH=Ep合成 +chem.DYN_SCHRAB=Sa326合成 +chem.DYNAMITE=炸药合成 +chem.ELECTROLYSIS=低温电解水 +chem.EPEARL=末影珍珠合成 +chem.ETHANOL=乙醇生产 +chem.FC_BITUMEN=沥青裂化 +chem.FC_DIESEL_KEROSENE=柴油裂化 +chem.FC_GAS_PETROLEUM=天然气裂化 +chem.FC_I_NAPHTHA=工业油裂化 +chem.FC_KEROSENE_PETROLEUM=煤油裂化 +chem.FP_HEAVYOIL=重油加工 +chem.FP_LIGHTOIL=轻油加工 +chem.FP_NAPHTHA=石脑油加工 +chem.FP_SMEAR=工业油加工 +chem.FR_PETROIL=汽油混合 +chem.FR_REOIL=原油再加工 +chem.FRACKSOL=压裂液生产 +chem.GASOLINE=含铅汽油生产 +chem.GASOLINE_LEADED=含铅汽油混合 +chem.HEAVY_ELECTROLYSIS=低温电解重水 +chem.HELIUM3=使用月球草皮提取氦-3 +chem.KEVLAR=凯夫拉生产 +chem.LAMINATE=强化夹层玻璃生产 +chem.LPG=石油天然气液化 +chem.LUBRICANT=润滑剂混合 +chem.METH=甲基苯丙胺合成 +chem.MEAT_PROCESSING=异虫肉矿物提取 +chem.NITAN=NITAN牌超级燃料混合 +chem.NITRIC_ACID=硝酸生产 +chem.OIL_SAND=沥青砂提取 +chem.OSMIRIDIUM_DEATH=锇酸溶液生产 +chem.PC=聚碳酸酯合成 +chem.PC_ELECTROLYSIS=氯化钾电解 +chem.PEROXIDE=过氧化氢生产 +chem.PET=PET合成 +chem.PETROIL_LEADED=含铅石油混合 +chem.POLYMER=聚合物合成 +chem.PUF6=六氟化钚生产 +chem.PVC=聚氯乙烯合成 +chem.RUBBER=橡胶生产 +chem.SAS3=三硫化Sa生产 +chem.SATURN=土星锭生产 +chem.SCHRABIDATE=Sa酸铁生产 +chem.SCHRABIDIC=Sa酸合成 +chem.SF_BIOFUEL=生物燃料固化 +chem.SF_BIOGAS=沼气固化 +chem.SF_DIESEL=柴油凝固 +chem.SF_GAS=天然气固化 +chem.SF_HEATINGOIL=燃油固化 +chem.SF_HEAVYOIL=重油固化 +chem.SF_KEROSENE=煤油固化 +chem.SF_LIGHTOIL=轻油固化 +chem.SF_LUBRICANT=润滑剂固化 +chem.SF_NAPHTHA=石脑油固化 +chem.SF_OIL=原油固化 +chem.SF_PETROIL=石油固化 +chem.SF_PETROLEUM=石油气固化 +chem.SF_RECLAIMED=再生油固化 +chem.SF_SMEAR=工业油固化 +chem.SHELL_CHLORINE=16英寸氯气炮弹生产 +chem.SHELL_MUSTARD=16英寸芥子气炮弹生产 +chem.SHELL_PHOSGENE=16英寸光气炮弹生产 +chem.SOLID_FUEL=固体火箭燃料生产 +chem.SOLVENT=有机溶剂混合 +chem.STEAM=烧水 +chem.SULFURIC_ACID=硫酸生产 +chem.TATB=TATB合成 +chem.TEL=四乙基铅混合 +chem.TEST=测试 +chem.THORIUM_SALT=钍盐富集 +chem.TNT=TNT合成 +chem.UF6=六氟化铀生产 +chem.VIT_GAS=气态核废料玻璃化 +chem.VIT_LIQUID=液态核废料玻璃化 +chem.XENON=林德循环制氙 +chem.XENON_OXY=增强林德循环制氙 +chem.YELLOWCAKE=黄饼生产 +commands.satellite.no_satellite=未找到使用此频率的卫星! +commands.satellite.not_a_satellite=持有的物品不是卫星! +commands.satellite.satellite_descended=卫星成功降落。 +commands.satellite.satellite_orbited=卫星发射。 +commands.satellite.should_be_run_as_player=此命令应该由玩家运行! +container.amsBase=AMS基座(装饰) +container.amsEmitter=AMS发射极(装饰) +container.amsLimiter=AMS稳能器(装饰) +container.anvil=%s级砧 +container.arcFurnace=电弧炉 +container.armorTable=装甲改装台 +container.ashpit=储灰槽 +container.assembler=装配机 +container.autocrafter=自动工作台 +container.barrel=桶 +container.bat9000=巨尻-9000 储罐 +container.battery=储能 +container.bombMulti=多用途炸弹 +container.catalyticReformer=催化重整器 +container.centrifuge=离心机 +container.chemplant=化工厂 +container.compactLauncher=紧凑型发射台 +container.craneBoxer=输送带打包机 +container.craneExtractor=输送带提取器 +container.craneGrabber=输送带抓斗 +container.craneInserter=输送带导入器 +container.craneRouter=传送路由器 +container.craneUnboxer=输送带解包机 +container.crateDesh=Desh箱 +container.crateIron=铁箱 +container.crateSteel=钢箱 +container.crateTemplate=模板箱 +container.crateTungsten=钨箱 +container.crystallizer=矿物酸化器 +container.cyclotron=回旋加速器 +container.dfcCore=暗核聚变堆核心 +container.dfcEmitter=DFC发射器 +container.dfcInjector=DFC燃料喷射器 +container.dfcReceiver=DFC接收器 +container.dfcStabilizer=DFC稳定器 +container.diFurnace=高炉 +container.diFurnaceRTG=核高炉 +container.droneCrate=运输无人机坞 +container.droneDock=物流无人机坞 +container.droneProvider=供应箱 +container.droneRequester=请求箱 +container.electricFurnace=电炉 +container.epress=电动锻压机 +container.exposureChamber=曝光室 +container.factoryAdvanced=高级工厂 +container.factoryTitanium=工厂 +container.fluidtank=储罐 +container.fileCabinet=文件柜 +container.forceField=力场发生器 +container.frackingTower=水力压裂塔 +container.furnaceBrick=砖砌炉 +container.furnaceCombination=复式炼焦炉 +container.furnaceIron=铁炉 +container.furnaceSteel=钢炉 +container.fusionMultiblock=大型聚变反应堆 +container.fusionaryWatzPlant=Watz聚变反应堆 +container.gasCentrifuge=气体离心机 +container.gasFlare=高架火炬 +container.generator=研究型反应堆 +container.hadron=粒子加速器 +container.heaterFirebox=燃烧室 +container.heaterHeatex=热交换器 +container.heaterOilburner=流体燃烧器 +container.heaterOven=加热炉 +container.hydrotreater=加氢装置 +container.iGenerator=工业发电机 +container.keyForge=锁匠桌 +container.launchPad=导弹发射台 +container.launchPadRusted=导弹发射台 +container.launchTable=大型发射台 +container.leadBox=安全盒 +container.machineArcWelder=电弧焊机 +container.machineArcFurnaceLarge=电弧炉 +container.machineBoiler=锅炉 +container.machineCMB=CMB炼钢炉 +container.machineCoal=火力发电机 +container.machineCoker=焦化装置 +container.machineCompressor=压缩机 +container.machineCrucible=坩埚 +container.machineDiesel=柴油发电机 +container.machineElectricBoiler=电锅炉 +container.machineElectrolyser=电解机 +container.machineFEL= +container.machineFunnel=组合漏斗 +container.machineICF=ICF反应堆 +container.machineICFPress=ICF燃料靶丸制造器 +container.machineITER=聚变反应堆 +container.machineLargeTurbine=工业汽轮机 +container.machineLiquefactor=液化机 +container.machineMixer=工业搅拌机 +container.machineOreSlopper= +container.machineRefinery=炼油厂 +container.machineSelenium=星型发动机 +container.machineShredder=粉碎机 +container.machineSILEX=激光同位素分离室 +container.machineSolderingStation=焊接台 +container.machineSolidifier=固化机 +container.machineStrandCaster=连续铸造机 +container.machineTurbine=汽轮机 +container.machineTurbofan=涡扇发动机 +container.machineWoodBurner=火力发电机 +container.machine_schrabidium_transmutator=Sa326嬗变装置 +container.massStorage=存储 +container.microwave=微波炉 +container.miningDrill=自动采矿钻机 +container.miningLaser=采矿激光 +container.missileAssembly=导弹装配台 +container.nukeBoy=小男孩 +container.nukeCustom=自定义核弹 +container.nukeFleija= +container.nukeFstbmb=野火炸弹 +container.nukeFurnace=核熔炉 +container.nukeGadget=小玩意 +container.nukeMan=胖子 +container.nukeMike=常春藤迈克 +container.nukeN2=N2炸弹 +container.nukeN45=N45水雷 +container.nukePrototype=原型 +container.nukeSolinium=蔚蓝洗礼 +container.nukeTsar=沙皇炸弹 +container.oilWell=钻油塔 +container.orbus=重型反物质储罐 +container.plasmaHeater=等离子加热器 +container.press=火力锻压机 +container.puf6_tank=六氟化钚储罐 +container.pumpjack=石油钻机 +container.radGen=辐射能量发电机 +container.radar=雷达 +container.radiobox=FM发射机 +container.radiolysis=RTG辐射裂解室 +container.radiorec=FM收音机 +container.rbmkBoiler=RBMK石墨式反应堆蒸汽管道 +container.rbmkControl=RBMK石墨式反应堆控制棒 +container.rbmkControlAuto=RBMK石墨式反应堆自动控制棒 +container.rbmkHeater=RBMK流体加热器 +container.rbmkOutgasser=RBMK石墨式反应堆辐照通道 +container.rbmkReaSim=RBMK石墨式反应堆燃料棒 (ReaSim) +container.rbmkRod=RBMK石墨式反应堆燃料棒 +container.rbmkStorage=RBMK 燃料存储棒 +container.reactorBreeding=增殖反应堆 +container.reactorControl=反应堆遥控模块 +container.reactorLarge=大型核反应堆 +container.reactorResearch=研究型反应堆 +container.reix=Rei-X主机 +container.rtg=放射性同位素发电机 +container.rtgFurnace=放射性同位素热力炉[RTG] +container.rttyCounter=无线红石物品计数器 +container.rttyLogic=无线红石逻辑接收器 +container.rttyReceiver=无线红石信号接收器 +container.rttySender=无线红石信号发射器 +container.safe=保险箱 +container.satDock=卸货平台 +container.satLinker=卫星ID管理 +container.siren=警报器 +container.soyuzCapsule=货物着陆舱 +container.soyuzLauncher=联盟号发射平台 +container.storageDrum=核废料处理桶 +container.teleLinker=炮塔ID管理 +container.teleporter=传送机 +container.trainTram=平板载货电车 +container.turbinegas=联合循环燃气轮机 +container.turretArty=重炮炮塔“格雷格” +container.turretChekhov=重机枪炮塔“契诃夫的枪” +container.turretFriendly=轻机枪炮塔“友好先生” +container.turretFritz=重型火焰喷射器炮塔“弗里茨” +container.turretHIMARS=火箭炮塔“亨利” +container.turretHoward=双联守门员近防系统“霍华德” +container.turretJeremy=重炮炮塔“杰里米” +container.turretMaxwell=高能微波炮塔”麦克斯韦” +container.turretRichard=火箭炮塔“理查德” +container.turretSentry=哨兵炮塔“布朗” +container.turretTauon=陶子发射器炮塔“陶恩” +container.uf6_tank=六氟化铀储罐 +container.vacuumDistill=真空炼油厂 +container.wasteDrum=乏燃料池 +container.watzPowerplant=Watz发电厂 +container.zirnox=锆诺克斯核反应堆 +crucible.aa=高级合金生产 +crucible.abronze=砷青铜生产 +crucible.bbronze=铋青铜生产 +crucible.bscco=BSCCO生产 +crucible.cdalloy=镉钢生产 +crucible.cmb=CMB钢生产 +crucible.ferro=铀铁合金生产 +crucible.hematite=赤铁矿炼铁 +crucible.hss=高速钢生产 +crucible.malachite=孔雀石炼铜 +crucible.magtung=磁化钨生产 +crucible.redcopper=紫铜生产 +crucible.steel=钢铁生产 +crucible.steelMeteoric=陨铁炼钢 +crucible.steelPig=生铁炼钢 +crucible.steelWrought=锻铁炼钢 +crucible.tcalloy=锝钢合金生产 +death.attack.acid=%1$s 掉进了酸里 +death.attack.acidPlayer=%1$s 被 %2$s 溶解 +death.attack.ams=%1$s 沐浴在尚未被人类科学命名的致命粒子中 +death.attack.amsCore=%1$s 在奇点之火中蒸发 +death.attack.asbestos=%1$s现在有权获得经济补偿 +death.attack.bang=%1$s 被炸成小块碎片 +death.attack.blackhole=%1$s 粉身碎骨 +death.attack.blacklung=%1$s 死于尘肺病 +death.attack.blender=%1$s 被切成小块 +death.attack.boat=%1$s 被船撞了 +death.attack.boil=%1$s被%2$s活活煮沸 +death.attack.boxcar=%1$s 被一节坠落的车厢撞死了...好吧 +death.attack.broadcast=%1$s 的大脑融化了 +death.attack.building=%1$s 被从天而降的建筑砸中了 +death.attack.cheater=%1$s 的肠子变成了燕麦(???) +death.attack.chopperBullet=%1$s 被 %2$s 屠杀 +death.attack.cloud=%1$s 像冰棒一样在太阳下融化 +death.attack.cmb=%1$s 被 %2$s 搞得嘶嘶作响 +death.attack.digamma=%1$s 踏入深渊 +death.attack.electricity=%1$s 被电死 +death.attack.electrified=%1$s 被 %2$s 电死 +death.attack.euthanized=%1$s 被 %2$s 安乐死 +death.attack.euthanizedSelf2=%1$s 获得了达尔文奖 +death.attack.euthanizedSelf=%1$s 把自己安乐死了,可真傻 +death.attack.exhaust=%1$s 被火箭烤成了羊肉串 +death.attack.flamethrower=%1$s 被 %2$s 火化 +death.attack.flamethrower.item=%1$s 被 %2$s 使用 %3$s 火化 +death.attack.ice=%1$s 被 %2$s 做成了冰棒 +death.attack.laser=%1$s 被 %2$s 变成了灰烬 +death.attack.laser.item=%1$s 被 %2$s 使用 %3$s 变成灰烬 +death.attack.lead=%1$s 死于铅中毒 +death.attack.lunar=%1$s 忘记了给重要器官充电 +death.attack.meteorite=%1$s 被来自外太空的陨石击中 +death.attack.microwave=%1s 因微波辐射爆炸 +death.attack.mku=%1$s 死于不明原因 +death.attack.monoxide=%1$s忘了换一氧化碳探测器的电池 +death.attack.mudPoisoning=%1$s 死于毒泥浆中 +death.attack.nuclearBlast=%1$s 被核爆炸飞 +death.attack.overdose=%1$s 上瘾并窒息 +death.attack.pc=%1$s 在粉红色的云中变成了一个水坑 +death.attack.plasma=%1$s 被 %2$s 烧死 +death.attack.radiation=%1$s 死于辐射 +death.attack.revolverBullet=%1$s 被 %2$s 用 %3$s 击中头部 +death.attack.revolverBullet.item=%1$s 被 %2$s 使用 %3$s 爆头 +death.attack.rubble=%1$s 被碎片压扁了 +death.attack.shrapnel=%1$s 被榴弹碎片炸得千疮百孔 +death.attack.spikes=%1$s被刺穿了 +death.attack.subAtomic1=%1$s 的原子已被 %2$s 销毁. +death.attack.subAtomic2=%1$s 因为被 %2$s 篡改了实际速度,导致QPU没有对准 +death.attack.subAtomic3=由于 %2$s,1$s 的偏差下降到1%以下 +death.attack.subAtomic4=%1$s 因为 %2$s 被零除了 +death.attack.subAtomic5=%1$s 因为 %2$s 无效了 +death.attack.suicide=%1$s 打爆了自己的头 +death.attack.taint=%1$s 死于恶性肿瘤 +death.attack.tau=%1$s 被 %2$s 用带负电荷的陶子射穿 +death.attack.tauBlast=%1$s 对XVL1456充能时间过长,被炸成碎片 +death.attack.teleporter=%1$s 被传送到虚空 +desc.gui.assembler.warning=§c错误:§r此机器需要装配机模板! +desc.gui.chemplant.warning=§c错误:§r此机器需要化工厂模板! +desc.gui.gasCent.enrichment=§2浓缩§r$浓缩铀需要串联$两个离心机串联将离心出$铀燃料,四个离心机串联$将完全分离出铀235。 +desc.gui.gasCent.output=§6流体输送§r$流体可通过输出端口输送至另一台离心机$进行进一步处理。 +desc.gui.nukeBoy.desc=§1需要:§r$ * 中子屏蔽罩$ * 铀-235弹头$ * 次临界铀-235标靶$ * 炸药$ * 点火器 +desc.gui.nukeGadget.desc=§1需要:§r$ * 4个 初代$ 炸药透镜阵列$ * 钚核心$ * 线路 +desc.gui.nukeMan.desc=§1需要:§r$ * 4个 初代$ 炸药透镜阵列$ * 钚核心$ * 点火器 +desc.gui.nukeMike.desc=§1需要:§r$ * 4个 炸药透镜阵列$ * 钚核心$ * 氘冷却装置$ * 铀涂层氘罐 * 氘罐 +desc.gui.nukeTsar.desc=§1需要:§r$ * 4个 炸药透镜阵列$ * 钚核心$§9可选:§r$ * 沙皇炸弹核心 +desc.gui.rttyLogic.cond0=信号§6小于§r常量 +desc.gui.rttyLogic.cond1=信号§6小于等于§r常量 +desc.gui.rttyLogic.cond2=信号§6大于等于§r常量 +desc.gui.rttyLogic.cond3=信号§6大于§r常量 +desc.gui.rttyLogic.cond4=信号§6等于§r常量 +desc.gui.rttyLogic.cond5=信号§6不等于§r常量 +desc.gui.rttyLogic.cond6=信号与字符串§6匹配§r +desc.gui.rttyLogic.cond7=信号与字符串§6不匹配§r +desc.gui.rttyLogic.cond8=信号§6包含§r字符串 +desc.gui.rttyLogic.cond9=信号§6不包含§r字符串 +desc.gui.radiolysis.desc=§9说明§r$该RTG比其他RTG更高效,$并且配备了一个用于$裂解和灭菌的辐解室。 +desc.gui.rtgBFurnace.desc=处理裂解配方至少需要15热量,$热量越高,运行速度越快$超过最高处理速度的热量不起作用$短寿命靶丸可能会衰变 +desc.gui.rtg.heat=§e当前热等级:%s +desc.gui.rtg.pellets=接受的靶丸: +desc.gui.rtg.pelletHeat=%s (%s 热量) +desc.gui.rtg.pelletPower=%s (%s HE/刻) +desc.gui.template=§9模板§r$模板可由$机器模板文件夹制作。 +desc.gui.turbinegas.automode=§2自动涡轮机节流模式§r$通过单击“AUTO”按钮,涡轮机$将根据网络所需的功率自动调整发电量$ +desc.gui.turbinegas.fuels=§6可接受的燃料:§r +desc.gui.turbinegas.warning=§c燃油或润滑油液位低!§r +desc.gui.zirnox.coolant=§3冷却剂§r$CO2将热量从堆芯转移到水中$这会令它变成成超热蒸汽$冷却和蒸汽生产的效率取决于压力。 +desc.gui.zirnox.pressure=§6压力§r$排放二氧化碳可以降低压力$然而,压力过低,冷却效率和蒸汽产量将降低$小心熔毁! +desc.gui.zirnox.warning1=§c错误:§r反应堆正常运行需要水! +desc.gui.zirnox.warning2=§c错误:§r二氧化碳是反应堆正常运行所必需的! +desc.item.ammo.con_accuracy2=- 精度大幅降低 +desc.item.ammo.con_damage=- 伤害大幅降低 +desc.item.ammo.con_heavy_wear=- 大幅增加磨损 +desc.item.ammo.con_ling_fire=- 没有火焰 +desc.item.ammo.con_nn=- 甚至没有核爆 +desc.item.ammo.con_no_damage=- 没有伤害 +desc.item.ammo.con_no_explode1=- 非爆炸性 +desc.item.ammo.con_no_explode2=- 不破坏方块 +desc.item.ammo.con_no_explode3=- 无破片伤害 +desc.item.ammo.con_no_fire=- 不能引起燃烧 +desc.item.ammo.con_no_mirv=- 不建议在原始MIRV上使用 +desc.item.ammo.con_no_projectile=- 无抛射物 +desc.item.ammo.con_penetration=- 无穿透能力 +desc.item.ammo.con_radius=- 减小爆炸半径 +desc.item.ammo.con_range2=- 大幅降低射程 +desc.item.ammo.con_sing_projectile=- 单个弹头 +desc.item.ammo.con_speed=- 弹丸速度降低 +desc.item.ammo.con_super_wear=- 磨损严重增加 +desc.item.ammo.con_wear=- 加剧磨损 +desc.item.ammo.neu_40mm=* 这是一枚40毫米的榴弹,我们把它挤到枪管里! +desc.item.ammo.neu_blank=* 这是空包弹 +desc.item.ammo.neu_boat=* 船 +desc.item.ammo.neu_boxcar=* 车厢 +desc.item.ammo.neu_building=* 建筑物 +desc.item.ammo.neu_chlorophyte=* 叶绿 +desc.item.ammo.neu_eraser=* 用于消除重大错误 +desc.item.ammo.neu_fun=* 全家其乐无穷! +desc.item.ammo.neu_heavy_metal=* 重金属 +desc.item.ammo.neu_homing=* 追踪 +desc.item.ammo.neu_jolt=* 震荡 +desc.item.ammo.neu_leadburster=* 附着在表面并喷射子弹 +desc.item.ammo.neu_less_bouncy=* 弹性更小 +desc.item.ammo.neu_maskman_flechette=* 曳光弹,同时引发一场贫铀飞镖弹风暴 +desc.item.ammo.neu_maskman_meteorite=* 高伤害,同时召唤小陨石 +desc.item.ammo.neu_more_bouncy=* 额外弹性 +desc.item.ammo.neu_no_bounce=* 没有弹性 +desc.item.ammo.neu_no_con=* 没有缺点 +desc.item.ammo.neu_starmetal=* 星辉金属 +desc.item.ammo.neu_tracer=* 示踪剂 +desc.item.ammo.neu_uhh= +desc.item.ammo.neu_warcrime1=* 从技术上来讲触犯了战争罪 +desc.item.ammo.neu_warcrime2=* 一发触犯两条战争罪! +desc.item.ammo.pro_accurate1=+ 提升精度 +desc.item.ammo.pro_accurate2=+ 近乎完美的精度 +desc.item.ammo.pro_balefire=+ 野火 +desc.item.ammo.pro_bomb_count=+ 炸弹数量增加 +desc.item.ammo.pro_caustic=+ 腐蚀性 +desc.item.ammo.pro_chainsaw=+ 电锯 +desc.item.ammo.pro_chlorine=+ 氯气 +desc.item.ammo.pro_damage=+ 提升伤害 +desc.item.ammo.pro_damage_slight=+ 高于平均伤害 +desc.item.ammo.pro_emp=+ 电磁脉冲 +desc.item.ammo.pro_explosive=+ 爆炸 +desc.item.ammo.pro_fallout=+ 辐射尘 +desc.item.ammo.pro_fit_357=+ 适用于所有.357枪械 +desc.item.ammo.pro_flames=+ 火焰喷射量增加 +desc.item.ammo.pro_gravity=+ 下坠降低 +desc.item.ammo.pro_heavy_damage=+ 大幅增加伤害 +desc.item.ammo.pro_incendiary=+ 能引起燃烧 +desc.item.ammo.pro_lunatic=+ 疯子 +desc.item.ammo.pro_marauder=+ 立即消除烦人的和不平衡的敌人 +desc.item.ammo.pro_mining=+ 爆炸使所有方块掉落 +desc.item.ammo.pro_no_gravity=+ 不受重力影响 +desc.item.ammo.pro_nuclear=+ 核爆 +desc.item.ammo.pro_penetration=+ 穿透 +desc.item.ammo.pro_percussion=+ 冲击波 +desc.item.ammo.pro_phosphorus=+ 可致磷烧伤 +desc.item.ammo.pro_phosphorus_splash=+ 磷飞溅 +desc.item.ammo.pro_poison_gas=+ 毒物飞溅 +desc.item.ammo.pro_radius=+ 增加爆炸半径 +desc.item.ammo.pro_radius_high=+ 大幅增加爆炸半径 +desc.item.ammo.pro_range=+ 增加射程 +desc.item.ammo.pro_rocket=+ 火箭 +desc.item.ammo.pro_rocket_propelled=+ 火箭推进 +desc.item.ammo.pro_shrapnel=+ 破片 +desc.item.ammo.pro_speed=+ 提高弹头飞行速度 +desc.item.ammo.pro_stunning=+ 眩晕 +desc.item.ammo.pro_toxic=+ 剧毒 +desc.item.ammo.pro_wear=+ 减少磨损 +desc.item.ammo.pro_withering=+ 凋零 +desc.item.armorMod.display=显示已安装的装甲模块 +desc.item.battery.charge=储能: %s / %sHE +desc.item.battery.chargePerc=储能: %s%% +desc.item.battery.chargeRate=充电效率: %sHE/刻 +desc.item.battery.dischargeRate=放电效率: %sHE/刻 +desc.item.durability=耐久: %s +desc.item.grenade.fuse=引信: %s +desc.item.grenade.fuseImpact=碰炸 +desc.item.grenade.fuseInstant=瞬发 +desc.item.gun.ammo=弹药 %s +desc.item.gun.ammoBelt=从背包中使用 +desc.item.gun.ammoEnergy=能耗; %sHE 每发 +desc.item.gun.ammoEnergyAlt=%sHE 每发 +desc.item.gun.ammoMag= +desc.item.gun.ammoType=弹药类型: %s +desc.item.gun.ammoTypeAlt=辅助弹药: %s +desc.item.gun.damage=伤害: %s - %s +desc.item.gun.damageAlt=伤害: %s +desc.item.gun.lore=查看深入的知识 +desc.item.gun.loreFunc=查看深入功能 +desc.item.gun.manufacturer=制造商: %s +desc.item.gun=名称: %s +desc.item.gun.pellets=弹丸数:%s-%s +desc.item.gun.penetration=装甲穿透值: %s +desc.item.kitArmor=装甲将被新的装备取代。 +desc.item.kitHaz=装甲将被防护服取代。 +desc.item.kitPack=真便宜! +desc.item.kitPool=请在打开前清空背包库存! +desc.item.pileRod=§e使用钻孔石墨插入$§E使用螺丝刀拔出$ +desc.item.pipette.corrosive=可处理腐蚀性液体。 +desc.item.pipette.laboratory=现在精度提高了50倍! +desc.item.pipette.noCorrosive=§e无法处理腐蚀性液体。 +desc.item.pipette.noEmpty=§e移液管未排空 +desc.item.rtgDecay=衰变为:%s +desc.item.rtgHeat=功率级别:%s +desc.item.storage.capacity=容量 %s%%s +desc.item.storage.proscons=查看利弊列表 +desc.misc.357=.357 马格南 +desc.misc.556=.223 雷明顿 +desc.misc.762=.308 温彻斯特 +desc.misc.func=§n-- 作用 -- +desc.misc.lanthanum=\"镧\" +desc.misc.lctrl=§8按住 <§e§o左CTRL§8§o> %s +desc.misc.lore=§n-- 知识 -- +desc.misc.lshift=§8按住 <§e§o左SHIFT§8§o> %s +desc.misc.luna= +desc.misc.meltPoint=熔点: §c%s +desc.misc.noPos=未设置位置! +desc.misc.pos=将位置设置为:%s,%s,%s +desc.misc.posSet=位置已设置! +desc.item.wasteCooling=在乏燃料池中冷却 +desc.item.zirnoxBreedingRod=§2[ZIRNOX增殖棒]$§e放在燃料棒旁边增殖$§e持续 %d 刻 +desc.item.zirnoxRod=§a[ZIRNOX燃料棒]$§e每刻产生 %1$d 热量$§e持续 %2$d 刻 +digamma.playerDigamma=玩家F-迪伽马辐照水平: +digamma.playerHealth=玩家所受F-迪伽马辐照影响: +digamma.playerRes=玩家F-迪伽马防护水平: +digamma.title=玩家F-迪伽马辐射自检器 +entity.entity_cyber_crab=赛博螃蟹 +entity.entity_elder_one=上古鸭神 +entity.entity_fucc_a_ducc=鸭子 +entity.entity_glyphid=异虫 +entity.entity_glyphid_behemoth=巨兽异虫 +entity.entity_glyphid_blaster=爆破异虫 +entity.entity_glyphid_bombardier=投弹手异虫 +entity.entity_glyphid_brawler=狂战士异虫 +entity.entity_glyphid_brenda=布伦达 +entity.entity_glyphid_digger=掘地异虫 +entity.entity_glyphid_nuclear=大个子强森 +entity.entity_glyphid_scout=侦察异虫 +entity.entity_ntm_fbi=FBI探员 +entity.entity_ntm_fbi_drone=FBI无人机 +entity.entity_ntm_radiation_blaze=核融元素 +entity.hbm.entity_ntm_ufo=火星入侵者飞船 +entity.entity_mob_hunter_chopper=猎人直升机 +entity.entity_mob_mask_man=面具人 +entity.entity_mob_gold_creeper=黄金爬行者 +entity.entity_mob_nuclear_creeper=核爆爬行者 +entity.entity_mob_phosgene_creeper=光气爬行者 +entity.entity_mob_tainted_creeper=污染爬行者 +entity.entity_mob_volatile_creeper=不稳定爬行者 +entity.entity_parasite_maggot=寄生虫 +entity.entity_pigeon=鸽子 +entity.entity_plastic_bag=塑料袋 +entity.entity_taint_crab=污染螃蟹 +entity.entity_tesla_crab=磁暴螃蟹 +entity.hbm.entity_balls_o_tron=机械蠕虫 +entity.hbm.entity_balls_o_tron_seg=机械蠕虫 +entity.hbm.entity_bullet=子弹 +entity.hbm.entity_rocket=火箭弹 +entity.hbm.entity_schrabnel=Sa破片 +excavator.crusher=粉碎开关 +excavator.drill=挖掘开关 +excavator.silktouch=精准采集开关 +excavator.veinminer=连锁挖矿开关 +excavator.walling=填充开关 +flare.ignition=点火装置 +flare.valve=流量阀 +fluid.acid_fluid=酸 +fluid.corium_fluid=堆芯熔融物 +fluid.mud_fluid=毒泥 +fluid.rad_lava_fluid=放射性火山熔岩 +fluid.schrabidic_fluid=Sa酸 +fluid.toxic_fluid=绿色软泥 +fluid.volcanic_lava_fluid=火山熔岩 +foundry.filter=筛选器:%s +foundry.inverted=红石信号反转 +foundry.invertFilter=过滤器反转 +foundry.noCast=未安装模具! +geiger.chunkRad=当前区块辐射: +geiger.envRad=环境总辐射量: +geiger.playerRad=玩家辐射: +geiger.playerRes=辐射抗性: +geiger.title=盖革计数器 +geiger.title.dosimeter=剂量计 +gun.make.ARMALITE=阿玛莱特公司 +gun.make.AUTO_ORDINANCE=美国自动武器公司 +gun.make.BAE=英国宇航系统公司 +gun.make.BENELLI=伯奈利武器公司 +gun.make.BLACK_MESA=黑山研究所 +gun.make.CERIX=赛里克斯·马格努斯锻造世界 +gun.make.COLT=柯尔特制造公司 +gun.make.COMBINE=世界工会 +gun.make.CUBE= +gun.make.DRG=深岩银河 +gun.make.ENZINGER=Enzinger工会 +gun.make.EQUESTRIA=小马国导弹系统 +gun.make.FLIMFLAM=FlimFlam“欺骗”工业 +gun.make.F_STRONG=史特朗堡 +gun.make.GLORIA=GLORIA公司 +gun.make.HASBRO=孩之宝 +gun.make.H_AND_K=黑克勒和科赫武器公司 +gun.make.H_AND_R=哈林顿-理查森武器公司 +gun.make.IF=蹄铁军工 +gun.make.IMI=以色列军事工业 +gun.make.IMI_BIGMT=以色列军事工业公司/大型MT +gun.make.LANGFORD=朗福德研究实验室 +gun.make.LUNA=月球防御公司 +gun.make.MAGNUM_R_IMI=马格南研究公司 / 以色列军事工业公司 +gun.make.MANN=Open Mann公司 +gun.make.MAXIM=海勒姆·马克沁 +gun.make.METRO=地铁枪手 +gun.make.MWT=MWT原型实验室 +gun.make.NAWS=凯亚姆工业 +gun.make.ERFURT=埃尔福特机械制造厂 +gun.make.NONE= +gun.make.RAYTHEON=导弹系统公司 +gun.make.REMINGTON=雷明登武器公司 +gun.make.ROCKWELL=罗克韦尔国际公司 +gun.make.ROCKWELL_U=罗克韦尔国际公司? +gun.make.RYAN=莱恩工业 +gun.make.SAAB=萨博博福斯动力公司 +gun.make.SACO=萨科防卫军械 +gun.make.TULSKY=图拉武器厂 +gun.make.UAC=联合宇宙航空公司 +gun.make.UNKNOWN= +gun.make.WESTTEK=WestTek研究设施 +gun.make.WGW=威廉·古斯特洛夫·维尔克 +gun.make.WINCHESTER=温彻斯特速射武器公司 +gun.make.WINCHESTER_BIGMT=温彻斯特速射武器公司/大型MT +gun.name.ar15_50=AR-15 .50BMG型 +gun.name.baeAR=英国制式突击步枪 +gun.name.bel=野火蛋发射器 +gun.name.benelli=伯奈利M4 Super 90霰弹枪 +gun.name.benelliDrum=伯奈利M4 Super 90霰弹枪 (泵动供弹改进型) +gun.name.bio= +gun.name.bolter=Manticora Pattern爆弹枪 +gun.name.congoLake=刚果湖水泵动榴弹发射器 +gun.name.cPython=柯尔特蟒蛇 +gun.name.cz53=CZ53 单兵转轮机枪 +gun.name.cz57=CZ57 复仇者机枪 +gun.name.dart=针枪 +gun.name.deagle=以色列军事工业公司沙漠之鹰 +gun.name.emp=EMP投射器 +gun.name.extinguisher=PROTEX灭火器6kg +gun.name.ffiV=FFI 蝰蛇 +gun.name.ffiVInox=FFI 蝰蛇 Inox +gun.name.ffiVLead=铅制 FFI 蝰蛇 +gun.name.ffiVN1=FFI 蝰蛇 N1 +gun.name.ffiVN2=FFI 蝰蛇 N2 +gun.name.ffiVUltra=FFI 蝰蛇 Ultra +gun.name.ffivBling=闪光款 FFI 蝰蛇 +gun.name.ffivSatur=FFI 蝰蛇 D-25A +gun.name.g36=HK G36突击步枪 +gun.name.gPistol=HK69A1 手持单发榴弹发射器 +gun.name.gustav=卡尔·古斯塔夫M1无后坐力炮 +gun.name.ifHorseshoe=IF-18 蹄铁 +gun.name.ifPit=IF-18 蹄铁 Bottomless Pit +gun.name.ifScope=IF-18 蹄铁 Scoped +gun.name.ifStorm=IF-18 蹄铁 银色风暴 +gun.name.ifVanity=IF-18 蹄铁 Vanity +gun.name.karl=M1 卡尔·古斯塔夫 +gun.name.ks23=KS-23霰弹枪 +gun.name.lacunae= +gun.name.lasetDet=霍普维尔激光雷管 +gun.name.lunaAR=1986 Bishamonten式突击步枪 +gun.name.lunaGun=1978年罗睺罗型制式狙击步枪(第二次修订) +gun.name.lunaHLR=1944嫦娥式轻机枪 +gun.name.lunaShotty=1978年关羽式散弹枪(第1次修订) +gun.name.lunaSMG=1956 ānanda type Submachine Gun +gun.name.lunaSniper=1915后羿式反器材步枪 +gun.name.lunaTWR=时间扭曲步枪 +gun.name.m2=M2式勃朗宁大口径重机枪 +gun.name.m42=M-42战术核弹发射器 +gun.name.m42MIRV=M-42实验MIRV +gun.name.m60=7.62毫米口径M60机枪 +gun.name.maxim=马克沁机枪 +gun.name.maximDouble=双重马克沁机枪 +gun.name.mg3=MG-42通用机枪 +gun.name.mp40=MP40冲锋枪 +gun.name.nerf=某些无良记者眼中的大规模杀伤性武器 +gun.name.osipr=守望标准型脉冲步枪 +gun.name.panz=反坦克火箭来复枪 54 +gun.name.quadro=OpenQuadro便携式导弹发射器 +gun.name.remington870=雷明顿870 +gun.name.revolverCursed=不列颠标准问题电动手枪 +gun.name.sauer=绍尔猎枪 +gun.name.spas12=弗兰基SPAS-12式12号霰弹枪 +gun.name.spiw= +gun.name.stinger=FIM-92毒刺便携式防空系统 +gun.name.stingerOneSky=The One Sky 毒刺便携式防空系统 +gun.name.supershotty=双管战斗霰弹枪 +gun.name.tau=XVL1456 陶子加农炮 +gun.name.tommy9=M1A1冲锋枪9毫米型 +gun.name.tommy=M1A1冲锋枪 +gun.name.topaz=重型火焰燃烧器 +gun.name.uacCarbine=UAC-41卡宾枪 +gun.name.uacDeagle=UAC-H54“火星猛禽”大容量手枪 +gun.name.uacDMR=UAC-30 精确射手步枪 +gun.name.uacLMG=UAC-49轻机枪 +gun.name.uacPistol=UAC-B950 .45 标准型手枪 +gun.name.uacSMG=UAC-17小型冲锋枪 +gun.name.uboinik=Uboinik转轮霰弹枪 +gun.name.uzi= +gun.name.uziSatur= +gun.name.win1887=温彻斯特M1887杠杆式连发霰弹枪 +gun.name.win1887Inox=温彻斯特M1887杠杆式连发霰弹枪 Inox +gun.name.win20Inox=温彻斯特20型Inox +gun.name.win20Poly=温彻斯特20型聚合物 +gun.name.win20Satur=温彻斯特20型 D-25A +gun.name.zomg=EMC101棱镜负能量炮 +hadron.analysis=正在分析... +hadron.buttonOn=分析室启动(如果存在) +hadron.buttonOff=分析室关闭 +hadron.error_generic=错误! +hadron.error_no_charge=错误 0x01 [能量不足] +hadron.error_no_analysis=错误 0x02 [无法分析] +hadron.error_obstructed_channel=错误 0x03 [通道阻塞] +hadron.error_expected_coil=错误 0x04 [缺少线圈] +hadron.error_malformed_segment=错误 0x05 [错误区段] +hadron.error_analysis_too_long=错误 0x06 [分析室过长] +hadron.error_analysis_too_short=错误 0x06 [分析室过长] +hadron.error_diode_collision=错误 0x08 [二极管方向错误] +hadron.error_branching_turn=错误 0x09 [多处分支] +hadron.hopper0=§e正常模式:$将使用所有物品 +hadron.hopper1=§e料斗模式:$将始终保留一个物品 +hadron.hopper2=§e单物品模式:$每个槽位只接受一个物品 +hadron.idle=空闲 +hadron.modeCircular=§e环形加速器模式:$磁铁必须环绕核心$解锁更多配方 +hadron.modeLine=§e直线加速器模式:$加速器末端有分析室$更少的配方 +hadron.noresult=无结果 +hadron.noresult_too_slow=动量不足! +hadron.noresult_wrong_ingredient=无效配方! +hadron.noresult_wrong_mode=错误模式! +hadron.progress=正在进行中... +hadron.stats=上一次结果: +hadron.stats_coord=错误位置:%s/%s/%s +hadron.stats_momentum=动量: %s +hadron.success=已完成! +hazard.prot=防止危险: +hazard.noprot=不能防止: +hazard.bacteria=细菌/气溶胶 +hazard.corrosive=腐蚀性烟雾 +hazard.gasChlorine=化学气体 +hazard.gasInert=惰性气体/沥青 +hazard.gasMonoxide=一氧化碳 +hazard.light=亮光 +hazard.nerveAgent=神经毒剂 +hazard.neverProtects=无法防护: +hazard.particleCoarse=空气微粒 +hazard.particleFine=微粒 +hazard.sand=眼睛刺激物 +hbm.key=HBM的核科技mod 热键 +hbm.key.calculator=计算器 +hbm.key.craneLoad=装卸起重机 +hbm.key.craneMoveDown=向后移动起重机 +hbm.key.craneMoveLeft=向左移动起重机 +hbm.key.craneMoveRight=向右移动起重机 +hbm.key.craneMoveUp=向前移动起重机 +hbm.key.dash=冲刺 (在config中解绑) +hbm.key.toggleBack=开关 喷气背包 +hbm.key.toggleHUD=开关 HUD +hbm.key.reload=装弹 +hbmfluid.amat=反物质 +hbmfluid.aromatics=芳香烃 +hbmfluid.aschrab=反Sa326 +hbmfluid.balefire=野火火箭燃料 +hbmfluid.biofuel=生物燃料 +hbmfluid.biogas=沼气 +hbmfluid.bitumen=沥青 +hbmfluid.blood=血 +hbmfluid.blood_hot=热的血 +hbmfluid.calcium_chloride=氯化钙溶液 +hbmfluid.calcium_solution=钙溶液 +hbmfluid.carbondioxide=二氧化碳 +hbmfluid.chlorine=氯气 +hbmfluid.chlorocalcite_cleaned=纯净氯方解石溶液 +hbmfluid.chlorocalcite_mix=混合氯方解石溶液 +hbmfluid.chlorocalcite_solution=氯方解石溶液 +hbmfluid.cholesterol=胆固醇溶液 +hbmfluid.coalcreosote=煤焦杂酚油 +hbmfluid.coalgas=煤汽油 +hbmfluid.coalgas_leaded=含铅煤汽油 +hbmfluid.coaloil=煤液化油 +hbmfluid.colloid=胶体 +hbmfluid.coolant=冷却液 +hbmfluid.coolant_hot=热冷却液 +hbmfluid.crackoil=裂化油 +hbmfluid.crackoil_ds=脱硫裂化油 +hbmfluid.cryogel=冷凝胶 +hbmfluid.death=锇酸溶液 +hbmfluid.deuterium=氘 +hbmfluid.diesel=柴油 +hbmfluid.diesel_crack=裂化柴油 +hbmfluid.diesel_crack_reform=高辛烷值裂化柴油 +hbmfluid.diesel_reform=高辛烷值柴油 +hbmfluid.egg=蛋溶解液 +hbmfluid.estradiol=雌二醇溶液 +hbmfluid.ethanol=乙醇 +hbmfluid.enderjuice=末影果汁 +hbmfluid.fishoil=鱼油 +hbmfluid.fracksol=压裂液 +hbmfluid.fullerene=富勒烯溶液 +hbmfluid.gas=天然气 +hbmfluid.gas_coker=焦化气 +hbmfluid.gasoline=含铅汽油基油 +hbmfluid.gasoline_leaded=含铅汽油 +hbmfluid.heatingoil=燃油 +hbmfluid.heatingoil_vacuum=重质燃油 +hbmfluid.heavyoil=重油 +hbmfluid.heavyoil_vacuum=减压重油 +hbmfluid.heavywater=重水 +hbmfluid.heavywater_hot=高温重水 +hbmfluid.helium3=氦-3 +hbmfluid.helium4=氦-4 +hbmfluid.hotcrackoil=热裂化油 +hbmfluid.hotcrackoil_ds=热的脱硫裂化油 +hbmfluid.hotoil=热原油 +hbmfluid.hotoil_ds=热的脱硫原油 +hbmfluid.hotsteam=热蒸汽 +hbmfluid.hydrogen=液氢 +hbmfluid.iongel=离子凝胶 +hbmfluid.kerosene=煤油 +hbmfluid.kerosene_reform=喷气燃料 +hbmfluid.lava=岩浆 +hbmfluid.lightoil=轻油 +hbmfluid.lightoil_crack=裂化轻油 +hbmfluid.lightoil_ds=脱硫轻油 +hbmfluid.lightoil_vacuum=减压轻油 +hbmfluid.lpg=液化石油气 +hbmfluid.lubricant=润滑油 +hbmfluid.mercury=水银 +hbmfluid.mug=Mug牌树根饮料 +hbmfluid.mug_hot=热的Mug牌树根饮料 +hbmfluid.mustardgas=芥子气 +hbmfluid.naphtha=石脑油 +hbmfluid.naphtha_coker=焦化石脑油 +hbmfluid.naphtha_crack=裂化石脑油 +hbmfluid.naphtha_ds=脱硫石脑油 +hbmfluid.nitan=NITAN牌100号超级燃料 +hbmfluid.nitric_acid=硝酸 +hbmfluid.nitroglycerin=硝酸甘油 +hbmfluid.none=无 +hbmfluid.oil=原油 +hbmfluid.oil_coker=焦化油 +hbmfluid.oil_ds=脱硫原油 +hbmfluid.oxygen=液氧 +hbmfluid.oxyhydrogen=氢氧混合气 +hbmfluid.pain=Pn(III) 钽铁溶液 +hbmfluid.peroxide=过氧化氢 +hbmfluid.petroil=汽油 +hbmfluid.petroil_leaded=含铅石油 +hbmfluid.petroleum=石油气 +hbmfluid.pheromone=异虫信息素 +hbmfluid.pheromone_m=增强异虫信息素 +hbmfluid.phosgene=光气 +hbmfluid.plasma_bf=野火等离子体 +hbmfluid.plasma_dh3=氘-氦3 等离子体 +hbmfluid.plasma_dt=氘-氚等离子体 +hbmfluid.plasma_hd=氢-氘等离子体 +hbmfluid.plasma_ht=氢-氚等离子体 +hbmfluid.plasma_xm=液氧-氦-4等离子体 +hbmfluid.potassium_chloride=氯化钾溶液 +hbmfluid.puf6=六氟化钚 +hbmfluid.radiosolvent=高性能溶剂 +hbmfluid.reclaimed=再生油 +hbmfluid.redmud=红色泥浆 +hbmfluid.reformate=重整油 +hbmfluid.reformgas=重整气 +hbmfluid.salient=绿色液体 +hbmfluid.sas3=三硫化Sa +hbmfluid.schrabidic=Sa酸 +hbmfluid.seedslurry=播种浆料 +hbmfluid.slop=洗矿废水 +hbmfluid.smear=工业油 +hbmfluid.smoke=烟雾 +hbmfluid.smoke_leaded=含铅烟雾 +hbmfluid.smoke_poison=有毒烟雾 +hbmfluid.sodium=液态钠 +hbmfluid.sodium_hot=高温液态钠 +hbmfluid.solvent=有机溶剂 +hbmfluid.sourgas=高硫天然气 +hbmfluid.spentsteam=低压蒸汽 +hbmfluid.steam=蒸汽 +hbmfluid.stellar_flux=星流浆 +hbmfluid.sulfuric_acid=硫酸 +hbmfluid.sunfloweroil=葵花籽油 +hbmfluid.superhotsteam=超热蒸汽 +hbmfluid.syngas=合成气 +hbmfluid.thorium_salt=液态钍盐 +hbmfluid.thorium_salt_depleted=贫化液态钍盐 +hbmfluid.thorium_salt_hot=高温液态钍盐 +hbmfluid.tritium=氚 +hbmfluid.uf6=六氟化铀 +hbmfluid.ultrahotsteam=超浓密蒸汽 +hbmfluid.unsaturateds=不饱和烃 +hbmfluid.vitriol=硫酸盐 +hbmfluid.wastefluid=液态核废料 +hbmfluid.wastegas=气态核废料 +hbmfluid.water=水 +hbmfluid.watz=毒泥浆 +hbmfluid.woodoil=木油 +hbmfluid.xenon=氙气 +hbmfluid.xpjuice=经验汁 +hbmfluid.xylene=轻质芳烃(BTX) +hbmpseudofluid.none=空 +hbmpseudofluid.heuf6=高浓缩六氟化铀 +hbmpseudofluid.meuf6=中浓缩六氟化铀 +hbmpseudofluid.leuf6=低浓缩六氟化铀 +hbmpseudofluid.nuf6=天然浓度六氟化铀 +hbmpseudofluid.pf6=六氟化钚 +hbmpseudofluid.mud_heavy=毒泥浆重馏分 +hbmpseudofluid.mud=毒泥浆气态物 +hbmmat.actinium227=锕-227 +hbmmat.advancedalloy=高级合金 +hbmmat.aluminum=铝 +hbmmat.americiumrg=反应堆级镅 +hbmmat.americium241=镅-241 +hbmmat.americium242=镅-242 +hbmmat.arsenic=砷 +hbmmat.arsenicbronze=砷青铜 +hbmmat.asbestos=石棉 +hbmmat.bakelite=电木 +hbmmat.beryllium=铍 +hbmmat.bismuth=铋 +hbmmat.bismuthbronze=铋青铜 +hbmmat.borax=硼砂 +hbmmat.boron=硼 +hbmmat.bscco= +hbmmat.cadmium=镉 +hbmmat.calcium=钙 +hbmmat.carbon=碳 +hbmmat.cdalloy=镉钢 +hbmmat.chlorocalcite=氯方解石 +hbmmat.cinnabar=朱砂 +hbmmat.cmbsteel=CMB钢 +hbmmat.coal=煤 +hbmmat.coalcoke=焦煤 +hbmmat.cobalt=钴 +hbmmat.cobalt60=钴-60 +hbmmat.coltan=钶钽铁矿 +hbmmat.copper=铜 +hbmmat.desh= +hbmmat.diamond=钻石 +hbmmat.dineutronium=双聚中子态素 +hbmmat.durasteel=高速钢 +hbmmat.emerald=绿宝石 +hbmmat.euphemium=Ep +hbmmat.ferrouranium=铀铁合金 +hbmmat.fiberglass=玻璃纤维 +hbmmat.fluorite=氟石 +hbmmat.flux=助熔剂 +hbmmat.ghiorsium336=Gh-336 +hbmmat.gold=金 +hbmmat.gold198=金-198 +hbmmat.graphene=石墨烯 +hbmmat.graphite=石墨 +hbmmat.hematite=赤铁矿 +hbmmat.iron=铁 +hbmmat.lanthanum=镧 +hbmmat.lapis=青金石 +hbmmat.lead=铅 +hbmmat.lead209=铅-209 +hbmmat.lignitecoke=褐煤焦煤 +hbmmat.lignite=褐煤 +hbmmat.lithium=锂 +hbmmat.magnetizedtungsten=磁化钨 +hbmmat.malachite=孔雀石 +hbmmat.meteoriciron=陨铁 +hbmmat.mingrade=紫铜 +hbmmat.molysite=氯化铁 +hbmmat.neodymium=钕 +hbmmat.neptunium237=镎-237 +hbmmat.niobium=铌 +hbmmat.obsidian=黑曜石 +hbmmat.osmiridium=铱锇合金 +hbmmat.petcoke=石油焦炭 +hbmmat.pigiron=生铁 +hbmmat.plutonium=钚 +hbmmat.plutonium238=钚-238 +hbmmat.plutonium239=钚-239 +hbmmat.plutonium240=钚-240 +hbmmat.plutonium241=钚-241 +hbmmat.plutoniumrg=反应堆级钚 +hbmmat.polonium210=钋-210 +hbmmat.polymer=聚合物 +hbmmat.radium226=镭-226 +hbmmat.rareearth=稀土 +hbmmat.redphosphorus=红磷 +hbmmat.redstone=红石 +hbmmat.rubber=橡胶 +hbmmat.saltpeter=硝石 +hbmmat.saturnite=土星 +hbmmat.schrabidate=Sa酸铁 +hbmmat.schrabidium=Sa326 +hbmmat.schraranium=低丰度Sa326 +hbmmat.silicon=硅 +hbmmat.slag=炉渣 +hbmmat.sodalite=方钠石 +hbmmat.sodium=钠 +hbmmat.solinium=Sa327 +hbmmat.starmetal=星辉 +hbmmat.steel=钢 +hbmmat.stone=石头 +hbmmat.strontium=锶 +hbmmat.sulfur=硫 +hbmmat.tantalum=钽 +hbmmat.tcalloy=锝钢 +hbmmat.technetium99=锝-99 +hbmmat.titanium=钛 +hbmmat.thorium232=钍-232 +hbmmat.tungsten=钨 +hbmmat.uranium=铀 +hbmmat.uranium233=铀-233 +hbmmat.uranium235=铀-235 +hbmmat.uranium238=铀-238 +hbmmat.watzmud=毒泥浆 +hbmmat.whitephosphorus=白磷 +hbmmat.workersalloy= +hbmmat.wroughtiron=锻铁 +hbmmat.zirconium=锆 +matshape.block=%s 块 +matshape.blocks=%s 块 +matshape.ingot=%s 锭 +matshape.ingots=%s 锭 +matshape.nugget=%s 粒 +matshape.nuggets=%s 粒 +matshape.quantum=%s 量子 +matshape.quanta=%s 量子 +icffuel.beryllium=铍 +icffuel.boron=硼 +icffuel.carbon=碳 +icffuel.calcium=钙 +icffuel.chlorine=氯 +icffuel.deuterium=氘 +icffuel.helium3=氦-3 +icffuel.helium4=氦-4 +icffuel.hydrogen=氢 +icffuel.lithium=锂 +icffuel.oxygen=氧 +icffuel.sodium=钠 +icffuel.tritium=氚 +info.asbestos=我感觉我的肺在燃烧。 +info.coaldust=在这里很难呼吸。 +info.coil=线圈强度 +info.templatefolder=需要使用%s创建 +info.template_in=输入: +info.template_in_p=输入: +info.template_out=输出: +info.template_out_p=输出: +info.template_seconds=秒 +info.template_time=生产耗时: +item.acetylene_torch=乙炔焊罐 +item.ajr_boots=AJR 动力装甲靴子 +item.ajr_helmet=AJR 动力装甲头盔 +item.ajr_legs=AJR 动力装甲护腿 +item.ajr_plate=AJR 动力装甲胸甲 +item.ajro_boots=AJR动力装甲靴子 +item.ajro_helmet=AJR 动力装甲头盔 +item.ajro_legs=AJR 动力装甲护腿 +item.ajro_plate=AJR 动力装甲胸甲 +item.alloy_axe=高级合金斧 +item.alloy_boots=高级合金靴子 +item.alloy_helmet=高级合金头盔 +item.alloy_hoe=高级合金锄 +item.alloy_legs=高级合金护腿 +item.alloy_pickaxe=高级合金镐 +item.alloy_plate=高级合金胸甲 +item.alloy_shovel=高级合金锹 +item.alloy_sword=高级合金剑 +item.ammo_12gauge=12号鹿弹 +item.ammo_12gauge_du=12号鹿弹[铀涂层] +item.ammo_12gauge_incendiary=12号鹿弹[燃烧] +item.ammo_12gauge_marauder=12号战术反掠夺鹿弹 +item.ammo_12gauge_percussion=12号冲击火药帽 +item.ammo_12gauge_shrapnel=12号鹿弹[榴霰弹] +item.ammo_12gauge_sleek=12号鹿弹[IF-R&D] +item.ammo_20gauge=20号鹿弹 +item.ammo_20gauge_caustic=20号鹿弹[腐蚀] +item.ammo_20gauge_explosive=20号鹿弹[高爆] +item.ammo_20gauge_flechette=20号箭霰弹 +item.ammo_20gauge_incendiary=20号鹿弹[燃烧] +item.ammo_20gauge_shock=20号鹿弹[震荡] +item.ammo_20gauge_shrapnel=20号鹿弹[榴霰弹] +item.ammo_20gauge_sleek=20号鹿弹[IF-R&D] +item.ammo_20gauge_slug=20号独头弹 +item.ammo_20gauge_wither=20号鹿弹[凋零] +item.ammo_22lr=.22LR子弹 +item.ammo_22lr_ap=.22LR子弹[AP] +item.ammo_22lr_chlorophyte=.22LR子弹[叶绿] +item.ammo_357_desh=.357马格南Desh子弹 +item.ammo_44=.44马格南子弹 +item.ammo_44_ap=.44马格南子弹[AP] +item.ammo_44_bj=.44马格南子弹[船] +item.ammo_44_chlorophyte=.44马格南子弹[叶绿] +item.ammo_44_du=.44马格南子弹[贫铀] +item.ammo_44_phosphorus=.44马格南子弹[白磷] +item.ammo_44_pip=.44马格南子弹[车厢] +item.ammo_44_rocket=.44马格南火箭 +item.ammo_44_silver=.44马格南子弹[建筑] +item.ammo_44_star=.44马格南子弹[星辉] +item.ammo_45=.45 ACP 子弹 +item.ammo_45_ap=.45 ACP 子弹[AP] +item.ammo_45_du=.45 ACP 子弹[贫铀] +item.ammo_4gauge=四号鹿弹 +item.ammo_4gauge_balefire=23mm野火榴弹 +item.ammo_4gauge_canister=23mm 火箭弹[榴霰弹] +item.ammo_4gauge_claw=4号爪弹 +item.ammo_4gauge_explosive=23mm榴弹 +item.ammo_4gauge_flechette=4号箭霰弹 +item.ammo_4gauge_flechette_phosphorus=4号箭霰弹[白磷] +item.ammo_4gauge_kampf=23mm火箭弹 +item.ammo_4gauge_semtex=23mm采矿弹药 +item.ammo_4gauge_sleek=4号鹿弹[IF-R&D] +item.ammo_4gauge_slug=四号实心独头弹 +item.ammo_4gauge_titan=4号Quacker鹿弹 +item.ammo_4gauge_vampire=4号木签弹 +item.ammo_4gauge_void=4号电离粒子弹 +item.ammo_50ae=.50AE子弹 +item.ammo_50ae_ap=.50AE子弹[AP] +item.ammo_50ae_chlorophyte=.50AE子弹[叶绿] +item.ammo_50ae_du=.50AE子弹[贫铀] +item.ammo_50ae_star=.50AE子弹[星辉] +item.ammo_50bmg=.50BMG子弹 +item.ammo_50bmg_ap=.50BMG子弹[AP] +item.ammo_50bmg_chlorophyte=.50BMG子弹[叶绿] +item.ammo_50bmg_du=.50BMG子弹[贫铀] +item.ammo_50bmg_explosive=.50BMG子弹[高爆] +item.ammo_50bmg_flechette=.50 BMG镖形弹 +item.ammo_50bmg_flechette_am=.50 BMG镖形弹[含镅] +item.ammo_50bmg_flechette_po=.50 BMG镖形弹[含钋] +item.ammo_50bmg_incendiary=.50BMG子弹[燃烧] +item.ammo_50bmg_phosphorus=.50BMG子弹[白磷] +item.ammo_50bmg_sleek=.50BMG子弹[IF-R&D] +item.ammo_50bmg_star=.50BMG子弹[星辉] +item.ammo_556=5.56mm子弹 +item.ammo_556_ap=5.56mm子弹[AP] +item.ammo_556_chlorophyte=5.56mm子弹[叶绿] +item.ammo_556_du=5.56mm子弹[贫铀] +item.ammo_556_flechette=5.56mm弗莱彻子弹 +item.ammo_556_flechette_chlorophyte=5.56mm弗莱彻子弹[叶绿] +item.ammo_556_flechette_du=5.56mm弗莱彻子弹 [贫铀穿甲] +item.ammo_556_flechette_incendiary=5.56mm弗莱彻子弹 [燃烧] +item.ammo_556_flechette_phosphorus=5.56mm弗莱彻子弹 [白磷穿甲] +item.ammo_556_flechette_sleek=5.56mm弗莱彻子弹[IF-R&D] +item.ammo_556_k=5.56mm空包弹 +item.ammo_556_phosphorus=5.56mm子弹[白磷] +item.ammo_556_sleek=5.56mm子弹[IF-R&D] +item.ammo_556_star=5.56mm子弹 [星辉] +item.ammo_556_tracer=5.56mm 子弹[曳光弹] +item.ammo_5mm=5mm子弹 +item.ammo_5mm_chlorophyte=5mm子弹[叶绿] +item.ammo_5mm_du=5mm子弹[贫铀] +item.ammo_5mm_explosive=5mm子弹[高爆] +item.ammo_5mm_star=5mm子弹[星辉] +item.ammo_75bolt=.75弹匣(30发) +item.ammo_75bolt_incendiary=.75燃烧弹匣(30发) +item.ammo_75bolt_he=.75高爆弹匣(30发) +item.ammo_762=7.62mm 子弹 +item.ammo_762_ap=7.62mm 子弹[AP] +item.ammo_762_du=7.62mm 子弹[贫铀] +item.ammo_762_k=7.62mm 空包弹 +item.ammo_762_phosphorus=7.62mm 子弹[白磷] +item.ammo_762_tracer=7.62mm 子弹[曳光] +item.ammo_9mm=9mm子弹 +item.ammo_9mm_ap=9mm子弹[AP] +item.ammo_9mm_chlorophyte=9mm子弹[叶绿] +item.ammo_9mm_du=9mm子弹[贫铀] +item.ammo_9mm_rocket=9mm火箭弹 +item.ammo_arty=16英寸炮弹 +item.ammo_arty_cargo=16英寸快递炮弹 +item.ammo_arty_chlorine=16英寸氯气炮弹 +item.ammo_arty_classic=16英寸炮弹 (特制) +item.ammo_arty_he=16英寸高爆炮弹 +item.ammo_arty_mini_nuke=16英寸微型核炮弹 +item.ammo_arty_mini_nuke_multi=16英寸多弹头微型核炮弹 +item.ammo_arty_mustard_gas=16英寸芥子气炮弹 +item.ammo_arty_nuke=16英寸核炮弹 +item.ammo_arty_phosgene=16英寸光气炮弹 +item.ammo_arty_phosphorus=16英寸磷炮弹 +item.ammo_arty_phosphorus_multi=16英寸多弹头磷炮弹 +item.ammo_cell=能量单元 +item.ammo_coilgun=钨制线圈枪子弹 +item.ammo_coilgun_du=铀铁合金制线圈枪子弹 +item.ammo_coilgun_rubber=橡胶制线圈枪子弹 +item.ammo_container=万能弹药盒 +item.ammo_dart=塑料镖[凋零] +item.ammo_dart_nerf=NERF 飞镖 +item.ammo_dart_nuclear=塑料镖[定时炸药] +item.ammo_dgk=双联守门员近防系统200发弹药 +item.ammo_fireext=灭火器 水罐 +item.ammo_fireext_foam=灭火器 泡沫罐 +item.ammo_fireext_sand=灭火器 硼沙罐 +item.ammo_folly=银弹 +item.ammo_folly_du=银弹[贫 +item.ammo_folly_nuclear=银弹[核子] +item.ammo_fuel=柴油罐 +item.ammo_fuel_gas=毒气罐 +item.ammo_fuel_napalm=凝固汽油罐 +item.ammo_fuel_phosphorus=白磷罐 +item.ammo_fuel_vaporizer=汽化罐 +item.ammo_grenade=40mm榴弹 +item.ammo_grenade_concussion=40mm榴弹[震荡] +item.ammo_grenade_finned=40mm榴弹[尾翼稳定] +item.ammo_grenade_he=40mm榴弹[HE] +item.ammo_grenade_incendiary=40mm榴弹[燃烧] +item.ammo_grenade_kampf=40mm战术榴弹 +item.ammo_grenade_leadburster=40mm 开路先锋 +item.ammo_grenade_nuclear=40mm榴弹[核子] +item.ammo_grenade_phosphorus=40mm榴弹[白磷] +item.ammo_grenade_sleek=40mm榴弹[IF-R&D] +item.ammo_grenade_toxic=40mm榴弹[化学] +item.ammo_grenade_tracer=40mm训练榴弹 +item.ammo_himars_standard=M28制导火箭炮系统火箭弹舱 +item.ammo_himars_standard_he=227毫米制导火箭炮系统火箭吊舱(HE) +item.ammo_himars_standard_lava=227毫米制导火箭炮系统火箭吊舱(熔岩) +item.ammo_himars_standard_mini_nuke=227毫米制导火箭炮系统火箭吊舱(迷你核弹) +item.ammo_himars_standard_tb=227毫米制导火箭炮系统火箭吊舱(温压弹) +item.ammo_himars_standard_wp=227毫米制导火箭炮系统火箭吊舱(白磷) +item.ammo_himars_single=M39A1制导火箭炮系统火箭弹舱 +item.ammo_himars_single_tb=610毫米制导火炮火箭吊舱(温压弹) +item.ammo_luna=Lunatic狙击弹 +item.ammo_luna_explosive=Lunatic狙击爆炸弹 +item.ammo_luna_incendiary=Lunatic狙击燃烧弹 +item.ammo_mirv=迷你MIRV +item.ammo_mirv_high=迷你MIRV (高当量) +item.ammo_mirv_low=迷你MIRV (低当量) +item.ammo_mirv_safe=迷你MIRV (安全) +item.ammo_mirv_special=迷你MIRV +item.ammo_nuke=迷你核弹 +item.ammo_nuke_barrel=小型核废料桶 +item.ammo_nuke_high=迷你核弹 (高当量) +item.ammo_nuke_low=迷你核弹 (低当量) +item.ammo_nuke_pumpkin=南瓜炸弹 +item.ammo_nuke_safe=迷你核弹 (安全) +item.ammo_nuke_tots=迷你核弹 (幼体) +item.ammo_rocket=84mm火箭弹 +item.ammo_rocket_canister=84mm 火箭弹[榴霰弹] +item.ammo_rocket_digamma=§4归 零§r +item.ammo_rocket_emp=84mm火箭弹[EMP] +item.ammo_rocket_glare=84mm火箭弹[红光] +item.ammo_rocket_he=84mm火箭弹[HE] +item.ammo_rocket_incendiary=84mm火箭弹[燃烧] +item.ammo_rocket_nuclear=84mm火箭弹[核子] +item.ammo_rocket_phosphorus=84mm火箭弹[白磷] +item.ammo_rocket_rpc=84mm火箭弹[飞行电锯] +item.ammo_rocket_shrapnel=84mm火箭弹[破片] +item.ammo_rocket_sleek=84mm火箭弹[IF-R&D] +item.ammo_rocket_toxic=84mm火箭弹[化学] +item.ammo_shell=240mm炮弹 +item.ammo_shell_apfsds_du=240mm 贫铀尾翼稳定脱壳穿甲弹 +item.ammo_shell_apfsds_t=240mm 钨心尾翼稳定脱壳穿甲弹 +item.ammo_shell_explosive=240mm 高爆炮弹 +item.ammo_shell_w9=240mm W9核子炮弹 +item.ammo_stinger_rocket=毒刺导弹 +item.ammo_stinger_rocket_he=毒刺导弹[高爆] +item.ammo_stinger_rocket_incendiary=毒刺导弹[燃烧] +item.ammo_stinger_rocket_nuclear=毒刺导弹[Привет] +item.ammo_stinger_rocket_bones=毒刺导弹[寻骨] +item.ams_catalyst_aluminium=铝反应催化剂 +item.ams_catalyst_beryllium=铍反应催化剂 +item.ams_catalyst_blank=空白反应催化剂 +item.ams_catalyst_caesium=铯反应催化剂 +item.ams_catalyst_cerium=铈反应催化剂 +item.ams_catalyst_cobalt=钴反应催化剂 +item.ams_catalyst_copper=铜反应催化剂 +item.ams_catalyst_dineutronium=双聚中子态素反应催化剂 +item.ams_catalyst_euphemium=Ep反应催化剂 +item.ams_catalyst_iron=铁反应催化剂 +item.ams_catalyst_lithium=锂反应催化剂 +item.ams_catalyst_niobium=铌反应催化剂 +item.ams_catalyst_schrabidium=Sa326反应催化剂 +item.ams_catalyst_strontium=锶反应催化剂 +item.ams_catalyst_thorium=钍反应催化剂 +item.ams_catalyst_tungsten=钨反应催化剂 +item.ams_core_eyeofharmony=和谐之眼[AMS/DFC核心] +item.ams_core_sing=活跃奇点[AMS/DFC核心] +item.ams_core_thingy=Thingy[AMS/DFC核心] +item.ams_core_wormhole=微型虫洞[AMS/DFC核心] +item.ams_focus_blank=空白稳定器焦点 +item.ams_focus_booster=增压型稳定器焦点 +item.ams_focus_booster.desc=较弱的约束场和核心能量注入:$更多的热量产生,更多的能量。 +item.ams_focus_limiter=限制稳定器焦点 +item.ams_focus_limiter.desc=限制领域的最高性能:$标准冷却,无能源加成。 +item.ams_lens=稳定透镜 +item.ams_muzzle=激活射线发射极 +item.ams_muzzle.desc=...它可以发出一束能量束。 +item.analysis_tool=分析工具 +item.analyzer=分析仪 +item.anchor_remote=召回设备 +item.apple_euphemium=Ep苹果 +item.apple_lead=铅苹果 +item.apple_schrabidium=Sa326苹果 +item.arc_electrode=石墨电极 +item.arc_electrode.desh=Desh电极 +item.arc_electrode.graphite=石墨电极 +item.arc_electrode.lanthanium=镧电极 +item.arc_electrode.saturnite=土星电极 +item.arc_electrode_burnt=熔化电极 +item.arc_electrode_burnt.desh=熔化Desh电极 +item.arc_electrode_burnt.graphite=熔化石墨电极 +item.arc_electrode_burnt.lanthanium=熔化镧电极 +item.arc_electrode_burnt.saturnite=熔化土星电极 +item.arc_electrode_desh=Desh电极 +item.armor_battery=动力装甲电池组 +item.armor_battery_mk2=动力装甲电池组 Mk2 +item.armor_battery_mk3=动力装甲电池组 Mk3 +item.armor_polish=亮甲牌装甲抛光剂 +item.asbestos_boots=防火靴 +item.asbestos_cloth=防火布 +item.asbestos_helmet=防火头盔 +item.asbestos_legs=防火护腿 +item.asbestos_plate=防火胸甲 +item.ashglasses=防灰烬护目镜 +item.assembly_45=.45 ACP子弹[待装配] +item.assembly_556=5.56mm子弹[待装配] +item.assembly_762=7.62mm子弹[待装配] +item.assembly_actionexpress=.50 AE子弹[待装配] +item.assembly_calamity=.50 BMG子弹[待装配] +item.assembly_desh=Desh子弹[待装配] +item.assembly_gold=金子弹[待装配] +item.assembly_iron=铁子弹[待装配] +item.assembly_lacunae=.5mm子弹[待装配] +item.assembly_lead=玻璃子弹[待装配] +item.assembly_luna=Lunatic狙击子弹[待装配] +item.assembly_nightmare=钨子弹[待装配] +item.assembly_nopip=.44马格南[待装配] +item.assembly_nuke=迷你核弹外壳 +item.assembly_pip=污染子弹[待装配] +item.assembly_schrabidium=Sa326子弹[待装配] +item.assembly_smg=9mm子弹[待装配] +item.assembly_steel=铅子弹[待装配] +item.assembly_template=装配机模板: +item.assembly_uzi=.22 LR子弹[待装配] +item.attachment_mask=附加型防毒面具 +item.attachment_mask_mono=可接入式半面罩防毒面具 +item.australium_iii=MkIII寿命延长剂 +item.australium_iv=MkIV寿命延长剂 +item.australium_v=MkV寿命延长剂 +item.back_tesla=背负式特斯拉线圈 +item.balefire_and_ham=火腿野火蛋 +item.balefire_and_steel=野火打火石 +item.balefire_scrambled=炒野火蛋 +item.ball_dynamite=硝糖炸药 +item.ball_fireclay=耐火粘土 +item.ball_resin=乳胶 +item.ball_tatb=三氨基三硝基苯(TATB) +item.ball_tnt=TNT炸药 +item.ballistic_gauntlet=冲击拳套 +item.ballistite=混合无烟火药 +item.bandaid=邦迪创可贴 +item.bathwater=有毒肥皂水 +item.bathwater_mk2=有毒肥皂水(马香味) +item.battery_advanced=高级电池 +item.battery_advanced_cell=高级电池组 +item.battery_advanced_cell_12=十二联高级电池组 +item.battery_advanced_cell_4=四联高级电池组 +item.battery_creative=无限电池 +item.battery_generic=电池 +item.battery_lithium=锂电池 +item.battery_lithium_cell=锂电池组 +item.battery_lithium_cell_3=三联锂电池组 +item.battery_lithium_cell_6=六联锂电池组 +item.battery_potato=马铃薯电池 +item.battery_potatos=马铃薯OS +item.battery_red_cell=红石电池组 +item.battery_red_cell_24=二十四联红石电池组 +item.battery_red_cell_6=六联红石电池组 +item.battery_sc_americium=自充电 镅-241电池 +item.battery_sc_gold=自充电 金-198电池 +item.battery_sc_lead=自充电 铅-209电池 +item.battery_sc_plutonium=自充电 钚-238电池 +item.battery_sc_polonium=自充电 钋-210电池 +item.battery_sc_technetium=自充电 锝-98电池 +item.battery_sc_uranium=自充电 铀-238电池 +item.battery_schrabidium=Sa326电池 +item.battery_schrabidium_cell=Sa326电池组 +item.battery_schrabidium_cell_2=双联Sa326电池组 +item.battery_schrabidium_cell_4=四联Sa326电池组 +item.battery_spark=Spark电池 +item.battery_spark_cell_100=Spark神秘储能电池组 +item.battery_spark_cell_1000=Spark神秘物质能量空间 +item.battery_spark_cell_10000=Spark时空晶体 +item.battery_spark_cell_25=Spark神秘汽车电池 +item.battery_spark_cell_2500=Spark神秘迪拉克之海 +item.battery_spark_cell_6=Spark电池组 +item.battery_spark_cell_power=Spark反物理储能装置 +item.battery_steam=蒸汽动力储能罐 +item.battery_steam_large=大型蒸汽动力储能罐 +item.battery_su=SU-电池 +item.battery_su_l=大型SU-电池 +item.battery_trixite=杂牌Spark电池 +item.bdcl=BDCL牌润滑油 +item.bedrock_ore.grade.base=%s基岩矿石 +item.bedrock_ore.grade.base_roasted=焙烧%s基岩矿石 +item.bedrock_ore.grade.base_washed=洗净%s基岩矿石 +item.bedrock_ore.grade.primary=%s基岩矿石主产物 +item.bedrock_ore.grade.primary_roasted=焙烧%s基岩矿石主产物 +item.bedrock_ore.grade.primary_sulfuric=酸浸%s基岩矿石主产物 +item.bedrock_ore.grade.primary_nosulfuric=离心酸浸%s基岩矿石主产物 +item.bedrock_ore.grade.primary_solvent=溶解%s基岩矿石主产物 +item.bedrock_ore.grade.primary_nosolvent=离心溶解%s基岩矿石主产物 +item.bedrock_ore.grade.primary_rad=清洁%s基岩矿石主产物 +item.bedrock_ore.grade.primary_norad=离心清洁%s基岩矿石主产物 +item.bedrock_ore.grade.primary_first=高重量%s基岩矿石主产物 +item.bedrock_ore.grade.primary_second=低重量%s基岩矿石主产物 +item.bedrock_ore.grade.crumbs=%s基岩矿石矿渣 +item.bedrock_ore.grade.sulfuric_byproduct=酸浸%s基岩矿石副产物 +item.bedrock_ore.grade.sulfuric_roasted=焙烧酸浸%s基岩矿石副产物 +item.bedrock_ore.grade.sulfuric_arc=灼热酸浸%s基岩矿石副产物 +item.bedrock_ore.grade.sulfuric_washed=洗净酸浸%s基岩矿石副产物 +item.bedrock_ore.grade.solvent_byproduct=溶解%s基岩矿石副产物 +item.bedrock_ore.grade.solvent_roasted=焙烧溶解%s基岩矿石副产物 +item.bedrock_ore.grade.solvent_arc=灼热溶解%s基岩矿石副产物 +item.bedrock_ore.grade.solvent_washed=洗净溶解%s基岩矿石副产物 +item.bedrock_ore.grade.rad_byproduct=清洁%s基岩矿石副产物 +item.bedrock_ore.grade.rad_roasted=焙烧清洁%s基岩矿石副产物 +item.bedrock_ore.grade.rad_arc=灼热清洁%s基岩矿石副产物 +item.bedrock_ore.grade.rad_washed=洗净清洁%s基岩矿石副产物 +item.bedrock_ore.trait.arc=§6电弧炉煅烧 +item.bedrock_ore.trait.centrifuged=§9离心处理 +item.bedrock_ore.trait.rad=§a高性能溶剂处理 +item.bedrock_ore.trait.roasted=§e复式炼焦炉焙烧 +item.bedrock_ore.trait.solvent=§f有机溶剂处理 +item.bedrock_ore.trait.sulfuric=§6硫酸处理 +item.bedrock_ore.trait.washed=§b水洗 +item.bedrock_ore.type.actinide=锕系元素 +item.bedrock_ore.type.crystal=晶体 +item.bedrock_ore.type.heavy=重金属 +item.bedrock_ore.type.light=轻金属 +item.bedrock_ore.type.nonmetal=非金属 +item.bedrock_ore.type.rare=稀土 +item.bedrock_ore_base=基岩矿石原矿 +item.bedrock_ore_fragment=%s基岩矿石碎片 +item.beta=Beta测试版功能 +item.big_sword=大剑 +item.billet_actinium=锕-227坯料 +item.billet_am_mix=反应堆级镅坯料 +item.billet_am241=镅-241坯料 +item.billet_am242=镅-242坯料 +item.billet_americium_fuel=镅燃料坯料 +item.billet_au198=金-198坯料 +item.billet_australium=奥斯坯料 +item.billet_australium_greater=富集奥斯坯料 +item.billet_australium_lesser=贫化奥斯坯料 +item.billet_balefire_gold=激活态金-198坯料 +item.billet_beryllium=铍坯料 +item.billet_bismuth=铋坯料 +item.billet_co60=钴-60坯料 +item.billet_cobalt=钴坯料 +item.billet_flashlead=闪光铅坯料 +item.billet_flashlead.desc=晶格衰变,引起反物质湮灭反应,导致π介子释放,衰变为μ子,催化原子核融合,产生新的元素$请尽量跟上。 +item.billet_gh336=Gh336坯料 +item.billet_gh336.desc=钅喜的同事 +item.billet_hes=高浓缩度Sa326燃料坯料 +item.billet_les=低浓缩度Sa326燃料坯料 +item.billet_mox_fuel=MOX燃料坯料 +item.billet_mox_fuel.desc=口袋摩西! +item.billet_neptunium=镎坯料 +item.billet_neptunium_fuel=镎核燃料坯料 +item.billet_nuclear_waste=核废料坯料 +item.billet_pb209=铅-209坯料 +item.billet_po210be=钋210-铍坯料 +item.billet_polonium=钋坯料 +item.billet_pu_mix=反应堆级钚坯料 +item.billet_pu238=钚-238坯料 +item.billet_pu238be=钚238-铍坯料 +item.billet_pu239=钚-239坯料 +item.billet_pu240=钚-240坯料 +item.billet_pu241=钚-241坯料 +item.billet_plutonium=钚坯料 +item.billet_plutonium_fuel=钚燃料坯料 +item.billet_ra226=镭-226坯料 +item.billet_ra226be=镭226-铍坯料 +item.billet_schrabidium=Sa326坯料 +item.billet_schrabidium_fuel=Sa326燃料坯料 +item.billet_silicon=硅晶圆 +item.billet_solinium=Sa327坯料 +item.billet_sr90=锶-90坯料 +item.billet_technetium=锝-99坯料 +item.billet_th232=钍-232坯料 +item.billet_thorium_fuel=钍燃料坯料 +item.billet_u233=铀-233坯料 +item.billet_u235=铀-235坯料 +item.billet_u238=铀-238坯料 +item.billet_uranium=铀坯料 +item.billet_uranium_fuel=铀燃料坯料 +item.billet_yharonite=犽戎龙素坯料 +item.billet_zfb_am_mix=反应堆级镅 ZFB坯料 +item.billet_zfb_bismuth=铋 ZFB坯料 +item.billet_zfb_pu241=钚-241 ZFB坯料 +item.billet_zirconium=锆坯料 +item.bio_wafer=海藻晶片 +item.biomass=生物质 +item.biomass_compressed=压缩生物质 +item.bismuth_boots=铋凉鞋 +item.bismuth_helmet=铋头饰 +item.bismuth_legs=铋护膝 +item.bismuth_axe=铋斧 +item.bismuth_pickaxe=铋镐 +item.bismuth_plate=铋质护肩、项链和腰带 +item.bismuth_tool=磁力提取器 +item.bj_boots=§4月神§r钉靴 +item.bj_helmet=热传感器眼罩 +item.bj_legs=§4月神§r护腿 +item.bj_plate=§4月神§r胸甲 +item.bj_plate_jetpack=§4月神§r胸甲 (带翼) +item.black_diamond=黑色钻石 +item.black_hole=微型黑洞 +item.blade_meteorite=陨石刀 +item.blade_titanium=钛扇片 +item.blade_tungsten=钨强化扇片 +item.blades_advanced_alloy=高级合金刀片 +item.blades_desh=Desh制刀片 +item.blades_steel=钢制刀片 +item.blades_titanium=钛制刀片 +item.blowtorch=喷灯 +item.board_copper=铜片 +item.boat_rubber=橡胶船 +item.bobmazon_hidden=隐藏目录 +item.bobmazon_machines=Bobmazon: 方块和机器 +item.bobmazon_materials=Bobmazon: 材料 +item.bobmazon_tools=Bobmazon: 工具 +item.bobmazon_weapons=Bobmazon: 武器和爆炸物 +item.boltntm=%s螺栓 +item.bolt_compound=加强涡轮机轴 +item.bolt_spike=铁路道钉 +item.bolt_spike.desc=不知何故,散发着威胁的气息 +item.boltgun=气动射钉枪 +item.bomb_caller=空袭指示器 +item.bomb_waffle=大规模杀伤性华夫饼 +item.book_guide=HBM指导书 +item.book_of_=车厢书 +item.book_lemegeton=所罗门之钥 +item.book_secret= +item.bottle2_empty=空瓶 +item.bottle2_fritz=弗里茨可乐 +item.bottle2_fritz_special=第一弗里茨可乐 +item.bottle2_korl= +item.bottle2_korl_special=第一Korl +item.bottle2_sunset=夕阳沙士 +item.bottle_cherry=樱桃味核子可乐 +item.bottle_empty=空可乐瓶 +item.bottle_mercury=一瓶水银 +item.bottle_nuka=核子可乐 +item.bottle_opener=Hbm自制开瓶器 +item.bottle_quantum=量子核子可乐 +item.bottle_rad=辐射S~核子可乐 +item.bottle_sparkle=S~核子可乐 +item.bottled_cloud=瓶中云 +item.boy_bullet=铀-235弹头 +item.boy_igniter=点火器 +item.boy_kit=小男孩 套件 +item.boy_propellant=炸药 +item.boy_shielding=中子屏蔽罩 +item.boy_target=次临界铀-235标靶 +item.briquette.coal=煤球 +item.briquette.lignite=褐煤煤球 +item.briquette.wood=木屑球 +item.bucket_acid=一桶酸 +item.bucket_mud=一桶毒泥 +item.bucket_schrabidic_acid=一桶Sa酸 +item.bucket_sulfuric_acid=一桶硫酸 +item.bucket_toxic=一桶绿色软泥 +item.burnt_bark=烧焦树皮 +item.burnt_bark.desc=爆炸的金橡树的树皮。 +item.can_bepis=白事 +item.can_breen=布雷恩博士的私人珍藏 +item.can_creature='生物'能量饮料 +item.can_empty=空罐 +item.can_key=罐头拉环 +item.can_luna=黑梅萨露娜-黑可乐 +item.can_mrsugar='糖博士'软饮料 +item.can_mug=MUG牌树根啤酒 +item.can_overcharge=超频DeliriumXT +item.can_redbomb='红色炸弹'能量饮料 +item.can_smart=\"智慧\"能量饮料 +item.canister_NITAN=桶装NITAN 100号超级燃料 +item.canister_biofuel=桶装生物燃料 +item.canister_bitumen=桶装沥青 +item.canister_canola=桶装润滑油 +item.canister_empty=空油桶 +item.canister_ethanol=桶装乙醇 +item.canister_fracksol=桶装压裂液 +item.canister_fuel=桶装柴油 +item.canister_fuel.desc=大家欢呼吧! +item.canister_full=油桶: +item.canister_gasoline=桶装含铅汽油 +item.canister_gasoline.desc=铅就是朋友$让朋友进入你的血液$*上膛声*现在就做 +item.canister_heatingoil=桶装燃油 +item.canister_heavyoil=桶装重油 +item.canister_kerosene=桶装煤油 +item.canister_lightoil=桶装轻油 +item.canister_napalm=桶装凝固汽油B +item.canister_naphtha=桶装石脑油 +item.canister_oil=桶装原油 +item.canister_petroil=桶装汽油 +item.canister_reoil=桶装再生油 +item.canister_smear=桶装工业油 +item.canned_asbestos=石棉罐头 +item.canned_asbestos.desc=尝尝石棉肺! +item.canned_ass=驴罐头 +item.canned_ass.desc=100%优质驴肉!* +item.canned_bark=松树皮罐头 +item.canned_bark.desc=更加的“松”脆! +item.canned_beef=牛肉罐头 +item.canned_beef.desc=几个世纪前,一头牛为此而死。 +item.canned_bhole=黑洞罐头 +item.canned_bhole.desc=奇点是我肚肚里的美味! +item.canned_cheese=融化奶酪罐头 +item.canned_cheese.desc=是奶酪吗?是橡胶水泥吗?谁知道,谁在乎。 +item.canned_chinese=中餐罐头 +item.canned_chinese.desc=在中国,中餐被称为饭。 +item.canned_diesel=柴油罐头 +item.canned_diesel.desc=我渐渐地就抖不出包袱了 +item.canned_fist=拳头罐头 +item.canned_fist.desc=给你一拳! +item.canned_fried=炸鸡罐头 +item.canned_fried.desc=甚至罐头都是油炸的! +item.canned_hotdogs=热狗罐头 +item.canned_hotdogs.desc=不要与冷猫混淆。 +item.canned_jizz=FlimFlam工业牌?马奶罐头 +item.canned_jizz.desc=等等什么—— +item.canned_kerosene=煤油罐头 +item.canned_kerosene.desc=想象一下这句俏皮的台词。 +item.canned_leftovers=剩菜罐头 +item.canned_leftovers.desc=你来的太迟了 +item.canned_milk=罐装炼乳 +item.canned_milk.desc=牛奶2:比以往任何时候都更固体! +item.canned_mystery=神秘肉类罐头 +item.canned_mystery.desc=里面是什么?只有一种方法可以找到! +item.canned_napalm=凝固汽油罐头 +item.canned_napalm.desc=我喜欢早上闻着老梗的味道! +item.canned_oil=机油罐头 +item.canned_oil.desc=它既然能让发动机运转的更流畅,那为什么不能用在人类身上? +item.canned_pashtet=牛排罐头 +item.canned_pashtet.desc=翻译服务不可用блядь! +item.canned_pizza=意大利香肠比萨罐头 +item.canned_pizza.desc=反人类罪 +item.canned_recursion=循环罐头 +item.canned_recursion.desc=封闭递归 +item.canned_spam=SPAM斯帕姆午餐肉 +item.canned_spam.desc=这段三分半钟的幽默剧是以布朗利虚构的绿侏儒咖啡馆为背景。$一位女服务生与不喜欢吃午餐肉的本太太之间发生了争执,$女服务生背诵了一份几乎每道菜都含有午餐肉的菜单。$本太太要了一道没有午餐肉的菜,这让她爱吃午餐肉的丈夫大吃一惊。$女服务员也对这个要求很反感。本先生提出要替换她的午餐肉,并要了一道含有大量午餐肉和烤豆的菜。$服务员拒绝了,因为烤豆子已经吃完了;当本先生要求替换午餐肉时,女服务员再次表示厌恶。$有几次,餐厅里的一群维京人高声歌唱午餐肉,打断了谈话。$那个愤怒的女服务员命令他们闭嘴,但他们依旧大声唱歌。$这时一名匈牙利游客来到柜台,试图用一本完全不准确的匈牙利语/英语手册(参考之前的小品)点菜。$紧接着这名匈牙利游客就被一名警察迅速护送离开。$然后这段幽默剧突然切换镜头,一位历史学家在电视演播室谈论维京人在咖啡馆的起源。$他继续说,并开始越来越多地在每一句话中插入“午餐肉”一词。$然后背景被抬高,露出背后的餐厅场景。$那个历史学家加入了维京人的歌曲,本夫妇通过电线离开现场,而歌声还在继续。$在最初的电视表演中,结尾的字幕开始滚动,背景中仍然可以听到歌声。 +item.canned_stew=蘑菇煲罐头 +item.canned_stew.desc= +item.canned_tomato=番茄汤罐头 +item.canned_tomato.desc=谁要浓浓的红糊糊? +item.canned_tube=宇航员食品管 +item.canned_tube.desc=美味的蘑菇。 +item.canned_tuna=金枪鱼罐头 +item.canned_tuna.desc=我不知道那是金枪鱼还是干水泥。 +item.canned_yogurt=酸奶罐头 +item.canned_yogurt.desc=可能坏掉了,但管它呢 +item.canteen_13=Vault13水壶 +item.canteen_fab=极品伏特加 +item.canteen_vodka=伏特加 +item.cap_fritz=弗里茨瓶盖 +item.cap_korl=Korl瓶盖 +item.cap_nuka=核子可乐瓶盖 +item.cap_quantum=樱桃味核子可乐瓶盖 +item.cap_rad=辐射S~核子可乐瓶盖 +item.cap_sparkle=S~核子可乐瓶盖 +item.cap_star=夕阳沙士星星瓶盖 +item.cap_sunset=夕阳沙士瓶盖 +item.cape_ayy=Ayy披风 +item.cape_codered_=codered_披风 +item.cape_dafnik=Dafnik披风 +item.cape_gasmask=披风[防毒面具] +item.cape_hbm=Hbm披风 +item.cape_hidden=隐藏斗篷 +item.cape_lpkukin=LPkukin披风 +item.cape_nostalgia=DrNostalgia披风 +item.cape_radiation=披风[辐射] +item.cape_schrabidium=披风[Sa326] +item.cape_vertice=Lord Vertice披风 +item.card_aos=黑桃A +item.card_qos=黑桃皇后 +item.cart.crate=板条箱运输车 +item.cart.destroyer=废品销毁车 +item.cart.empty=钢箱矿车 +item.casing_357=.357马格南弹壳[x16] +item.casing_44=.44马格南弹壳[x16] +item.casing_50=大口径弹壳[x8] +item.casing_9=小口径弹壳[x24] +item.casing_buckshot=鹿弹弹壳[x8] +item.catalyst_clay=黏土催化剂 +item.catalytic_converter=催化转化器 +item.cbt_device=CBT装置 +item.cell_anti_schrabidium=反Sa326单元 +item.cell_antimatter=反物质单元 +item.cell_balefire=气态野火单元 +item.cell_deuterium=氘单元 +item.cell_empty=空单元 +item.cell_puf6=六氟化钚单元 +item.cell_sas3=三硫化Sa单元 +item.cell_tritium=氚单元 +item.cell_uf6=六氟化铀单元 +item.centri_stick=便携离心机 +item.centrifuge_element=离心元件 +item.centrifuge_tower=离心塔 +item.chainsaw=链锯 +item.cheese=奶酪 +item.cheese_quesadilla=奶酪油炸玉米粉饼 +item.chemical_dye.black=化学染料(黑色) +item.chemical_dye.blue=化学染料(蓝色) +item.chemical_dye.brown=化学染料(棕色) +item.chemical_dye.cyan=化学染料(青色) +item.chemical_dye.gray=化学染料(灰色) +item.chemical_dye.green=化学染料(绿色) +item.chemical_dye.lightblue=化学染料(浅蓝色) +item.chemical_dye.lime=化学染料(石灰) +item.chemical_dye.magenta=化学染料(品红色) +item.chemical_dye.orange=化学染料(橙色) +item.chemical_dye.pink=化学染料(粉色) +item.chemical_dye.purple=化学染料(紫色) +item.chemical_dye.red=化学染料(红色) +item.chemical_dye.silver=化学染料(浅灰色) +item.chemical_dye.white=化学染料(白色) +item.chemical_dye.yellow=化学染料(黄色) +item.chemistry_set=实验室玻璃器皿 +item.chemistry_set_boron=实验室玻璃器皿(硼玻璃) +item.chemistry_template=化工厂模板: +item.chernobylsign=辐射警告标志战斧 +item.chlorine_pinwheel=氯气转轮 +item.chlorophyte_axe=叶绿斧 +item.chlorophyte_pickaxe=叶绿镐 +item.chocolate=“我是-镭牌”巧克力 +item.chocolate.desc=镭巧克力?我很确定这是冰毒。 +item.chocolate_milk=巧克力牛奶 +item.chopper=猎人直升机 +item.chopper_blades=猎人直升机旋翼 +item.chopper_gun=猎人直升机机枪 +item.chopper_head=猎人直升机驾驶舱 +item.chopper_tail=猎人直升机尾部 +item.chopper_torso=猎人直升机主体 +item.chopper_wing=猎人直升机翼片 +item.chunk_ore.rare=稀土矿石块 +item.cigarette=FFI牌香烟 +item.cinnebar=朱砂 +item.circuit.advanced=军用级电路板 +item.circuit.analog=模拟电路板 +item.circuit.atomic_clock=原子钟 +item.circuit.basic=集成电路板 +item.circuit.bismoid=多功能电路板 +item.circuit.capacitor=电容器 +item.circuit.capacitor_board=电容板 +item.circuit.capacitor_tantalium=钽电容器 +item.circuit.chip=微芯片 +item.circuit.chip_bismoid=多功能集成电路 +item.circuit.chip_quantum=固态量子处理器 +item.circuit.controller=控制单元 +item.circuit.controller_advanced=高级控制单元 +item.circuit.controller_chassis=控制单元外壳 +item.circuit.controller_quantum=量子计算机 +item.circuit.pcb=印刷电路板 +item.circuit.quantum=量子处理单元 +item.circuit.silicon=压印硅晶圆 +item.circuit.vacuum_tube=真空管 +item.circuit_aluminium=基础电路 +item.circuit_arsenic=自适应电路 +item.circuit_arsenic_raw=自适应电路组件 +item.circuit_bismuth=多功能芯片组 +item.circuit_bismuth_raw=多功能芯片组组件 +item.circuit_copper=增强电路 +item.circuit_gold=超频电路 +item.circuit_raw=基本电路组件 +item.circuit_red_copper=高级电路 +item.circuit_schrabidium=高性能电路 +item.circuit_star=星控制 电路板 +item.circuit_star.desc=目前未使用,因为它缺少操作系统。 +item.circuit_star_component.card=星控制 扩展卡 +item.circuit_star_component.chipset=星控制 芯片组 +item.circuit_star_component.cpu=星控制 CPU +item.circuit_star_component.ram=星控制 RAM +item.circuit_star_piece.board_blank=SC-印刷电路板 +item.circuit_star_piece.board_converter=SC-电压转换器 +item.circuit_star_piece.board_transistor=SC-晶体管 +item.circuit_star_piece.bridge_bios=SC-BIOS芯片 +item.circuit_star_piece.bridge_bus=SC-总线 +item.circuit_star_piece.bridge_chipset=SC-芯片组 +item.circuit_star_piece.bridge_cmos=SC-CMOS存储器 +item.circuit_star_piece.bridge_io=SC-IO芯片 +item.circuit_star_piece.bridge_north=SC-北桥 +item.circuit_star_piece.bridge_south=SC-南桥 +item.circuit_star_piece.card_board=SC-扩展卡底板 +item.circuit_star_piece.card_processor=SC-扩展卡处理器 +item.circuit_star_piece.cpu_cache=SC-CPU缓存 +item.circuit_star_piece.cpu_clock=SC-CPU时钟 +item.circuit_star_piece.cpu_ext=SC-砷半导体外延片 +item.circuit_star_piece.cpu_logic=SC-算术逻辑单元 +item.circuit_star_piece.cpu_register=SC-CPU寄存器 +item.circuit_star_piece.cpu_socket=SC-CPU插槽 +item.circuit_star_piece.mem_socket=SC-存储插座 +item.circuit_star_piece.mem_16k_a=SC-16k内存条插槽 A +item.circuit_star_piece.mem_16k_b=SC-16k内存条插槽 B +item.circuit_star_piece.mem_16k_c=SC-16k内存条插槽 C +item.circuit_star_piece.mem_16k_d=SC-16k内存条插槽 D +item.circuit_tantalium=电容板 +item.circuit_tantalium_raw=电容板组件 +item.circuit_targeting_tier1=军用级电路板[1级] +item.circuit_targeting_tier2=军用级电路板[2级] +item.circuit_targeting_tier3=军用级电路板[3级] +item.circuit_targeting_tier4=军用级电路板[4级] +item.circuit_targeting_tier5=军用级电路板[5级] +item.circuit_targeting_tier6=军用级电路板[6级] +item.cladding_desh=Desh覆层 +item.cladding_ghiorsium=Gh336覆层 +item.cladding_iron=铁覆层 +item.cladding_lead=铅覆层 +item.cladding_obsidian=黑曜石覆层 +item.cladding_paint=铅涂料 +item.cladding_rubber=橡胶覆层 +item.clip_bf=两包野火子弹 +item.clip_bolt_action=盒装12x74独头弹 +item.clip_cryolator=急冻单元箱 +item.clip_defabricator=毁灭者能量电池弹药带 +item.clip_emp=小包能量电池 +item.clip_euthanasia=最后的医疗箱 +item.clip_fatman=六个核弹 +item.clip_hp=墨水缸 +item.clip_immolator=焚烧者燃料箱 +item.clip_jack=盒装四联12x70鹿弹 +item.clip_lever_action=盒装12x74鹿弹 +item.clip_mirv=三合一微型MIRV包 +item.clip_mp=小型无发射药机枪子弹盒 +item.clip_mp40=9mm冲锋枪子弹盒 +item.clip_osipr=AR2 弹盒 +item.clip_revolver=盒装.357马格南 +item.clip_revolver_cursed=钢子弹弹匣 +item.clip_revolver_gold=小盒金子弹 +item.clip_revolver_iron=盒装铁子弹 +item.clip_revolver_lead=盒装核子弹 +item.clip_revolver_nightmare=子弹袋 +item.clip_revolver_nightmare2=激光弹药带 +item.clip_revolver_nopip=盒装.44子弹 +item.clip_revolver_pip=左轮快速装弹器 +item.clip_revolver_schrabidium=Sa326弹药盒 +item.clip_rpg=火箭弹箱 +item.clip_spark=大型电磁子弹 +item.clip_stinger=包装毒刺导弹 +item.clip_uboinik=盒装12x70鹿弹 +item.clip_uzi=32发装.22LR子弹盒 +item.clip_xvl1456=大型同位素盒 +item.cmb_axe=CMB钢斧 +item.cmb_boots=CMB钢靴子 +item.cmb_helmet=CMB钢头盔 +item.cmb_hoe=CMB钢锄 +item.cmb_legs=CMB钢护腿 +item.cmb_pickaxe=CMB钢镐 +item.cmb_plate=CMB钢胸甲 +item.cmb_shovel=CMB钢锹 +item.cmb_sword=CMB钢剑 +item.coal_infernal=地狱煤炭 +item.cobalt_axe=钴斧 +item.cobalt_boots=钴靴子 +item.cobalt_decorated_axe=镶嵌钴斧 +item.cobalt_decorated_hoe=镶嵌钴锄 +item.cobalt_decorated_pickaxe=镶嵌钴镐 +item.cobalt_decorated_shovel=镶嵌钴锹 +item.cobalt_decorated_sword=镶嵌钴剑 +item.cobalt_helmet=钴头盔 +item.cobalt_hoe=钴锄 +item.cobalt_legs=钴护腿 +item.cobalt_pickaxe=钴镐 +item.cobalt_plate=钴胸甲 +item.cobalt_shovel=钴锹 +item.cobalt_sword=钴剑 +item.coffee=咖啡 +item.coffee_radium=加镭咖啡 +item.coil_advanced_alloy=超导线圈 +item.coil_advanced_torus=超导环形线圈 +item.coil_copper=紫铜线圈 +item.coil_copper_torus=紫铜环形线圈 +item.coil_gold=金线圈 +item.coil_gold_torus=金环形线圈 +item.coil_magnetized_tungsten=4000K高温超导线圈 +item.coil_tungsten=加热线圈 +item.coin_creeper=核爆爬行者硬币 +item.coin_maskman=面具硬币 +item.coin_radiation=辐射硬币 +item.coin_siege=围城硬币 +item.coin_ufo=UFO硬币 +item.coin_worm=机械蠕虫硬币 +item.coke.coal=煤焦炭 +item.coke.lignite=褐煤焦炭 +item.coke.petroleum=石油焦炭 +item.coltan_tool=钶钽铁矿指针 +item.combine_scrap=CMB钢废料 +item.component_emitter=发射器组件 +item.component_limiter=稳定器组件 +item.containment_box=安全盒 +item.cordite=无烟线状火药 +item.cotton_candy=放射性棉花糖 +item.crackpipe=健康烟壶 +item.crate_caller=空投召唤器 +item.crayon.black=黑色蜡笔 +item.crayon.blue=蓝色蜡笔 +item.crayon.brown=棕色蜡笔 +item.crayon.cyan=青色蜡笔 +item.crayon.gray=灰色蜡笔 +item.crayon.green=绿色蜡笔 +item.crayon.lightblue=浅蓝色蜡笔 +item.crayon.lime=青色蜡笔 +item.crayon.magenta=品红蜡笔 +item.crayon.orange=橙色蜡笔 +item.crayon.pink=粉红蜡笔 +item.crayon.purple=紫色蜡笔 +item.crayon.red=红色蜡笔 +item.crayon.silver=浅灰色蜡笔 +item.crayon.white=白色蜡笔 +item.crayon.yellow=黄色蜡笔 +item.crowbar=Mk.V开箱装置\"物理学圣剑\" +item.crucible=裁决剑 +item.crucible_template=坩埚模板 +item.crystal_aluminium=铝晶体 +item.crystal_beryllium=铍晶体 +item.crystal_charred=烧焦的水晶 +item.crystal_charred.desc=优质硅酸盐,轻微灼烧。 +item.crystal_charred.desc.P11=也是一个真正的号角。奇怪吧? +item.crystal_coal=煤晶体 +item.crystal_cobalt=钴晶体 +item.crystal_copper=铜晶体 +item.crystal_cinnebar=朱砂晶体 +item.crystal_diamond=钻石晶体 +item.crystal_energy=能量晶体 +item.crystal_fluorite=氟晶体 +item.crystal_gold=金晶体 +item.crystal_horn=水晶角 +item.crystal_horn.desc=不是真正的号角。 +item.crystal_horn.desc.P11=真正的号角。 +item.crystal_iron=铁晶体 +item.crystal_lead=铅晶体 +item.crystal_lapis=青金石晶体 +item.crystal_lithium=锂晶体 +item.crystal_niter=硝石晶体 +item.crystal_osmiridium=铱锇晶体 +item.crystal_phosphorus=磷晶体 +item.crystal_plutonium=钚晶体 +item.crystal_rare=稀土晶体 +item.crystal_redstone=红石晶体 +item.crystal_schrabidium=Sa326晶体 +item.crystal_schraranium=低丰度Sa326晶体 +item.crystal_starmetal=星辉晶体 +item.crystal_sulfur=硫晶体 +item.crystal_thorium=钍晶体 +item.crystal_titanium=钛晶体 +item.crystal_trixite=赛瑞克晶体 +item.crystal_tungsten=钨晶体 +item.crystal_uranium=铀晶体 +item.crystal_xen=人造X晶体 +item.crt_display=阴极射线管 +item.cube_power=电子块 +item.custom_amat=自定义核弹-反物质棒 +item.custom_dirty=自定义核弹-核废料棒 +item.custom_fall=自定义核弹-掉落升级 +item.custom_fall.desc=这就是你一一一直在等待的$使炸弹在激活时下落 +item.custom_hydro=自定义核弹-氢棒 +item.custom_kit=自定义核弹 套件 +item.custom_nuke=自定义核弹-铀棒 +item.custom_schrab=自定义核弹-Sa326棒 +item.custom_tnt=自定义核弹-炸药 +item.cyclotron_tower=回旋加速器塔 +item.debris_concrete=碎混凝土 +item.debris_element=断裂的锆诺克斯燃料元件 +item.debris_exchanger=换热器片 +item.debris_fuel=RBMK石墨式反应堆燃料块 +item.debris_graphite=热石墨块 +item.debris_metal=断裂金属棒 +item.debris_shrapnel=走道碎片 +item.definitelyfood=完全不脏牌军粮 +item.defuser=高科技拆弹装置 +item.defuser_gold=黄金剪线钳 +item.demon_core_closed=封闭的恶魔核心 +item.demon_core_open=打开的恶魔核心 +item.desh_axe=工人合金斧 +item.desh_hoe=工人合金锄 +item.desh_pickaxe=工人合金镐 +item.desh_shovel=工人合金锹 +item.desh_sword=工人合金剑 +item.designator=短程目标指示器 +item.designator_arty_range=远程火炮遥控器 +item.designator_manual=手动目标指示器 +item.designator_range=远程目标指示器 +item.detonator=起爆器 +item.detonator_de=死亡炸弹 +item.detonator_deadman=死亡雷管 +item.detonator_laser=激光起爆器 +item.detonator_multi=多发起爆器 +item.deuterium_filter=氘过滤器 +item.diamond_gavel=钻石槌 +item.dieselsuit_boots=柴油动力高跟鞋 +item.dieselsuit_helmet=柴油动力头戴式环境传感器 +item.dieselsuit_legs=柴油动力腿部伺服系统 +item.dieselsuit_plate=柴油动力控制器 +item.digamma_diagnostic=玩家F-迪伽马辐射自检器 +item.disperser_canister=流体雾化手雷: +item.disperser_canister_empty=流体雾化手雷 +item.dns_boots=DNT双聚中子态素高科技全环境作战服靴子 +item.dns_legs=DNT双聚中子态素高科技全环境作战服护腿 +item.dns_helmet=DNT双聚中子态素高科技全环境作战服头盔 +item.dns_plate=DNT双聚中子态素高科技全环境作战服胸甲 +item.dnt_boots=双聚态中子素 靴子 +item.dnt_legs=双聚态中子素 护腿 +item.dnt_helmet=双聚态中子素 头盔 +item.dnt_plate=双聚态中子素 胸甲 +item.door_bunker=仓门 +item.door_metal=金属门 +item.door_office=办公室门 +item.door_red=红门 +item.dosimeter=剂量计 +item.drax=采掘钻 +item.drax_mk2=强化型采掘钻 +item.drax_mk3=Sa326采掘钻 +item.drillbit_desh=Desh钻头 +item.drillbit_desh_diamond=Desh钻头(镶钻) +item.drillbit_ferro=铀铁合金钻头 +item.drillbit_ferro_diamond=铀铁合金钻头(镶钻) +item.drillbit_hss=高速钢钻头 +item.drillbit_hss_diamond=高速钢钻头(镶钻) +item.drillbit_steel=钢钻头 +item.drillbit_steel_diamond=钢钻头(镶钻) +item.drillbit_tcalloy=锝钢钻头 +item.drillbit_tcalloy_diamond=锝钢钻头(镶钻) +item.drill_titanium=钛钻头 +item.drone.patrol=运输无人机 +item.drone.patrol.desc=跟随航路点运动$到达运输无人机坞时会尝试装货/卸货$右键单击运输无人机坞顶面放置 +item.drone.patrol_chunkloading=区块加载无人机 +item.drone.patrol_chunkloading.desc=跟随航路点运动$到达运输无人机坞时会尝试装货/卸货$右键单击运输无人机坞顶面放置$加载区块 +item.drone.patrol_express=快速无人机 +item.drone.patrol_express.desc=跟随航路点运动$到达运输无人机坞时会尝试装货/卸货$右键单击运输无人机坞顶面放置 +item.drone.patrol_express_chunkloading=区块加载快速无人机 +item.drone.patrol_express_chunkloading.desc=跟随航路点运动$到达运输无人机坞时会尝试装货/卸货$右键单击运输无人机坞顶面放置$加载区块 +item.drone.request=物流无人机 +item.drone.request.desc=用于使物流无人机坞生成物流无人机$生成的物流无人机会跟随物流无人机航路点$完成一次物流任务后会回到无人机坞 +item.drone_linker=运输无人机链接器 +item.ducttape=胶带 +item.dust=灰尘 +item.dust.desc=我讨厌灰尘! +item.dust.desc.P11=又一小撮灰尘! +item.dust_tiny=一小撮灰尘 +item.dwarven_pickaxe=矮人镐 +item.dynosphere_base=空白动力球 +item.dynosphere_desh=Desh动力球 +item.dynosphere_desh_charged=Desh动力球[带电] +item.dynosphere_dineutronium=双聚中子态素动力球 +item.dynosphere_dineutronium_charged=双聚中子态素动力球[带电] +item.dynosphere_euphemium=Ep动力球 +item.dynosphere_euphemium_charged=Ep动力球[带电] +item.dynosphere_schrabidium=Sa326动力球 +item.dynosphere_schrabidium_charged=Sa326动力球[带电] +item.dysfunctional_reactor=失控反应堆 +item.early_explosive_lenses=初代炸药透镜阵列 +item.early_explosive_lenses.desc=8个炸药透镜的组装,带有铝合金推进器、硬铝外壳和桥丝雷管。 +item.egg_balefire=野火蛋 +item.egg_balefire.desc=什么样的鸟儿才会下带有放射性的蛋? +item.egg_balefire_shard=野火蛋碎片 +item.egg_glyphid=异虫蛋 +item.elec_axe=电锯 +item.elec_pickaxe=冲击钻 +item.elec_shovel=螺旋钻 +item.elec_sword=电棍 +item.energy_core=临时能源核心 +item.entanglement_kit=纠缠部件 +item.entanglement_kit.desc=传送机制作零件$通过$铍增强型资源扫描仪实现尺寸转换。 +item.envsuit_boots=M1TTY环境套装靴子 +item.envsuit_helmet=M1TTY环境套装头盔 +item.envsuit_legs=M1TTY环境套装护腿 +item.envsuit_plate=M1TTY环境套装胸甲 +item.euphemium_boots=Ep靴子 +item.euphemium_capacitor=Ep电容 +item.euphemium_capacitor.desc=允许被动分散累积的正能量。 +item.euphemium_helmet=Ep头盔 +item.euphemium_kit=Ep工具箱 +item.euphemium_legs=Ep护腿 +item.euphemium_plate=Ep胸甲 +item.euphemium_stopper=Ep-阻滞者 +item.explosive_lenses=炸药透镜阵列 +item.explosive_lenses.desc=8个PBX炸药组装的阵列,带有一个薄的$铝推进器、硬铝外壳和$小型桥丝雷管。 +item.fabsols_vodka=Fabsol伏特加 +item.factory_core_advanced=高级工厂能源组件 +item.factory_core_titanium=工厂能源组件 +item.fallout=一堆辐射尘 +item.fau_boots=Fau靴子 +item.fau_helmet=Fau头盔 +item.fau_legs=Fau护腿 +item.fau_plate=Fau胸甲 +item.filter_coal=活性炭过滤器 +item.fins_big_steel=大型钢栅格翼 +item.fins_flat=扁钢外壳 +item.fins_quad_titanium=小型钛翼 +item.fins_small_steel=小型钢栅格翼 +item.fins_tri_steel=大型钢翼 +item.five_htp=5-羟色胺药丸 +item.five_htp.desc=移除所有迪伽马辐射,并获得10分钟稳定效果 +item.flame_conspiracy=阴谋论 +item.flame_conspiracy.desc=钢梁不能熔化喷气燃料! +item.flame_opinion=个人观点 +item.flame_opinion.desc=呃,我喜欢... +item.flame_politics=政治话题 +item.flame_politics.desc=唐老鸭将会修建一堵墙! +item.flame_pony=卡通小马画 +item.flame_pony.desc=黄马胜于蓝马,这是不争的事实! +item.flask_infusion.shield=护盾药水 +item.fleija_core=F.L.E.I.J.A.铀-235装药 +item.fleija_igniter=脉冲点火器 +item.fleija_kit=F.L.E.I.J.A. 套件 +item.fleija_propellant=Sa326炸药 +item.fluid_barrel_empty=空流体桶 +item.fluid_barrel_full=流体桶: +item.fluid_barrel_infinite=无限流体桶 +item.fluid_duct=流体管道: +item.fluid_identifier=流体识别码 +item.fluid_identifier.info=流体标识码用于: +item.fluid_identifier.usage0=在流体管道上单击右键,为该管道指定运输的流体。 +item.fluid_identifier.usage1=按住Shift键并流体管道上单击右键以指定相邻管道 +item.fluid_identifier.usage2=最大范围为64格管道。 +item.fluid_identifier_multi=多类型流体识别码 +item.fluid_identifier_multi.info=通用流体识别码: +item.fluid_identifier_multi.info2=次要类型: +item.fluid_tank_empty=空通用流体罐 +item.fluid_tank_full=通用流体罐: +item.fluid_tank_lead_empty=空危险品罐 +item.fluid_tank_lead_full=危险品罐: +item.fluorite=氟石粉 +item.flywheel_beryllium=铍制飞轮 +item.fmn=氟硝西泮片 +item.fmn.desc=移除2000mDRX以上的所有迪伽马辐射 +item.folly_bullet=128mm星辉弹头 +item.folly_bullet_du=128mm贫铀弹头 +item.folly_bullet_nuclear=128mm核弹头 +item.folly_shell=银弹壳 +item.fooditem=食物 +item.fragment_actinium=锕碎片 +item.fragment_boron=硼碎片 +item.fragment_cerium=铈碎片 +item.fragment_cobalt=钴碎片 +item.fragment_coltan=钶钽铁矿碎片 +item.fragment_lanthanium=镧碎片 +item.fragment_meteorite=陨石碎片 +item.fragment_neodymium=钕碎片 +item.fragment_niobium=铌碎片 +item.fuel_additive.antiknock=四乙基铅抗爆剂 +item.fuel_additive.deicer=除冰剂 +item.fuel_tank_large=大型燃料罐 +item.fuel_tank_medium=中型燃料罐 +item.fuel_tank_small=小型燃料罐 +item.fuse=保险丝 +item.fusion_core=聚变能源核心 +item.fusion_core_infinite=无限能源核心 +item.fusion_shield_chlorophyte=叶绿金属聚变反应堆覆层 +item.fusion_shield_desh=Desh聚变反应堆覆层 +item.fusion_shield_tungsten=钨聚变反应堆覆层 +item.fusion_shield_vaporwave=蒸汽波反应堆覆层 +item.gadget_core=钚核心 +item.gadget_explosive=炸药 +item.gadget_kit=小玩意 套件 +item.gadget_wireing=线路 +item.gas_biogas=沼气罐 +item.gas_empty=空气罐 +item.gas_full=气体罐: +item.gas_lpg=液化石油气罐 +item.gas_mask=防毒面具 +item.gas_mask_filter=防毒面具过滤器 +item.gas_mask_filter_combo=防毒面具组合式过滤器 +item.gas_mask_filter_mono=催化性面罩过滤器 +item.gas_mask_filter_piss=先进的简易防毒面具过滤器 +item.gas_mask_filter_rag=临时防毒面具过滤器 +item.gas_mask_m65=M65-Z防毒面具 +item.gas_mask_mono=半面罩防毒面具 +item.gas_mask_olde=皮革防毒面具 +item.gas_petroleum=石油气罐 +item.gas_tester=气体传感器 +item.gear_large=大型齿轮 +item.gear_large_steel=大型钢齿轮 +item.geiger_counter=手持盖革计数器 +item.gem_alexandrite=亚历山大变石 +item.gem_rad=放射性宝石 +item.gem_sodalite=方钠石 +item.gem_tantalium=钽晶体 +item.gem_tantalium.desc=“钽” +item.gem_tantalium.desc.P11=又名钽。 +item.gem_volcanic=火山宝石 +item.generator_front=发电机前部 +item.generator_steel=发电机主体 +item.glitch=故障 +item.glowing_stew=发光真菌煲 +item.glyphid_meat=异虫肉 +item.glyphid_meat_grilled=熟异虫肉 +item.goggles=护目镜 +item.grenade_aschrab=可抛反Sa326 +item.grenade_black_hole=黑洞手榴弹 +item.grenade_breach=破甲手榴弹 +item.grenade_burst=挖掘手榴弹 +item.grenate_cats=猫猫手榴弹 +item.grenade_cloud=一罐云 +item.grenade_cluster=集束手榴弹 +item.grenade_electric=闪电炸弹 +item.grenade_fire=燃烧破片手榴弹 +item.grenade_flare=信号弹 +item.grenade_frag=破片手榴弹 +item.grenade_gas=毒气手榴弹 +item.grenade_gascan=可抛油桶 +item.grenade_generic=手榴弹 +item.grenade_if_bouncy=IF-弹性手榴弹 +item.grenade_if_brimstone=IF-可抛硫磺矿 +item.grenade_if_concussion=IF-震荡手榴弹 +item.grenade_if_generic=IF-手榴弹 +item.grenade_if_he=IF-HE手榴弹 +item.grenade_if_hopwire=IF-旋涡热线 +item.grenade_if_impact=IF-冲击手榴弹 +item.grenade_if_incendiary=IF-燃烧手榴弹 +item.grenade_if_mystery=IF-M-手榴弹 +item.grenade_if_null=IF-清除手榴弹 +item.grenade_if_spark=IF-S-手榴弹 +item.grenade_if_sticky=IF-粘性手榴弹 +item.grenade_if_toxic=IF-毒物手榴弹 +item.grenade_kit=手榴弹 套件 +item.grenade_kyiv=基辅特供 +item.grenade_lemon=可燃柠檬 +item.grenade_mirv=MIRV型破片手榴弹 +item.grenade_mk2=Mk2手榴弹“菠萝大使” +item.grenade_nuclear=核子手榴弹 +item.grenade_nuke=MkVI钻地手榴弹 +item.grenade_pink_cloud=一罐粉雾 +item.grenade_plasma=等离子手榴弹 +item.grenade_poison=剧毒手榴弹 +item.grenade_pulse=脉冲手榴弹 +item.grenade_schrabidium=Sa326手榴弹 +item.grenade_shrapnel=榴霰弹手榴弹 +item.grenade_smart=智能手榴弹 +item.grenade_strong=增强型手榴弹 +item.grenade_tau=陶子手榴弹 +item.grenade_zomg=负能量湮灭手榴弹 +item.glyphid_gland=囊腺 +item.glyphid_gland_empty=异虫腺体 +item.gun_ar15=阿玛莱特AR15式5.56mm自动步枪 +item.gun_avenger=CZ57复仇者机枪 +item.gun_b92=§9B92能量手枪§r +item.gun_b92_ammo=§9B92能量单元§r +item.gun_b93=§cB93能量手枪§r +item.gun_benelli=伯奈利自动霰弹枪(Drum Mod) +item.gun_bf=野火之卵发射器 +item.gun_bf_ammo=Mk.V小型AMAT-炮弹 –野火型 +item.gun_bio_revolver=阿特拉斯 +item.gun_bolt_action=栓动步枪[原版] +item.gun_bolt_action_ammo=12x74 独头弹 +item.gun_bolt_action_green=栓动步枪[绿色] +item.gun_bolt_action_saturnite=土星来复枪 +item.gun_bolter=爆弹枪 +item.gun_bolter_digamma=迪伽马爆弹枪 +item.gun_calamity=希特勒的电锯 +item.gun_calamity_ammo=.50BMG子弹 +item.gun_calamity_dual=马鞍枪 +item.gun_chemthrower=化学喷射器 +item.gun_coilgun=线圈枪 +item.gun_congolake=刚果湖 +item.gun_cryocannon=低温炮 +item.gun_cryolator=冻结者 +item.gun_cryolator_ammo=急冻单元 +item.gun_dampfmaschine=绝对不是开玩笑的武器 +item.gun_darter=飞镖枪 +item.gun_deagle=大手枪 +item.gun_defabricator=毁灭者 +item.gun_defabricator_ammo=毁灭者能量电池 +item.gun_detonator=激光引爆器 +item.gun_emp=EMP射线 +item.gun_emp_ammo=能量电池 +item.gun_euthanasia=安乐死 +item.gun_euthanasia_ammo=注射器 +item.gun_fatman=M42核弹发射器 \"胖子\" +item.gun_fatman_ammo=迷你核弹 +item.gun_fireext=灭火器 +item.gun_flamer=\"黄玉先生\"喷射器 +item.gun_flechette=弗莱彻突击步枪 +item.gun_folly=Digamma原型\"愚蠢\" +item.gun_glass_cannon=玻璃大炮 +item.gun_hk69=榴弹手枪 +item.gun_hp=HPP射线炮 +item.gun_hp_ammo=墨盒 +item.gun_immolator=焚烧者 +item.gun_immolator_ammo=焚烧者燃料 +item.gun_jack=汽锤 +item.gun_jack_ammo=四联散弹子弹 +item.gun_karl=卡尔-古斯塔夫M3式84mm火箭筒 +item.gun_kit_1=枪械润滑油 +item.gun_kit_2=枪械修理包 +item.gun_ks23=KS-23霰弹枪 +item.gun_lacunae=CZ33亚巴顿 +item.gun_lacunae_ammo=5mm子弹 +item.gun_lever_action=马腿杠杆式霰弹枪[原版] +item.gun_lever_action_ammo=12x74 鹿弹 +item.gun_lever_action_dark=马腿杠杆式霰弹枪[黑暗] +item.gun_lever_action_sonata=自杀霰弹 +item.gun_lever_action_sonata_2=§cSonata的麦克风§r +item.gun_lunatic_marksman=Lunatic狙击步枪 +item.gun_m2=勃朗宁M2HB型重机枪 +item.gun_minigun=CZ53机枪 +item.gun_mirv=M42核弹发射器 \"试验型MIRV\" +item.gun_mirv_ammo=八倍MIRV +item.gun_moist_nugget=莫辛纳甘[迫真] +item.gun_mp=和平主义的机枪 +item.gun_mp40=MP40冲锋枪 +item.gun_mp40_ammo=冲锋枪子弹 +item.gun_pm_ammo=小型无发射药机枪子弹 +item.gun_mymy=Nietes软弹枪 +item.gun_osipr=标准型脉冲机枪 +item.gun_osipr_ammo=暗能量脉冲弹 +item.gun_osipr_ammo2=融合球 +item.gun_panzerschreck=战车噩梦 +item.gun_proto=M42核弹发射器 \"原始MIRV\" +item.gun_quadro=四喜丸子 +item.gun_remington=バイデン ブラスト [拜登冲击波] +item.gun_revolver=强化左轮手枪 +item.gun_revolver_ammo=铅左轮子弹 +item.gun_revolver_blackjack=黑杰克五发装左轮枪 +item.gun_revolver_cursed=诅咒手枪 +item.gun_revolver_cursed_ammo=钢左轮子弹 +item.gun_revolver_gold=黄金左轮手枪 +item.gun_revolver_gold_ammo=金左轮子弹 +item.gun_revolver_inverted=自杀左轮手枪 +item.gun_revolver_iron=简易左轮手枪 +item.gun_revolver_iron_ammo=铁左轮子弹 +item.gun_revolver_lead=核子左轮手枪 +item.gun_revolver_lead_ammo=玻璃左轮子弹 +item.gun_revolver_nightmare=梦魇左轮手枪[原版] +item.gun_revolver_nightmare2=梦魇左轮手枪[黑暗] +item.gun_revolver_nightmare2_ammo=激光子弹 +item.gun_revolver_nightmare_ammo=噩梦子弹 +item.gun_revolver_nopip=Novac +item.gun_revolver_nopip_ammo=.44马格南子弹 +item.gun_revolver_pip=小麦金塔 +item.gun_revolver_pip_ammo=污染子弹 +item.gun_revolver_red=红钥匙左轮手枪 +item.gun_revolver_saturnite=土星手枪 +item.gun_revolver_schrabidium=Sa326左轮手枪 +item.gun_revolver_schrabidium_ammo=Sa326左轮子弹 +item.gun_revolver_silver=银质左轮手枪 +item.gun_rpg=卡尔-古斯塔夫M4无后座力炮 +item.gun_rpg_ammo=火箭弹 +item.gun_sauer=斯坦-索尔的猎枪 +item.gun_skystinger=毒刺-The One Sky +item.gun_spark=火花塞 +item.gun_spark_ammo=电磁弹 +item.gun_spas12=SPAS-12霰弹枪 +item.gun_stinger=FIM-92毒刺导弹 +item.gun_stinger_ammo=毒刺导弹 +item.gun_super_shotgun=\"超级\"猎枪 +item.gun_super_shotgun.desc=超级烂! +item.gun_supershotgun=超级猎枪 +item.gun_thompson=汤姆森冲锋枪 +item.gun_uac_pistol=UAC .45手枪 +item.gun_uboinik= +item.gun_uboinik_ammo=12x70 鹿弹 +item.gun_uzi=Uzi冲锋枪 +item.gun_uzi_ammo=.22LR子弹 +item.gun_uzi_saturnite=土星Uzi冲锋枪 +item.gun_uzi_saturnite_silencer=带消音器的土星Uzi冲锋枪 +item.gun_uzi_silencer=带消音器的Uzi冲锋枪 +item.gun_xvl1456=XVL1456陶子加农炮原型机 +item.gun_xvl1456_ammo=贫化铀235子弹 +item.gun_zomg=奇点能湮灭射线“ZOMG炮” +item.hand_drill=手钻 +item.hand_drill_desh=Desh手钻 +item.hazmat_boots=防辐射靴 +item.hazmat_boots_grey=高性能防辐射靴 +item.hazmat_boots_red=高级防辐射靴 +item.hazmat_cloth=防辐射布 +item.hazmat_cloth_grey=铅防辐射布 +item.hazmat_cloth_red=高级防辐射布 +item.hazmat_grey_kit=高性能防护套装 +item.hazmat_helmet=防辐射头盔 +item.hazmat_helmet_grey=高性能防辐射头盔 +item.hazmat_helmet_red=高级防辐射头盔 +item.hazmat_kit=防护套装 +item.hazmat_legs=防辐射护腿 +item.hazmat_legs_grey=高性能防辐射护腿 +item.hazmat_legs_red=高级防辐射护腿 +item.hazmat_paa_boots=PaA战斗防辐射套装 靴子 +item.hazmat_paa_helmet=PaA战斗防辐射套装 头盔 +item.hazmat_paa_legs=PaA战斗防辐射套装 护腿 +item.hazmat_paa_plate=PaA战斗防辐射套装 胸甲 +item.hazmat_plate=防辐射胸甲 +item.hazmat_plate_grey=高性能防辐射胸甲 +item.hazmat_plate_red=高级防辐射胸甲 +item.hazmat_red_kit=高级防护套装 +item.heart_booster=心之增强器 +item.heart_container=心之容器 +item.heart_fab=心脏抗原结合器 +item.heart_piece=心之碎片 +item.heavy_component=重型%s组件 +item.hev_battery=套装电池 +item.hev_boots=HEV Mk.IV 靴子 +item.hev_plate=HEV Mk.IV 胸甲 +item.hev_helmet=HEV Mk.IV 头盔 +item.hev_legs=HEV Mk.IV 护腿 +item.holotape_damaged=损坏的全息卡带 +item.holotape_image=全息卡带 +item.horseshoe_magnet=马蹄形磁铁 +item.hull_big_aluminium=大型铝壳 +item.hull_big_steel=大型钢壳 +item.hull_big_titanium=大型钛壳 +item.hull_small_aluminium=小型铝壳 +item.hull_small_aluminium.desc=可插入钻孔石墨中 +item.hull_small_steel=小型钢壳 +item.icf_pellet=ICF燃料靶丸 +item.icf_pellet_depleted=枯竭ICF燃料靶丸 +item.icf_pellet_empty=空ICF燃料靶丸 +item.igniter=点火器 +item.igniter.desc=(鼠标右键点击原型)$这是一个绿色金属手柄,带有$亮红色按钮和一个小盖子$在底部,缩写N.E.刻着美元。不管N.E.是谁,他对绿色的色调很有品味。 +item.industrial_magnet=工业磁铁 +item.inf_antimatter=无限反物质罐 +item.inf_antischrabidium=无限反Sa326罐 +item.inf_coolant=无限冷却液罐 +item.inf_deuterium=无限氘罐 +item.inf_diesel=无限柴油罐 +item.inf_sulfur=无限硫磺罐 +item.inf_tritium=无限氚罐 +item.inf_water=无限水罐 +item.inf_water_mk2=重型无限水罐 +item.ingot_actinium=半稳定锕锭 +item.ingot_advanced_alloy=高级合金锭 +item.ingot_aluminium=铝锭 +item.ingot_am_mix=反应堆级镅锭 +item.ingot_am241=镅-241锭 +item.ingot_am242=镅-242锭 +item.ingot_americium_fuel=镅燃料锭 +item.ingot_arsenic=砷锭 +item.ingot_arsenic_bronze=砷青铜锭 +item.ingot_asbestos=石棉板 +item.ingot_asbestos.desc=§o\\“充满了生命、自我怀疑和石棉。这是空气带来的。\\”§r +item.ingot_au198=金-198锭 +item.ingot_australium=奥斯锭 +item.ingot_bakelite=电木锭 +item.ingot_beryllium=铍锭 +item.ingot_biorubber=乳胶锭 +item.ingot_bismuth=铋锭 +item.ingot_bismuth_bronze=铋青铜锭 +item.ingot_boron=硼锭 +item.ingot_bscco=BSCCO锭 +item.ingot_c4=一块C-4 +item.ingot_cadmium=镉锭 +item.ingot_calcium=钙锭 +item.ingot_cdalloy=镉钢锭 +item.ingot_cft=晶化富勒烯 +item.ingot_chainsteel=重链钢 +item.ingot_co60=钴-60锭 +item.ingot_cobalt=钴锭 +item.ingot_combine_steel=CMB钢锭 +item.ingot_combine_steel.desc=*在此处插入民事保护参考* +item.ingot_copper=工业级铜锭 +item.ingot_daffergon=达夫贡锭 +item.ingot_desh=Desh锭 +item.ingot_dineutronium=双聚中子态素锭 +item.ingot_dura_steel=高速钢锭 +item.ingot_electronium=电素锭 +item.ingot_euphemium=Ep锭 +item.ingot_euphemium.desc=一个非常特殊但又奇怪的元素。 +item.ingot_ferrouranium=铀铁合金锭 +item.ingot_fiberglass=玻璃纤维 +item.ingot_fiberglass.desc=纤维含量高,玻璃含量高。身体需要的一切。 +item.ingot_firebrick=耐火砖 +item.ingot_gh336=Gh336锭 +item.ingot_gh336.desc=钅喜的同事。 +item.ingot_graphite=石墨锭 +item.ingot_hes=高浓度Sa326燃料锭 +item.ingot_lanthanium=半稳定镧锭 +item.ingot_lanthanium.desc=“镧” +item.ingot_lanthanium.desc.P11=实际上就是镧,无论怎么说。 +item.ingot_lead=铅锭 +item.ingot_les=低浓度Sa326燃料锭 +item.ingot_magnetized_tungsten=磁化钨锭 +item.ingot_meteorite=陨石锭 +item.ingot_meteorite_forged=锻造陨石锭 +item.ingot_mox_fuel=MOX燃料锭 +item.ingot_mud=固化毒泥浆砖 +item.ingot_neptunium=镎锭 +item.ingot_neptunium.desc=那是我最喜欢的! +item.ingot_neptunium.desc.P11=哇,吓人! +item.ingot_neptunium_fuel=镎燃料锭 +item.ingot_niobium=铌锭 +item.ingot_osmiridium=铱锇锭 +item.ingot_pb209=铅-209锭 +item.ingot_pc=硬质塑料锭 +item.ingot_pet=铝金属化PET锭 +item.ingot_phosphorus=白磷锭 +item.ingot_plutonium=钚锭 +item.ingot_plutonium_fuel=钚燃料锭 +item.ingot_polonium=钋锭 +item.ingot_polymer=聚合物锭 +item.ingot_pu_mix=反应堆级钚锭 +item.ingot_pu238=钚-238锭 +item.ingot_pu239=钚-239锭 +item.ingot_pu240=钚-240锭 +item.ingot_pu241=钚-241锭 +item.ingot_pvc=聚氯乙烯锭(PVC) +item.ingot_ra226=镭-226锭 +item.ingot_red_copper=紫铜锭 +item.ingot_reiium=雷恩锭 +item.ingot_rubber=橡胶锭 +item.ingot_saturnite=土星锭 +item.ingot_schrabidate=Sa酸铁锭 +item.ingot_schrabidium=Sa326锭 +item.ingot_schrabidium_fuel=Sa326燃料锭 +item.ingot_schraranium=低丰度Sa326锭 +item.ingot_schraranium.desc=在Sa326嬗变器中由铀制成 +item.ingot_semtex=塞姆汀塑胶炸药块 +item.ingot_silicon=硅晶 +item.ingot_smore=S'more 锭 +item.ingot_solinium=Sa327锭 +item.ingot_sr90=锶-90锭 +item.ingot_starmetal=§9星辉锭§r +item.ingot_steel=钢锭 +item.ingot_steel_dusted=粉末钢锭 +item.ingot_tantalium=钽锭 +item.ingot_tantalium.desc=“钽” +item.ingot_tantalium.desc.P11=又名钽。 +item.ingot_tcalloy=锝-钢合金锭 +item.ingot_technetium=锝-99锭 +item.ingot_th232=钍-232锭 +item.ingot_thorium_fuel=钍燃料锭 +item.ingot_titanium=钛锭 +item.ingot_tungsten=钨锭 +item.ingot_u233=铀-233锭 +item.ingot_u235=铀-235锭 +item.ingot_u238=铀-238锭 +item.ingot_u238m2=亚稳铀238-2锭 +item.ingot_unobtainium=难得素锭 +item.ingot_uranium=铀锭 +item.ingot_uranium_fuel=铀燃料锭 +item.ingot_verticium=韦德赛锭 +item.ingot_weidanium=魏丹锭 +item.ingot_zirconium=锆块 +item.injector_5htp=5-HTP自动药物注射器 +item.injector_knife=8英寸刀片自动药物注射器 +item.ink=林 墨水 +item.insert_doxium=掺砷Doxium插板 +item.insert_du=贫铀插板 +item.insert_era=反应装甲插板 +item.insert_esapi=ESAPI插板 +item.insert_ghiorsium=Gh插板 +item.insert_kevlar=凯夫拉插板 +item.insert_sapi=SAPI插板 +item.insert_polonium=钋插板 +item.insert_steel=重型钢插板 +item.insert_xsapi=XSAPI插板 +item.insert_yharonite=犽戎龙素插板 +item.item_secret.canister=SB-26成分 +item.item_secret.controller=专用控制单元 +item.iv_blood=血袋 +item.iv_empty=静脉输液袋 +item.iv_xp=经验包 +item.iv_xp_empty=空的经验包 +item.jackt=时尚防弹夹克 +item.jackt2=时尚防弹夹克2:东京漂移 +item.jetpack_boost=弹跳背包 +item.jetpack_break=缓降背包 +item.jetpack_fly=喷气背包 +item.jetpack_tank=喷气背包备用燃料罐 +item.jetpack_vector=矢量喷气背包 +item.journal_bj=被威士忌浸透的笔记本 +item.journal_pip=生存主义者日记 +item.journal_silver=承包商注释 +item.key=钥匙 +item.key_fake=伪造钥匙 +item.key_kit=钥匙仿制套件 +item.key_red=红色钥匙 +item.key_red.desc=探索另一边。 +item.key_red.desc.P11= +item.key_red_cracked=破碎的钥匙 +item.key_red_cracked.desc=??? +item.key_red.key_red_cracked.P11=§4???§r +item.kit_toolbox=工具箱 +item.kit_toolbox_empty=空工具箱 +item.laser_crystal_bismuth.desc=铋-钐-铀-钍晶体基质 +item.laser_crystal_bismuth=铋-钐-铀-钍激光晶体 +item.laser_crystal_cmb.desc=反Sa326被镶嵌在CMB-Sa326合金晶格 +item.laser_crystal_cmb=CMB-Sa326反物质激光晶体 +item.laser_crystal_co2.desc=二氧化碳被包裹在结晶的Desh中 +item.laser_crystal_co2=CO2-Desh激光晶体 +item.laser_crystal_digamma=Digamma迪伽马激光晶体 +item.laser_crystal_dnt.desc=双聚态中子-Spark费米子超晶体 +item.laser_crystal_dnt=Spark激光晶体 +item.launch_code=发射井发射代码 +item.launch_code_piece=发射井发射代码碎片 +item.launch_key=发射井发射钥匙 +item.lead_gavel=铅槌 +item.lemon=\"柠檬\" +item.letter=快捷邮件 +item.levitation_unit=重力控制器 +item.lignite=褐煤 +item.limiter=发电机限制器 +item.linker=链接器 +item.liquidator_boots=核废土清道夫套装靴子 +item.liquidator_helmet=核废土清道夫套装头盔 +item.liquidator_legs=核废土清道夫套装护腿 +item.liquidator_plate=核废土清道夫套装胸甲 +item.lithium=锂锭 +item.lodestone=磁石 +item.loop_stew=程序猿专属早餐 +item.loops=五彩麦圈 +item.loot_10=10号导弹战利箱 +item.loot_15=15号导弹战利箱 +item.loot_misc=普通导弹战利箱 +item.magnet_circular=扁磁铁 +item.magnet_dee=D型磁铁 +item.magnetron=磁控管 +item.man_core=钚核心 +item.man_explosive=炸药 +item.man_igniter=点火器 +item.man_kit=胖子 套件 +item.marshmallow=穿在木棍上的棉花糖 +item.mask_of_infamy=耻辱面具 +item.mask_piss=战壕面具 +item.mask_rag=粗糙防护面罩 +item.matchstick=火柴 +item.mech_key=大号银钥匙 +item.mech_key.desc=它充满力量。 +item.mechanism_launcher_1=发射机构 +item.mechanism_launcher_2=先进发射机构 +item.mechanism_revolver_1=转轮机构 +item.mechanism_revolver_2=先进转轮机构 +item.mechanism_rifle_1=步枪机构 +item.mechanism_rifle_2=先进步枪机构 +item.mechanism_special=高科技武器机构 +item.med_bag=医疗包 +item.med_ipecac=吐根酊催吐剂 +item.med_ptsd=PTSD治疗药物 +item.med_schiziphrenia=抗精神分裂症药物 +item.medal_liquidator=核废土清道夫勋章 +item.meltdown_tool=达洛夫快速熔毁装置 +item.memespoon=§ee花园园丁 +item.memory= +item.mese_gavel=Mese槌 +item.mese_axe=Mese斧 +item.mese_pickaxe=Mese镐 +item.meteor_charm=陨石项链 +item.meteor_remote=陨石召唤器 +item.meteorite_sword=陨石剑 +item.meteorite_sword_seared=陨石剑(烧焦) +item.meteorite_sword_reforged=陨石剑(重铸) +item.meteorite_sword_hardened=陨石剑(硬化) +item.meteorite_sword_alloyed=陨石剑(合金) +item.meteorite_sword_machined=陨石剑(机械加工) +item.meteorite_sword_treated=陨石剑(精制) +item.meteorite_sword_etched=陨石剑(刻蚀) +item.meteorite_sword_bred=陨石剑(增殖) +item.meteorite_sword_irradiated=陨石剑(辐照) +item.meteorite_sword_fused=陨石剑(熔融) +item.meteorite_sword_baleful=陨石剑(凶恶) +item.mike_cooling_unit=氘冷却装置 +item.mike_core=铀涂层氘罐 +item.mike_deut=氘罐 +item.mike_kit=常春藤麦克 套件 +item.mirror_tool=定日镜调整工具 +item.mirror_tool.linked=设置对齐位置! +item.mirror_tool.desc=右键单击“太阳能锅炉”以记忆位置 $再单击“定日镜”可将其转向太阳能锅炉 +item.missile_anti_ballistic=反弹道导弹 +item.missile_assembly=小型导弹[待装配] +item.missile_bhole=黑洞导弹 +item.missile_burst=洲际导弹 +item.missile_buster=掩体破坏弹 +item.missile_buster_strong=强化型掩体破坏弹 +item.missile_carrier=HTR-01运载火箭 +item.missile_cluster=集束导弹 +item.missile_cluster_strong=强化型集束导弹 +item.missile_custom=定制导弹 +item.missile_decoy=诱饵弹 +item.missile_doomsday=末日导弹 +item.missile_doomsday_rusted=损坏的末日导弹 +item.missile_drill=掩体裂解者 +item.missile_emp=EMP导弹 +item.missile_emp_strong=强化型EMP导弹 +item.missile_endo=吸热导弹 +item.missile_exo=放热导弹 +item.missile_generic=高爆导弹 +item.missile_incendiary=燃烧导弹 +item.missile_incendiary_strong=强化型燃烧导弹 +item.missile_inferno=Mk.II G.R.N.地狱导弹 +item.missile_kit=导弹工具箱 +item.missile_micro=战术核导弹 +item.missile_nuclear=核导弹 +item.missile_nuclear_cluster=热核导弹 +item.missile_rain=炸弹雨 +item.missile_schrabidium=Sa326导弹 +item.missile_shuttle=万金罗宾航天飞机 +item.missile_soyuz=联盟-FG运载火箭 +item.missile_soyuz_lander=联盟号轨道舱 +item.missile_soyuz_lander.desc=劣质着陆器! +item.missile_stealth=隐身导弹 +item.missile_strong=强化型高爆导弹 +item.missile_taint=污染导弹 +item.missile_volcano=构造导弹 +item.missile_volcano.desc=利用核爆的威力,我们可以召唤一座火山! +item.mold_base=毛坯铸造模具 +item.mold=铸造模具 +item.morning_glory=牵牛花 +item.motor=马达 +item.motor_bismuth=铋马达 +item.motor_desh=Desh马达 +item.mp_c_1=1级导弹制导芯片 +item.mp_c_2=2级导弹制导芯片 +item.mp_c_3=3级导弹制导芯片 +item.mp_c_4=4级导弹制导芯片 +item.mp_c_5=5级导弹制导芯片 +item.mp_fuselage_10_15_balefire=10/15号弹体[野火燃料] +item.mp_fuselage_10_15_hydrogen=10/15号弹体[液氢] +item.mp_fuselage_10_15_kerosene=10/15号弹体[煤油] +item.mp_fuselage_10_15_solid=10/15号弹体[固体燃料] +item.mp_fuselage_10_kerosene=10号弹体[煤油] +item.mp_fuselage_10_kerosene_camo=10号弹体[煤油] +item.mp_fuselage_10_kerosene_desert=10号弹体[煤油] +item.mp_fuselage_10_kerosene_flames=10号弹体[煤油] +item.mp_fuselage_10_kerosene_insulation=10号弹体[煤油] +item.mp_fuselage_10_kerosene_metal=10号弹体[煤油] +item.mp_fuselage_10_kerosene_sky=10号弹体[煤油] +item.mp_fuselage_10_kerosene_sleek=10号弹体[煤油] +item.mp_fuselage_10_kerosene_taint=10号弹体[煤油] +item.mp_fuselage_10_long_kerosene=10号长弹体[煤油] +item.mp_fuselage_10_long_kerosene_camo=10号长弹体[煤油] +item.mp_fuselage_10_long_kerosene_dash=10号长弹体[煤油] +item.mp_fuselage_10_long_kerosene_desert=10号长弹体[煤油] +item.mp_fuselage_10_long_kerosene_flames=10号长弹体[煤油] +item.mp_fuselage_10_long_kerosene_insulation=10号长弹体[煤油] +item.mp_fuselage_10_long_kerosene_metal=10号长弹体[煤油] +item.mp_fuselage_10_long_kerosene_sky=10号长弹体[煤油] +item.mp_fuselage_10_long_kerosene_sleek=10号长弹体[煤油] +item.mp_fuselage_10_long_kerosene_taint=10号长弹体[煤油] +item.mp_fuselage_10_long_kerosene_vap=10号长弹体[煤油] +item.mp_fuselage_10_long_solid=10号长弹体[固体燃料] +item.mp_fuselage_10_long_solid_bullet=10号长弹体[固体燃料] +item.mp_fuselage_10_long_solid_flames=10号长弹体[固体燃料] +item.mp_fuselage_10_long_solid_insulation=10号长弹体[固体燃料] +item.mp_fuselage_10_long_solid_silvermoonlight=10号长弹体[固体燃料] +item.mp_fuselage_10_long_solid_sleek=10号长弹体[固体燃料] +item.mp_fuselage_10_long_solid_soviet_glory=10号长弹体[固体燃料] +item.mp_fuselage_10_solid=10号弹体[固体燃料] +item.mp_fuselage_10_solid_battery=10号弹体[固体燃料] +item.mp_fuselage_10_solid_cathedral=10号弹体[固体燃料] +item.mp_fuselage_10_solid_duracell=10号弹体[固体燃料] +item.mp_fuselage_10_solid_flames=10号弹体[固体燃料] +item.mp_fuselage_10_solid_insulation=10号弹体[固体燃料] +item.mp_fuselage_10_solid_moonlit=10号弹体[固体燃料] +item.mp_fuselage_10_solid_sleek=10号弹体[固体燃料] +item.mp_fuselage_10_solid_soviet_glory=10号弹体[固体燃料] +item.mp_fuselage_10_xenon=10号弹体[氙] +item.mp_fuselage_10_xenon_bhole=10号弹体[氙] +item.mp_fuselage_15_20_kerosene=15/20号弹体[煤油] +item.mp_fuselage_15_20_kerosene_magnusson=15/20号弹体[煤油] +item.mp_fuselage_15_20_solid=15/20号弹体[固体燃料] +item.mp_fuselage_15_balefire=15号弹体[野火燃料] +item.mp_fuselage_15_hydrogen=15号弹体[液氢] +item.mp_fuselage_15_hydrogen_cathedral=15号弹体[液氢] +item.mp_fuselage_15_kerosene=15号弹体[煤油] +item.mp_fuselage_15_kerosene_blackjack=15号弹体[煤油] +item.mp_fuselage_15_kerosene_camo=15号弹体[煤油] +item.mp_fuselage_15_kerosene_decorated=15号弹体[煤油] +item.mp_fuselage_15_kerosene_desert=15号弹体[煤油] +item.mp_fuselage_15_kerosene_insulation=15号弹体[煤油] +item.mp_fuselage_15_kerosene_lambda=15号弹体[煤油] +item.mp_fuselage_15_kerosene_metal=15号弹体[煤油] +item.mp_fuselage_15_kerosene_minuteman=15号弹体[煤油] +item.mp_fuselage_15_kerosene_pip=15号弹体[煤油] +item.mp_fuselage_15_kerosene_polite=15号弹体[煤油] +item.mp_fuselage_15_kerosene_sky=15号弹体[煤油] +item.mp_fuselage_15_kerosene_steampunk=15号弹体[煤油] +item.mp_fuselage_15_kerosene_taint=15号弹体[煤油] +item.mp_fuselage_15_kerosene_yuck=15号弹体[煤油] +item.mp_fuselage_15_solid=15号弹体[固体燃料] +item.mp_fuselage_15_solid_desh=15号弹体[固体燃料] +item.mp_fuselage_15_solid_faust=15号弹体[固体燃料] +item.mp_fuselage_15_solid_insulation=15号弹体[固体燃料] +item.mp_fuselage_15_solid_mimi=15号弹体[固体燃料] +item.mp_fuselage_15_solid_panorama=15号弹体[固体燃料] +item.mp_fuselage_15_solid_roses=15号弹体[固体燃料] +item.mp_fuselage_15_solid_silvermoonlight=15号弹体[固体燃料] +item.mp_fuselage_15_solid_snowy=15号弹体[固体燃料] +item.mp_fuselage_15_solid_soviet_glory=15号弹体[固体燃料] +item.mp_fuselage_15_solid_soviet_stank=15号弹体[固体燃料] +item.mp_stability_10_cruise=10号巡航翼 +item.mp_stability_10_flat=10号水平翼 +item.mp_stability_10_space=10号航天翼 +item.mp_stability_15_flat=15号水平翼 +item.mp_stability_15_soyuz=15号尖翼 +item.mp_stability_15_thin=15号薄翼 +item.mp_thruster_10_kerosene=10号液体燃料推进器 +item.mp_thruster_10_solid=10号固体燃料推进器 +item.mp_thruster_10_xenon=10号离子推进器 +item.mp_thruster_15_balefire=15号带核预热器的野火燃料推进器 +item.mp_thruster_15_balefire_large=15号带核预热器的野火燃料推进器[重型喷管] +item.mp_thruster_15_balefire_large_rad=15号带核预热器的野火燃料推进器[重型喷管-稀有] +item.mp_thruster_15_balefire_short=15号带核预热器的野火燃料推进器[缩短版] +item.mp_thruster_15_hydrogen=15号液氢推进器 +item.mp_thruster_15_hydrogen_dual=15号双喷管氢推进器 +item.mp_thruster_15_kerosene=15号液体燃料推进器 +item.mp_thruster_15_kerosene_dual=15号双喷管液体燃料推进器 +item.mp_thruster_15_kerosene_triple=15号三喷管液体燃料推进器 +item.mp_thruster_15_solid=15号固体燃料推进器 +item.mp_thruster_15_solid_hexdecuple=15号十六喷管固体燃料推进器 +item.mp_thruster_20_kerosene=20号液体燃料推进器 +item.mp_thruster_20_kerosene_dual=20号液体燃料推进器 +item.mp_thruster_20_kerosene_triple=20号液体燃料推进器 +item.mp_thruster_20_solid=20号固体燃料推进器 +item.mp_thruster_20_solid_multi=20号三十喷管固体燃料推进器 +item.mp_thruster_20_solid_multier=20号四十七喷管固体燃料推进器 +item.mp_warhead_10_buster=10号掩体破坏弹头 +item.mp_warhead_10_cloud=10号粉雾弹头 +item.mp_warhead_10_he=10号HE弹头 +item.mp_warhead_10_incendiary=10号燃烧弹头 +item.mp_warhead_10_nuclear=10号微型核弹头 +item.mp_warhead_10_nuclear_large=10号核弹头 +item.mp_warhead_10_taint=10号污染弹头 +item.mp_warhead_15_balefire=15号野火弹头 +item.mp_warhead_15_boxcar=15号 车厢? +item.mp_warhead_15_he=15号HE弹头 +item.mp_warhead_15_incendiary=15号燃烧弹头 +item.mp_warhead_15_n2=15号N2炸弹 +item.mp_warhead_15_nuclear=15号核弹头 +item.mp_warhead_15_nuclear_mimi=15号核弹头 +item.mp_warhead_15_nuclear_shark=15号核弹头 +item.mp_warhead_15_turbine=15号喷气发动机弹头 +item.mucho_mango=亚利桑那芒果味饮料 +item.multi_kit=多用途炸弹 套件 +item.multitool_beam=动力拳套[热射线] +item.multitool_decon=动力拳套[净化] +item.multitool_dig=动力拳套[挖掘] +item.multitool_ext=动力拳套[矿物提取] +item.multitool_hit=动力拳套[攻击] +item.multitool_joule=动力拳套[千兆焦耳] +item.multitool_mega=动力拳套[超级重拳] +item.multitool_miner=动力拳套[采矿激光] +item.multitool_silk=动力拳套[精准采集] +item.multitool_sky=动力拳套[划破天际] +item.mysteryshovel=易碎锹 +item.n2_charge=大型炸药 +item.neutrino_lens=中微子透镜 +item.neutron_reflector=中子反射板 +item.night_vision=夜视眼镜 +item.night_vision.description.item=提供夜视功能(需要全套电动设备) +item.night_vision.description.in_armor=%s(允许夜视) +item.niter=硝石粉 +item.nitra= +item.nitra_small=小撮Nitra +item.no9=矿工头盔 +item.nossy_hat=华丽的帽子 +item.nothing=没有东西 +item.nuclear_waste=核废料 +item.nuclear_waste_pearl=放射性珍珠 +item.nuclear_waste_tiny=小撮核废料 +item.nuclear_waste_long=长半衰期核废料 +item.nuclear_waste_long_tiny=小撮长半衰期核废料 +item.nuclear_waste_long_depleted=腐化的长半衰期核废料 +item.nuclear_waste_long_depleted_tiny=小撮腐化的长半衰期核废料 +item.nuclear_waste_short=短半衰期核废料 +item.nuclear_waste_short_tiny=小撮短半衰期核废料 +item.nuclear_waste_short_depleted=腐化的短半衰期核废料 +item.nuclear_waste_short_depleted_tiny=小撮腐化的短半衰期核废料 +item.nuclear_waste_vitrified=玻璃化核废料 +item.nuclear_waste_vitrified_tiny=小撮玻璃化核废料 +item.nugget=鸡块 +item.nugget_actinium=锕-227粒 +item.nugget_am_mix=反应堆级镅粒 +item.nugget_am241=镅-241粒 +item.nugget_am242=镅-242粒 +item.nugget_americium_fuel=镅燃料粒 +item.nugget_arsenic=砷粒 +item.nugget_au198=金-198粒 +item.nugget_australium=奥斯粒 +item.nugget_australium_greater=富集奥斯粒 +item.nugget_australium_lesser=贫化奥斯粒 +item.nugget_beryllium=铍粒 +item.nugget_bismuth=铋粒 +item.nugget_co60=钴-60粒 +item.nugget_cobalt=钴粒 +item.nugget_daffergon=达夫贡粒 +item.nugget_desh=Desh粒 +item.nugget_dineutronium=双聚中子态素粒 +item.nugget_euphemium=Ep粒 +item.nugget_euphemium.desc=一小块粉红色的金属$它的属性仍然未知,请小心处理。 +item.nugget_gh336=Gh336粒 +item.nugget_gh336.desc=钅喜的同事。 +item.nugget_hes=高浓度Sa326燃料粒 +item.nugget_lead=铅粒 +item.nugget_les=低浓度Sa326燃料粒 +item.nugget_mercury_tiny=一小滴水银 +item.nugget_mercury=一滴水银 +item.nugget_mox_fuel=MOX燃料粒 +item.nugget_mox_fuel.desc=摩西说:§l逃税。§r +item.nugget_neptunium=镎粒 +item.nugget_neptunium_fuel=镎燃料粒 +item.nugget_niobium=铌粒 +item.nugget_osmiridium=铱锇粒 +item.nugget_pb209=铅-209粒 +item.nugget_plutonium=钚粒 +item.nugget_plutonium_fuel=钚燃料粒 +item.nugget_polonium=钋粒 +item.nugget_pu_mix=反应堆级钚粒 +item.nugget_pu238=钚-238粒 +item.nugget_pu239=钚-239粒 +item.nugget_pu240=钚-240粒 +item.nugget_pu241=钚-241粒 +item.nugget_ra226=镭-226粒 +item.nugget_reiium=雷恩粒 +item.nugget_schrabidium=Sa326粒 +item.nugget_schrabidium_fuel=Sa326燃料粒 +item.nugget_silicon=硅粒 +item.nugget_solinium=Sa327粒 +item.nugget_sr90=锶-90粒 +item.nugget_tantalium=钽粒 +item.nugget_tantalium.desc=“钽” +item.nugget_tantalium.desc.P11=又名钽。 +item.nugget_technetium=锝-99粒 +item.nugget_th232=钍232粒 +item.nugget_thorium_fuel=钍燃料粒 +item.nugget_u233=铀-233粒 +item.nugget_u235=铀-235粒 +item.nugget_u238=铀-238粒 +item.nugget_unobtainium=难得素粒 +item.nugget_uranium=铀粒 +item.nugget_uranium_fuel=铀燃料粒 +item.nugget_verticium=韦德赛粒 +item.nugget_weidanium=魏丹粒 +item.nugget_zirconium=锆碎片 +item.nuke_advanced_kit=原子学高级工具箱 +item.nuke_commercially_kit=商用原子学工具箱 +item.nuke_electric_kit=电子工程师工具箱 +item.nuke_starter_kit=原子学入门工具箱 +item.oil_canola=菜籽油 +item.oil_detector=石油探测仪 +item.oil_detector.desc1=单击右键扫描地下是否存在油田 +item.oil_detector.desc2=探测仪只会发现大片油田 +item.oil_detector.bullseye=正下方发现油田! +item.oil_detector.detected=附近存在油田 +item.oil_detector.noOil=未发现油田 +item.oil_tar.coal=煤焦油 +item.oil_tar.crude=焦油 +item.oil_tar.crack=裂化焦油 +item.oil_tar.paraffin=石蜡 +item.oil_tar.wax=氯化石蜡 +item.oil_tar.wood=木馏油 +item.ore.asbestos=石棉 +item.ore.borax=硼砂 +item.ore.chlorocalcite=氯方解石 +item.ore.copper=铜 +item.ore.fluorite=氟石 +item.ore.gold=金 +item.ore.hematite=赤铁矿 +item.ore.iron=铁 +item.ore.malachite=孔雀石 +item.ore.neodymium=钕 +item.ore.niobium=铌 +item.ore.titanium=钛 +item.ore.tungsten=钨 +item.ore.thorium232=钍 +item.ore.uranium=铀 +item.ore_bedrock=基岩%s矿 +item.ore_byproduct.b_aluminium=铝晶体碎片 +item.ore_byproduct.b_bismuth=铋晶体碎片 +item.ore_byproduct.b_calcium=钙晶体碎片 +item.ore_byproduct.b_copper=铜晶体碎片 +item.ore_byproduct.b_iron=铁晶体碎片 +item.ore_byproduct.b_lead=铅晶体碎片 +item.ore_byproduct.b_lithium=锂晶体碎片 +item.ore_byproduct.b_polonium=钋晶体碎片 +item.ore_byproduct.b_radium=镭晶体碎片 +item.ore_byproduct.b_silicon=硅晶体碎片 +item.ore_byproduct.b_sulfur=硫晶体碎片 +item.ore_byproduct.b_technetium=锝晶体碎片 +item.ore_byproduct.b_titanium=钛晶体碎片 +item.ore_byproduct.b_uranium=铀晶体碎片 +item.ore_centrifuged=离心%s矿 +item.ore_cleaned=清洁%s矿 +item.ore_deepcleaned=深清洁%s矿 +item.ore_density_scanner=基岩矿石丰度扫描仪 +item.ore_enriched=富集%s矿 +item.ore_nitrated=硝化%s矿 +item.ore_nitrocrystalline=亚硝基结晶%s矿 +item.ore_purified=净化%s矿 +item.ore_radcleaned=经辐射清洁的%s矿 +item.ore_seared=灼热的%s矿 +item.ore_separated=分离的%s矿 +item.overfuse=奇异螺丝刀 +item.overfuse.desc=说啥? +item.oxy_mask=氧气面罩 +item.paa_boots=PaA \"好鞋\" +item.paa_legs=PaA加固护腿 +item.paa_plate=PaA加固护胸 +item.padlock=挂锁 +item.padlock_reinforced=加强挂锁 +item.padlock_rusty=生锈的挂锁 +item.padlock_unbreakable=牢不可破的挂锁 +item.pads_rubber=橡胶垫 +item.pads_slime=粘液垫 +item.pads_static=静电垫 +item.page_of_.page1=书页之一 +item.page_of_.page2=书页之二 +item.page_of_.page3=书页之三 +item.page_of_.page4=书页之四 +item.page_of_.page5=书页之五 +item.page_of_.page6=书页之六 +item.page_of_.page7=书页之七 +item.page_of_.page8=书页之八 +item.pancake=用废金属、螺栓和宝石粉做成的薄饼 +item.part_beryllium=铍粉盒 +item.part_carbon=碳粉盒 +item.part_copper=铜粉盒 +item.part_generic.hde=重型元件 +item.part_generic.lde=低密度元件 +item.part_generic.piston_electric=电动活塞 +item.part_generic.piston_hydraulic=液压活塞 +item.part_generic.piston_pneumatic=气动活塞 +item.part_lithium=锂粉盒 +item.part_plutonium=钚粉盒 +item.particle_aelectron=正电子胶囊 +item.particle_amat=反物质胶囊 +item.particle_aproton=反质子胶囊 +item.particle_aschrab=反Sa326胶囊 +item.particle_copper=铜离子胶囊 +item.particle_dark=暗物质胶囊 +item.particle_digamma=§c迪伽马粒子胶囊§r +item.particle_empty=空粒子胶囊 +item.particle_higgs=希格斯玻色子胶囊 +item.particle_hydrogen=氢离子胶囊 +item.particle_lead=铅离子胶囊 +item.particle_lutece=Lutece镥准粒子胶囊 +item.particle_muon=μ子胶囊 +item.particle_sparkticle=Spark粒子胶囊 +item.particle_strange=奇异夸克胶囊 +item.particle_tachyon=超光速粒子密封胶囊 +item.parts_legendary=传奇零件 +item.peas=豌豆 +item.pedestal_steel=钢底座 +item.pellet_advanced=高级Watz性能增强剂 +item.pellet_antimatter=反物质团 +item.pellet_beryllium=铍慢化靶丸 +item.pellet_buckshot=铅弹丸 +item.pellet_canister=榴霰弹弹丸 +item.pellet_charged=电离粒子 +item.pellet_chlorophyte=叶绿弹丸 +item.pellet_claws=金属利爪 +item.pellet_cluster=爆炸弹丸 +item.pellet_cluster.desc=用于多用途炸弹:$增加了一些额外的爆炸力! +item.pellet_coal=致密煤 +item.pellet_coolant=冷却液组 +item.pellet_flechette=箭霰弹 +item.pellet_gas=毒气筒 +item.pellet_gas.desc=用于多用途炸弹:$*咳嗽*请停止! +item.pellet_hes=HES Watz靶丸 +item.pellet_lead=铅反射靶丸 +item.pellet_les=LES Watz靶丸 +item.pellet_mercury=水银弹丸 +item.pellet_mes=MES Watz靶丸 +item.pellet_meteorite=陨石弹丸 +item.pellet_neptunium=镎Watz靶丸 +item.pellet_rtg=钚238放射性同位素燃料靶丸 +item.pellet_rtg.desc=无限能量的RTG靶丸!(差不多) +item.pellet_rtg_actinium=锕放射性同位素燃料靶丸 +item.pellet_rtg_actinium.desc=充满了高能电子的蓝色光辉 +item.pellet_rtg_americium=镅-241放射性同位素燃料靶丸 +item.pellet_rtg_americium.desc=稀有可靠,好的老镅! +item.pellet_rtg_berkelium=锫放射性同位素燃料靶丸 +item.pellet_rtg_berkelium.desc= +item.pellet_rtg_cobalt=钴-60放射性同位素燃料靶丸 +item.pellet_rtg_cobalt.desc=不是最好的RTG,但对伽马辐射很好! +item.pellet_rtg_depleted.bismuth=枯竭铋放射性同位素燃料靶丸 +item.pellet_rtg_depleted.lead=枯竭铅放射性同位素燃料靶丸 +item.pellet_rtg_depleted.neptunium=枯竭镎放射性同位素燃料靶丸 +item.pellet_rtg_depleted.mercury=枯竭汞放射性同位素燃料靶丸 +item.pellet_rtg_depleted.nickel=枯竭镍放射性同位素燃料靶丸 +item.pellet_rtg_depleted.zirconium=枯竭锆放射性同位素燃料靶丸 +item.pellet_rtg_lead=铅-209 放射性同位素燃料靶丸 +item.pellet_rtg_lead.desc=接触会导致立即死亡。 +item.pellet_rtg_gold=金-198放射性同位素燃料靶丸 +item.pellet_rtg_gold.desc=由稀有的、高度不稳定的金同位素制成。 +item.pellet_rtg_polonium=钋210放射性同位素燃料靶丸 +item.pellet_rtg_polonium.desc=更多粉末状RTG靶丸,由最好的钋制成! +item.pellet_rtg_strontium=锶-90放射性同位素燃料靶丸 +item.pellet_rtg_strontium.desc=被加利福尼亚洲所熟知... +item.pellet_rtg_radium=镭-226放射性同位素燃料靶丸 +item.pellet_rtg_radium.desc=伟大的启动靶丸,来自全天然镭! +item.pellet_rtg_weak=贫铀放射性同位素燃料靶丸 +item.pellet_rtg_weak.desc=更便宜更弱的靶丸,含有更多的铀238! +item.pellet_schrabidium=纯Sa326Watz靶丸 +item.photo_panel=光伏板 +item.pile_rod_boron=芝加哥反应堆 控制棒 +item.pile_rod_boron.desc=§9[中子吸收器]$§E单击以切换 +item.pile_rod_detector=芝加哥反应堆控制/探测棒 +item.pile_rod_detector.desc=§9[中子探测器/吸收器]$§e使用拆弹器增加/减少中子通量限值$§e使用螺丝刀检查中子通量 +item.pile_rod_lithium=芝加哥反应堆锂燃料棒 +item.pile_rod_lithium.desc=§a[可增殖燃料棒]$§e使用手钻检查棒芯 +item.pile_rod_plutonium=芝加哥反应堆 钚棒 +item.pile_rod_plutonium.desc=§d[中子源棒] +item.pile_rod_pu239=芝加哥反应堆增殖铀棒 +item.pile_rod_pu239.desc=§a[可反应核燃料]$§e富含钚-239 +item.pile_rod_source=芝加哥反应堆 镭226-铍中子源 +item.pile_rod_source.desc=§d[中子源棒] +item.pile_rod_uranium=芝加哥反应堆 铀棒 +item.pile_rod_uranium.desc=§a[可反应核燃料]$§e使用手钻取堆芯样本 +item.pill_iodine=碘丸 +item.pill_iodine.desc=消除负面buff +item.pill_herbal=草药膏 +item.pill_herbal.desc=有效治疗肺部疾病和轻度辐射中毒$有副作用 +item.pill_red=红色药丸 +item.pin=发夹 +item.pin.desc=撬开标准锁的成功率约为10%。 +item.pipentm=%s管 +item.pipes_steel=钢管 +item.pipes_steel.desc=为了避免合成冲 +item.piston_selenium=星型发动机活塞 +item.piston_set_desh=Desh活塞组 +item.piston_set_dura=高速钢活塞组 +item.piston_set_starmetal=星辉活塞组 +item.piston_set_steel=钢活塞组 +item.plan_c=C计划 +item.plan_c.desc=致死 +item.plant_item.mustardwillow=芥子柳叶 +item.plant_item.rope=麻绳 +item.plant_item.tobacco=烟叶 +item.plastic_bag=塑料袋 +item.plate_advanced_alloy=高级合金板 +item.plate_aluminium=铝板 +item.plate_armor_ajr=铁皮装甲板 +item.plate_armor_dnt=DNT装甲板 +item.plate_armor_fau=Fau装甲板 +item.plate_armor_hev=反应装甲板 +item.plate_armor_lunar=月球镀层 +item.plate_armor_titanium=钛装甲板 +item.plate_bismuth=铋复合板 +item.plate_bismuth.desc=伙计们,这是铋的炼金术符号,我发誓。 +item.plate_cast=铸造%s板 +item.plate_combine_steel=CMB钢板 +item.plate_copper=铜板 +item.plate_dalekanium=愤怒的金属 +item.plate_desh=Desh复合板 +item.plate_dineutronium=双聚中子态素复合板 +item.plate_dura_steel=高速钢板 +item.plate_euphemium=Ep复合板 +item.plate_fuel_mox=MOX 板状燃料 +item.plate_fuel_pu238be=钚238-铍 板状燃料 +item.plate_fuel_pu239=高浓度钚-239 板状燃料 +item.plate_fuel_ra226be=镭226-铍 板状燃料 +item.plate_fuel_sa326=高浓度Sa326 板状燃料 +item.plate_fuel_u233=高浓度铀-233 板状燃料 +item.plate_fuel_u235=高浓度铀-235 板状燃料 +item.plate_gold=金板 +item.plate_iron=铁板 +item.plate_kevlar=凯夫拉陶瓷复合材料 +item.plate_lead=铅板 +item.plate_mixed=合金板 +item.plate_paa=PaA合金板 +item.plate_polymer=绝缘体 +item.plate_saturnite=土星板 +item.plate_schrabidium=Sa326板 +item.plate_steel=钢板 +item.plate_titanium=钛板 +item.plate_welded=焊接%s板 +item.polaroid=偏光片 +item.pollution_detector=污染探测器 +item.powder_actinium=锕粉 +item.powder_actinium_tiny=小撮锕粉 +item.powder_advanced_alloy=高级合金粉 +item.powder_aluminium=铝粉 +item.powder_asbestos=石棉粉 +item.powder_asbestos.desc=§o\\\"暴 风 吸 入-- 太 t m 香 了\\\"§r +item.powder_ash.coal=煤灰 +item.powder_ash.fly=飞尘 +item.powder_ash.fullerene=富勒烯 +item.powder_ash.misc=灰尘 +item.powder_ash.soot=细烟灰 +item.powder_ash.wood=木灰 +item.powder_astatine=砹粉 +item.powder_at209=砹-209粉 +item.powder_au198=金-198粉 +item.powder_australium=奥斯粉 +item.powder_bakelite=电木粉 +item.powder_balefire=热核灰烬 +item.powder_beryllium=铍粉 +item.powder_bismuth=铋粉 +item.powder_borax=硼砂 +item.powder_boron=硼粉 +item.powder_boron_tiny=小撮硼粉 +item.powder_bromine=溴粉 +item.powder_cadmium=镉粉 +item.powder_caesium=铯粉 +item.powder_calcium=钙粉 +item.powder_cement=水泥 +item.powder_cerium=铈粉 +item.powder_cerium_tiny=小撮铈粉 +item.powder_chlorocalcite=氯方解石 +item.powder_chlorophyte=叶绿粉 +item.powder_cloud=云粉末 +item.powder_co60=钴-60粉 +item.powder_coal=煤粉 +item.powder_coal_tiny=小撮煤粉 +item.powder_cobalt=钴粉 +item.powder_cobalt_tiny=小撮钴粉 +item.powder_coltan=纯钽铁矿 +item.powder_coltan_ore=粉碎的钶钽铁矿石 +item.powder_combine_steel=CMB钢粉 +item.powder_copper=铜粉 +item.powder_cs137=铯-137粉 +item.powder_cs137_tiny=小撮铯-137粉 +item.powder_daffergon=达夫贡粉 +item.powder_desh=Desh粉 +item.powder_desh_mix=Desh混合物 +item.powder_desh_ready=DeshReady混合物 +item.powder_diamond=钻石粉 +item.powder_dineutronium=双聚中子态素粉 +item.powder_dura_steel=高速钢粉 +item.powder_emerald=绿宝石粉 +item.powder_euphemium=Ep粉 +item.powder_euphemium.desc=粉红色$尝起来像草莓。 +item.powder_fertilizer=工业肥料 +item.powder_fire=红磷粉 +item.powder_fire.desc=用于多用途炸弹:燃烧弹很有趣! +item.powder_flux=助熔剂 +item.powder_gold=金粉 +item.powder_i131=碘-131粉 +item.powder_i131_tiny=小撮碘-131粉 +item.powder_ice=冷冻粉 +item.powder_impure_osmiridium=不纯铱锇粉 +item.powder_iodine=碘粉 +item.powder_iron=铁粉 +item.powder_lanthanium=镧粉 +item.powder_lanthanium_tiny=小撮镧粉 +item.powder_lapis=青金石粉 +item.powder_lead=铅粉 +item.powder_lignite=褐煤粉 +item.powder_limestone=石灰石粉 +item.powder_lithium=锂粉 +item.powder_lithium_tiny=小撮锂粉 +item.powder_magic=粉碎的魔法 +item.powder_magnetized_tungsten=磁化钨粉 +item.powder_meteorite=陨石粉 +item.powder_meteorite_tiny=小撮陨石粉 +item.powder_molysite=氯化铁 +item.powder_neodymium=钕粉 +item.powder_neodymium_tiny=小撮钕粉 +item.powder_neptunium=镎粉 +item.powder_niobium=铌粉 +item.powder_niobium_tiny=小撮铌粉 +item.powder_nitan_mix=Nitan混合物 +item.powder_paleogenite=古近纪岩石粉末 +item.powder_paleogenite_tiny=小撮古近纪岩石粉末 +item.powder_plutonium=钚粉 +item.powder_poison=剧毒粉 +item.powder_poison.desc=用于多用途炸弹:警告:有毒! +item.powder_polonium=钋粉 +item.powder_polymer=聚合物粉 +item.powder_power=能量粉 +item.powder_quartz=石英粉 +item.powder_ra226=镭-226粉 +item.powder_red_copper=紫铜粉 +item.powder_reiium=雷恩粉 +item.powder_sawdust=锯末 +item.powder_schrabidate=Sa酸铁粉 +item.powder_schrabidium=Sa326粉 +item.powder_semtex_mix=塞姆汀塑胶炸药混合物 +item.powder_sodium=钠 +item.powder_spark_mix=Spark闪闪奥术混合物 +item.powder_sr90=锶-90粉 +item.powder_sr90_tiny=小撮锶-90粉末 +item.powder_steel=钢粉 +item.powder_steel_tiny=小撮钢粉 +item.powder_strontium=锶粉 +item.powder_tantalium=钽粉 +item.powder_tantalium.desc=“钽” +item.powder_tantalium.desc.P11=又名钽。 +item.powder_tcalloy=锝-钢粉 +item.powder_tektite=熔融石粉 +item.powder_tennessine=Ts粉 +item.powder_thermite=铝热剂 +item.powder_thorium=钍粉 +item.powder_titanium=钛粉 +item.powder_tungsten=钨粉 +item.powder_unobtainium=难得素粉 +item.powder_uranium=铀粉 +item.powder_verticium=韦德赛粉 +item.powder_weidanium=魏丹粉 +item.powder_xe135=氙-135粉 +item.powder_xe135_tiny=小撮氙-135粉 +item.powder_yellowcake=黄饼 +item.powder_zirconium=锆粉 +item.power_net_tool=电缆网络分析工具 +item.pipette=移液管 +item.pipette_boron=硼玻璃移液管 +item.pipette_laboratory=移液器 +item.primer_357=.357马格南底火[x24] +item.primer_44=.44马格南底火[x24] +item.primer_50=大口径底火[x12] +item.primer_9=小口径底火[x32] +item.primer_buckshot=鹿弹底火[x12] +item.protection_charm=守护项链 +item.prototype_kit=原型 套件 +item.pudding=布丁 +item.pwr_fuel.bfb_am_mix=燃料级镅压水堆BFB燃料棒 +item.pwr_fuel.bfb_pu241=钚-241压水堆BFB棒 +item.pwr_fuel.hea242=HEA-242 高浓缩度镅-242压水堆燃料棒 +item.pwr_fuel.hen237=HEN-237 高浓缩度镎-237压水堆燃料棒 +item.pwr_fuel.hep239=HEP-239 高浓缩度钚-239压水堆燃料棒 +item.pwr_fuel.hep241=HEP-241 高浓缩度钚-241压水堆燃料棒 +item.pwr_fuel.hes326=HES-326 高浓缩度Sa326压水堆燃料棒 +item.pwr_fuel.hes327=HES-327 高浓缩度Sa327压水堆燃料棒 +item.pwr_fuel.heu233=HEU-233 高浓缩度铀-233压水堆燃料棒 +item.pwr_fuel.heu235=HEU-235 高浓缩度铀-235压水堆燃料棒 +item.pwr_fuel.mea=MEA 中浓缩度镅压水堆燃料棒 +item.pwr_fuel.men=MEN 中浓缩度镎压水堆燃料棒 +item.pwr_fuel.mep=MEP 中浓缩度钚压水堆燃料棒 +item.pwr_fuel.meu=MEU 中浓缩度铀压水堆燃料棒 +item.pwr_fuel.mox=MOX 压水堆燃料棒 +item.pwr_fuel_depleted.bfb_am_mix=枯竭燃料级镅压水堆BFB燃料棒 +item.pwr_fuel_depleted.bfb_pu241=枯竭钚-241压水堆BFB棒 +item.pwr_fuel_depleted.hea242=枯竭 HEA-242 高浓缩度镅-242压水堆燃料棒 +item.pwr_fuel_depleted.hen237=枯竭 HEN-237 高浓缩度镎-237压水堆燃料棒 +item.pwr_fuel_depleted.hep239=枯竭 HEP-239 高浓缩度钚-239压水堆燃料棒 +item.pwr_fuel_depleted.hep241=枯竭 HEP-241 高浓缩度钚-241压水堆燃料棒 +item.pwr_fuel_depleted.hes326=枯竭 HES-326 高浓缩度Sa326压水堆燃料棒 +item.pwr_fuel_depleted.hes327=枯竭 HES-327 高浓缩度Sa327压水堆燃料棒 +item.pwr_fuel_depleted.heu233=枯竭 HEU-233 高浓缩度铀-233压水堆燃料棒 +item.pwr_fuel_depleted.heu235=枯竭 HEU-235 高浓缩度铀-235压水堆燃料棒 +item.pwr_fuel_depleted.mea=枯竭 MEA 中浓缩度镅压水堆燃料棒 +item.pwr_fuel_depleted.men=枯竭 MEN 中浓缩度镎压水堆燃料棒 +item.pwr_fuel_depleted.mep=枯竭 MEP 中浓缩度钚压水堆燃料棒 +item.pwr_fuel_depleted.meu=枯竭 MEU 中浓缩度铀压水堆燃料棒 +item.pwr_fuel_depleted.mox=枯竭 MOX 压水堆燃料棒 +item.pwr_fuel_hot.bfb_am_mix=高温 燃料级镅压水堆BFB燃料棒 +item.pwr_fuel_hot.bfb_pu241=高温 钚-241压水堆BFB棒 +item.pwr_fuel_hot.hea242=高温 HEA-242 高浓缩度镅-242压水堆燃料棒 +item.pwr_fuel_hot.hen237=高温 HEN-237 高浓缩度镎-237压水堆燃料棒 +item.pwr_fuel_hot.hep239=高温 HEP-239 高浓缩度钚-239压水堆燃料棒 +item.pwr_fuel_hot.hep241=高温 HEP-241 高浓缩度钚-241压水堆燃料棒 +item.pwr_fuel_hot.hes326=高温 HES-326 高浓缩度Sa326压水堆燃料棒 +item.pwr_fuel_hot.hes327=高温 HES-327 高浓缩度Sa327压水堆燃料棒 +item.pwr_fuel_hot.heu233=高温 HEU-233 高浓缩度铀-233压水堆燃料棒 +item.pwr_fuel_hot.heu235=高温 HEU-235 高浓缩度铀-235压水堆燃料棒 +item.pwr_fuel_hot.mea=高温 MEA 中浓缩度镅压水堆燃料棒 +item.pwr_fuel_hot.men=高温 MEN 中浓缩度镎压水堆燃料棒 +item.pwr_fuel_hot.mep=高温 MEP 中浓缩度钚压水堆燃料棒 +item.pwr_fuel_hot.meu=高温 MEU 中浓缩度铀压水堆燃料棒 +item.pwr_fuel_hot.mox=高温 MOX压水堆燃料棒 +item.quartz_plutonium=深成石英 +item.radar_linker=雷达连接器 +item.radaway=消辐宁 +item.radaway_flush=超级消辐宁 +item.radaway_strong=强效消辐宁 +item.radx=防辐射药 +item.radx.desc=在3分钟内增加0.2(37%)的抗辐射能力 +item.rag=布 +item.rag_damp=湿布 +item.rag_piss=沾有尿的布 +item.rbmk_fuel_balefire=RBMK反应堆野火燃料棒 +item.rbmk_fuel_balefire_gold=RBMK反应堆激活态金-198燃料棒 +item.rbmk_fuel_drx=§cRBMK反应堆F迪伽马粒子燃料棒§r +item.rbmk_fuel_empty=空 RBMK反应堆燃料棒 +item.rbmk_fuel_flashlead=RBMK反应堆闪光铅燃料棒 +item.rbmk_fuel_hea241=HEA-241 RBMK反应堆高浓缩度镅-241燃料棒 +item.rbmk_fuel_hea242=HEA-242 RBMK反应堆高浓缩度镅-242燃料棒 +item.rbmk_fuel_heaus=HEAus RBMK反应堆高浓缩度奥斯燃料棒 +item.rbmk_fuel_hen=HEN RBMK反应堆高浓缩度镎燃料棒 +item.rbmk_fuel_hes=HES RBMK反应堆高浓缩度Sa326燃料棒 +item.rbmk_fuel_hep=HEP-239 RBMK反应堆高浓缩度钚-239燃料棒 +item.rbmk_fuel_hep241=HEP-241 RBMK反应堆高浓缩度钚-241燃料棒 +item.rbmk_fuel_heu233=HEU-233 RBMK反应堆高浓缩度铀-233燃料棒 +item.rbmk_fuel_heu235=HEU-235 RBMK反应堆高浓缩度铀-235燃料棒 +item.rbmk_fuel_lea=LEA RBMK反应堆低浓缩度镅-242燃料棒 +item.rbmk_fuel_leaus=LEAus RBMK反应堆低浓缩度奥斯燃料棒 +item.rbmk_fuel_lep=LEP RBMK反应堆低浓缩度钚-239燃料棒 +item.rbmk_fuel_les=LES RBMK反应堆低浓缩度Sa326燃料棒 +item.rbmk_fuel_mea=MEA RBMK反应堆中浓缩度镅-242燃料棒 +item.rbmk_fuel_men=MEN RBMK反应堆中浓缩度镎-237燃料棒 +item.rbmk_fuel_mep=MEP RBMK反应堆中浓缩度钚-239燃料棒 +item.rbmk_fuel_mes=MES RBMK中浓缩度Sa326燃料棒 +item.rbmk_fuel_meu=MEU RBMK中浓缩度铀-235燃料棒 +item.rbmk_fuel_mox=MOX RBMK反应堆燃料棒 +item.rbmk_fuel_po210be=钋210-铍 RBMK反应堆中子源 +item.rbmk_fuel_pu238be=钚238-铍 RBMK反应堆中子源 +item.rbmk_fuel_ra226be=镭226-铍 RBMK反应堆中子源 +item.rbmk_fuel_thmeu=ThMEU RBMK反应堆中浓缩度铀-233导向钍燃料棒 +item.rbmk_fuel_ueu=NU RBMK反应堆未浓缩铀燃料棒 +item.rbmk_fuel_zfb_am_mix=ZFB 燃料级镅RBMK反应堆燃料棒 +item.rbmk_fuel_zfb_bismuth=ZFB 铋RBMK反应堆燃料棒 +item.rbmk_fuel_zfb_pu241=ZFB 钚-241RBMK反应堆燃料棒 +item.rbmk_lid=RBMK反应堆覆盖层 +item.rbmk_lid_glass=RBMK反应堆玻璃覆盖层 +item.rbmk_pellet_balefire=野火燃料芯块 +item.rbmk_pellet_balefire_gold=激活态金-198燃料芯块 +item.rbmk_pellet_drx=§cF迪伽马粒子燃料芯块§r +item.rbmk_pellet_flashlead=闪光铅燃料芯块 +item.rbmk_pellet_hea241=HEA-241 高浓缩度镅-241料芯块 +item.rbmk_pellet_hea242=HEA-242 高浓缩度镅-242燃料芯块 +item.rbmk_pellet_heaus=HEAus 高浓缩度奥斯燃料芯块 +item.rbmk_pellet_hen=HEN 高浓缩度镎燃料芯块 +item.rbmk_pellet_hep239=HEP-239 高浓缩度钚-239燃料芯块 +item.rbmk_pellet_hep241=HEP-241 高浓缩度钚-241燃料芯块 +item.rbmk_pellet_heu233=HEU-233 高浓缩度铀-233燃料芯块 +item.rbmk_pellet_heu235=HEU-235 高浓缩度铀-235燃料芯块 +item.rbmk_pellet_hes=HES 高浓缩度Sa-326燃料芯块 +item.rbmk_pellet_lea=LEA 低浓缩度镅-242燃料芯块 +item.rbmk_pellet_leaus=LEAus 低浓缩度奥斯燃料芯块 +item.rbmk_pellet_lep=LEP 低浓缩度钚-239燃料芯块 +item.rbmk_pellet_les=LES 低浓缩度Sa-326燃料芯块 +item.rbmk_pellet_mea=MEA 中浓缩度镅-242燃料芯块 +item.rbmk_pellet_men=MEN 中浓缩度镎-237燃料芯块 +item.rbmk_pellet_mep=MEP 中浓缩度钚-239燃料芯块 +item.rbmk_pellet_mes=MES 中浓缩度Sa-326燃料芯块 +item.rbmk_pellet_meu=MEU 中浓缩度铀-235燃料芯块 +item.rbmk_pellet_mox=MOX燃料芯块 +item.rbmk_pellet_po210be=钋210-铍 中子源芯块 +item.rbmk_pellet_pu238be=钚238-铍 中子源芯块 +item.rbmk_pellet_ra226be=镭226-铍 中子源芯块 +item.rbmk_pellet_thmeu=ThMEU 浓缩度铀-235导向钍燃料芯块 +item.rbmk_pellet_ueu=未浓缩铀燃料芯块 +item.rbmk_pellet_zfb_am_mix=ZFB 燃料级镅燃料芯块 +item.rbmk_pellet_zfb_bismuth=ZFB 铋燃料芯块 +item.rbmk_pellet_zfb_pu241=ZFB 钚-241燃料芯块 +item.rbmk_tool=RBMK石墨式反应堆控制台连接装置 +item.rbmk_tool.desc=按住Shift右击RBMK石墨式反应堆保存其坐 +item.rbmk_tool.linked=反应堆坐标已记录! +item.rbmk_tool.set=反应堆已连接! +item.reacher=钨长臂夹 +item.reactor_core=增殖反应堆核心 +item.reactor_sensor=反应堆遥感器 +item.record.glass.desc= +item.record.lc.desc= +item.record.ss.desc= +item.record.vc.desc= +item.redcoil_capacitor=红圈电容器 +item.redstone_depleted=不饱和红石粉 +item.redstone_sword=红石剑 +item.reer_graar=菊 花 护 卫 +item.remote=损坏的遥控器 +item.ring_pull=拉环 +item.ring_starmetal=§9星辉拉环§r +item.robes_boots=战地靴 +item.robes_helmet=休闲兜帽 +item.robes_legs=休闲裤 +item.robes_plate=休闲毛衣 +item.rocket_fuel=固体燃料[火箭推进剂] +item.rod_empty=空燃料棒 +item.rod.lithium=锂棒 +item.rod.tritium=氚棒 +item.rod.co=钴棒 +item.rod.co60=钴-60棒 +item.rod.ra226=镭-226棒 +item.rod.ac227=锕-227棒 +item.rod.th232=钍-232棒 +item.rod.thf=钍燃料棒 +item.rod.u235=铀-235棒 +item.rod.np237=镎-237棒 +item.rod.u238=铀-238棒 +item.rod.pu238=钚-238棒 +item.rod.pu239=钚-239棒 +item.rod.rgp=反应堆级钚棒 +item.rod.waste=核废料棒 +item.rod.lead=铅棒 +item.rod.uranium=铀棒 +item.rod_dual_empty=空双联燃料棒 +item.rod_dual.lithium=双联锂棒 +item.rod_dual.tritium=双联氚棒 +item.rod_dual.co=双联钴棒 +item.rod_dual.co60=双联钴-60棒 +item.rod_dual.ra226=双联镭-226棒 +item.rod_dual.ac227=双联锕-227棒 +item.rod_dual.th232=双联钍-232棒 +item.rod_dual.thf=双联钍燃料棒 +item.rod_dual.u235=双联铀-235棒 +item.rod_dual.np237=双联镎-237棒 +item.rod_dual.u238=双联铀-238棒 +item.rod_dual.pu238=双联钚-238棒 +item.rod_dual.pu239=双联钚-239棒 +item.rod_dual.rgp=双联反应堆级钚棒 +item.rod_dual.waste=双联核废料棒 +item.rod_dual.lead=双联铅棒 +item.rod_dual.uranium=双联铀棒 +item.rod_quad_empty=空四联燃料棒 +item.rod_quad.lithium=四联锂棒 +item.rod_quad.tritium=四联氚棒 +item.rod_quad.co=四联钴棒 +item.rod_quad.co60=四联钴-60棒 +item.rod_quad.ra226=四联镭-226棒 +item.rod_quad.ac227=四联锕-227棒 +item.rod_quad.th232=四联钍-232棒 +item.rod_quad.thf=四联钍燃料棒 +item.rod_quad.u235=四联铀-235棒 +item.rod_quad.np237=四联镎-237棒 +item.rod_quad.u238=四联铀-238棒 +item.rod_quad.pu238=四联钚-238棒 +item.rod_quad.pu239=四联钚-239棒 +item.rod_quad.rgp=四联反应堆级钚棒 +item.rod_quad.waste=四联核废料棒 +item.rod_quad.lead=四联铅棒 +item.rod_quad.uranium=四联铀棒 +item.rod_australium=奥斯棒 +item.rod_balefire=野火燃料棒 +item.rod_balefire_blazing=炽热的野火燃料棒 +item.rod_coolant=燃料棒[冷却液] +item.rod_daffergon=达夫贡棒 +item.rod_dual_balefire=双联野火燃料棒 +item.rod_dual_balefire_blazing=炽热的双联野火燃料棒 +item.rod_dual_coolant=双联燃料棒[冷却液] +item.rod_dual_lead=双联铅棒 +item.rod_dual_lithium=双联锂棒 +item.rod_dual_mox_fuel=核反应堆 双联MOX燃料棒 +item.rod_dual_mox_fuel_depleted=核反应堆 枯竭MOX燃料棒 +item.rod_dual_neptunium=双联镎燃料棒 +item.rod_dual_plutonium=双联钚棒 +item.rod_dual_plutonium_fuel=核反应堆 双联钚燃料棒 +item.rod_dual_plutonium_fuel_depleted=核反应堆 双联枯竭钚燃料棒 +item.rod_dual_polonium=双联钋棒 +item.rod_dual_pu238=双联钚-238燃料棒 +item.rod_dual_pu239=双联钚-239燃料棒 +item.rod_dual_pu240=双联钚-240燃料棒 +item.rod_dual_schrabidium=双联Sa326燃料棒 +item.rod_dual_schrabidium_fuel=核反应堆 双联Sa326燃料棒 +item.rod_dual_schrabidium_fuel_depleted=双联枯竭Sa326燃料棒 +item.rod_dual_solinium=双联Sa327燃料棒 +item.rod_dual_th232=双联钍-232燃料棒 +item.rod_dual_thorium_fuel=双联钍燃料棒 +item.rod_dual_thorium_fuel_depleted=双联枯竭钍燃料棒 +item.rod_dual_tritium=双联氚燃料棒 +item.rod_dual_u233=双联铀-233燃料棒 +item.rod_dual_u235=双联铀-235燃料棒 +item.rod_dual_u238=双联铀-238燃料棒 +item.rod_dual_uranium=双联铀棒 +item.rod_dual_uranium_fuel=核反应堆 双联铀燃料棒 +item.rod_dual_uranium_fuel_depleted=核反应堆 双联枯竭铀燃料棒 +item.rod_dual_waste=双联核废料棒 +item.rod_dual_water=双联燃料棒[水] +item.rod_euphemium=Ep棒 +item.rod_lead=铅棒 +item.rod_lithium=锂棒 +item.rod_mox_fuel=核反应堆 MOX燃料棒 +item.rod_mox_fuel_depleted=核反应堆 枯竭MOX燃料棒 +item.rod_neptunium=镎燃料棒 +item.rod_of_discord=混沌传送杖 +item.rod_plutonium=钚棒 +item.rod_plutonium_fuel=核反应堆 钚燃料棒 +item.rod_plutonium_fuel_depleted=核反应堆 枯竭钚燃料棒 +item.rod_polonium=钋棒 +item.rod_pu238=钚-238燃料棒 +item.rod_pu239=钚-239燃料棒 +item.rod_pu240=钚-240燃料棒 +item.rod_quad_balefire=四联野火燃料棒 +item.rod_quad_balefire_blazing=炽热的四联野火燃料棒 +item.rod_quad_coolant=四联燃料棒[冷却液] +item.rod_quad_euphemium=枯竭的四联Sa326燃料棒 +item.rod_quad_lead=四联铅棒 +item.rod_quad_lithium=四联锂棒 +item.rod_quad_mox_fuel=核反应堆 四联MOX燃料棒 +item.rod_quad_mox_fuel_depleted=核反应堆 枯竭MOX燃料棒 +item.rod_quad_neptunium=四联镎燃料棒 +item.rod_quad_plutonium=四联钚棒 +item.rod_quad_plutonium_fuel=四联钚燃料棒 +item.rod_quad_plutonium_fuel_depleted=四联枯竭钚燃料棒 +item.rod_quad_polonium=四联钋棒 +item.rod_quad_pu238=四联钚-238燃料棒 +item.rod_quad_pu239=四联钚-239燃料棒 +item.rod_quad_pu240=四联钚-240燃料棒 +item.rod_quad_schrabidium=四联Sa326燃料棒 +item.rod_quad_schrabidium_fuel=核反应堆 四联Sa326燃料棒 +item.rod_quad_schrabidium_fuel_depleted=核反应堆 四联枯竭Sa326燃料棒 +item.rod_quad_solinium=四联Sa327燃料棒 +item.rod_quad_th232=四联钍-232燃料棒 +item.rod_quad_thorium_fuel=核反应堆 四联钍燃料棒 +item.rod_quad_thorium_fuel_depleted=四联枯竭钍燃料棒 +item.rod_quad_tritium=四联氚燃料棒 +item.rod_quad_u233=四联铀-233燃料棒 +item.rod_quad_u235=四联铀-235燃料棒 +item.rod_quad_u238=四联铀-238燃料棒 +item.rod_quad_uranium=四联铀棒 +item.rod_quad_uranium_fuel=核反应堆 四联铀燃料棒 +item.rod_quad_uranium_fuel_depleted=四联枯竭铀燃料棒 +item.rod_quad_waste=四联核废料棒 +item.rod_quad_water=四联燃料棒[水] +item.rod_reiium=雷恩棒 +item.rod_schrabidium=Sa326燃料棒 +item.rod_schrabidium_fuel=Sa326燃料棒 +item.rod_schrabidium_fuel_depleted=核反应堆 枯竭Sa326燃料棒 +item.rod_solinium=Sa327燃料棒 +item.rod_th232=钍-232燃料棒 +item.rod_thorium_fuel=钍燃料棒 +item.rod_thorium_fuel_depleted=核反应堆 枯竭钍燃料棒 +item.rod_tritium=氚燃料棒 +item.rod_u233=铀-233燃料棒 +item.rod_u235=铀-235燃料棒 +item.rod_u238=铀-238燃料棒 +item.rod_unobtainium=难得素棒 +item.rod_uranium=铀棒 +item.rod_uranium_fuel=核反应堆 铀燃料棒 +item.rod_uranium_fuel_depleted=核反应堆 枯竭铀燃料棒 +item.rod_verticium=韦德赛棒 +item.rod_waste=核废料棒 +item.rod_water=燃料棒[水] +item.rod_weidanium=魏丹棒 +item.rod_zirnox_empty=空锆诺克斯燃料棒 +item.rod_zirnox_natural_uranium_fuel=锆诺克斯 天然铀燃料棒 +item.rod_zirnox_uranium_fuel=锆诺克斯 铀燃料棒 +item.rod_zirnox_th232=锆诺克斯 钍-232燃料棒 +item.rod_zirnox_thorium_fuel=锆诺克斯 钍燃料棒 +item.rod_zirnox_mox_fuel=锆诺克斯 MOX燃料棒 +item.rod_zirnox_plutonium_fuel=锆诺克斯 钚燃料棒 +item.rod_zirnox_u233_fuel=锆诺克斯 铀-233燃料棒 +item.rod_zirnox_u235_fuel=锆诺克斯 铀-235燃料棒 +item.rod_zirnox_les_fuel=锆诺克斯 LES低浓度Sa326燃料棒 +item.rod_zirnox_lithium=锆诺克斯 锂燃料棒 +item.rod_zirnox_tritium=锆诺克斯 氚燃料棒 +item.rod_zirnox_zfb_mox=锆诺克斯 ZFB MOX燃料棒 +item.rod_zirnox_natural_uranium_fuel_depleted=锆诺克斯 枯竭天然铀燃料棒 +item.rod_zirnox_uranium_fuel_depleted=锆诺克斯 枯竭铀燃料棒 +item.rod_zirnox_thorium_fuel_depleted=锆诺克斯 枯竭钍燃料棒 +item.rod_zirnox_mox_fuel_depleted=锆诺克斯 枯竭MOX燃料棒 +item.rod_zirnox_plutonium_fuel_depleted=锆诺克斯 枯竭钚燃料棒 +item.rod_zirnox_u233_fuel_depleted=锆诺克斯 枯竭铀-233燃料棒 +item.rod_zirnox_u235_fuel_depleted=锆诺克斯 枯竭铀-235燃料棒 +item.rod_zirnox_les_fuel_depleted=锆诺克斯 枯竭LES低浓度Sa326燃料棒 +item.rod_zirnox_zfb_mox_depleted=锆诺克斯 ZFB 枯竭MOX燃料棒 +item.rotor_steel=大型钢转子 +item.rpa_boots=动力装甲 靴子 +item.rpa_helmet=动力装甲 头盔 +item.rpa_legs=动力护甲 护腿 +item.rpa_plate=动力装甲 胸甲 +item.rtg_unit=放射性同位素单元 +item.rubber_gloves=厚橡胶手套 +item.rune_blank=空白催化剂基质 +item.rune_dagaz=平衡催化剂基质 +item.rune_hagalaz=粗催化剂基质 +item.rune_isa=冷却催化剂基质 +item.rune_jera=增殖催化剂基质 +item.rune_thurisaz=添加剂催化剂基质 +item.safety_fuse=安全保险丝 +item.sat_base=卫星基座 +item.sat_chip=卫星ID芯片 +item.sat_coord=卫星指示器 +item.sat_designator=卫星激光指示器 +item.sat_relay=卫星雷达中继器 +item.sat_foeq=实验型核能PEAF-Mk.I FOEQ Duna探测器 +item.sat_gerald=Gerald建筑机器人 +item.sat_head_laser=死光发射器 +item.sat_head_mapper=高增益光学摄像头 +item.sat_head_radar=雷达天线 +item.sat_head_resonator=Xenium共振器 +item.sat_head_scanner=M700测量扫描仪 +item.sat_interface=卫星操作接口 +item.sat_laser=轨道死光炮 +item.sat_lunar_miner=月球采矿飞船 +item.sat_mapper=地表测绘卫星 +item.sat_miner=小行星采矿飞船 +item.sat_radar=雷达探测卫星 +item.sat_resonator=X晶体共振卫星 +item.sat_scanner=绘测和资源探测卫星 +item.sawblade=锯片 +item.schnitzel_vegan=“素”肉排 +item.schrabidium_axe=Sa326斧 +item.schrabidium_boots=Sa326靴子 +item.schrabidium_hammer=Sa326锤 +item.schrabidium_helmet=Sa326头盔 +item.schrabidium_hoe=Sa326锄 +item.schrabidium_legs=Sa326护腿 +item.schrabidium_pickaxe=Sa326镐 +item.schrabidium_plate=Sa326胸甲 +item.schrabidium_shovel=Sa326锹 +item.schrabidium_sword=Sa326剑 +item.scrap=废料 +item.scrap_nuclear=放射性废料 +item.scrap_oil=油性废料 +item.scrap_plastic=塑料废料 +item.scraps=铸造废料 +item.screwdriver=螺丝刀 +item.screwdriver.desc=可以用来代替保险丝…… +item.screwdriver_desh=Desh螺丝刀 +item.scrumpy=一瓶烈性苹果酒 +item.security_boots=防护靴子 +item.security_helmet=防护头盔 +item.security_legs=防护裤 +item.security_plate=防护胸甲 +item.seg_10=10号连接器 +item.seg_15=15号连接器 +item.seg_20=20号连接器 +item.serum=血清 +item.servo_set=伺服装置 +item.servo_set_desh=Desh伺服装置 +item.shackles=枷锁 +item.shellntm=%s壳 +item.shimmer_axe=闪耀斧 +item.shimmer_axe_head=重型斧头 +item.shimmer_handle=强化聚合物手柄 +item.shimmer_head=重型锤头 +item.shimmer_sledge=闪耀锤 +item.singularity=奇点 +item.singularity_counter_resonant=可控反振谐奇点 +item.singularity_micro=微型奇点 +item.singularity_spark=Spark奇点 +item.singularity_super_heated=超热共振奇点 +item.siox=SiOX抗癌药物 +item.siox.desc=使用石棉的力量逆转间皮瘤! +item.siphon=虹吸管 +item.siren_track=警报声轨 +item.sliding_blast_door_skin.0=滑动防爆门 皮肤:默认 +item.sliding_blast_door_skin.1=滑动防爆门 皮肤:变型1 +item.sliding_blast_door_skin.2=滑动防爆门 皮肤:变型2 +item.smashing_hammer=粉碎锤 +item.solid_fuel=固体燃料 +item.solid_fuel_bf=固体燃料(野火) +item.solid_fuel_presto=Presto固体燃料 +item.solid_fuel_presto_bf=Presto固体燃料(野火) +item.solid_fuel_presto_triplet=增强型Presto固体燃料 +item.solid_fuel_presto_triplet_bf=增强型Presto固体燃料(野火) +item.solinium_core=半稳定Sa327核心 +item.solinium_igniter=Sa327脉冲点火器 +item.solinium_kit=蔚蓝洗礼套件 +item.solinium_propellant=Sa327压缩装药 +item.sopsign=Sop标志战斧 +item.spawn_duck=金蛋 +item.spawn_ufo=火星入侵者飞船 +item.spawn_worm=机械蠕虫 +item.sphere_steel=钢球 +item.spider_milk=一瓶蜘蛛奶 +item.spongebob_macaroni=海绵宝宝通心粉 +item.stamp_357=.357马格南锻模 +item.stamp_44=.44马格南锻模 +item.stamp_50=大口径弹壳锻模 +item.stamp_9=小口径弹壳锻模 +item.stamp_book.printing1=书页锻模之一 +item.stamp_book.printing2=书页锻模之二 +item.stamp_book.printing3=书页锻模之三 +item.stamp_book.printing4=书页锻模之四 +item.stamp_book.printing5=书页锻模之五 +item.stamp_book.printing6=书页锻模之六 +item.stamp_book.printing7=书页锻模之七 +item.stamp_book.printing8=书页锻模之八 +item.stamp_desh_circuit=Desh电路板锻模 +item.stamp_desh_flat=Desh锻模 +item.stamp_desh_plate=Desh板锻模 +item.stamp_desh_wire=Desh电线锻模 +item.stamp_desh_357=.357马格南锻模 (Desh) +item.stamp_desh_44=.44马格南锻模 (Desh) +item.stamp_desh_50=大口径弹壳锻模(Desh) +item.stamp_desh_9=小口径弹壳锻模(Desh) +item.stamp_iron_circuit=铁质电路板锻模 +item.stamp_iron_flat=铁质锻模 +item.stamp_iron_plate=铁质板锻模 +item.stamp_iron_wire=铁质电线锻模 +item.stamp_obsidian_circuit=黑曜石电路板锻模 +item.stamp_obsidian_flat=黑曜石锻模 +item.stamp_obsidian_plate=黑曜石板锻模 +item.stamp_obsidian_wire=黑曜石电线锻模 +item.stamp_steel_circuit=钢质电路板锻模 +item.stamp_steel_flat=钢质锻模 +item.stamp_steel_plate=钢质板锻模 +item.stamp_steel_wire=钢质电线锻模 +item.stamp_stone_circuit=石质电路板锻模 +item.stamp_stone_flat=石质锻模 +item.stamp_stone_plate=石质板锻模 +item.stamp_stone_wire=石质电线锻模 +item.stamp_titanium_circuit=钛质电路板锻模 +item.stamp_titanium_flat=钛质锻模 +item.stamp_titanium_plate=钛质板锻模 +item.stamp_titanium_wire=钛质电线锻模 +item.starmetal_axe=星辉斧 +item.starmetal_boots=星辉靴子 +item.starmetal_helmet=星辉头盔 +item.starmetal_hoe=星辉锄 +item.starmetal_legs=星辉护腿 +item.starmetal_pickaxe=星辉镐 +item.starmetal_plate=星辉胸甲 +item.starmetal_shovel=星辉锹 +item.starmetal_sword=星辉剑 +item.static_sandwich=TV三明治 +item.stealth_boy=隐形小子 +item.steamsuit_boots=蒸汽动力靴子 +item.steamsuit_helmet=蒸汽动力呼吸器头盔 +item.steamsuit_legs=蒸汽动力护腿 +item.steamsuit_plate=蒸汽动力胸甲 +item.steel_axe=钢斧 +item.steel_boots=钢靴子 +item.steel_helmet=钢头盔 +item.steel_hoe=钢锄 +item.steel_legs=钢护腿 +item.steel_pickaxe=钢镐 +item.steel_plate=钢胸甲 +item.steel_shovel=钢锹 +item.steel_sword=钢剑 +item.stick_c4=C-4炸药棒 +item.stick_dynamite=炸药棒 +item.stick_dynamite_fishing=捕鱼炸药棒 +item.stick_semtex=塞姆汀塑胶炸药棒 +item.stick_tnt=TNT棒 +item.stopsign=停车标志战斧 +item.sulfur=硫粉 +item.survey_scanner=勘测扫描仪 +item.syringe_antidote=解毒剂 +item.syringe_awesome=米青采彡 +item.syringe_empty=空注射器 +item.syringe_metal_empty=金属注射器 +item.syringe_metal_medx=Med-X抗痛宁 +item.syringe_metal_psycho=Psycho\"捷特\" +item.syringe_metal_stimpak=治疗针 +item.syringe_metal_super=超级治疗针 +item.syringe_mkunicorn=独角兽 +item.syringe_poison=毒针 +item.syringe_taint=污染水注射液 +item.t45_boots=T45动力装甲 靴子 +item.t45_helmet=T45动力装甲 头盔 +item.t45_kit=T45动力装甲套装 +item.t45_legs=T45动力装甲 护腿 +item.t45_plate=T45动力装甲 胸甲 +item.tank_steel=钢罐 +item.tank_waste_0=泥浆容器 +item.tank_waste_1=泥浆容器 +item.tank_waste_2=泥浆容器 +item.tank_waste_3=泥浆容器 +item.tank_waste_4=泥浆容器 +item.tank_waste_5=泥浆容器 +item.tank_waste_6=泥浆容器 +item.tank_waste_7=泥浆容器 +item.tank_waste_8=泥浆容器 +item.telepad=传送部件 +item.tem_flakes=Tem薄片 +item.template_folder=机器模板文件夹 +item.template_folder.desc=机器模板:纸张+染料$流体识别码:铁板+染料$锻模:空白锻模 $警报声轨:绝缘体+钢板 +item.test_nuke_igniter=点火器 +item.test_nuke_propellant=推进剂 +item.test_nuke_tier1_bullet=铀235弹头[1级] +item.test_nuke_tier1_shielding=中子反射器[1级] +item.test_nuke_tier1_target=次临界铀235靶丸[1级] +item.test_nuke_tier2_bullet=MOX弹头[2级] +item.test_nuke_tier2_shielding=中子反射器[2级] +item.test_nuke_tier2_target=次临界MOX靶丸[2级] +item.thermo_element=热电元件 +item.thermo_unit_empty=热量分配装置 +item.thermo_unit_endo=吸热装置 +item.thermo_unit_exo=放热装置 +item.thruster_large=大型推进器 +item.thruster_medium=中型推进器 +item.thruster_nuclear=LV-N核能火箭发动机 +item.thruster_small=小型推进器 +item.titanium_axe=钛斧 +item.titanium_boots=钛靴子 +item.titanium_filter=钛过滤器 +item.titanium_helmet=钛头盔 +item.titanium_hoe=钛锄 +item.titanium_legs=钛护腿 +item.titanium_pickaxe=钛镐 +item.titanium_plate=钛胸甲 +item.titanium_shovel=钛锹 +item.titanium_sword=钛剑 +item.toothpicks=牙签 +item.train.cargo_tram=平板载货电车 +item.trenchmaster_boots=战壕王者的胸甲 +item.trenchmaster_helmet=战壕王者的头盔 +item.trenchmaster_legs=战壕王者的护腿 +item.trenchmaster_plate=战壕王者的胸甲 +item.trinitite=玻璃石 +item.tritium_deuterium_cake=氚氘饼 +item.tritium_deuterium_cake.desc=不是真正的蛋糕,而是很棒的$聚变燃料! +item.tsar_core=沙皇炸弹核心 +item.tsar_kit=沙皇炸弹 套件 +item.turbine_titanium=钛汽轮转子 +item.turbine_tungsten=强化汽轮转子 +item.turret_biometry=炮塔遥测卡 +item.turret_cheapo_ammo=6x24奇普机枪炮台弹药 +item.turret_chip=炮塔AI芯片 +item.turret_control=炮塔控制器 +item.turret_cwis_ammo=近防系统20mm弹药筒 +item.turret_flamer_ammo=火焰炮塔燃料箱 +item.turret_heavy_ammo=重型机枪炮塔弹药箱 +item.turret_light_ammo=轻型机枪炮塔弹药箱 +item.turret_rocket_ammo=火箭炮塔弹药 +item.turret_spitfire_ammo=防空炮弹 +item.turret_tau_ammo=陶子炮塔铀弹药 +item.twinkie=小蛋糕 +item.ullapool_caber=阿勒浦长木杆 +item.undefined=形态未定义物质 +item.upgrade_5g=5G辐射发射器升级 +item.upgrade_afterburn_1=一级粉色机器升级 +item.upgrade_afterburn_2=二级粉色机器升级 +item.upgrade_afterburn_3=三级粉色机器升级 +item.upgrade_centrifuge=采矿激光升级-自动离心 +item.upgrade_crystallizer=采矿激光升级-自动结晶 +item.upgrade_effect_1=一级绿色机器升级 +item.upgrade_effect_2=二级绿色机器升级 +item.upgrade_effect_3=三级绿色机器升级 +item.upgrade_ejector_1=一级弹射速度升级 +item.upgrade_ejector_2=二级弹射速度升级 +item.upgrade_ejector_3=三级弹射速度升级 +item.upgrade_fortune_1=一级紫色机器升级 +item.upgrade_fortune_2=二级紫色机器升级 +item.upgrade_fortune_3=三级紫色机器升级 +item.upgrade_gc_speed=气体离心机超频升级 +item.upgrade_health=粉色力场发生器升级 +item.upgrade_muffler=消音器 +item.upgrade_nullifier=采矿激光升级-自动销毁 +item.upgrade_overdrive_1=一级超速传动机器升级 +item.upgrade_overdrive_2=二级超速传动机器升级 +item.upgrade_overdrive_3=三级超速传动机器升级 +item.upgrade_power_1=一级蓝色机器升级 +item.upgrade_power_2=二级蓝色机器升级 +item.upgrade_power_3=三级蓝色机器升级 +item.upgrade_radius=青色力场发生器升级 +item.upgrade_screm=采矿激光升级-目 力 科 学 家 +item.upgrade_shredder=采矿激光升级-自动粉碎 +item.upgrade_smelter=采矿激光升级-自动熔炼 +item.upgrade_speed_1=一级红色机器升级 +item.upgrade_speed_2=二级红色机器升级 +item.upgrade_speed_3=三级红色机器升级 +item.upgrade_stack_1=一级堆叠弹出升级 +item.upgrade_stack_2=二级堆叠弹出升级 +item.upgrade_stack_3=三级堆叠弹出升级 +item.upgrade_template=机器升级模板 +item.volcanic_axe=熔岩斧 +item.volcanic_pickaxe=熔岩镐 +item.wand_d=调试魔杖 +item.wand_k=建筑魔杖 +item.wand_s=结构魔杖 +item.structure_custommachine=自定义机器结构输出杖 +item.warhead_buster_large=大型掩体破坏弹头 +item.warhead_buster_medium=中型掩体破坏弹头 +item.warhead_buster_small=小型掩体破坏弹头 +item.warhead_cluster_large=大型集束弹头 +item.warhead_cluster_medium=中型集束弹头 +item.warhead_cluster_small=小型集束弹头 +item.warhead_generic_large=大型弹头 +item.warhead_generic_medium=中型弹头 +item.warhead_generic_small=小型弹头 +item.warhead_incendiary_large=大型燃烧弹头 +item.warhead_incendiary_medium=中型燃烧弹头 +item.warhead_incendiary_small=小型燃烧弹头 +item.warhead_mirv=热核弹头 +item.warhead_mirvlet=MIRV 弹头 +item.warhead_nuclear=核弹头 +item.warhead_thermo_endo=吸热弹头 +item.warhead_thermo_exo=放热弹头 +item.warhead_volcano=构造弹头 +item.waste_mox=枯竭MOX燃料 +item.waste_natural_uranium=枯竭天然铀燃料 +item.waste_plate_mox=枯竭MOX 板状燃料 +item.waste_plate_pu238be=枯竭钚238-铍 板状燃料 +item.waste_plate_pu239=枯竭高浓度钚-239 板状燃料 +item.waste_plate_ra226be=枯竭镭226-铍 板状燃料 +item.waste_plate_sa326=枯竭高浓度Sa326 板状燃料 +item.waste_plate_u233=枯竭高浓度铀-233 板状燃料 +item.waste_plate_u235=枯竭高浓度铀-235 板状燃料 +item.waste_plutonium=枯竭钚燃料 +item.waste_schrabidium=枯竭Sa326燃料 +item.waste_thorium=枯竭钍燃料 +item.waste_u235=枯竭铀-235燃料 +item.waste_u233=枯竭铀-233燃料 +item.waste_uranium=枯竭铀燃料 +item.waste_zfb_mox=枯竭的ZFB MOX燃料 +item.watch=破旧怀表 +item.watch.desc=一块蓝色的小怀表$玻璃上有一些裂缝,还有一些碎片不见了$指针定格在了2点34分。 +item.watz_pellet.boron=硼吸收靶丸 +item.watz_pellet.du=贫铀吸收靶丸 +item.watz_pellet.hes=HES Watz靶丸 +item.watz_pellet.lead=铅吸收靶丸 +item.watz_pellet.les=LES Watz靶丸 +item.watz_pellet.mes=MES Watz靶丸 +item.watz_pellet.mep=MEP Watz靶丸 +item.watz_pellet.meu=MEU Watz靶丸 +item.watz_pellet.nqd=浓缩硅岩金属 Watz靶丸 +item.watz_pellet.nqr=硅岩金属化合物 Watz靶丸 +item.watz_pellet.hen=HEN Watz靶丸 +item.watz_pellet.schrabidium=Sa326 Watz靶丸 +item.watz_pellet_depleted.boron=硼吸收靶丸(枯竭) +item.watz_pellet_depleted.du=贫铀吸收靶丸(枯竭) +item.watz_pellet_depleted.hes=HES Watz靶丸(枯竭) +item.watz_pellet_depleted.lead=铅吸收靶丸(枯竭) +item.watz_pellet_depleted.les=LES Watz靶丸(枯竭) +item.watz_pellet_depleted.mes=MES Watz靶丸(枯竭) +item.watz_pellet_depleted.mep=MEP Watz靶丸(枯竭) +item.watz_pellet_depleted.meu=MEU Watz靶丸(枯竭) +item.watz_pellet_depleted.nqd=浓缩硅岩金属 Watz靶丸(枯竭) +item.watz_pellet_depleted.nqr=硅岩金属化合物 Watz靶丸(枯竭) +item.watz_pellet_depleted.hen=HEN Watz靶丸(枯竭) +item.watz_pellet_depleted.schrabidium=Sa326 Watz靶丸(枯竭) +item.weapon_bat=板球棒 +item.weapon_bat_nail=板上钉钉 +item.weapon_golf_club=黑手党快乐杆 +item.weapon_pipe_lead=手动覆盖控制 +item.weapon_pipe_rusty=姿态调节器 +item.weapon_saw=肢解骨锯 +item.weaponized_starblaster_cell=§c星际爆能电池§r +item.wd40=VT-40防锈油 +item.wild_p=野生珀伽索斯干威士忌 +item.wings_limp=无力之翼 +item.wings_murk=暗黑之翼 +item.wire_advanced_alloy=超导体 +item.wire_aluminium=铝线 +item.wire_copper=铜线 +item.wire_dense=致密%s线 +item.wire_fine=%s线 +item.wire_gold=金线 +item.wire_magnetized_tungsten=4000K高温超导体 +item.wire_red_copper=紫铜线 +item.wire_schrabidium=Sa326线 +item.wire_tungsten=钨线 +item.wiring_red_copper=电缆卷 +item.wood_gavel=木槌 +item.wrench=管道扳手 +item.wrench_archineer=建筑工程师的扳手 +item.wrench_flipped=刺刀扳手 +item.xanax=NAXA 抗迪伽马药物 +item.xanax.desc=移除500mDRX迪伽马辐射 +item.zirconium_legs=锆质护腿 +itemGroup.tabBlocks=HBM 矿石和方块 +itemGroup.tabConsumable=HBM 食物和装备 +itemGroup.tabControl=HBM 机器项目和燃料 +itemGroup.tabMachine=HBM 机器 +itemGroup.tabMissile=HBM 导弹和卫星 +itemGroup.tabNuke=HBM 炸弹 +itemGroup.tabParts=HBM 资源和零件 +itemGroup.tabTemplate=HBM 模板 +itemGroup.tabTest=HBM的核科技mod测试项[S166、Bismarck、Nukesteve、牛牛联合汉化] +itemGroup.tabWeapon=HBM 武器和炮塔 +potion.hbm_bang= +potion.hbm_death=重度突变 +potion.hbm_lead=铅中毒 +potion.hbm_mutation=变异 +potion.hbm_phosphorus=磷烧伤 +potion.hbm_potionsickness=药水病 +potion.hbm_radaway=消辐宁 +potion.hbm_radiation=辐射 +potion.hbm_radx=抗辐射 +potion.hbm_stability=稳定 +potion.hbm_taint=污染 +potion.hbm_telekinesis= +radar.clearMap=清空地图 +radar.detectMissiles=探测导弹 +radar.detectPlayers=探测玩家 +radar.detectShells=探测炮弹 +radar.redMode=红石控制模式$开启: 基于导弹距离输出红石信号$关闭: 基于导弹级别输出红石信号 +radar.showMap=显示地图 +radar.smartMode=智能模式$有红石信号时忽略上升段的导弹 +radar.toggleGui=切换视图 +radar.target.abm=反弹道导弹 +radar.target.custom10=10号定制导弹 +radar.target.custom1015=10/15号定制导弹 +radar.target.custom15=15号定制导弹 +radar.target.custom1520=15/20号定制导弹 +radar.target.custom20=20号定制导弹 +radar.target.doomsday=末日导弹 +radar.target.shuttle=万金罗宾航天飞机 +radar.target.tier0=0级导弹 +radar.target.tier1=1级导弹 +radar.target.tier2=2级导弹 +radar.target.tier3=3级导弹 +radar.target.tier4=4级导弹 +rbmk.heat=柱体温度: %s +rbmk.boiler.water=供水速率: %s / %s +rbmk.boiler.steam=蒸汽产生速率: %s / %s +rbmk.boiler.type=蒸汽压缩等级: %s +rbmk.console.assign=将选定列分配给屏幕#%s +rbmk.console.none=关 +rbmk.console.col_temp=监测平均柱温 +rbmk.console.rod_extraction=监控平均控制棒抽出量 +rbmk.console.fuel_depletion=监测平均燃料消耗 +rbmk.console.fuel_poison=监测平均氙中毒程度 +rbmk.console.fuel_temp=监测平均燃料温度 +rbmk.control.level= +rbmk.control.red=§c红色组 +rbmk.control.yellow=§e黄色组 +rbmk.control.green=§a绿色组 +rbmk.control.blue=§1蓝色组 +rbmk.control.purple=§5紫色组 +rbmk.moderated=慢化剂 +rbmk.rod.depletion=燃料消耗: %s +rbmk.rod.xenon=氙元素堆积程度: %s +rbmk.rod.coreTemp=核心温度: %s +rbmk.rod.skinTemp=表面温度: %s / %s +rbmk.screen.core=核心:%s +rbmk.screen.depletion=消耗: %s +rbmk.screen.rod=控制:%s +rbmk.screen.temp=温度:%s +rbmk.screen.xenon=氙:%s +shape.billet=坯料 +shape.blade=扇片 +shape.blades=粉碎机刀片 +shape.block=块 +shape.dust=粉末 +shape.dusttiny=小撮粉末 +shape.hull_big=大型外壳 +shape.hull_small=小型外壳 +shape.ingot=锭 +shape.nugget=粒 +shape.quantum=量子 +shape.quart=四分之一块 +shape.ntmpipe=管 +shape.plate=板 +shape.plateTriple=铸造板 +shape.shell=外壳 +shape.stamp=锻模 +shape.wireFine=线 +shape.wireDense=致密线 +shape.wiresDense=致密线 +soundCategory.ntmMachines=NTM机器 +block.absorber=辐射吸收器 +block.absorber_green=高级辐射吸收器 +block.absorber_pink=精英辐射吸收器 +block.absorber_red=增强型辐射吸收器 +block.acid_block=酸 +block.ams_base=AMS基座 [开发中] +block.ams_emitter=AMS发射极 [开发中] +block.ams_limiter=AMS稳能器 [开发中] +block.ancient_scrap=古代废金属 +block.anvil_arsenic_bronze=砷青铜砧 +block.anvil_bismuth=铋砧 +block.anvil_bismuth_bronze=铋青铜砧 +block.anvil_desh=Desh砧 +block.anvil_dnt=双聚中子态素砧 +block.anvil_ferrouranium=铀铁合金砧 +block.anvil_iron=铁砧 +block.anvil_lead=铅砧 +block.anvil_meteorite=陨石砧 +block.anvil_murky=暗黑砧 +block.anvil_osmiridium=铱锇合金砧 +block.anvil_saturnite=土星砧 +block.anvil_schrabidate=Sa酸铁砧 +block.anvil_starmetal=星辉金属砧 +block.anvil_steel=钢砧 +block.ash_digamma=灰烬 +block.asphalt=沥青 +block.asphalt_stairs=沥青楼梯 +block.asphalt_light=发光沥青 +block.barbed_wire=带刺铁丝网 +block.barbed_wire_acid=腐蚀铁丝网 +block.barbed_wire_fire=烈焰铁丝网 +block.barbed_wire_poison=剧毒铁丝网 +block.barbed_wire_ultradeath=辐射铁丝网 +block.barbed_wire_wither=凋零铁丝网 +block.barrel_antimatter=磁约束反物质容器 +block.barrel_corroded=被腐蚀的桶 +block.barrel_iron=铁桶 +block.barrel_plastic=安全桶 +block.barrel_steel=钢桶 +block.barrel_tcalloy=锝-钢合金桶 +block.barricade=沙袋 +block.basalt=玄武岩 +block.basalt_brick=玄武岩砖 +block.basalt_polished=抛光玄武岩 +block.basalt_smooth=平滑玄武岩 +block.basalt_tiles=玄武岩砖 +block.blast_door=防爆闸门 +block.block_actinium=锕块 +block.block_advanced_alloy=高级合金块 +block.block_aluminium=铝块 +block.block_asbestos=石棉块 +block.block_australium=奥斯块 +block.block_bakelite=电木块 +block.block_beryllium=铍块 +block.block_bismuth=铋块 +block.block_boron=硼块 +block.block_c4=C-4块 +block.block_cadmium=镉块 +block.block_cap_fritz=弗里茨瓶盖方块 +block.block_cap_korl=Korl瓶盖方块 +block.block_cap_nuka=核子可乐瓶盖方块 +block.block_cap_quantum=樱桃味核子可乐瓶盖方块 +block.block_cap_rad=辐射 S~核子可乐瓶盖方块 +block.block_cap_sparkle=核子可乐瓶盖方块 +block.block_cap_star=夕阳沙士星星瓶盖方块 +block.block_cap_sunset=夕阳沙士瓶盖方块 +block.block_cdalloy=镉钢块 +block.block_cobalt=钴块 +block.block_coke.coal=煤焦炭块 +block.block_coke.lignite=褐煤焦炭块 +block.block_coke.petroleum=石油焦炭块 +block.block_coltan=钶钽铁矿块 +block.block_combine_steel=CMB钢块 +block.block_copper=铜块 +block.block_corium=熔融堆芯冷凝物 +block.block_corium_cobble=熔融物凝固石 +block.block_daffergon=达夫贡块 +block.block_desh=Desh块 +block.block_dineutronium=双聚中子态素块 +block.block_dura_steel=强化高速钢块 +block.block_electrical_scrap=电子废料块 +block.block_euphemium=Ep块 +block.block_euphemium_cluster=Ep刻蚀Sa326团 +block.block_fallout=辐射尘块 +block.block_fiberglass=玻璃纤维卷 +block.block_fluorite=氟石块 +block.block_foam=泡沫 +block.block_insulator=绝缘卷 +block.block_graphite=石墨块 +block.block_graphite_detector=反应堆中子探测棒 +block.block_graphite_drilled=钻孔石墨 +block.block_graphite_fuel=反应堆燃料 +block.block_graphite_lithium=反应堆锂燃料 +block.block_graphite_plutonium=反应堆燃料(增殖) +block.block_graphite_rod=反应堆控制棒 +block.block_graphite_source=反应堆中子源 +block.block_graphite_tritium=反应堆锂燃料(增殖) +block.block_lead=铅块 +block.block_lanthanium=镧块 +block.block_lithium=锂块 +block.block_magnetized_tungsten=磁化钨块 +block.block_meteor=陨石块 +block.block_meteor_broken=破碎的陨石块 +block.block_meteor_cobble=陨石 +block.block_meteor_molten=高温陨石 +block.block_meteor_treasure=宝藏陨石块 +block.block_mox_fuel=MOX燃料块 +block.block_neptunium=镎块 +block.block_niter=硝石块 +block.block_niter_reinforced=硝石加固块 +block.block_niobium=铌块 +block.block_plutonium=钚块 +block.block_plutonium_fuel=钚燃料块 +block.block_polonium=钋块 +block.block_polymer=聚合物块 +block.block_pu_mix=反应堆级钚块 +block.block_pu238=钚-238块 +block.block_pu239=钚-239块 +block.block_pu240=钚-240块 +block.block_ra226=镭-226块 +block.block_red_copper=紫铜块 +block.block_red_phosphorus=红磷块 +block.block_reiium=雷恩块 +block.block_rubber=橡胶块 +block.block_schrabidate=Sa酸铁块 +block.block_schrabidium=Sa326块 +block.block_schrabidium_cluster=Sa326团 +block.block_schrabidium_fuel=Sa326燃料块 +block.block_schraranium=低丰度Sa326块 +block.block_scrap=废品块 +block.block_semtex=塞姆汀块 +block.block_slag=矿渣块 +block.block_smore=S'more块 +block.block_solinium=Sa327块 +block.block_starmetal=星辉块 +block.block_steel=钢块 +block.block_sulfur=硫磺块 +block.block_tantalium=钽块 +block.block_tcalloy=锝钢块 +block.block_thorium=钍块 +block.block_thorium_fuel=钍燃料块 +block.block_titanium=钛块 +block.block_trinitite=玻璃石块 +block.block_tritium=氚单元块 +block.block_tungsten=钨块 +block.block_u233=铀-233块 +block.block_u235=铀-235块 +block.block_u238=铀-238块 +block.block_unobtainium=难得素块 +block.block_uranium=铀块 +block.block_uranium_fuel=铀燃料块 +block.block_verticium=韦德赛块 +block.block_waste=核废料块 +block.block_waste_painted=带标志的核废料块 +block.block_waste_vitrified=玻璃化核废料块 +block.block_weidanium=魏丹块 +block.block_white_phosphorus=白磷块 +block.block_yellowcake=黄饼块 +block.block_zirconium=锆块 +block.boat=船 +block.bobblehead=Bob的魔法娃娃 +block.bomb_multi=多功能炸弹 +block.bomber=坠毁轰炸机 +block.book_guide=HBM的核科技mod手册[遗留] +block.boxcar=车厢 +block.brick_asbestos=石棉砖块 +block.brick_asbestos_stairs=石棉砖楼梯 +block.brick_compound=复合网格砖块 +block.brick_compound_stairs=复合网格砖楼梯 +block.brick_concrete=混凝土砖块 +block.brick_concrete_stairs=混凝土砖楼梯 +block.brick_concrete_broken=破碎混凝土砖块 +block.brick_concrete_broken_stairs=破碎混凝土砖楼梯 +block.brick_concrete_cracked=开裂混凝土砖块 +block.brick_concrete_cracked_stairs=开裂混凝土砖楼梯 +block.brick_concrete_marked=标记混凝土砖 +block.brick_concrete_mossy=苔混凝土砖块 +block.brick_concrete_mossy_stairs=苔混凝土砖楼梯 +block.brick_ducrete=高密度贫铀混凝土砖块 +block.brick_ducrete_stairs=高密度贫铀混凝土砖楼梯 +block.brick_dungeon=硒铜砖 +block.brick_dungeon_circle=圆环硒铜块 +block.brick_dungeon_flat=硒铜块 +block.brick_dungeon_tile=硒铜瓦 +block.brick_fire=耐火砖块 +block.brick_fire_stairs=耐火砖楼梯 +block.brick_jungle=硫砷钢砖块 +block.brick_jungle_circle=机械师之环 +block.brick_jungle_cracked=开裂硫砷钢砖块 +block.brick_jungle_fragile=粉碎硫砷钢砖块 +block.brick_jungle_glyph=硫砷钢石雕砖块 +block.brick_jungle_lava=岩浆硫砷钢砖块 +block.brick_jungle_mystic=奥术硫砷钢砖块 +block.brick_jungle_ooze=放射硫砷钢砖块 +block.brick_jungle_trap=陷阱硫砷钢砖块 +block.brick_light=轻质砖块 +block.brick_light_stairs=轻质砖楼梯 +block.brick_obsidian=黑曜石砖块 +block.brick_obsidian_stairs=黑曜石砖楼梯 +block.brick_red=红房间砖块 +block.brick_slab.brick_asbestos=石棉砖台阶 +block.brick_slab.brick_compound=复合网格砖台阶 +block.brick_slab.brick_fire=耐火砖台阶 +block.brick_slab.brick_light=轻质砖台阶 +block.brick_slab.brick_obsidian=黑曜石砖台阶 +block.brick_slab.reinforced_brick=强化石头台阶 +block.brick_slab.reinforced_stone=致密石头台阶 +block.broadcaster_pc=腐败广播 +block.burning_earth=燃烧草地 +block.c4= +block.cable_detector=红石电源开关 +block.cable_diode=紫铜二极管 +block.cable_switch=电源开关 +block.capacitor_bus=电容总线 +block.capacitor_bus.desc=电容器的输出方块$可以连成一条直线 +block.capacitor_copper=铜电容 +block.capacitor_gold=金电容 +block.capacitor_niobium=铌电容 +block.capacitor_schrabidate=Sa酸铁电容 +block.capacitor_tantalium=钽电容 +block.capacitor.desc=输入:顶部$输出:底部,通过电容总线 +block.charge_c4=炸药包 +block.charge_dynamite=定时炸弹 +block.charge_miner=定时采矿炸药 +block.charge_semtex=塞姆汀采矿炸药 +block.charger=充电站 +block.cheater_virus=冻结Ep +block.cheater_virus_seed=不稳定的Sa326化Ep块 +block.chimney_brick=烟囱 +block.chimney_brick.desc=使用排气管连接污染机器$减少75%的污染排放 +block.chimney_industrial=工业烟囱 +block.chimney_industrial.desc=使用排气管连接污染机器$减少90%的污染排放 +block.chlorine_gas=氯气 +block.cluster_aluminium=铝矿簇 +block.cluster_copper=铜矿簇 +block.cluster_depth_iron=深层铁矿簇 +block.cluster_depth_titanium=深层钛矿簇 +block.cluster_depth_tungsten=深层钨矿簇 +block.cluster_iron=铁矿簇 +block.cluster_titanium=钛矿簇 +block.custom_machine_anchor=自定义机器结构定位锚 +block.cm_block.alloy=高级合金机器外壳 +block.cm_block.desh=Desh机器外壳 +block.cm_block.steel=钢制机器外壳 +block.cm_block.tcalloy=锝钢机器外壳 +block.cm_circuit.aluminium=一级电路块 +block.cm_circuit.copper=二级电路块 +block.cm_circuit.gold=四级电路块 +block.cm_circuit.red_copper=三级电路块 +block.cm_circuit.schrabidium=五级电路块 +block.cm_engine.bismuth=铋电机组 +block.cm_engine.desh=Desh电机组 +block.cm_engine.standard=电机组 +block.cm_flux=中子接收器 +block.cm_heat=热量接收器 +block.cm_port.alloy=高级合金端口 +block.cm_port.desh=Desh端口 +block.cm_port.steel=钢制端口 +block.cm_port.tcalloy=锝钢端口 +block.cm_sheet.alloy=高级合金建筑板 +block.cm_sheet.desh=Desh建筑板 +block.cm_sheet.steel=钢建筑板 +block.cm_sheet.tcalloy=锝钢建筑板 +block.cm_tank.alloy=高级合金储罐 +block.cm_tank.desh=Desh储罐 +block.cm_tank.steel=钢制储罐 +block.cm_tank.tcalloy=锝钢储罐 +block.cmb_brick=CMB钢瓦块 +block.cmb_brick_reinforced=加固CMB钢砖块 +block.compact_launcher=紧凑型发射台 +block.concrete=混凝土瓦块 +block.concrete_asbestos=石棉混凝土 +block.concrete_asbestos_stairs=石棉混凝土楼梯 +block.concrete_brick_slab.brick_concrete=混凝土砖台阶 +block.concrete_brick_slab.brick_concrete_broken=破碎混凝土砖台阶 +block.concrete_brick_slab.brick_concrete_cracked=开裂混凝土砖台阶 +block.concrete_brick_slab.brick_concrete_mossy=苔混凝土砖台阶 +block.concrete_brick_slab.brick_ducrete=高密度贫铀混凝土砖台阶 +block.concrete_colored.black=黑色混凝土 +block.concrete_colored.blue=蓝色混凝土 +block.concrete_colored.brown=棕色混凝土 +block.concrete_colored.cyan=青色混凝土 +block.concrete_colored.gray=灰色混凝土 +block.concrete_colored.green=绿色混凝土 +block.concrete_colored.lightBlue=淡蓝色混凝土 +block.concrete_colored.lime=黄绿色混凝土 +block.concrete_colored.magenta=品红色混凝土 +block.concrete_colored.orange=橙色混凝土 +block.concrete_colored.pink=粉色混凝土 +block.concrete_colored.purple=紫色混凝土 +block.concrete_colored.red=红色混凝土 +block.concrete_colored.silver=淡灰色混凝土 +block.concrete_colored.white=白色混凝土 +block.concrete_colored.yellow=黄色混凝土 +block.concrete_colored_ext.bronze=建筑工指定混凝土-青铜板材 +block.concrete_colored_ext.hazard=建筑工指定混凝土-危险地带 +block.concrete_colored_ext.indigo=建筑工指定混凝土-深靛蓝 +block.concrete_colored_ext.machine=建筑工指定混凝土-工业风 +block.concrete_colored_ext.machine_stripe=建筑工指定混凝土-工业条纹 +block.concrete_colored_ext.pink=建筑工指定混凝土-猛男粉 +block.concrete_colored_ext.purple=建筑工指定混凝土-神秘紫 +block.concrete_colored_ext.sand=建筑工指定混凝土-沙漠风暴 +block.concrete_pillar=钢筋混凝土柱 +block.concrete_slab.asphalt=沥青台阶 +block.concrete_slab.concrete=混凝土瓦块台阶 +block.concrete_slab.concrete_asbestos=石棉混凝土台阶 +block.concrete_slab.concrete_smooth=混凝土台阶 +block.concrete_slab.ducrete=高密度贫铀混凝土瓷砖台阶 +block.concrete_slab.ducrete_smooth=高密度贫铀混凝土台阶 +block.concrete_smooth=混凝土 +block.concrete_smooth_stairs=混凝土楼梯 +block.concrete_stairs=混凝土瓦块楼梯 +block.concrete_super=Über混凝土 +block.concrete_super_broken=发霉的Über混凝土残骸 +block.conveyor=输送带 +block.conveyor.desc=移动掉在上面的物品$可以用螺丝刀顺时针旋转$用螺丝刀按住Shift键单击以转弯 +block.conveyor_chute=输送带滑槽 +block.conveyor_chute.desc=向下移动物品$最底部的滑槽将起到普通传送带的作用 +block.conveyor_double=双轨道输送带 +block.conveyor_double.desc=移动掉在上面的物品$可以用螺丝刀顺时针旋转$用螺丝刀按住Shift键单击以转弯 +block.conveyor_express=快速输送带 +block.conveyor_express.desc=快速移动掉在上面的物品$可以用螺丝刀顺时针旋转$用螺丝刀按Shift键转弯 +block.conveyor_lift=垂直输送带 +block.conveyor_lift.desc=向上移动物品$至少需要两个块才能正常工作 +block.conveyor_triple=三轨道输送带 +block.conveyor_triple.desc=移动掉在上面的物品$可以用螺丝刀顺时针旋转$用螺丝刀按住Shift键单击以转弯 +block.corium_block=堆芯熔融物 +block.crane_boxer=输送带打包机 +block.crane_boxer.desc=将可配置数量的堆叠装载到沿着传送带移动的箱子中$用螺丝刀右键单击以设置输入侧$用螺丝起子平移单击以设置输出侧$单击两次以设置相反侧 +block.crane_extractor=输送带提取器 +block.crane_extractor.desc=从库存中取出物品并将其放置在传送带上$最多有9个带黑白名单的过滤器插槽$用螺丝刀右键单击以设置输出侧$手持螺丝刀按住Shift单击以设置输入侧$单击两次以设置相反侧 +block.crane_grabber=输送带抓斗 +block.crane_grabber.desc=从经过的输送带中取出物品并将其放入容器$将只从最近的通道中取出物品$最多有9个带黑白名单的过滤槽$用螺丝刀右键单击以设置输入侧$用螺丝起子平移单击以设置输出侧$单击两次以设置对侧 +block.crane_inserter=输送带导入器 +block.crane_inserter.desc=接受输送带上的物品并将其放入容器中$用螺丝刀右键单击以设置输入侧$用螺丝刀单击以设置输出侧$单击两次以设置相反侧 +block.crane_partitioner=酸化器输入分隔器 +block.crane_partitioner.desc=接受并存储至多9种输入矿物酸化器的物品$并在物品数量达到配方要求时将其输出$无配方物品也会被存储,需要从侧面导出 +block.crane_router=输送带分拣机 +block.crane_router.desc=根据定义的条件对项目排序$侧面可以定义为黑名单、白名单或通配符$只有在没有其他筛选器匹配的情况下才选择通配符侧面 +block.crane_splitter=输送带分离器 +block.crane_splitter.desc=将物品分开并均匀堆放在两条传送带上$其本身就是一条传送带,因此它可以直接输入到插入器或分拣器中 +block.crane_unboxer=输送带解包机 +block.crane_unboxer.desc=接收打包好的物品并解包$用螺丝刀右键单击以设置输出侧$手持螺丝刀按住Shift单击以设置输入侧$单击两次以设置相反侧 +block.crashed_bomb=哑弹 +block.crate=补给箱 +block.crate_ammo=星辉补给箱 +block.crate_can=罐头补给箱 +block.crate_desh=Desh板条箱 +block.crate_iron=铁箱 +block.crate_jungle=硫砷钢箱 +block.crate_lead=危险品补给箱 +block.crate_metal=机器补给箱 +block.crate_red=红色补给箱 +block.crate_steel=钢箱 +block.crate_template=模板箱 +block.crate_tungsten=钨箱 +block.crate_weapon=武器补给箱 +block.crystal_hardened=硬化黑水晶 +block.crystal_pulsar=脉动水晶 +block.crystal_virus=黑水晶 +block.deco_aluminium=铝装饰块 +block.deco_asbestos=石棉瓦 +block.deco_beryllium=铍装饰块 +block.deco_computer.ibm_300pl=IBM个人电脑300PL +block.deco_crt=老CRT显示屏 +block.deco_emitter=装饰性发光体 +block.deco_lead=铅装饰块 +block.deco_rbmk=RBMK装饰块 +block.deco_rbmk_smooth=平滑RBMK装饰块 +block.deco_red_copper=紫铜装饰块 +block.deco_pipe=钢制管道 +block.deco_pipe_rusted=生锈的钢制管道 +block.deco_pipe_green=绿色钢制管道 +block.deco_pipe_green_rusted=生锈的绿色钢制管道 +block.deco_pipe_red=红色钢制管道 +block.deco_pipe_marked=气体管道 +block.deco_pipe_framed=钢制管道 (镶框) +block.deco_pipe_framed_rusted=生锈的钢制管道 (镶框) +block.deco_pipe_framed_green=绿色钢制管道 (镶框) +block.deco_pipe_framed_green_rusted=生锈的绿色钢制管道 (镶框) +block.deco_pipe_framed_red=红色钢制管道 (镶框) +block.deco_pipe_framed_marked=气体管道 (镶框) +block.deco_pipe_quad=钢制管道束 +block.deco_pipe_quad_rusted=生锈的钢制管道束 +block.deco_pipe_quad_green=绿色钢制管道束 +block.deco_pipe_quad_green_rusted=生锈的绿色钢制管道束 +block.deco_pipe_quad_red=红色钢制管道束 +block.deco_pipe_quad_marked=气体管道束 +block.deco_pipe_rim=钢制管道 (镶边) +block.deco_pipe_rim_rusted=生锈的钢制管道 (镶边) +block.deco_pipe_rim_green=绿色钢制管道 (镶边) +block.deco_pipe_rim_green_rusted=生锈的绿色钢制管道 (镶边) +block.deco_pipe_rim_red=红色钢制管道 (镶边) +block.deco_pipe_rim_marked=气体管道 (镶边) +block.deco_steel=钢装饰块 +block.deco_titanium=钛装饰块 +block.deco_toaster=坏掉的烤面包机 +block.deco_tungsten=钨装饰块 +block.decon=玩家去污器 +block.depth_brick=深层岩石砖 +block.depth_dnt=DNT加固深层岩石砖 +block.depth_nether_brick=下界深层岩石砖 +block.depth_nether_tiles=下界深层岩石瓷砖 +block.depth_tiles=深层岩石瓷砖 +block.det_charge=炸药 +block.det_cord=炸药引信 +block.det_miner=采矿炸药 +block.det_nuke=核炸药 +block.dfc_core=暗核聚变堆核心 +block.dfc_emitter=DFC发射器 +block.dfc_injector=DFC燃料喷射器 +block.dfc_receiver=DFC接收器 +block.dfc_stabilizer=DFC稳定器 +block.dirt_dead=泥渣 +block.dirt_oily=油泥 +block.drill_pipe=钻杆 +block.drone_crate=运输无人机坞 +block.drone_crate.desc=运输无人机的装货点和卸货点$也作为航路点使 +block.drone_crate_provider=物流供应箱 +block.drone_crate_provider.desc=向物流网络提供物品$物流无人机会尝试将物品从物流供应箱移至物流请求箱 +block.drone_crate_requester=物流请求箱 +block.drone_crate_requester.desc=从物流网络请求物品$若物品栏内没有标记的物品,则会请求该物品 +block.drone_dock=物流无人机坞 +block.drone_dock.desc=物流无人机的生成点$只能检测5区块半径内的物流供应箱和物流请求箱$每个连接中物流无人机最多跟随10个路径点 +block.drone_waypoint=运输无人机航路点 +block.drone_waypoint.desc=运输无人机的航路点$使用运输无人机链接器设置路径$按顺序单击每个航路点和坞即可创建路径$Shift+右键单击以清除保存的位置$右键单击或Shift+右键单击航路点以更改航路点的高度偏移 +block.drone_waypoint_request=物流无人机航路点 +block.door_bunker=仓门 +block.door_metal=金属门 +block.door_office=办公室门 +block.door_red=红门 +block.ducrete=高密度贫铀混凝土瓷砖 +block.ducrete_stairs=高密度贫铀混凝土瓷砖楼梯 +block.ducrete_smooth=高密度贫铀混凝土 +block.ducrete_smooth_stairs=高密度贫铀混凝土楼梯 +block.dummy_block=虚拟方块 +block.dummy_port=虚拟方块[电力接口] +block.dungeon_chain=金属链 +block.dynamite=炸药 +block.emp_bomb=EMP炸弹 +block.factory_advanced_conductor=高级工厂电力端口 +block.factory_advanced_core=高级工厂核心组件 +block.factory_advanced_furnace=高级工厂端口 +block.factory_advanced_hull=高级工厂外壳 +block.factory_titanium_conductor=工厂电力端口 +block.factory_titanium_core=工厂核心组件 +block.factory_titanium_furnace=工厂端口 +block.factory_titanium_hull=工厂外壳 +block.fallout=辐射尘 +block.fan=风扇 +block.fan.desc=使用红石激活$将实体推至最多10个方块外$用螺丝刀右键点击即可翻转 +block.fence_metal=铁丝网围栏 +block.fence_metal_post=铁丝网围栏立柱 +block.field_disturber=高能场干扰机 +block.filing_cabinet.green=蒙尘的文件柜 +block.filing_cabinet.steel=钢制文件柜 +block.fire_digamma=挥之不去的迪伽马之火 +block.fire_door=防火门 +block.fireworks=烟花箱 +block.fireworks.charges=已充能: %s +block.fireworks.message=信息: %s +block.fireworks.color=颜色: %s +block.fissure_bomb=裂缝炸弹 +block.flame_war=盒中论战 +block.float_bomb=悬浮炸弹 +block.floodlight=电力泛光灯 +block.fluid_duct=通用流体管道 +block.fluid_duct_box=通用流体管道(方形) +block.fluid_duct_exhaust=排气管 +block.fluid_duct_gauge=流量计管 +block.fluid_duct_gauge.desc=显示每个游戏刻在管网有多少流体移动的管道$由桶或罐连接的分离网络被视为一个共享网络。 +block.fluid_duct_neo=通用流体管道 +block.fluid_duct_paintable=可喷漆涂层通用流体导管 +block.fluid_duct_solid=带涂层的通用流体导管 +block.fluid_switch=红石流体阀 +block.fluid_valve=流体阀 +block.foam_layer=泡沫层 +block.foundry_basin=铸造盘 +block.foundry_channel=铸造浇道 +block.foundry_tank=铸造池 +block.foundry_mold=浅铸造池 +block.foundry_outlet=浇筑出口 +block.foundry_slagtap=炉渣出口 +block.fraction_spacer=分馏塔分隔器 +block.frozen_dirt=冰冻土 +block.frozen_grass=冰冻草 +block.frozen_log=冰冻原木 +block.frozen_planks=冰冻木板 +block.machine_furnace_brick_off=砖砌炉 +block.machine_furnace_brick_on=砖砌炉 +block.furnace_combination=复式炼焦炉 +block.furnace_combination.desc=一种可以生产木炭和煤焦炭的大熔炉$产生流体副产品$传热速率:ΔT*0.25 TU/T +block.furnace_iron=铁炉 +block.furnace_iron.desc=更大、效率更高的炉子,在闲置时不会浪费燃料。 +block.furnace_steel=钢炉 +block.furnace_steel.desc=非常大的熔炉,冶炼矿石时可提供加成。$需要外部热源$传热率:ΔT*0.05tu/T$(Δ表示差值,T表示温度) +block.fusion_center=中心磁铁 +block.fusion_conductor=超导磁体 +block.fusion_conductor_welded=超导磁体(焊接) +block.fusion_core=聚变反应堆控制器 +block.fusion_hatch=聚变反应堆端口 +block.fusion_heater=等离子加热器 +block.fusion_motor=磁体马达 +block.fwatz_computer=Watz聚变反应堆计算矩阵 +block.fwatz_conductor=4000K超导磁体 +block.fwatz_cooler=冷却液罐壳 +block.fwatz_core=Watz聚变反应堆控制器 +block.fwatz_hatch=Watz聚变反应堆端口 +block.fwatz_plasma=不稳定反Sa326等离子体 +block.fwatz_scaffold=Watz聚变反应堆结构支架 +block.fwatz_tank=冷却液罐 +block.gas_asbestos=石棉粉尘 +block.gas_coal=空气中的煤尘 +block.gas_duct=输气管道 +block.gas_duct_solid=密封输气管 +block.gas_explosive=爆炸性气体 +block.gas_flammable=可燃气体 +block.gas_meltdown=熔毁气体 +block.gas_monoxide=一氧化碳 +block.gas_radon=氡气 +block.gas_radon_dense=高浓度氡气 +block.gas_radon_tomb=古墓气体 +block.geiger=盖革计数器 +block.glass_ash=灰烬玻璃 +block.glass_boron=硼玻璃 +block.glass_lead=铅玻璃 +block.glass_polonium=钋玻璃 +block.glass_quartz=石英玻璃 +block.glass_trinitite=核融玻璃 +block.glass_uranium=铀玻璃 +block.glyphid_base=异虫蜂巢块 +block.glyphid_spawner=异虫蜂巢繁殖方块 +block.gneiss_brick=页岩砖 +block.gneiss_chiseled=錾制页岩砖 +block.gneiss_tile=页岩瓷砖 +block.gravel_diamond=钻石砂砾 +block.gravel_obsidian=碎黑曜石 +block.hadron_access=粒子加速器接入终端 +block.hadron_analysis=粒子加速器分析室壁 +block.hadron_analysis_glass=粒子加速器分析室窗口 +block.hadron_coil_alloy=致密超导线圈 +block.hadron_coil_chlorophyte=致密叶绿线圈 +block.hadron_coil_gold=致密金线圈 +block.hadron_coil_magtung=致密4000K超导线圈 +block.hadron_coil_mese=致密Mese线圈 +block.hadron_coil_neodymium=致密钕线圈 +block.hadron_coil_schrabidate=致密Sa酸铁线圈 +block.hadron_coil_schrabidium=致密Sa326线圈 +block.hadron_coil_starmetal=致密星辉线圈 +block.hadron_cooler=粒子加速器冷却装置 +block.hadron_cooler.desc=冷却功率:10$过冷阈值:10$冷却加成:+10%%$过冷惩罚:-25%% +block.hadron_cooler_mk2=粒子加速器冷却装置-回文特制 +block.hadron_cooler_mk2.desc=冷却功率:5$效率功能:2-(冷却-15)²/225$最高惩罚:-90%% +block.hadron_core=粒子加速器核心组件 +block.hadron_diode=肖基特二极管 +block.hadron_plating=粒子加速器镀层 +block.hadron_plating_black=粒子加速器镀层 (黑) +block.hadron_plating_blue=粒子加速器镀层 (蓝) +block.hadron_plating_glass=粒子加速器镀层 (窗口) +block.hadron_plating_striped=粒子加速器镀层(低温危险) +block.hadron_plating_voltz=粒子加速器镀层 (VOLTZ) +block.hadron_plating_yellow=粒子加速器镀层(Yello染料) +block.hadron_power=粒子加速器电源接口 +block.hadron_power_10m=粒子加速器电源接口(10MHE) +block.hadron_power_100m=粒子加速器电源接口(100MHE) +block.hadron_power_1g=粒子加速器电源接口(1GHE) +block.hadron_power_10g=粒子加速器电源接口(10GHE) +block.hazmat=防辐射布块 +block.heater_electric=电加热器 +block.heater_electric.desc=利用电能产生热量$以85%的效率接受来自底部的热量$可使用螺丝刀进行配置。 +block.heater_firebox=燃烧室 +block.heater_firebox.desc=燃烧固体燃料以产生热量。 +block.heater_heatex=换热加热器 +block.heater_heatex.desc=从热流体中产生热量。 +block.heater_oilburner=流体燃烧器 +block.heater_oilburner.desc=燃烧可燃液体产生热量。 +block.heater_oven=加热炉 +block.heater_oven.desc=燃烧固体燃料以产生热量$以50%的效率接受来自底部的热量。 +block.hev_battery=盔甲电池 +block.machine_hydrotreater=加氢装置 +block.impact_dirt=烧焦的泥土 +block.icf=惯性约束聚变反应堆(ICF) +block.icf_block=ICF激光器 +block.icf_component=ICF稳定元件 +block.icf_component.structure=ICF外壳 +block.icf_component.structure_bolted=ICF外壳(铆接) +block.icf_component.vessel=ICF密封容器壁 +block.icf_component.vessel_welded=ICF密封容器壁(焊接) +block.icf_controller=ICF激光器控制器 +block.icf_laser_component.capacitor=ICF激光器电容 +block.icf_laser_component.casing=ICF激光器外壳 +block.icf_laser_component.cell=ICF激光器单元 +block.icf_laser_component.emitter=ICF激光器闪光管 +block.icf_laser_component.port=ICF激光器端口 +block.icf_laser_component.turbo=ICF激光器涡轮增压器 +block.iter=聚变反应堆 +block.ladder_aluminium=铝制梯子 +block.ladder_cobalt=钴制梯子 +block.ladder_copper=铜制梯子 +block.ladder_gold=金制梯子 +block.ladder_iron=铁制梯子 +block.ladder_lead=铅制梯子 +block.ladder_steel=钢制梯子 +block.ladder_sturdy=坚固木头制梯子 +block.ladder_titanium=钛制梯子 +block.ladder_tungsten=钨制梯子 +block.lamp_demon=恶魔核心灯 +block.lamp_tritium_blue_off=蓝色氚灯 +block.lamp_tritium_blue_on=蓝色氚灯 +block.lamp_tritium_green_off=绿色氚灯 +block.lamp_tritium_green_on=绿色氚灯 +block.lantern=路灯 +block.lantern_behemoth=旧路灯 +block.launch_pad=导弹发射台 +block.launch_pad_large=发射台 +block.launch_pad_rusted=锈迹斑斑的发射台 +block.launch_table=大型发射台 +block.leaves_layer=落叶 +block.lox_barrel=液氧桶 +block.machine_amgen=环境辐射发电机 +block.machine_arc_furnace=大型电弧炉 +block.machine_arc_furnace_off=电弧炉 +block.machine_arc_furnace_on=电弧炉 +block.machine_arc_welder=电弧焊机 +block.machine_armor_table=装甲改装台 +block.machine_ashpit=储灰槽 +block.machine_ashpit.desc=收集来自燃烧室和加热炉的灰烬 +block.machine_assembler=装配机 +block.machine_assemfac=装配厂 +block.machine_autocrafter=自动工作台 +block.machine_autosaw=自动嗡嗡锯 +block.machine_autosaw.desc=砍伐附近的植物,重新种植树木$接受:$-木油$-乙醇$-鱼油$-重油 +block.machine_bat9000=巨尻-9000 储罐 +block.machine_battery=蓄电池 +block.machine_battery_potato=马铃薯电池组 +block.machine_boiler=大型锅炉 +block.machine_boiler.desc=可以烧水或加热油的大型锅炉$需要外部热源$传热速率:ΔT*0.01 TU/T +block.machine_boiler_electric_off=电锅炉 +block.machine_boiler_electric_on=电锅炉 +block.machine_boiler_off=锅炉 +block.machine_boiler_on=锅炉 +block.machine_catalytic_cracker=催化裂化塔 +block.machine_catalytic_reformer=催化重整器 +block.machine_centrifuge=离心机 +block.machine_chemfac=大型化工厂 +block.machine_chemplant=化工厂 +block.machine_chungus=“利维坦”巨型汽轮机 +block.machine_chungus.desc=效率: 85%% +block.machine_coal_off=火力发电机 +block.machine_coal_on=火力发电机 +block.machine_coker=焦化装置 +block.machine_coker.desc=炼焦,并产生各类流体副产品$需要外部热源$传热速率:ΔT*0.025 TU/T +block.machine_combine_factory=CMB炼钢炉 +block.machine_combustion_engine=工业内燃机 +block.machine_compressor=压缩机 +block.machine_condenser=蒸汽冷凝器 +block.machine_condenser_powered=大功率蒸汽冷凝器 +block.machine_controller=反应堆遥控模块 +block.machine_converter_he_rf=HE→RF转换器 +block.machine_converter_rf_he=RF→HE转换器 +block.machine_conveyor_press=输送带锻压机 +block.machine_conveyor_press.desc=传送带从左向右移动$手持锻模右键单击以安装$使用螺丝刀移除锻模 +block.machine_crucible=坩埚 +block.machine_crystallizer=矿物酸化器 +block.machine_cyclotron=回旋加速器 +block.machine_detector=功率检测器 +block.machine_deuterium_extractor=氘提取器 +block.machine_deuterium_tower=氘萃取塔 +block.machine_diesel=柴油发电机 +block.machine_difurnace_extension=高炉烟道 +block.machine_difurnace_off=高炉 +block.machine_difurnace_on=高炉 +block.machine_difurnace_rtg_off=核高炉 +block.machine_difurnace_rtg_on=核高炉 +block.machine_dineutronium_battery=Spark蓄电池 +block.machine_drain=排液管 +block.machine_drill=自动采矿钻机 +block.machine_electric_furnace_off=电炉 +block.machine_electric_furnace_on=电炉 +block.machine_electrolyser=电解机 +block.machine_epress=电动锻压机 +block.machine_excavator=大型采矿钻机 +block.machine_exposure_chamber=曝光室 +block.machine_fel=FEL自由电子激光器 +block.machine_fensu=FEnSU飞轮储能系统 +block.machine_flare=高架火炬 +block.machine_fluidtank=储罐 +block.machine_forcefield=力场发生器 +block.machine_fraction_tower=分馏塔 +block.machine_fracking_tower=水力压裂塔 +block.machine_funnel=组合漏斗 +block.machine_funnel.desc=自动在2x2或3x3的合成格中压缩内部物品$顶面:输入$底面:输出$侧面:输出内部原料 +block.machine_gascent=气体离心机 +block.machine_generator=核反应堆[旧] +block.machine_geo=地热发电机 +block.machine_hephaestus=地热换热器 +block.machine_icf_press=ICF燃料靶丸制造器 +block.machine_icf_press.desc=用于装填ICF靶丸$左侧燃料槽接收顶面/底面输入,右侧燃料槽接收侧面输入$μ子胶囊和空靶丸可从任意面输入 +block.machine_industrial_boiler=工业锅炉 +block.machine_industrial_boiler.desc=可以烧水或加热油的大型锅炉$需要外部热源$传热率:ΔT*0.01 TU/T$不会爆炸 +block.machine_industrial_generator=工业发电机 +block.machine_keyforge=锁匠桌 +block.machine_large_turbine=工业汽轮机 +block.machine_large_turbine.desc=效率: 100%% +block.machine_liquefactor=工业液化机 +block.machine_liquefactor.desc=强大的通用机器,可将物品转化为液体$配有多功能催化组件、加热元件和用于石化液化的内置水合器。 +block.machine_lithium_battery=锂蓄电池 +block.machine_microwave=微波炉 +block.machine_mining_laser=采矿激光 +block.machine_minirtg=放射性同位素电池 +block.machine_missile_assembly=导弹装配台 +block.machine_mixer=工业搅拌机 +block.machine_nuke_furnace_off=核熔炉 +block.machine_nuke_furnace_on=核熔炉 +block.machine_orbus=重型磁约束储罐 +block.machine_ore_slopper=基岩矿石处理机 +block.machine_powerrtg=PT同位素电池 +block.machine_press=火力锻压机 +block.machine_puf6_tank=六氟化钚储罐 +block.machine_pumpjack=石油钻机 +block.machine_radar=雷达 +block.machine_radar_large=大型雷达 +block.machine_radgen=辐射能量发电机 +block.machine_radiolysis=放射性同位素热电机和辐射裂解室 +block.machine_reactor=增殖反应堆 +block.machine_reactor_small=研究型反应堆 +block.machine_refinery=炼油厂 +block.machine_reix_mainframe=Rei-X主机[开发中] +block.machine_rtg_blue=对流发电机 +block.machine_rtg_cyan=Sa326衰变发电机 [开发中] +block.machine_rtg_furnace_off=放射性同位素热力炉[RTG] +block.machine_rtg_furnace_on=放射性同位素热力炉[RTG] +block.machine_rtg_green=韦德赛富集发电机 +block.machine_rtg_grey=放射性同位素发电机 +block.machine_rtg_orange=强RT发电机 +block.machine_rtg_purple=反物质湮灭发发电机 +block.machine_rtg_red=离子发生器 +block.machine_rtg_yellow=奥斯超级燃料反应堆 +block.machine_satlinker=卫星ID管理器 +block.machine_sawmill=斯特林锯木机 +block.machine_sawmill.desc=需要外部热源$传热速率:T*0.1 TU/T$最小进气量:100 TU/T,最大进气量:300 TU/T +block.machine_schrabidium_battery=Sa326蓄电池 +block.machine_schrabidium_transmutator=Sa326嬗变装置 +block.machine_selenium=星型发动机 +block.machine_shredder=粉碎机 +block.machine_silex=SILEX激光同位素分离室 +block.machine_siren=警报器 +block.machine_solar_boiler=太阳能锅炉 +block.machine_soldering_station=焊接台 +block.machine_solidifier=工业固化机 +block.machine_solidifier.desc=配备冷却系统和其他多功能工具的通用机器,用于使用冷冻和石化聚合等多种工艺将流体转化为固体。 +block.machine_spp_bottom=ZPE电位发生器 [底部] +block.machine_spp_top=ZPE电位发生器 [顶部] +block.machine_steam_engine=蒸汽机 +block.machine_steam_engine.desc=效率:85% +block.machine_stirling=斯特林发电机 +block.machine_stirling.desc=它将热量转化为能量。需要外部热源$传热率:T*0.1 TU/T$最大进气量:300 TU/T$效率:50% +block.machine_stirling_creative=创造斯特林发动机 +block.machine_stirling_creative.desc=将热量转化为能量。需要外部热源$传热率:T*0.1 TU/T$无限吸热/T$效率:100% +block.machine_stirling_steel=重型斯特林发电机 +block.machine_stirling_steel.desc=它将热量转化为能量。需要外部热源$使用更重的齿轮来支持更高的温度$传热率:T*0.1 TU/T$最大进气量:1500 TU/T$效率:50% +block.machine_storage_drum=核废料处理桶 +block.machine_strand_caster=连续铸造机 +block.machine_telelinker=炮塔ID管理器 +block.machine_teleporter=传送机 +block.machine_tower_large=冷却塔 +block.machine_tower_small=辅助冷却塔 +block.machine_transformer=10k-20Hz变频器 +block.machine_transformer_20=10k-1Hz变频器 +block.machine_transformer_dnt=DNT-20Hz变频器 +block.machine_transformer_dnt_20=DNT-1Hz变频器 +block.machine_turbine=汽轮机 +block.machine_turbine.desc=效率: 85%% +block.machine_turbinegas=联合循环燃气轮机 +block.machine_turbofan=涡扇发动机 +block.machine_uf6_tank=六氟化铀储罐 +block.machine_vacuum_distill=真空炼油厂 +block.machine_waste_drum=乏燃料池 +block.machine_wood_burner=火力发电机 +block.machine_wood_burner.desc=燃烧物品时100HE/t,同时$收集灰烬$可以以40mb/s的速度燃烧流体,效率为50%% +block.machine_well=钻油塔 +block.machine_zirnox=锆诺克斯核反应堆 +block.marker_structure=多方块结构信标 +block.mass_storage=大规模存储单元 +block.meteor_battery=星辉静电发生器 +block.meteor_brick=陨石砖 +block.meteor_brick_chiseled=錾制陨石砖 +block.meteor_brick_cracked=裂纹陨石砖 +block.meteor_brick_mossy=苔藓陨石砖 +block.meteor_pillar=竖纹陨石砖 +block.meteor_polished=平滑陨石块 +block.meteor_spawner=赛博螃蟹组装机 +block.mine_ap=反步兵地雷 +block.mine_fat=核地雷 +block.mine_he=反坦克地雷 +block.mine_shrap=破片地雷 +block.moon_turf=月壤 +block.mud_block=毒泥 +block.muffler=消声器 +block.mush=发光真菌 +block.ntm_dirt=泥土 +block.nuke_boy=小男孩 +block.nuke_custom=自定义核弹 +block.nuke_fleija=芙蕾雅 +block.nuke_fstbmb=野火炸弹 +block.nuke_gadget=小玩意 +block.nuke_man=胖子 +block.nuke_mike=常春藤迈克 +block.nuke_n2=N2炸弹 +block.nuke_n45=N45水雷 +block.nuke_prototype=原型 +block.nuke_solinium=蔚蓝洗礼 +block.nuke_tsar=沙皇炸弹 +block.oil_duct=输油管 +block.oil_duct_solid=粗输油管 +block.oil_pipe=原油抽取管 +block.oil_spill=泄漏的原油 +block.ore_alexandrite=亚历山大变石矿 +block.ore_aluminium=铝矿石 +block.ore_asbestos=石棉矿 +block.ore_australium=奥斯矿石 +block.ore_basalt_asbestos=富含石棉的玄武岩 +block.ore_basalt_fluorite=富含氟石的玄武岩 +block.ore_basalt_gem=富含宝石的玄武岩 +block.ore_basalt_molysite=富含氯化铁的玄武岩 +block.ore_basalt_sulfur=富含硫的玄武岩 +block.ore_bedrock=基岩矿石 +block.ore_bedrock_coltan=基岩钶钽铁矿 +block.ore_bedrock_oil=基岩油层 +block.ore_beryllium=铍矿石 +block.ore_cinnebar=朱砂矿石 +block.ore_coal_oil=含油煤矿石 +block.ore_coal_oil_burning=燃烧的含油煤矿石 +block.ore_cobalt=钴矿石 +block.ore_coltan=钶钽铁矿 +block.ore_copper=铜矿石 +block.ore_daffergon=达夫贡矿石 +block.ore_depth_borax=深层硼砂矿 +block.ore_depth_cinnebar=深层朱砂矿石 +block.ore_depth_nether_neodymium=深层钕矿石 +block.ore_depth_zirconium=深层锆矿石 +block.ore_fluorite=氟石矿石 +block.ore_gneiss_asbestos=石棉矿页岩 +block.ore_gneiss_copper=铜矿页岩 +block.ore_gneiss_gas=气页岩 +block.ore_gneiss_gold=金矿页岩 +block.ore_gneiss_iron=铁矿页岩 +block.ore_gneiss_lithium=锂矿页岩 +block.ore_gneiss_rare=稀土矿页岩 +block.ore_gneiss_schrabidium=Sa326矿页岩 +block.ore_gneiss_uranium=铀矿页岩 +block.ore_gneiss_uranium_scorched=烧焦的铀矿页岩 +block.ore_lead=铅矿石 +block.ore_lignite=褐煤矿石 +block.ore_meteor.aluminium=铝矿陨石 +block.ore_meteor.cobalt=钴矿陨石 +block.ore_meteor.copper=铜矿陨石 +block.ore_meteor.iron=铁矿陨石 +block.ore_meteor.rareearth=稀土矿陨石 +block.ore_meteor_aluminium=铝矿陨石 +block.ore_meteor_copper=铜矿陨石 +block.ore_meteor_lead=铅矿陨石 +block.ore_meteor_lithium=锂矿陨石 +block.ore_meteor_starmetal=星辉矿陨石 +block.ore_meteor_sulfur=硫磺矿陨石 +block.ore_meteor_thorium=钍矿陨石 +block.ore_meteor_titanium=钛矿陨石 +block.ore_meteor_tungsten=钨矿陨石 +block.ore_meteor_uranium=铀矿陨石 +block.ore_nether_coal=燃烧下界煤矿 +block.ore_nether_cobalt=下界钴矿石 +block.ore_nether_fire=磷矿石 +block.ore_nether_plutonium=下界钚矿石 +block.ore_nether_schrabidium=下界Sa326矿石 +block.ore_nether_smoldering=阴燃下界岩 +block.ore_nether_sulfur=下界硫磺矿石 +block.ore_nether_tungsten=下界钨矿石 +block.ore_nether_uranium=下界铀矿石 +block.ore_nether_uranium_scorched=烧焦的下界铀矿石 +block.ore_niter=硝石矿石 +block.ore_oil=油岩 +block.ore_oil_empty=空油岩 +block.ore_oil_sand=沥青砂 +block.ore_random=%s 矿 +block.ore_rare=稀土矿石 +block.ore_reiium=雷恩矿石 +block.ore_schrabidium=Sa326矿石 +block.ore_sellafield_diamond=放射性熔融钻石矿 +block.ore_sellafield_emerald=放射性熔融绿宝石矿 +block.ore_sellafield_radgem=富含宝石的放射性熔融物 +block.ore_sellafield_schrabidium=放射性熔融Sa326矿石 +block.ore_sellafield_uranium_scorched=放射性熔融烧焦铀矿 +block.ore_sulfur=硫磺矿石 +block.ore_tektite_osmiridium=渗锇熔融石 +block.ore_thorium=钍矿石 +block.ore_tikite=赛瑞克矿石 +block.ore_titanium=钛矿石 +block.ore_tungsten=钨矿石 +block.ore_unobtainium=难得素矿石 +block.ore_uranium=铀矿石 +block.ore_uranium_scorched=烧焦的铀矿石 +block.ore_verticium=韦德赛矿石 +block.ore_volcano=地热裂缝 +block.ore_weidanium=魏丹矿石 +block.part_emitter=装饰性粒子发射器 +block.pedestal=物品基座 +block.pink_barrel=煤油桶 +block.pink_log=粉色原木 +block.pink_planks=粉色木板 +block.pink_slab=粉色木半砖 +block.pink_stairs=粉色木台阶 +block.piston_inserter=插入器 +block.piston_inserter.desc=可以使用自动化接收一件物品$使用红石,它会将物品插入钻孔石墨中$钻孔石墨的物品都会被推出一格$插入器与钻孔石墨之间需要有一格空气 +block.plant_dead=死亡植物 +block.plant_flower.cd0=芥子柳 +block.plant_flower.cd1=芥子柳 +block.plant_flower.foxglove=毛地黄 +block.plant_flower.nightshade=颠茄 +block.plant_flower.tobacco=烟草 +block.plant_flower.weed=大麻 +block.plant_reeds=芦苇 +block.plant_tall.cd2=芥子柳 +block.plant_tall.cd3=芥子柳 +block.plant_tall.cd4=芥子柳(成熟) +block.plant_tall.weed=大麻 +block.plasma=等离子 +block.plasma_heater=等离子加热器 +block.plushie=%s布娃娃 +block.pole_satellite_receiver=卫星天线 +block.pole_top=天线顶部 +block.press_preheater=锻压机压力预热器 +block.pribris=RBMK石墨式反应堆残骸 +block.pribris_burning=燃烧的RBMK反应堆残骸 +block.pribris_digamma=发黑的RBMK反应堆残骸 +block.pribris_radiating=阴燃的RBMK反应堆残骸 +block.pump_electric=电动地下水泵 +block.pump_electric.desc=用电力抽取地下水$产水量高达10000mB/t$需要放置在Y:70以下 +block.pump_steam=蒸汽动力地下水泵 +block.pump_steam.desc=使用蒸汽抽取地下水$产水量高达1000mB/t$需要放置在Y:70以下 +block.pwr_block=PWR压水反应堆 +block.pwr_casing=PWR压力容器 +block.pwr_casing.desc=需要覆盖反应堆的所有内部零件以形成$位置:外壳 +block.pwr_channel=PWR冷却剂通道 +block.pwr_channel.desc=传导热量以加热冷却剂$位置:任意 +block.pwr_control=PWR控制棒 +block.pwr_control.desc=允许控制连接的燃料棒$放置:各燃料棒连线网格之间 +block.pwr_controller=PWR控制器 +block.pwr_controller.desc=PWR的接入终端$位置:外壳,每个反应堆只要一个$右键单击以组装反应堆 +block.pwr_fuel=PWR燃料棒 +block.pwr_fuel.desc=增加压水堆燃料容量$位置:网格,用于增加反应效率 +block.pwr_heatex=PWR换热器 +block.pwr_heatex.desc=将核心热量转移到外壳$位置:任意 +block.pwr_heatsink=PWR热容器 +block.pwr_heatsink.desc=增加5%%的核心热容$略微降低冷却剂通道和换热器的效率$位置:任意 +block.pwr_neutron_source=PWR中子源 +block.pwr_neutron_source.desc=向堆芯添加20个中子通量$位置:任意$中子通量只有在连接打开时才能到达燃料棒 +block.pwr_port=PWR接入端口 +block.pwr_port.desc=允许物品和液体交换$位置:组件 +block.pwr_reflector=PWR中子反射器 +block.pwr_reflector.desc=将中子通量反射回燃料棒$位置:网格,用于增加反应速率$可作为外壳材料 +block.rad_lava_block=放射性火山熔岩 +block.radar_screen=雷达显示屏 +block.radio_telex=电报机 +block.radio_torch_counter=无线红石物品计数器 +block.radio_torch_counter.desc=可在平坦表面或与比较器兼容的方块上放置$根据匹配物品的数量发出信号 +block.radio_torch_logic=无线红石逻辑接收器 +block.radio_torch_logic.desc=可在平坦表面或与比较器兼容的方块上放置$将红石信号与条件一一对应,并按照设定的顺序检测$输入的数值或字符串会与常量进行比较 +block.radio_torch_receiver=无线红石信号接收器 +block.radio_torch_receiver.desc=可在平坦表面或与比较器兼容的方块上放置 +block.radio_torch_sender=无线红石信号发射器 +block.radio_torch_sender.desc=可在平坦表面或比较器兼容的方块上放置$读取红石信号或比较器输入 +block.radiobox=无线怪物清除箱 +block.radiorec=坏掉的收音机 +block.rail_booster=高速动力轨道 +block.rail_highspeed=高速轨道 +block.rail_large_buffer=标准轨距缓冲停止轨道(5m) +block.rail_large_curve=标准轨距弯曲轨道(5m) +block.rail_large_curve_7=标准轨距弯曲轨道(7m) +block.rail_large_curve_9=标准轨距弯曲轨道(9m) +block.rail_large_ramp=标准轨距坡道铁轨(5m) +block.rail_large_straight=标准轨距铁轨(5m) +block.rail_large_straight_short=标准轨距铁轨(1m) +block.rail_large_switch=标准轨距铁路道岔(15m 左转) +block.rail_large_switch_flipped=标准轨距铁路道岔(15m 右转) +block.rail_narrow=窄轨距轨道 +block.rail_wood=木制轨道 +block.rbmk_absorber=RBMK反应堆硼中子吸收器 +block.rbmk_blank=RBMK反应堆结构柱 +block.rbmk_boiler=RBMK反应堆蒸汽管道 +block.rbmk_console=RBMK石墨式反应堆控制台 +block.rbmk_cooler=RBMK冷却器 +block.rbmk_control=RBMK反应堆控制棒 +block.rbmk_control_auto=RBMK反应堆自动控制棒 +block.rbmk_control_mod=RBMK反应堆慢化控制棒 +block.rbmk_crane_console=RBMK起重机控制台 +block.rbmk_heater=RBMK流体加热器 +block.rbmk_heatex=RBMK换热器 +block.rbmk_loader=RBMK反应堆蒸汽导出器 +block.rbmk_loader.desc=让RBMK反应堆在底部同时拥有水接口和蒸汽接口$在RBMK蒸汽管道下方放置水管道,再在下面放置蒸汽导出器$最后将管道连接至蒸汽导出器即可 +block.rbmk_moderator=RBMK反应堆石墨慢化剂 +block.rbmk_outgasser=RBMK反应堆辐照通道 +block.rbmk_reflector=RBMK反应堆碳化钨中子反射器 +block.rbmk_rod=RBMK反应堆燃料棒 +block.rbmk_rod_mod=RBMK反应堆慢化燃料棒 +block.rbmk_rod_reasim=RBMK反应堆燃料棒(ReaSim) +block.rbmk_rod_reasim_mod=RBMK反应堆慢化燃料棒(ReaSim) +block.rbmk_steam_inlet=RBMK ReaSim进水口 +block.rbmk_steam_inlet.desc=当启用ReaSim锅炉时向反应堆内输入水$从侧面连接至反应堆结构 +block.rbmk_steam_outlet=RBMK ReaSim蒸汽出口 +block.rbmk_steam_outlet.desc=当启用ReaSim锅炉时从反应堆内输出超热蒸汽$从侧面连接至反应堆结构 +block.rbmk_storage=RBMK燃料棒存储棒 +block.reactor_computer=反应堆控制器 +block.reactor_conductor=反应堆锅炉 +block.reactor_control=控制棒 +block.reactor_ejector=反应堆废料排出器 +block.reactor_element=反应堆室 +block.reactor_hatch=反应堆端口 +block.reactor_inserter=反应堆燃料插入器 +block.red_barrel=炸药桶 +block.red_cable=紫铜电线 +block.red_cable_classic=紫铜电缆(经典型) +block.red_cable_gauge=功率计 +block.red_cable_gauge.desc=显示每刻在网络中流动的电力$的电缆$由储能方块连接的拆分网络被视为一个共享网络。 +block.red_cable_paintable=可涂漆紫铜线 +block.red_connector=电力连接器 +block.red_pylon=电线杆 +block.red_pylon_large=大型输电塔 +block.red_pylon_medium_steel=中型钢制电线杆 +block.red_pylon_medium_steel_transformer=中型钢制电线杆(带变压器) +block.red_pylon_medium_wood=中型木制电线杆 +block.red_pylon_medium_wood_transformer=中型木制电线杆(带变压器) +block.red_wire_coated=密封紫铜电缆 +block.reinforced_brick=强化石头 +block.reinforced_brick_stairs=强化石头楼梯 +block.reinforced_ducrete=加固高密度贫铀混凝土 +block.reinforced_glass=强化玻璃 +block.reinforced_glass_pane=强化玻璃窗 +block.reinforced_lamp_off=强化红石灯 +block.reinforced_lamp_on=强化红石灯 +block.reinforced_light=强化萤石 +block.reinforced_sand=强化砂石 +block.reinforced_stone=致密石头 +block.reinforced_stone_stairs=致密石头楼梯 +block.reinforced_laminate=强化夹层玻璃 +block.reinforced_laminate_pane=强化夹层隔板 +block.rejuvinator=再生装置 +block.residue=云残留 +block.safe=保险箱 +block.sand_boron=硼沙 +block.sand_boron_layer=硼沙层 +block.sand_dirty=油砂 +block.sand_dirty_red=红色油砂 +block.sand_gold=金沙 +block.sand_gold198=金-198沙 +block.sand_lead=铅沙 +block.sand_polonium=钋沙 +block.sand_quartz=石英沙 +block.sand_uranium=铀沙 +block.sat_dock=卸货平台 +block.sat_foeq=实验型核能PEAF-Mk.I FOEQ Duna探测器[装饰块] +block.sat_laser=轨道死光炮[装饰块] +block.sat_mapper=地表测绘卫星[装饰块] +block.sat_radar=雷达探测卫星[装饰块] +block.sat_resonator=X晶体共振卫星[装饰块] +block.sat_scanner=绘测和资源探测卫星[装饰块] +block.schrabidic_block=Sa酸 +block.seal_controller=发射井舱门开关 +block.seal_frame=发射井舱门框架 +block.seal_hatch=发射井舱门 +block.sellafield.0=放射性熔融凝固物 +block.sellafield.1=高温放射性熔融凝固物 +block.sellafield.2=沸腾的放射性熔融凝固物 +block.sellafield.3=灼热的放射性熔融凝固物 +block.sellafield.4=地狱般的放射性熔融凝固物 +block.sellafield.5=放射性熔融凝固物核心 +block.sellafield_bedrock=基岩放射性熔融凝固物 +block.sellafield_slaked=消沉的放射性熔融凝固物 +block.semtex=塞姆汀塑胶炸药 +block.silo_hatch=发射井舱门 +block.silo_hatch_large=大型发射井舱门 +block.sliding_blast_door=滑动防爆门 +block.solar_mirror=定日镜 +block.soyuz_capsule=货物着陆舱 +block.soyuz_launcher=联盟号发射平台 +block.spikes=地刺 +block.snowglobe=雪景球 +block.spotlight_incandescent=罩灯 +block.spotlight_fluoro=荧光灯 +block.spotlight_halogen=卤素泛光灯 +block.stalactite.asbestos=石棉钟乳石 +block.stalactite.sulfur=含硫钟乳石 +block.stalagmite.asbestos=石棉石笋 +block.stalagmite.sulfur=含硫石笋 +block.steel_beam=钢梁 +block.steel_corner=钢墙角 +block.steel_grate=钢格栅 +block.steel_grate_wide=物品格栅 +block.steel_grate_wide.desc=只会让物品和经验球掉落下去 +block.steel_poles=钢杆 +block.steel_roof=钢天花顶 +block.steel_scaffold=钢脚手架 +block.steel_wall=钢墙 +block.stone_cracked=破碎的石头 +block.stone_depth=深层岩石 +block.stone_depth_nether=下界深层岩石 +block.stone_gneiss=石墨页岩 +block.stone_keyhole=奇怪的石头 +block.stone_porous=多孔石 +block.stone_resource.asbestos=温石棉 +block.stone_resource.bauxite=铝土矿 +block.stone_resource.hematite=赤铁矿 +block.stone_resource.limestone=石灰石 +block.stone_resource.malachite=孔雀石 +block.stone_resource.sulfur=硫磺石 +block.struct_icf_core=ICF反应堆核心组件 +block.struct_iter_core=聚变反应堆核心组件 +block.struct_launcher=发射台部件 +block.struct_launcher_core=紧凑型发射台核心组件 +block.struct_launcher_core_large=发射台核心组件 +block.struct_plasma_core=等离子加热器核心组件 +block.struct_scaffold=发射台骨架 +block.struct_soyuz_core=联盟号发射器核心组件 +block.struct_watz_core=Watz发电厂核心组件 +block.substation=变电站 +block.sulfuric_acid_block=硫酸 +block.taint=腐质 +block.taint_barrel=IMP残渣桶 +block.tape_recorder=录音机 +block.tektite=熔融石 +block.teleanchor=传送锚 +block.tesla=特斯拉线圈 +block.test_nuke=测试核弹 +block.therm_endo=吸热炸弹 +block.therm_exo=放热炸弹 +block.tile_lab=实验室瓷砖 +block.tile_lab_broken=破损实验室瓷砖 +block.tile_lab_cracked=开裂实验室瓷砖 +block.tnt_ntm=货真价实的TNT +block.toxic_block=绿色软泥 +block.transition_seal=巨型安全门 +block.turret_arty=重炮炮塔“格雷格” +block.turret_cheapo=奇普-加特林哨兵 +block.turret_chekhov=重机枪炮塔“契诃夫的枪” +block.turret_cwis=Mk-15“密集阵”近防系统 +block.turret_flamer=喷火炮塔 +block.turret_friendly=轻机枪炮塔“友好先生” +block.turret_fritz=重型火焰喷射器炮塔“弗里茨” +block.turret_heavy=重型机枪炮塔 +block.turret_himars=火箭炮塔“亨利” +block.turret_howard=双联守门员近防系统“霍华德” +block.turret_howard_damaged=CIWS双联守门员近防系统 \"玛士撒拉\" +block.turret_jeremy=重炮炮塔“杰里米” +block.turret_light=轻型机枪炮塔 +block.turret_maxwell=高能微波炮塔 \"麦克斯韦\" +block.turret_rocket=火箭炮塔 +block.turret_richard=火箭炮塔“理查德” +block.turret_spitfire=目前没有名字[开发中] +block.turret_sentry=哨兵炮塔“布朗” +block.turret_sentry_damaged=哨兵炮塔\"埃德温\" +block.turret_tau=陶子炮塔 +block.turret_tauon=XVL1456原型陶子发射器炮塔\"陶恩\" +block.vacuum=真空 +block.vault_door=避难所防爆门 +block.vent_chlorine=氯气排气口 +block.vent_chlorine_seal=氯气容器 +block.vent_cloud=云排气口 +block.vent_pink_cloud=粉雾排气口 +block.vinyl_tile.large=大型乙烯基瓷砖 +block.vinyl_tile.small=小型乙烯基瓷砖 +block.vitrified_barrel=玻璃化核废料桶 +block.volcanic_lava_block=火山熔岩 +block.volcano_core=火山核心 +block.volcano_rad_core=放射性火山核心 +block.waste_earth=死亡草地 +block.waste_leaves=枯叶 +block.waste_log=烧焦原木 +block.waste_mycelium=发光菌丝 +block.waste_planks=烧焦木板 +block.waste_trinitite=核融玻璃矿石 +block.waste_trinitite_red=红色核融玻璃矿石 +block.watz=Watz发电厂 +block.watz_conductor=Watz电力端口 +block.watz_control=加强控制棒 +block.watz_cooler=Watz反应堆高效冷却器 +block.watz_core=Watz反应堆控制器 +block.watz_element=Watz反应室 +block.watz_end=Watz反应堆稳定元件 +block.watz_end_bolted=Watz反应堆稳定元件(铆接) +block.watz_hatch=Watz反应堆端口 +block.watz_pump=Watz压力泵 +block.yellow_barrel=核废料桶 +block.zirnox_destroyed=损毁的ZIRNOX +block.large_vehicle_door=大型机械门 +block.water_door=水闸门 +block.qe_containment=QE安全门 +block.qe_sliding_door=QE滑动门 +block.round_airlock_door=圆形气闸门 +block.secure_access_door=安全检修门 +block.sliding_seal_door=滑动密封门 +trait.asbestos=石棉 +trait.blinding=致盲 +trait.coal=煤尘 +trait.digamma=迪伽马辐射 +trait.drop=掉落物危险 +trait.explosive=高度易燃/易爆 +trait.furnace=可在核熔炉中工作 %s 次 +trait.heat=提供 %s 热量 +trait.hlParticle=粒子半衰期: %s +trait.hlPlayer=玩家半衰期: %s +trait.hot=自燃/高温 +trait.hydro=与水反应 +trait.radioactive=放射性 +trait.radResistance=辐射抗性: %s +trait.rbmk.coreTemp=核心温度: %s +trait.rbmk.depletion=燃料消耗: %s +trait.rbmk.diffusion=扩散度: %s +trait.rbmk.fluxFunc=中子放射函数: %s +trait.rbmk.funcType=中子放射函数类型: %s +trait.rbmk.heat=每接受一个中子产生的热量: %s +trait.rbmk.melt=熔点: %s +trait.rbmk.neutron.any=所有中子 +trait.rbmk.neutron.fast=快中子 +trait.rbmk.neutron.slow=慢中子 +trait.rbmk.skinTemp=表面温度: %s +trait.rbmk.source=自燃 +trait.rbmk.splitsInto=裂变后释放出: %s +trait.rbmk.splitsWith=裂变需要: %s +trait.rbmk.xenon=氙元素堆积程度: %s +trait.rbmk.xenonBurn=氙元素燃烧函数: %s +trait.rbmk.xenonGen=氙元素产生函数: %s +trait.rbmx.coreTemp=核心熵: %s +trait.rbmx.depletion=衰变: %s +trait.rbmx.diffusion=能量潮涌: %s +trait.rbmx.fluxFunc=F迪伽马粒子放射函数: %s +trait.rbmx.funcType=F迪伽马粒子放射函数类型: %s +trait.rbmx.heat=满功率下每刻产生的热量: %s +trait.rbmx.melt=崩溃深度: %s +trait.rbmk.neutron.any.x=所有非欧几里德形时空平面 +trait.rbmk.neutron.fast.x=椭圆非欧几里德形时空平面 +trait.rbmk.neutron.slow.x=双曲非欧几里德形时空平面 +trait.rbmx.skinTemp=表面熵: %s +trait.rbmx.source=自燃 +trait.rbmx.splitsInto=释放: %s +trait.rbmx.splitsWith=接受: %s +trait.rbmx.xenon=铅元素堆积程度: %s +trait.rbmx.xenonBurn=铅元素寂灭函数: %s +trait.rbmx.xenonGen=铅元素产生函数: %s +trait.tile.cluster=只有在被玩家破坏时才会掉落 +trait.tile.depth=只能被爆炸破坏 +tool.ability.centrifuge=自动离心 +tool.ability.crystallizer=自动结晶 +tool.ability.explosion=爆破 +tool.ability.hammer=范围挖掘 +tool.ability.luck=时运 +tool.ability.mercury=水银提取 +tool.ability.midas=点石成金 +tool.ability.recursion=连锁挖矿 +tool.ability.shredder=自动粉碎 +tool.ability.silktouch=精准采集 +tool.ability.smelter=自动熔炼 +turret.animals=被动目标:%s +turret.arty.artillery=§e火炮模式$最低射程: 250m$最大射程: +turret.arty.cannon=§e炮塔模式$最低射程: 32m$射程: 250m +turret.arty.manual=§e手动模式$射程: +turret.machines=以机械为目标: %s +turret.mobs=以怪物为目标: %s +turret.none=无 +turret.off=关 +turret.on=开 +turret.players=以玩家为目标:%s +upgrade.acid=流体需求量 %s +upgrade.burn=燃烧内部天然气 %smB/t,产能 %sHE/t +upgrade.consumption=消耗 %s +upgrade.coolantConsumption=冷却剂消耗 %s +upgrade.delay=工作时间 %s +upgrade.efficiency=效率 %s +upgrade.fortune=时运 %s +upgrade.overheatChance=过热几率 %s +upgrade.range=范围 %s +upgrade.gui.title=§l接受的升级:§r +upgrade.gui.afterburner=* §d加力燃烧§r:叠加至%s级 +upgrade.gui.effectiveness=* §a效率§r:叠加至%s级 +upgrade.gui.overdrive=* §7超速传动§r:叠加至%s级 +upgrade.gui.power=* §9节能§r:叠加至%s级 +upgrade.gui.speed=* §4速度§r:叠加至%s级 +wavelengths.name.ir=红外线 +wavelengths.name.visible=可见光 +wavelengths.name.uv=紫外线 +wavelengths.name.gamma=伽马射线 +wavelengths.name.drx=迪伽玛 +wavelengths.waveRange.ir= +wavelengths.waveRange.visible= +wavelengths.waveRange.uv= +wavelengths.waveRange.gamma= +wavelengths.waveRange.drx=1916169普朗克长度 +weapon.ability.beheader=斩首 +weapon.ability.bobble=收藏家之运 +weapon.ability.chainsaw=痛苦面\"锯\" +weapon.ability.fire=燃烧 +weapon.ability.radiation=辐射 +weapon.ability.phosphorus=白磷刀刃 +weapon.ability.stun=震撼 +weapon.ability.vampire=吸血 +weapon.elecGun.modeChange=开火模式更改为: +weapon.elecGun.glass_cannon.radio=无线电波 +weapon.elecGun.glass_cannon.micro=微波 +weapon.elecGun.glass_cannon.ir=红外线 +weapon.elecGun.glass_cannon.visible=可见光 +weapon.elecGun.glass_cannon.uv=紫外线 +weapon.elecGun.glass_cannon.xray=X射线 +weapon.elecGun.glass_cannon.gamma=伽马射线 +desc.gui.upgrade=§l可接受的升级:§r +desc.gui.upgrade.afterburner=*§d加力燃烧§r:堆叠至3级 +desc.gui.upgrade.effectiveness=*§a效率§r:堆叠至3级 +desc.gui.upgrade.overdrive=*§7超速§r:堆叠至3级 +desc.gui.upgrade.power=*§1节能§r:堆叠至3级 +desc.gui.upgrade.speed=*§4速度§r:堆叠至3级 diff --git a/src/main/resources/assets/hbm/models/machines/rotary_furnace.obj b/src/main/resources/assets/hbm/models/machines/rotary_furnace.obj new file mode 100644 index 000000000..20591f327 --- /dev/null +++ b/src/main/resources/assets/hbm/models/machines/rotary_furnace.obj @@ -0,0 +1,3893 @@ +# Blender v2.79 (sub 0) OBJ File: 'rotary_furnace.blend' +# www.blender.org +o Piston +v -0.375000 2.000000 1.125000 +v -0.375000 2.000000 1.875000 +v 0.375000 2.000000 1.875000 +v 0.375000 2.000000 1.125000 +v -0.375000 3.000000 1.125000 +v -0.375000 3.000000 1.875000 +v 0.375000 3.000000 1.875000 +v 0.375000 3.000000 1.125000 +v -0.500000 3.000000 1.000000 +v -0.500000 3.000000 2.000000 +v 0.500000 3.000000 2.000000 +v 0.500000 3.000000 1.000000 +v -0.500000 3.250000 1.000000 +v -0.500000 3.250000 2.000000 +v 0.500000 3.250000 2.000000 +v 0.500000 3.250000 1.000000 +vt 0.681035 0.815217 +vt 0.620690 0.826087 +vt 0.629310 0.815217 +vt 0.741379 0.847826 +vt 0.689655 0.934783 +vt 0.689655 0.847826 +vt 0.844828 0.847826 +vt 0.793103 0.934783 +vt 0.793103 0.847826 +vt 0.741379 0.934783 +vt 0.896552 0.847826 +vt 0.844828 0.934783 +vt 0.758621 0.826087 +vt 0.689655 0.847826 +vt 0.689655 0.826087 +vt 0.629310 0.750000 +vt 0.689655 0.739130 +vt 0.681035 0.750000 +vt 0.620690 0.739130 +vt 0.620690 0.847826 +vt 0.689655 0.934783 +vt 0.620690 0.934783 +vt 0.896552 0.826087 +vt 0.827586 0.847826 +vt 0.827586 0.826087 +vt 0.758621 0.847826 +vt 0.896552 0.934783 +vt 0.896552 0.847826 +vn 0.0000 -1.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 1.0000 0.0000 +s off +f 8/1/1 11/2/1 7/3/1 +f 4/4/2 7/5/2 3/6/2 +f 2/7/3 5/8/3 1/9/3 +f 1/9/4 8/10/4 4/4/4 +f 3/11/5 6/12/5 2/7/5 +f 9/13/4 16/14/4 12/15/4 +f 6/16/1 9/17/1 5/18/1 +f 5/18/1 12/15/1 8/1/1 +f 7/3/1 10/19/1 6/16/1 +f 15/20/6 13/21/6 14/22/6 +f 11/23/5 14/24/5 10/25/5 +f 12/15/2 15/20/2 11/2/2 +f 10/25/3 13/26/3 9/13/3 +f 8/1/1 12/15/1 11/2/1 +f 4/4/2 8/10/2 7/5/2 +f 2/7/3 6/12/3 5/8/3 +f 1/9/4 5/8/4 8/10/4 +f 3/11/5 7/27/5 6/12/5 +f 9/13/4 13/26/4 16/14/4 +f 6/16/1 10/19/1 9/17/1 +f 5/18/1 9/17/1 12/15/1 +f 7/3/1 11/2/1 10/19/1 +f 15/20/6 16/14/6 13/21/6 +f 11/23/5 15/28/5 14/24/5 +f 12/15/2 16/14/2 15/20/2 +f 10/25/3 14/24/3 13/26/3 +o Furnace +v -1.500000 0.000000 2.500000 +v 1.500000 0.000000 2.500000 +v -1.500000 0.000000 -2.500000 +v 1.500000 0.000000 -2.500000 +v 1.500000 0.750000 -0.500000 +v -1.500000 0.500000 2.500000 +v 1.500000 0.500000 2.500000 +v 1.500000 0.250000 -0.500000 +v -1.500000 0.500000 0.500000 +v 1.500000 0.500000 0.500000 +v 1.500000 1.000000 0.500000 +v 1.500000 1.000000 -2.500000 +v -1.500000 1.000000 -2.500000 +v -1.500000 1.000000 0.500000 +v -1.250000 1.000000 -0.500000 +v 1.250000 1.000000 -0.500000 +v -1.250000 1.000000 -1.500000 +v 1.250000 1.000000 -1.500000 +v 0.500000 1.000000 0.250000 +v 0.500000 1.000000 -2.250000 +v -0.500000 1.000000 0.250000 +v -0.500000 1.000000 -2.250000 +v -1.250000 4.000000 -0.500000 +v 1.250000 4.000000 -0.500000 +v -1.250000 4.000000 -1.500000 +v 1.250000 4.000000 -1.500000 +v 0.500000 4.000000 0.250000 +v 0.500000 4.000000 -2.250000 +v -0.500000 4.000000 0.250000 +v -0.500000 4.000000 -2.250000 +v -0.500000 4.500000 -1.500000 +v -0.500000 4.500000 -0.500000 +v 0.500000 4.500000 -1.500000 +v 0.500000 4.500000 -0.500000 +v 0.500000 1.000000 0.500000 +v 1.250000 1.000000 0.500000 +v 0.500000 1.000000 0.250000 +v 1.250000 1.000000 -0.500000 +v 0.500000 3.500000 0.500000 +v 1.250000 3.500000 0.500000 +v 0.500000 3.500000 0.250000 +v 1.250000 3.500000 -0.500000 +v -0.500000 5.000000 -1.500000 +v -0.500000 5.000000 -0.500000 +v 0.500000 5.000000 -1.500000 +v 0.500000 5.000000 -0.500000 +v 0.500000 4.750000 -1.500000 +v 0.500000 4.926777 -1.426777 +v 0.500000 5.000000 -1.250000 +v 0.500000 4.926777 -1.073223 +v 0.500000 4.750000 -1.000000 +v 0.500000 4.573223 -1.073223 +v 0.500000 4.500000 -1.250000 +v 0.500000 4.573223 -1.426777 +v 0.625000 4.750000 -1.500000 +v 0.625000 4.926777 -1.426777 +v 0.625000 5.000000 -1.250000 +v 0.625000 4.926777 -1.073223 +v 0.625000 4.750000 -1.000000 +v 0.625000 4.573223 -1.073223 +v 0.625000 4.500000 -1.250000 +v 0.625000 4.573223 -1.426777 +v 0.801777 4.676777 -1.500000 +v 0.926777 4.801777 -1.426777 +v 0.978553 4.853553 -1.250000 +v 0.926777 4.801777 -1.073223 +v 0.801777 4.676777 -1.000000 +v 0.676776 4.551776 -1.073223 +v 0.676776 4.551776 -1.426777 +v 0.875000 4.500000 -1.500000 +v 1.051777 4.500000 -1.426777 +v 1.125000 4.500000 -1.250000 +v 1.051777 4.500000 -1.073223 +v 0.875000 4.500000 -1.000000 +v 0.698223 4.500000 -1.073223 +v 0.698223 4.500000 -1.426777 +v 0.625000 4.000000 -1.250000 +v 0.875000 4.000000 -1.500000 +v 1.051777 4.000000 -1.426777 +v 1.125000 4.000000 -1.250000 +v 1.051777 4.000000 -1.073223 +v 0.875000 4.000000 -1.000000 +v 0.698223 4.000000 -1.073223 +v 0.698223 4.000000 -1.426777 +v 0.500000 4.750000 -1.000000 +v 0.500000 4.926777 -0.926777 +v 0.500000 5.000000 -0.750000 +v 0.500000 4.926777 -0.573223 +v 0.500000 4.750000 -0.500000 +v 0.500000 4.573223 -0.573223 +v 0.500000 4.500000 -0.750000 +v 0.500000 4.573223 -0.926777 +v 0.625000 4.750000 -1.000000 +v 0.625000 4.926777 -0.926777 +v 0.625000 5.000000 -0.750000 +v 0.625000 4.926777 -0.573223 +v 0.625000 4.750000 -0.500000 +v 0.625000 4.573223 -0.573223 +v 0.625000 4.500000 -0.750000 +v 0.625000 4.573223 -0.926777 +v 0.801777 4.676777 -1.000000 +v 0.926777 4.801777 -0.926777 +v 0.978553 4.853553 -0.750000 +v 0.926777 4.801777 -0.573223 +v 0.801777 4.676777 -0.500000 +v 0.676776 4.551776 -0.573223 +v 0.676776 4.551776 -0.926777 +v 0.875000 4.500000 -1.000000 +v 1.051777 4.500000 -0.926777 +v 1.125000 4.500000 -0.750000 +v 1.051777 4.500000 -0.573223 +v 0.875000 4.500000 -0.500000 +v 0.698223 4.500000 -0.573223 +v 0.698223 4.500000 -0.926777 +v 0.625000 4.000000 -0.750000 +v 0.875000 4.000000 -1.000000 +v 1.051777 4.000000 -0.926777 +v 1.125000 4.000000 -0.750000 +v 1.051777 4.000000 -0.573223 +v 0.875000 4.000000 -0.500000 +v 0.698223 4.000000 -0.573223 +v 0.698223 4.000000 -0.926777 +v 1.125000 3.000000 0.500000 +v 1.051777 3.176777 0.500000 +v 0.875000 3.250000 0.500000 +v 0.698223 3.176777 0.500000 +v 0.625000 3.000000 0.500000 +v 0.698223 2.823223 0.500000 +v 0.875000 2.750000 0.500000 +v 1.051777 2.823223 0.500000 +v 1.125000 3.000000 0.625000 +v 1.051777 3.176777 0.625000 +v 0.875000 3.250000 0.625000 +v 0.698223 3.176777 0.625000 +v 0.625000 3.000000 0.625000 +v 0.698223 2.823223 0.625000 +v 0.875000 2.750000 0.625000 +v 1.051777 2.823223 0.625000 +v 1.125000 2.926777 0.801777 +v 1.051777 3.051777 0.926777 +v 0.875000 3.103553 0.978554 +v 0.698223 3.051777 0.926777 +v 0.625000 2.926777 0.801777 +v 0.698223 2.801776 0.676777 +v 1.051777 2.801776 0.676777 +v 1.125000 2.750000 0.875000 +v 1.051777 2.750000 1.051777 +v 0.875000 2.750000 1.125000 +v 0.698223 2.750000 1.051777 +v 0.625000 2.750000 0.875000 +v 0.698223 2.750000 0.698223 +v 1.051777 2.750000 0.698223 +v 0.875000 1.000000 0.625000 +v 1.125000 1.000000 0.875000 +v 1.051777 1.000000 1.051777 +v 0.875000 1.000000 1.125000 +v 0.698223 1.000000 1.051777 +v 0.625000 1.000000 0.875000 +v 0.698223 1.000000 0.698223 +v 1.051777 1.000000 0.698223 +v 0.875000 0.646447 0.771447 +v 1.125000 0.823223 0.948224 +v 1.051777 0.948223 1.073224 +v 0.698223 0.948223 1.073224 +v 0.625000 0.823223 0.948224 +v 0.698223 0.698223 0.823223 +v 1.051777 0.698223 0.823223 +v 0.875000 0.500000 1.125000 +v 1.125000 0.750000 1.125000 +v 1.051777 0.926777 1.125000 +v 0.698223 0.926777 1.125000 +v 0.625000 0.750000 1.125000 +v 0.698223 0.573223 1.125000 +v 1.051777 0.573223 1.125000 +v 1.125000 2.250000 0.500000 +v 1.051777 2.426777 0.500000 +v 0.875000 2.500000 0.500000 +v 0.698223 2.426777 0.500000 +v 0.625000 2.250000 0.500000 +v 0.698223 2.073223 0.500000 +v 0.875000 2.000000 0.500000 +v 1.051777 2.073223 0.500000 +v 1.125000 2.250000 0.875000 +v 1.051777 2.426777 0.875000 +v 0.875000 2.500000 0.875000 +v 0.698223 2.426777 0.875000 +v 0.625000 2.250000 0.875000 +v 0.698223 2.073223 0.875000 +v 0.875000 2.000000 0.875000 +v 1.051777 2.073223 0.875000 +v 1.125000 1.500000 0.500000 +v 1.051777 1.676777 0.500000 +v 0.875000 1.750000 0.500000 +v 0.698223 1.676777 0.500000 +v 0.625000 1.500000 0.500000 +v 0.698223 1.323223 0.500000 +v 0.875000 1.250000 0.500000 +v 1.051777 1.323223 0.500000 +v 1.125000 1.500000 0.875000 +v 1.051777 1.676777 0.875000 +v 0.875000 1.750000 0.875000 +v 0.698223 1.676777 0.875000 +v 0.625000 1.500000 0.875000 +v 0.698223 1.323223 0.875000 +v 0.875000 1.250000 0.875000 +v 1.051777 1.323223 0.875000 +v -0.926777 4.801777 -0.926776 +v -0.978554 4.853553 -0.750000 +v -0.926777 4.801777 -0.573223 +v -0.801777 4.676777 -0.500000 +v -0.625000 4.573223 -0.573223 +v -0.625000 4.500000 -0.750000 +v -0.625000 4.573223 -0.926776 +v -0.625000 4.750000 -1.000000 +v -1.500000 0.500000 2.250000 +v -1.250000 0.500000 2.250000 +v -1.500000 0.500000 1.750000 +v -1.250000 0.500000 1.750000 +v -1.500000 0.750000 1.750000 +v -1.500000 0.750000 2.250000 +v -1.250000 0.750000 2.250000 +v -1.250000 0.750000 1.750000 +v -1.250000 0.500000 2.187500 +v 0.187500 0.500000 2.187500 +v -1.250000 0.500000 1.812500 +v 0.187500 0.500000 1.812500 +v -1.250000 0.687500 1.812500 +v -1.250000 0.687500 2.187500 +v -0.187500 0.687500 2.187500 +v -0.187500 0.687500 1.812500 +v -0.625000 4.926777 -0.926776 +v -0.625000 5.000000 -0.750000 +v -0.625000 4.926777 -0.573223 +v -0.625000 4.750000 -0.500000 +v -0.500000 4.573223 -0.573223 +v -0.500000 4.500000 -0.750000 +v -0.500000 4.573223 -0.926776 +v -0.500000 4.750000 -1.000000 +v -0.500000 0.500000 2.000000 +v 0.500000 0.500000 2.000000 +v -0.500000 0.500000 1.000000 +v 0.500000 0.500000 1.000000 +v -0.500000 2.000000 1.000000 +v -0.500000 2.000000 2.000000 +v 0.500000 2.000000 2.000000 +v 0.500000 2.000000 1.000000 +v 0.875000 1.000000 1.250000 +v 0.875000 0.500000 1.250000 +v 1.125000 0.750000 1.250000 +v 1.051777 0.926777 1.250000 +v 0.698223 0.926777 1.250000 +v 0.625000 0.750000 1.250000 +v 0.698223 0.573223 1.250000 +v 1.051777 0.573223 1.250000 +v 0.801777 1.000000 1.426777 +v 0.801777 0.500000 1.426777 +v 0.978553 0.750000 1.603553 +v 0.926777 0.926777 1.551777 +v 0.676777 0.926777 1.301777 +v 0.676777 0.573223 1.301777 +v 0.926777 0.573223 1.551777 +v 0.625000 1.000000 1.500000 +v 0.625000 0.500000 1.500000 +v 0.625000 0.750000 1.750000 +v 0.625000 0.926777 1.676777 +v 0.625000 0.926777 1.323224 +v 0.625000 0.573223 1.323224 +v 0.625000 0.573223 1.676777 +v 0.500000 0.750000 1.250000 +v 0.500000 1.000000 1.500000 +v 0.500000 0.500000 1.500000 +v 0.500000 0.750000 1.750000 +v 0.500000 0.926777 1.676777 +v 0.500000 0.926777 1.323224 +v 0.500000 0.573223 1.323224 +v 0.500000 0.573223 1.676777 +v -0.187500 1.625000 2.187500 +v -0.187500 1.625000 1.812500 +v 0.187500 1.625000 1.812500 +v 0.187500 1.625000 2.187500 +v -0.500000 4.926777 -0.926776 +v -0.500000 5.000000 -0.750000 +v -0.500000 4.926777 -0.573223 +v -0.500000 4.750000 -0.500000 +v 1.500000 0.750000 -1.500000 +v 1.500000 0.250000 -1.500000 +v 0.500000 0.250000 -0.500000 +v 0.500000 0.250000 -1.500000 +v 0.500000 0.750000 -0.500000 +v 0.500000 0.750000 -1.500000 +v 1.375000 0.750000 -0.500000 +v 1.375000 0.250000 -0.500000 +v 1.375000 0.750000 -1.500000 +v 1.375000 0.250000 -1.500000 +v 1.125000 1.000000 -1.625000 +v 0.625000 1.000000 -2.125000 +v 1.125000 1.000000 -2.125000 +v 0.625000 3.500000 -2.125000 +v 1.125000 3.500000 -1.625000 +v 1.125000 3.500000 -2.125000 +v -1.125000 1.000000 -1.625000 +v -1.125000 1.000000 -2.125000 +v -0.625000 1.000000 -2.125000 +v -1.125000 3.500000 -2.125000 +v -1.125000 3.500000 -1.625000 +v -0.625000 3.500000 -2.125000 +v -1.125000 1.000000 0.125000 +v -0.625000 1.000000 0.125000 +v -1.125000 1.000000 -0.375000 +v -1.125000 3.500000 -0.375000 +v -1.125000 3.500000 0.125000 +v -0.625000 3.500000 0.125000 +v -0.801777 4.676777 -1.000000 +v -0.676777 4.551776 -0.926776 +v -0.676777 4.551776 -0.573223 +v -0.875000 4.500000 -0.500000 +v -1.051777 4.500000 -0.573223 +v -1.125000 4.500000 -0.750000 +v -1.051777 4.500000 -0.926776 +v -0.875000 4.500000 -1.000000 +v -0.698224 4.500000 -0.926776 +v -0.698224 4.500000 -0.573223 +v -0.625000 4.000000 -0.750000 +v -0.875000 4.000000 -0.500000 +v -1.051777 4.000000 -0.573223 +v -1.125000 4.000000 -0.750000 +v -1.051777 4.000000 -0.926776 +v -0.875000 4.000000 -1.000000 +v -0.698224 4.000000 -0.926776 +v -0.698224 4.000000 -0.573223 +v -0.500000 4.750000 -1.000000 +v -0.500000 4.926777 -1.073223 +v -0.500000 5.000000 -1.250000 +v -0.500000 4.926777 -1.426777 +v -0.500000 4.750000 -1.500000 +v -0.500000 4.573223 -1.426777 +v -0.500000 4.500000 -1.250000 +v -0.500000 4.573223 -1.073223 +v -0.625000 4.750000 -1.000000 +v -0.625000 4.926777 -1.073223 +v -0.625000 5.000000 -1.250000 +v -0.625000 4.926777 -1.426777 +v -0.625000 4.750000 -1.500000 +v -0.625000 4.573223 -1.426777 +v -0.625000 4.500000 -1.250000 +v -0.625000 4.573223 -1.073223 +v -0.801777 4.676777 -1.000000 +v -0.926777 4.801777 -1.073223 +v -0.978554 4.853553 -1.250000 +v -0.926777 4.801777 -1.426777 +v -0.801777 4.676777 -1.500000 +v -0.676777 4.551776 -1.426777 +v -0.676777 4.551776 -1.073223 +v -0.875000 4.500000 -1.000000 +v -1.051777 4.500000 -1.073223 +v -1.125000 4.500000 -1.250000 +v -1.051777 4.500000 -1.426777 +v -0.875000 4.500000 -1.500000 +v -0.698224 4.500000 -1.426777 +v -0.698224 4.500000 -1.073223 +v -0.625000 4.000000 -1.250000 +v -0.875000 4.000000 -1.000000 +v -1.051777 4.000000 -1.073223 +v -1.125000 4.000000 -1.250000 +v -1.051777 4.000000 -1.426777 +v -0.875000 4.000000 -1.500000 +v -0.698224 4.000000 -1.426777 +v -0.698224 4.000000 -1.073223 +v -0.500000 4.750000 -1.500000 +v -0.426777 4.926777 -1.500000 +v -0.250000 5.000000 -1.500000 +v -0.073224 4.926777 -1.500000 +v -0.000000 4.750000 -1.500000 +v -0.073224 4.573223 -1.500000 +v -0.250000 4.500000 -1.500000 +v -0.426777 4.573223 -1.500000 +v -0.500000 4.750000 -1.625000 +v -0.426777 4.926777 -1.625000 +v -0.250000 5.000000 -1.625000 +v -0.073224 4.926777 -1.625000 +v -0.000000 4.750000 -1.625000 +v -0.073224 4.573223 -1.625000 +v -0.250000 4.500000 -1.625000 +v -0.426777 4.573223 -1.625000 +v -0.500000 4.676777 -1.801777 +v -0.426777 4.801777 -1.926777 +v -0.250000 4.853553 -1.978554 +v -0.073224 4.801777 -1.926777 +v -0.000000 4.676777 -1.801777 +v -0.073224 4.551776 -1.676777 +v -0.426777 4.551776 -1.676777 +v -0.500000 4.500000 -1.875000 +v -0.426777 4.500000 -2.051777 +v -0.250000 4.500000 -2.125000 +v -0.073224 4.500000 -2.051777 +v -0.000000 4.500000 -1.875000 +v -0.073224 4.500000 -1.698223 +v -0.426777 4.500000 -1.698223 +v -0.250000 4.000000 -1.625000 +v -0.500000 4.000000 -1.875000 +v -0.426777 4.000000 -2.051777 +v -0.250000 4.000000 -2.125000 +v -0.073224 4.000000 -2.051777 +v -0.000000 4.000000 -1.875000 +v -0.073224 4.000000 -1.698223 +v -0.426777 4.000000 -1.698223 +v -0.000000 4.750000 -1.500000 +v 0.073223 4.926777 -1.500000 +v 0.250000 5.000000 -1.500000 +v 0.426777 4.926777 -1.500000 +v 0.500000 4.750000 -1.500000 +v 0.426777 4.573223 -1.500000 +v 0.250000 4.500000 -1.500000 +v 0.073223 4.573223 -1.500000 +v -0.000000 4.750000 -1.625000 +v 0.073223 4.926777 -1.625000 +v 0.250000 5.000000 -1.625000 +v 0.426777 4.926777 -1.625000 +v 0.500000 4.750000 -1.625000 +v 0.426777 4.573223 -1.625000 +v 0.250000 4.500000 -1.625000 +v 0.073223 4.573223 -1.625000 +v -0.000000 4.676777 -1.801777 +v 0.073223 4.801777 -1.926777 +v 0.250000 4.853553 -1.978554 +v 0.426777 4.801777 -1.926777 +v 0.500000 4.676777 -1.801777 +v 0.426777 4.551776 -1.676777 +v 0.073223 4.551776 -1.676777 +v -0.000000 4.500000 -1.875000 +v 0.073223 4.500000 -2.051777 +v 0.250000 4.500000 -2.125000 +v 0.426777 4.500000 -2.051777 +v 0.500000 4.500000 -1.875000 +v 0.426777 4.500000 -1.698223 +v 0.073223 4.500000 -1.698223 +v 0.250000 4.000000 -1.625000 +v -0.000000 4.000000 -1.875000 +v 0.073223 4.000000 -2.051777 +v 0.250000 4.000000 -2.125000 +v 0.426777 4.000000 -2.051777 +v 0.500000 4.000000 -1.875000 +v 0.426777 4.000000 -1.698223 +v 0.073223 4.000000 -1.698223 +v 0.073223 4.801777 -0.073223 +v 0.250000 4.853553 -0.021446 +v 0.426777 4.801777 -0.073223 +v 0.500000 4.676777 -0.198223 +v 0.426777 4.573223 -0.375000 +v 0.250000 4.500000 -0.375000 +v 0.073223 4.573223 -0.375000 +v -0.000000 4.750000 -0.375000 +v 0.073223 4.926777 -0.375000 +v 0.250000 5.000000 -0.375000 +v 0.426777 4.926777 -0.375000 +v 0.500000 4.750000 -0.375000 +v 0.426777 4.573223 -0.500000 +v 0.250000 4.500000 -0.500000 +v 0.073223 4.573223 -0.500000 +v -0.000000 4.750000 -0.500000 +v 0.073223 4.926777 -0.500000 +v 0.250000 5.000000 -0.500000 +v 0.426777 4.926777 -0.500000 +v 0.500000 4.750000 -0.500000 +v -0.000000 4.676777 -0.198223 +v 0.073223 4.551776 -0.323223 +v 0.426777 4.551776 -0.323223 +v 0.500000 4.500000 -0.125000 +v 0.426777 4.500000 0.051777 +v 0.250000 4.500000 0.125000 +v 0.073223 4.500000 0.051777 +v -0.000000 4.500000 -0.125000 +v 0.073223 4.500000 -0.301777 +v 0.426777 4.500000 -0.301777 +v 0.250000 4.000000 -0.375000 +v 0.500000 4.000000 -0.125000 +v 0.426777 4.000000 0.051777 +v 0.250000 4.000000 0.125000 +v 0.073223 4.000000 0.051777 +v -0.000000 4.000000 -0.125000 +v 0.073223 4.000000 -0.301777 +v 0.426777 4.000000 -0.301777 +v -0.000000 4.750000 -0.500000 +v -0.073223 4.926777 -0.500000 +v -0.250000 5.000000 -0.500000 +v -0.426777 4.926777 -0.500000 +v -0.500000 4.750000 -0.500000 +v -0.426777 4.573223 -0.500000 +v -0.250000 4.500000 -0.500000 +v -0.073223 4.573223 -0.500000 +v -0.000000 4.750000 -0.375000 +v -0.073223 4.926777 -0.375000 +v -0.250000 5.000000 -0.375000 +v -0.426777 4.926777 -0.375000 +v -0.500000 4.750000 -0.375000 +v -0.426777 4.573223 -0.375000 +v -0.250000 4.500000 -0.375000 +v -0.073223 4.573223 -0.375000 +v -0.000000 4.676777 -0.198223 +v -0.073223 4.801777 -0.073223 +v -0.250000 4.853553 -0.021446 +v -0.426777 4.801777 -0.073223 +v -0.500000 4.676777 -0.198223 +v -0.426777 4.551776 -0.323223 +v -0.073223 4.551776 -0.323223 +v -0.000000 4.500000 -0.125000 +v -0.073223 4.500000 0.051777 +v -0.250000 4.500000 0.125000 +v -0.426777 4.500000 0.051777 +v -0.500000 4.500000 -0.125000 +v -0.426777 4.500000 -0.301777 +v -0.073223 4.500000 -0.301777 +v -0.250000 4.000000 -0.375000 +v -0.000000 4.000000 -0.125000 +v -0.073223 4.000000 0.051777 +v -0.250000 4.000000 0.125000 +v -0.426777 4.000000 0.051777 +v -0.500000 4.000000 -0.125000 +v -0.426777 4.000000 -0.301777 +v -0.073223 4.000000 -0.301777 +v -1.500000 0.500000 1.250000 +v -1.250000 0.500000 1.250000 +v -1.500000 0.500000 0.750000 +v -1.250000 0.500000 0.750000 +v -1.500000 0.750000 0.750000 +v -1.500000 0.750000 1.250000 +v -1.250000 0.750000 1.250000 +v -1.250000 0.750000 0.750000 +v -1.250000 0.500000 1.187500 +v 0.187500 0.500000 1.187500 +v -1.250000 0.500000 0.812500 +v 0.187500 0.500000 0.812500 +v -1.250000 0.687500 0.812500 +v -1.250000 0.687500 1.187500 +v -0.187500 0.687500 1.187500 +v -0.187500 0.687500 0.812500 +v -0.187500 1.625000 1.187500 +v -0.187500 1.625000 0.812500 +v 0.187500 1.625000 0.812500 +v 0.187500 1.625000 1.187500 +v 0.125000 1.375000 -2.250000 +v -0.125000 1.375000 -2.250000 +v 0.125000 1.125000 -2.500000 +v -0.125000 1.125000 -2.500000 +v 0.125000 1.625000 -2.250000 +v -0.125000 1.625000 -2.250000 +v 0.125000 1.375000 -2.500000 +v -0.125000 1.375000 -2.500000 +v 0.125000 1.062500 -2.500000 +v -0.125000 1.062500 -2.500000 +v 0.187500 1.125000 -2.500000 +v 0.187500 1.375000 -2.500000 +v -0.187500 1.125000 -2.500000 +v -0.187500 1.375000 -2.500000 +v 0.125000 1.312500 -2.250000 +v -0.125000 1.312500 -2.250000 +v 0.187500 1.375000 -2.250000 +v 0.187500 1.625000 -2.250000 +v -0.187500 1.375000 -2.250000 +v -0.187500 1.625000 -2.250000 +vt 0.413793 0.000000 +vt 0.068966 0.260870 +vt 0.068966 0.000000 +vt 0.344828 0.282609 +vt 0.413793 0.347826 +vt 0.344828 0.326087 +vt 0.000000 0.347826 +vt 0.034483 0.608696 +vt 0.000000 0.608696 +vt 0.413793 0.608696 +vt 0.482759 0.347826 +vt 0.482759 0.608696 +vt 0.068966 0.782609 +vt 0.137931 0.826087 +vt 0.068966 0.826087 +vt 0.206897 0.652174 +vt 0.413793 0.695652 +vt 0.034483 0.347826 +vt 0.172414 0.608696 +vt 0.206897 0.347826 +vt 0.206897 0.608696 +vt -0.000000 0.782609 +vt -0.000000 0.826087 +vt 0.068966 0.913043 +vt 0.137931 0.913043 +vt 0.172414 0.347826 +vt 0.965517 0.000000 +vt 0.896552 0.260870 +vt 0.896552 0.000000 +vt 0.620690 0.260870 +vt 0.551724 0.000000 +vt 0.620690 0.000000 +vt 0.827586 0.000000 +vt 0.482759 0.260870 +vt 0.482759 0.000000 +vt 0.758621 0.260870 +vt 0.758621 0.000000 +vt 0.689655 0.260870 +vt 0.689655 0.000000 +vt 0.413793 0.260870 +vt 0.413793 0.000000 +vt 0.689655 0.478261 +vt 0.689655 0.413043 +vt 0.741379 0.413043 +vt 0.620690 0.326087 +vt 0.568965 0.326087 +vt 0.620690 0.478261 +vt 0.620690 0.413043 +vt 0.689655 0.326087 +vt 0.741379 0.326087 +vt 0.568965 0.413043 +vt 0.310345 0.695652 +vt 0.241379 0.739130 +vt 0.241379 0.695652 +vt 0.310345 0.739130 +vt 0.241379 0.826087 +vt 0.551724 0.695652 +vt 0.500000 0.717391 +vt 0.500000 0.695652 +vt 0.620690 0.478261 +vt 0.551724 0.478261 +vt 0.500000 0.478261 +vt 0.482759 0.695652 +vt 0.482759 0.478261 +vt 0.344828 0.826087 +vt 0.344828 0.739130 +vt 0.206897 0.739130 +vt 0.206897 0.826087 +vt 0.241379 0.869565 +vt 0.310345 0.826087 +vt 0.310345 0.869565 +vt 0.465517 0.652174 +vt 0.431034 0.630435 +vt 0.465517 0.630435 +vt 0.413793 0.630435 +vt 0.431034 0.652174 +vt 0.413793 0.652174 +vt 0.482759 0.652174 +vt 0.482759 0.630435 +vt 0.431034 0.673913 +vt 0.465517 0.673913 +vt 0.465517 0.608696 +vt 0.431034 0.608696 +vt 0.500000 0.788043 +vt 0.474138 0.695652 +vt 0.500000 0.695652 +vt 0.396552 0.777174 +vt 0.409483 0.869565 +vt 0.396552 0.902174 +vt 0.577586 0.777174 +vt 0.564655 0.869565 +vt 0.564655 0.777174 +vt 0.620690 0.652174 +vt 0.689655 0.739130 +vt 0.620690 0.739130 +vt 0.758621 0.521739 +vt 0.689655 0.652174 +vt 0.689655 0.521739 +vt 0.896552 0.521739 +vt 0.827586 0.652174 +vt 0.827586 0.521739 +vt 0.620690 0.521739 +vt 0.758621 0.652174 +vt 0.465517 0.652174 +vt 0.431034 0.630435 +vt 0.465517 0.630435 +vt 0.500000 0.902174 +vt 0.474138 0.869565 +vt 0.500000 0.869565 +vt 0.474138 0.788043 +vt 0.474138 1.000000 +vt 0.500000 1.000000 +vt 0.474138 0.902174 +vt 0.206897 0.826087 +vt 0.137931 0.782609 +vt 0.206897 0.782609 +vt 0.137931 0.695652 +vt 0.068966 0.695652 +vt 0.275862 0.326087 +vt 0.413793 0.260870 +vt 0.275862 0.282609 +vt 0.206897 0.304348 +vt 0.068966 0.304348 +vt 0.344828 0.326087 +vt 0.275862 0.282609 +vt 0.344828 0.282609 +vt 0.810345 0.260870 +vt 0.775862 0.478261 +vt 0.775862 0.260870 +vt 0.741379 0.478261 +vt 0.741379 0.260870 +vt 0.844828 0.260870 +vt 0.810345 0.478261 +vt 0.810345 0.260870 +vt 0.879310 0.260870 +vt 0.844828 0.478261 +vt 0.913793 0.478261 +vt 0.948276 0.478261 +vt 0.913793 0.521739 +vt 0.879310 0.478261 +vt 0.844828 0.521739 +vt 0.948276 0.260870 +vt 0.913793 0.260870 +vt 0.810345 0.478261 +vt 0.775862 0.521739 +vt 0.879310 0.478261 +vt 0.879310 0.260870 +vt 0.068966 0.695652 +vt 0.068966 0.652174 +vt 0.413793 0.630435 +vt 0.431034 0.652174 +vt 0.413793 0.652174 +vt 0.482759 0.652174 +vt 0.482759 0.630435 +vt 0.431034 0.673913 +vt 0.465517 0.673913 +vt 0.465517 0.608696 +vt 0.431034 0.608696 +vt 0.500000 0.788043 +vt 0.474138 0.695652 +vt 0.500000 0.695652 +vt 0.396552 0.777174 +vt 0.409483 0.869565 +vt 0.396552 0.902174 +vt 0.577586 0.777174 +vt 0.564655 0.869565 +vt 0.564655 0.777174 +vt 0.500000 0.902174 +vt 0.474138 0.869565 +vt 0.500000 0.869565 +vt 0.474138 0.788043 +vt 0.474138 1.000000 +vt 0.500000 1.000000 +vt 0.474138 0.902174 +vt 0.181034 0.875000 +vt 0.198276 0.853261 +vt 0.198276 0.875000 +vt 0.137931 0.826087 +vt 0.155172 0.847826 +vt 0.137931 0.847826 +vt 0.241379 0.826087 +vt 0.224138 0.847826 +vt 0.224138 0.826087 +vt 0.181034 0.853261 +vt 0.198276 0.847826 +vt 0.181034 0.875000 +vt 0.176724 0.853261 +vt 0.202586 0.875000 +vt 0.198276 0.875000 +vt 0.181034 0.847826 +vt 0.202586 0.853261 +vt 0.219828 0.847826 +vt 0.202586 0.826087 +vt 0.219828 0.826087 +vt 0.198276 0.826087 +vt 0.176724 0.847826 +vt 0.181034 0.826087 +vt 0.159483 0.847826 +vt 0.176724 0.826087 +vt 0.202586 0.847826 +vt 0.159483 0.826087 +vt 0.155172 0.826087 +vt 0.965517 0.260870 +vt 0.551724 0.260870 +vt 0.827586 0.260870 +vt 0.551724 0.782609 +vt 0.620690 0.695652 +vt 0.409483 0.777174 +vt 0.577586 0.902174 +vt 0.896552 0.652174 +vt 0.275862 0.326087 +vt 0.409483 0.777174 +vt 0.577586 0.902174 +vt 0.241379 0.847826 +vt 0.176724 0.875000 +vt 0.831897 0.771739 +vt 0.844828 0.760870 +vt 0.844828 0.771739 +vt 0.857759 0.771739 +vt 0.870690 0.760870 +vt 0.870690 0.771739 +vt 0.883621 0.760870 +vt 0.883621 0.771739 +vt 0.793103 0.771739 +vt 0.806035 0.760870 +vt 0.806035 0.771739 +vt 0.818965 0.771739 +vt 0.831897 0.760870 +vt 0.857759 0.760870 +vt 0.896552 0.760870 +vt 0.896552 0.771739 +vt 0.818965 0.760870 +vt 0.831897 0.755435 +vt 0.818965 0.728261 +vt 0.831897 0.728261 +vt 0.857759 0.728261 +vt 0.857759 0.755435 +vt 0.806035 0.733696 +vt 0.818965 0.744565 +vt 0.844828 0.728261 +vt 0.870690 0.728261 +vt 0.870690 0.744565 +vt 0.883621 0.728261 +vt 0.883621 0.733696 +vt 0.870690 0.711957 +vt 0.883621 0.722826 +vt 0.831897 0.701087 +vt 0.857759 0.701087 +vt 0.806035 0.722826 +vt 0.818965 0.711957 +vt 0.844828 0.695652 +vt 0.896552 0.728261 +vt 0.793103 0.728261 +vt 0.806035 0.728261 +vt 0.793103 0.695652 +vt 0.806035 0.652174 +vt 0.806035 0.695652 +vt 0.870690 0.695652 +vt 0.883621 0.652174 +vt 0.883621 0.695652 +vt 0.896552 0.652174 +vt 0.896552 0.695652 +vt 0.818965 0.695652 +vt 0.831897 0.652174 +vt 0.831897 0.695652 +vt 0.857759 0.652174 +vt 0.857759 0.695652 +vt 0.818965 0.652174 +vt 0.844828 0.652174 +vt 0.870690 0.652174 +vt 0.728448 0.771739 +vt 0.741379 0.760870 +vt 0.741379 0.771739 +vt 0.754310 0.771739 +vt 0.767241 0.760870 +vt 0.767241 0.771739 +vt 0.780172 0.760870 +vt 0.780172 0.771739 +vt 0.689655 0.771739 +vt 0.702586 0.760870 +vt 0.702586 0.771739 +vt 0.715517 0.771739 +vt 0.728448 0.760870 +vt 0.754310 0.760870 +vt 0.793103 0.760870 +vt 0.793103 0.771739 +vt 0.715517 0.760870 +vt 0.728448 0.755435 +vt 0.715517 0.728261 +vt 0.728448 0.728261 +vt 0.754310 0.728261 +vt 0.754310 0.755435 +vt 0.715517 0.744565 +vt 0.702586 0.728261 +vt 0.741379 0.728261 +vt 0.767241 0.728261 +vt 0.767241 0.744565 +vt 0.780172 0.728261 +vt 0.780172 0.733696 +vt 0.767241 0.711957 +vt 0.780172 0.722826 +vt 0.715517 0.711957 +vt 0.728448 0.701087 +vt 0.741379 0.695652 +vt 0.754310 0.701087 +vt 0.702586 0.722826 +vt 0.793103 0.728261 +vt 0.702586 0.733696 +vt 0.689655 0.728261 +vt 0.689655 0.695652 +vt 0.702586 0.652174 +vt 0.702586 0.695652 +vt 0.767241 0.695652 +vt 0.780172 0.652174 +vt 0.780172 0.695652 +vt 0.793103 0.652174 +vt 0.793103 0.695652 +vt 0.715517 0.695652 +vt 0.728448 0.652174 +vt 0.728448 0.695652 +vt 0.754310 0.652174 +vt 0.754310 0.695652 +vt 0.715517 0.652174 +vt 0.741379 0.652174 +vt 0.767241 0.652174 +vt 0.935345 0.902174 +vt 0.948276 0.891304 +vt 0.948276 0.902174 +vt 0.961207 0.902174 +vt 0.974138 0.891304 +vt 0.974138 0.902174 +vt 0.987069 0.891304 +vt 0.987069 0.902174 +vt 0.896552 0.902174 +vt 0.909483 0.891304 +vt 0.909483 0.902174 +vt 0.922414 0.902174 +vt 0.935345 0.891304 +vt 0.961207 0.891304 +vt 1.000000 0.891304 +vt 1.000000 0.902174 +vt 0.922414 0.891304 +vt 0.935345 0.885870 +vt 0.922414 0.858696 +vt 0.935345 0.858696 +vt 0.961207 0.858696 +vt 0.961207 0.885870 +vt 0.909483 0.864130 +vt 0.922414 0.875000 +vt 0.948276 0.858696 +vt 0.974138 0.858696 +vt 0.974138 0.875000 +vt 0.987069 0.864130 +vt 0.987069 0.858696 +vt 0.961207 0.831522 +vt 0.974138 0.842391 +vt 0.987069 0.853261 +vt 0.935345 0.831522 +vt 0.948276 0.826087 +vt 0.909483 0.858696 +vt 0.922414 0.842391 +vt 1.000000 0.858696 +vt 0.896552 0.858696 +vt 0.909483 0.853261 +vt 0.896552 0.826087 +vt 0.909483 0.673913 +vt 0.909483 0.826087 +vt 0.974138 0.826087 +vt 0.987069 0.673913 +vt 0.987069 0.826087 +vt 1.000000 0.673913 +vt 1.000000 0.826087 +vt 0.922414 0.826087 +vt 0.935345 0.673913 +vt 0.935345 0.826087 +vt 0.961207 0.673913 +vt 0.961207 0.826087 +vt 0.922414 0.673913 +vt 0.948276 0.673913 +vt 0.974138 0.673913 +vt 0.922414 0.657609 +vt 0.909483 0.641304 +vt 0.922414 0.641304 +vt 0.961207 0.646739 +vt 0.974138 0.641304 +vt 0.974138 0.657609 +vt 0.896552 0.673913 +vt 0.909483 0.668478 +vt 0.987069 0.641304 +vt 0.987069 0.668478 +vt 0.935345 0.646739 +vt 0.935345 0.641304 +vt 1.000000 0.641304 +vt 0.987069 0.614130 +vt 1.000000 0.608696 +vt 0.909483 0.614130 +vt 0.922414 0.625000 +vt 0.961207 0.635870 +vt 0.974138 0.625000 +vt 0.896552 0.641304 +vt 0.935345 0.635870 +vt 0.948276 0.641304 +vt 0.961207 0.641304 +vt 0.948276 0.440217 +vt 0.974138 0.456522 +vt 0.948276 0.456522 +vt 0.948276 0.472826 +vt 0.974138 0.489130 +vt 0.948276 0.489130 +vt 0.974138 0.505435 +vt 0.948276 0.505435 +vt 0.948276 0.391304 +vt 0.974138 0.407609 +vt 0.948276 0.407609 +vt 0.948276 0.423913 +vt 0.974138 0.440217 +vt 0.974138 0.472826 +vt 0.974138 0.521739 +vt 0.948276 0.521739 +vt 0.974138 0.423913 +vt 0.948276 0.309783 +vt 0.974138 0.326087 +vt 0.948276 0.326087 +vt 0.948276 0.342391 +vt 0.974138 0.358696 +vt 0.948276 0.358696 +vt 0.974138 0.375000 +vt 0.948276 0.375000 +vt 0.948276 0.260870 +vt 0.974138 0.277174 +vt 0.948276 0.277174 +vt 0.948276 0.293478 +vt 0.974138 0.309783 +vt 0.974138 0.342391 +vt 0.974138 0.391304 +vt 0.948276 0.391304 +vt 0.974138 0.293478 +vt 0.857759 0.755435 +vt 0.870690 0.728261 +vt 0.870690 0.744565 +vt 0.831897 0.755435 +vt 0.844828 0.728261 +vt 0.844828 0.760870 +vt 0.806035 0.733696 +vt 0.818965 0.728261 +vt 0.818965 0.744565 +vt 0.857759 0.728261 +vt 0.831897 0.728261 +vt 0.806035 0.771739 +vt 0.818965 0.760870 +vt 0.818965 0.771739 +vt 0.883621 0.771739 +vt 0.896552 0.760870 +vt 0.896552 0.771739 +vt 0.844828 0.771739 +vt 0.857759 0.760870 +vt 0.857759 0.771739 +vt 0.831897 0.760870 +vt 0.831897 0.771739 +vt 0.793103 0.771739 +vt 0.806035 0.760870 +vt 0.987069 0.608696 +vt 1.000000 0.597826 +vt 0.909483 0.608696 +vt 0.922414 0.597826 +vt 0.922414 0.608696 +vt 0.961207 0.608696 +vt 0.974138 0.597826 +vt 0.974138 0.608696 +vt 0.935345 0.608696 +vt 0.948276 0.597826 +vt 0.948276 0.608696 +vt 0.896552 0.608696 +vt 0.909483 0.597826 +vt 0.961207 0.597826 +vt 0.987069 0.597826 +vt 0.935345 0.597826 +vt 0.961207 0.592391 +vt 0.948276 0.565217 +vt 0.961207 0.565217 +vt 0.987069 0.592391 +vt 1.000000 0.565217 +vt 1.000000 0.581522 +vt 0.974138 0.565217 +vt 0.935345 0.570652 +vt 0.948276 0.581522 +vt 0.909483 0.570652 +vt 0.896552 0.565217 +vt 0.909483 0.565217 +vt 0.987069 0.565217 +vt 0.974138 0.532609 +vt 0.987069 0.538043 +vt 0.961207 0.538043 +vt 1.000000 0.548913 +vt 0.935345 0.565217 +vt 0.948276 0.548913 +vt 0.909483 0.559783 +vt 0.922414 0.565217 +vt 0.935345 0.559783 +vt 0.948276 0.532609 +vt 0.961207 0.521739 +vt 0.961207 0.532609 +vt 0.987069 0.532609 +vt 1.000000 0.521739 +vt 1.000000 0.532609 +vt 0.974138 0.521739 +vt 0.922414 0.532609 +vt 0.935345 0.521739 +vt 0.935345 0.532609 +vt 0.948276 0.521739 +vt 0.909483 0.532609 +vt 0.922414 0.521739 +vt 0.896552 0.532609 +vt 0.909483 0.521739 +vt 0.987069 0.521739 +vt 0.870690 0.771739 +vt 0.883621 0.760870 +vt 0.870690 0.760870 +vt 0.883621 0.728261 +vt 0.883621 0.733696 +vt 0.870690 0.711957 +vt 0.883621 0.722826 +vt 0.831897 0.701087 +vt 0.857759 0.701087 +vt 0.806035 0.722826 +vt 0.818965 0.711957 +vt 0.844828 0.695652 +vt 0.896552 0.728261 +vt 0.793103 0.728261 +vt 0.806035 0.728261 +vt 0.793103 0.695652 +vt 0.806035 0.652174 +vt 0.806035 0.695652 +vt 0.870690 0.695652 +vt 0.883621 0.652174 +vt 0.883621 0.695652 +vt 0.896552 0.652174 +vt 0.896552 0.695652 +vt 0.818965 0.695652 +vt 0.831897 0.652174 +vt 0.831897 0.695652 +vt 0.857759 0.652174 +vt 0.857759 0.695652 +vt 0.818965 0.652174 +vt 0.844828 0.652174 +vt 0.870690 0.652174 +vt 0.728448 0.771739 +vt 0.741379 0.760870 +vt 0.741379 0.771739 +vt 0.754310 0.771739 +vt 0.767241 0.760870 +vt 0.767241 0.771739 +vt 0.780172 0.760870 +vt 0.780172 0.771739 +vt 0.689655 0.771739 +vt 0.702586 0.760870 +vt 0.702586 0.771739 +vt 0.715517 0.771739 +vt 0.728448 0.760870 +vt 0.754310 0.760870 +vt 0.793103 0.760870 +vt 0.793103 0.771739 +vt 0.715517 0.760870 +vt 0.715517 0.744565 +vt 0.728448 0.728261 +vt 0.728448 0.755435 +vt 0.754310 0.728261 +vt 0.754310 0.755435 +vt 0.702586 0.728261 +vt 0.715517 0.728261 +vt 0.741379 0.728261 +vt 0.767241 0.728261 +vt 0.767241 0.744565 +vt 0.780172 0.728261 +vt 0.780172 0.733696 +vt 0.754310 0.701087 +vt 0.767241 0.711957 +vt 0.780172 0.722826 +vt 0.728448 0.701087 +vt 0.702586 0.722826 +vt 0.715517 0.711957 +vt 0.741379 0.695652 +vt 0.793103 0.728261 +vt 0.702586 0.733696 +vt 0.689655 0.728261 +vt 0.689655 0.695652 +vt 0.702586 0.652174 +vt 0.702586 0.695652 +vt 0.767241 0.695652 +vt 0.780172 0.652174 +vt 0.780172 0.695652 +vt 0.793103 0.652174 +vt 0.793103 0.695652 +vt 0.715517 0.695652 +vt 0.728448 0.652174 +vt 0.728448 0.695652 +vt 0.754310 0.652174 +vt 0.754310 0.695652 +vt 0.715517 0.652174 +vt 0.741379 0.652174 +vt 0.767241 0.652174 +vt 0.831897 0.771739 +vt 0.844828 0.760870 +vt 0.844828 0.771739 +vt 0.857759 0.771739 +vt 0.870690 0.760870 +vt 0.870690 0.771739 +vt 0.883621 0.760870 +vt 0.883621 0.771739 +vt 0.793103 0.771739 +vt 0.806035 0.760870 +vt 0.806035 0.771739 +vt 0.818965 0.771739 +vt 0.831897 0.760870 +vt 0.857759 0.760870 +vt 0.896552 0.760870 +vt 0.896552 0.771739 +vt 0.818965 0.760870 +vt 0.831897 0.755435 +vt 0.818965 0.728261 +vt 0.831897 0.728261 +vt 0.857759 0.728261 +vt 0.857759 0.755435 +vt 0.806035 0.733696 +vt 0.818965 0.744565 +vt 0.844828 0.728261 +vt 0.870690 0.728261 +vt 0.870690 0.744565 +vt 0.883621 0.728261 +vt 0.883621 0.733696 +vt 0.870690 0.711957 +vt 0.883621 0.722826 +vt 0.831897 0.701087 +vt 0.857759 0.701087 +vt 0.806035 0.722826 +vt 0.818965 0.711957 +vt 0.844828 0.695652 +vt 0.896552 0.728261 +vt 0.793103 0.728261 +vt 0.806035 0.728261 +vt 0.793103 0.695652 +vt 0.806035 0.652174 +vt 0.806035 0.695652 +vt 0.870690 0.695652 +vt 0.883621 0.652174 +vt 0.883621 0.695652 +vt 0.896552 0.652174 +vt 0.896552 0.695652 +vt 0.818965 0.695652 +vt 0.831897 0.652174 +vt 0.831897 0.695652 +vt 0.857759 0.652174 +vt 0.857759 0.695652 +vt 0.818965 0.652174 +vt 0.844828 0.652174 +vt 0.870690 0.652174 +vt 0.728448 0.771739 +vt 0.741379 0.760870 +vt 0.741379 0.771739 +vt 0.754310 0.771739 +vt 0.767241 0.760870 +vt 0.767241 0.771739 +vt 0.780172 0.760870 +vt 0.780172 0.771739 +vt 0.689655 0.771739 +vt 0.702586 0.760870 +vt 0.702586 0.771739 +vt 0.715517 0.771739 +vt 0.728448 0.760870 +vt 0.754310 0.760870 +vt 0.793103 0.760870 +vt 0.793103 0.771739 +vt 0.715517 0.760870 +vt 0.728448 0.755435 +vt 0.715517 0.728261 +vt 0.728448 0.728261 +vt 0.754310 0.728261 +vt 0.754310 0.755435 +vt 0.715517 0.744565 +vt 0.702586 0.728261 +vt 0.741379 0.728261 +vt 0.767241 0.744565 +vt 0.767241 0.728261 +vt 0.780172 0.728261 +vt 0.780172 0.733696 +vt 0.754310 0.701087 +vt 0.767241 0.711957 +vt 0.780172 0.722826 +vt 0.728448 0.701087 +vt 0.702586 0.722826 +vt 0.715517 0.711957 +vt 0.741379 0.695652 +vt 0.793103 0.728261 +vt 0.702586 0.733696 +vt 0.689655 0.728261 +vt 0.689655 0.695652 +vt 0.702586 0.652174 +vt 0.702586 0.695652 +vt 0.767241 0.695652 +vt 0.780172 0.652174 +vt 0.780172 0.695652 +vt 0.793103 0.652174 +vt 0.793103 0.695652 +vt 0.715517 0.695652 +vt 0.728448 0.652174 +vt 0.728448 0.695652 +vt 0.754310 0.652174 +vt 0.754310 0.695652 +vt 0.715517 0.652174 +vt 0.741379 0.652174 +vt 0.767241 0.652174 +vt 0.857759 0.755435 +vt 0.870690 0.728261 +vt 0.870690 0.744565 +vt 0.844828 0.760870 +vt 0.831897 0.728261 +vt 0.844828 0.728261 +vt 0.806035 0.733696 +vt 0.818965 0.728261 +vt 0.818965 0.744565 +vt 0.857759 0.728261 +vt 0.831897 0.755435 +vt 0.806035 0.771739 +vt 0.818965 0.760870 +vt 0.818965 0.771739 +vt 0.883621 0.771739 +vt 0.896552 0.760870 +vt 0.896552 0.771739 +vt 0.844828 0.771739 +vt 0.857759 0.760870 +vt 0.857759 0.771739 +vt 0.831897 0.760870 +vt 0.831897 0.771739 +vt 0.793103 0.771739 +vt 0.806035 0.760870 +vt 0.870690 0.771739 +vt 0.883621 0.760870 +vt 0.870690 0.760870 +vt 0.883621 0.728261 +vt 0.883621 0.733696 +vt 0.857759 0.701087 +vt 0.870690 0.711957 +vt 0.883621 0.722826 +vt 0.831897 0.701087 +vt 0.844828 0.695652 +vt 0.806035 0.728261 +vt 0.818965 0.711957 +vt 0.896552 0.728261 +vt 0.793103 0.728261 +vt 0.806035 0.722826 +vt 0.793103 0.695652 +vt 0.806035 0.652174 +vt 0.806035 0.695652 +vt 0.870690 0.695652 +vt 0.883621 0.652174 +vt 0.883621 0.695652 +vt 0.896552 0.652174 +vt 0.896552 0.695652 +vt 0.818965 0.695652 +vt 0.831897 0.652174 +vt 0.831897 0.695652 +vt 0.857759 0.652174 +vt 0.857759 0.695652 +vt 0.818965 0.652174 +vt 0.844828 0.652174 +vt 0.870690 0.652174 +vt 0.728448 0.771739 +vt 0.741379 0.760870 +vt 0.741379 0.771739 +vt 0.754310 0.771739 +vt 0.767241 0.760870 +vt 0.767241 0.771739 +vt 0.780172 0.760870 +vt 0.780172 0.771739 +vt 0.689655 0.771739 +vt 0.702586 0.760870 +vt 0.702586 0.771739 +vt 0.715517 0.771739 +vt 0.728448 0.760870 +vt 0.754310 0.760870 +vt 0.793103 0.760870 +vt 0.793103 0.771739 +vt 0.715517 0.760870 +vt 0.715517 0.744565 +vt 0.728448 0.728261 +vt 0.728448 0.755435 +vt 0.754310 0.728261 +vt 0.754310 0.755435 +vt 0.702586 0.728261 +vt 0.715517 0.728261 +vt 0.741379 0.728261 +vt 0.767241 0.728261 +vt 0.767241 0.744565 +vt 0.780172 0.728261 +vt 0.780172 0.733696 +vt 0.767241 0.711957 +vt 0.780172 0.722826 +vt 0.728448 0.701087 +vt 0.741379 0.695652 +vt 0.754310 0.701087 +vt 0.715517 0.711957 +vt 0.793103 0.728261 +vt 0.702586 0.733696 +vt 0.689655 0.728261 +vt 0.702586 0.722826 +vt 0.689655 0.695652 +vt 0.702586 0.652174 +vt 0.702586 0.695652 +vt 0.767241 0.695652 +vt 0.780172 0.652174 +vt 0.780172 0.695652 +vt 0.793103 0.652174 +vt 0.793103 0.695652 +vt 0.715517 0.695652 +vt 0.728448 0.652174 +vt 0.728448 0.695652 +vt 0.754310 0.652174 +vt 0.754310 0.695652 +vt 0.715517 0.652174 +vt 0.741379 0.652174 +vt 0.767241 0.652174 +vt 0.793103 0.760870 +vt 0.793103 0.652174 +vt 0.689655 0.760870 +vt 0.689655 0.652174 +vt 0.896552 0.891304 +vt 0.974138 0.391304 +vt 0.974138 0.260870 +vt 0.793103 0.760870 +vt 0.896552 0.597826 +vt 0.896552 0.581522 +vt 0.896552 0.548913 +vt 0.896552 0.521739 +vt 0.793103 0.652174 +vt 0.689655 0.760870 +vt 0.689655 0.652174 +vt 0.793103 0.760870 +vt 0.793103 0.652174 +vt 0.689655 0.760870 +vt 0.689655 0.652174 +vt 0.793103 0.760870 +vt 0.793103 0.652174 +vt 0.689655 0.760870 +vt 0.689655 0.652174 +vn 0.0000 -1.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.7071 0.0000 0.7071 +vn -0.7071 0.0000 -0.7071 +vn 0.7071 0.0000 -0.7071 +vn -0.7071 0.0000 0.7071 +vn -0.4851 0.7276 -0.4851 +vn 0.4851 0.7276 0.4851 +vn 0.5547 0.8321 0.0000 +vn -0.5547 0.8321 0.0000 +vn 0.0000 0.8321 -0.5547 +vn -0.4851 0.7276 0.4851 +vn 0.4851 0.7276 -0.4851 +vn 0.0000 0.8321 0.5547 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 -0.7071 0.7071 +vn 0.5774 -0.5774 0.5774 +vn -0.5774 -0.5774 0.5774 +vn 0.0000 0.7071 0.7071 +vn 0.1866 0.9824 0.0000 +vn 0.0196 0.0473 -0.9987 +vn -0.1363 -0.6737 -0.7263 +vn 0.0000 -0.7071 -0.7071 +vn -0.1363 -0.6737 0.7263 +vn 0.1447 0.7194 0.6794 +vn 0.1447 0.7194 -0.6794 +vn -0.7071 -0.7071 0.0000 +vn 0.0196 0.0473 0.9987 +vn 0.0670 0.0670 0.9955 +vn 0.5293 0.5293 0.6630 +vn 0.5293 0.5293 -0.6630 +vn 0.7071 0.7071 0.0000 +vn 0.0670 0.0670 -0.9955 +vn -0.4617 -0.4617 -0.7573 +vn 0.0473 0.0196 -0.9987 +vn -0.6737 -0.1363 -0.7263 +vn 0.7194 0.1447 0.6794 +vn 0.7194 0.1447 -0.6794 +vn -0.6737 -0.1363 0.7263 +vn 0.0473 0.0196 0.9987 +vn 0.9824 0.1866 0.0000 +vn -0.4617 -0.4617 0.7573 +vn -0.7071 0.7071 0.0000 +vn 0.0000 0.9824 0.1866 +vn 0.9987 0.0473 0.0196 +vn 0.7263 -0.6737 -0.1363 +vn 0.7071 -0.7071 0.0000 +vn -0.7263 -0.6737 -0.1363 +vn -0.6794 0.7194 0.1447 +vn 0.6794 0.7194 0.1447 +vn -0.9987 0.0473 0.0196 +vn -0.9955 0.0670 0.0670 +vn -0.6630 0.5293 0.5293 +vn 0.6630 0.5293 0.5293 +vn 0.9955 0.0670 0.0670 +vn 0.7573 -0.4617 -0.4617 +vn 0.6794 0.1447 0.7194 +vn 0.9987 0.0196 0.0473 +vn 0.7263 -0.1363 -0.6737 +vn -0.6794 0.1447 0.7194 +vn 0.0000 0.1866 0.9824 +vn -0.7573 -0.4617 -0.4617 +vn -0.9987 0.0196 0.0473 +vn -0.7263 -0.1363 -0.6737 +vn -0.6794 -0.1447 -0.7194 +vn 0.6794 -0.1447 -0.7194 +vn 0.0000 -0.1866 -0.9824 +vn -0.7263 0.1363 0.6737 +vn 0.7263 0.1363 0.6737 +vn -0.9987 -0.0196 -0.0473 +vn 0.9987 -0.0196 -0.0473 +vn -0.6630 -0.5293 -0.5293 +vn -0.9955 -0.0670 -0.0670 +vn 0.9955 -0.0670 -0.0670 +vn 0.6630 -0.5293 -0.5293 +vn -0.7573 0.4617 0.4617 +vn 0.6794 -0.7194 -0.1447 +vn 0.0000 -0.9824 -0.1866 +vn -0.6794 -0.7194 -0.1447 +vn -0.9987 -0.0473 -0.0196 +vn 0.7263 0.6737 0.1363 +vn 0.9987 -0.0473 -0.0196 +vn -0.7263 0.6737 0.1363 +vn 0.7573 0.4617 0.4617 +vn -0.1447 0.7194 0.6794 +vn -0.0670 0.0670 0.9955 +vn -0.0196 0.0473 0.9987 +vn -0.1447 0.7194 -0.6794 +vn -0.1866 0.9824 0.0000 +vn 0.1363 -0.6737 -0.7263 +vn -0.0670 0.0670 -0.9955 +vn -0.0196 0.0473 -0.9987 +vn -0.5293 0.5293 0.6630 +vn -0.5293 0.5293 -0.6630 +vn 0.0473 -0.9987 0.0196 +vn 0.9824 0.0000 0.1866 +vn 0.0473 0.9987 0.0196 +vn -0.6737 -0.7263 -0.1363 +vn 0.7194 0.6794 0.1447 +vn 0.7194 -0.6794 0.1447 +vn -0.6737 0.7263 -0.1363 +vn 0.0670 0.9955 0.0670 +vn 0.5293 0.6630 0.5293 +vn 0.0670 -0.9955 0.0670 +vn -0.4617 -0.7573 -0.4617 +vn 0.5293 -0.6630 0.5293 +vn 0.1866 0.0000 0.9824 +vn 0.1447 -0.6794 0.7194 +vn 0.1447 0.6794 0.7194 +vn 0.0196 -0.9987 0.0473 +vn -0.4617 0.7573 -0.4617 +vn 0.0196 0.9987 0.0473 +vn -0.1363 -0.7263 -0.6737 +vn -0.1363 0.7263 -0.6737 +vn 0.1363 -0.6737 0.7263 +vn 0.4617 -0.4617 0.7573 +vn -0.0473 0.0196 0.9987 +vn 0.6737 -0.1363 0.7263 +vn -0.7194 0.1447 -0.6794 +vn -0.7194 0.1447 0.6794 +vn 0.6737 -0.1363 -0.7263 +vn -0.0473 0.0196 -0.9987 +vn -0.9824 0.1866 0.0000 +vn 0.4617 -0.4617 -0.7573 +vn 0.0000 0.9824 -0.1866 +vn -0.9987 0.0473 -0.0196 +vn -0.7263 -0.6737 0.1363 +vn 0.7263 -0.6737 0.1363 +vn 0.6794 0.7194 -0.1447 +vn -0.6794 0.7194 -0.1447 +vn 0.9987 0.0473 -0.0196 +vn 0.9955 0.0670 -0.0670 +vn 0.6630 0.5293 -0.5293 +vn -0.6630 0.5293 -0.5293 +vn -0.9955 0.0670 -0.0670 +vn -0.7573 -0.4617 0.4617 +vn -0.9987 0.0196 -0.0473 +vn -0.7263 -0.1363 0.6737 +vn 0.6794 0.1447 -0.7194 +vn -0.6794 0.1447 -0.7194 +vn 0.7263 -0.1363 0.6737 +vn 0.9987 0.0196 -0.0473 +vn 0.0000 0.1866 -0.9824 +vn 0.7573 -0.4617 0.4617 +s off +f 19/29/7 18/30/7 17/31/7 +f 302/32/8 28/33/8 301/34/8 +f 18/35/9 22/36/9 17/37/9 +f 29/38/10 20/39/10 19/40/10 +f 303/41/8 306/42/8 305/43/8 +f 25/44/11 29/38/11 19/45/11 +f 23/46/12 25/47/12 22/36/12 +f 27/48/12 29/38/12 30/49/12 +f 24/50/10 305/43/10 21/51/10 +f 21/52/7 306/42/7 301/53/7 +f 26/54/9 30/49/9 25/47/9 +f 31/55/11 41/56/11 33/57/11 +f 40/58/13 35/59/13 32/60/13 +f 41/56/14 38/61/14 33/57/14 +f 35/59/9 45/62/9 37/63/9 +f 38/61/10 44/64/10 36/65/10 +f 36/65/15 42/66/15 34/67/15 +f 37/63/16 39/68/16 31/69/16 +f 34/67/8 40/58/8 32/60/8 +f 41/70/17 47/71/17 46/72/17 +f 40/58/18 50/73/18 43/74/18 +f 42/66/19 50/73/19 40/58/19 +f 47/71/20 39/75/20 48/76/20 +f 46/72/21 49/77/21 44/78/21 +f 45/79/22 48/76/22 39/75/22 +f 49/80/8 62/81/8 50/82/8 +f 44/78/23 49/77/23 42/66/23 +f 50/73/24 45/79/24 43/74/24 +f 61/83/12 60/84/12 62/81/12 +f 56/85/12 57/86/12 55/87/12 +f 54/88/8 56/85/8 52/89/8 +f 51/90/11 57/91/11 53/92/11 +f 47/93/10 61/83/10 49/94/10 +f 52/89/9 55/87/9 51/90/9 +f 50/95/9 60/84/9 48/96/9 +f 48/97/11 59/98/11 47/99/11 +f 237/100/12 235/101/12 236/102/12 +f 233/103/10 238/104/10 234/105/10 +f 232/106/9 236/102/9 231/107/9 +f 234/108/8 237/100/8 232/109/8 +f 231/110/11 235/101/11 233/111/11 +f 245/112/12 243/113/12 244/114/12 +f 241/115/10 246/116/10 242/117/10 +f 239/118/9 245/119/9 244/120/9 +f 261/121/12 259/122/12 260/123/12 +f 257/124/10 262/125/10 258/126/10 +f 256/127/9 260/128/9 255/129/9 +f 258/126/8 261/121/8 256/130/8 +f 255/129/11 259/131/11 257/124/11 +f 543/132/12 541/133/12 542/134/12 +f 296/135/12 294/136/12 293/137/12 +f 245/119/9 296/135/9 293/137/9 +f 245/112/11 294/136/11 246/138/11 +f 242/139/8 296/135/8 240/140/8 +f 246/116/10 295/141/10 242/117/10 +f 301/142/9 304/143/9 302/144/9 +f 302/145/12 303/41/12 24/146/12 +f 28/33/8 21/147/8 301/34/8 +f 20/148/8 24/149/8 18/30/8 +f 21/147/8 26/150/8 24/149/8 +f 18/30/8 26/150/8 23/151/8 +f 309/152/8 308/153/8 310/154/8 +f 312/155/10 316/156/10 313/157/10 +f 313/157/8 315/158/8 311/159/8 +f 318/160/10 322/161/10 319/162/10 +f 317/163/11 320/164/11 318/160/11 +f 327/165/12 328/166/12 326/167/12 +f 320/164/12 321/168/12 322/169/12 +f 324/170/9 327/165/9 323/171/9 +f 316/156/12 314/172/12 315/173/12 +f 323/171/11 326/174/11 325/175/11 +f 25/44/11 17/176/11 22/177/11 +f 539/178/10 544/179/10 540/180/10 +f 538/181/9 542/134/9 537/182/9 +f 540/183/8 543/132/8 538/184/8 +f 537/185/11 541/133/11 539/186/11 +f 551/187/12 549/188/12 550/189/12 +f 547/190/10 552/191/10 548/192/10 +f 545/193/9 551/194/9 550/195/9 +f 556/196/12 554/197/12 553/198/12 +f 551/194/9 556/196/9 553/198/9 +f 551/187/11 554/197/11 552/199/11 +f 548/200/8 556/196/8 546/201/8 +f 552/191/10 555/202/10 548/192/10 +f 557/203/25 560/204/25 558/205/25 +f 557/206/11 563/207/11 559/208/11 +f 558/209/8 564/210/8 562/211/8 +f 559/212/10 566/213/10 560/204/10 +f 563/214/10 567/215/10 559/212/10 +f 560/204/10 570/216/10 564/217/10 +f 559/212/10 567/215/10 565/218/10 +f 560/204/10 566/213/10 569/219/10 +f 570/220/11 575/221/11 576/222/11 +f 565/218/26 572/223/26 566/213/26 +f 567/224/27 571/225/27 565/218/27 +f 568/226/8 573/227/8 567/224/8 +f 569/228/28 572/223/28 575/221/28 +f 574/229/25 563/207/25 561/230/25 +f 570/220/25 562/211/25 564/210/25 +f 19/29/7 20/148/7 18/30/7 +f 302/32/8 20/148/8 28/33/8 +f 18/35/9 23/46/9 22/36/9 +f 29/38/10 28/33/10 20/39/10 +f 303/41/8 304/143/8 306/42/8 +f 25/44/11 30/49/11 29/38/11 +f 23/46/12 26/54/12 25/47/12 +f 27/48/12 28/33/12 29/38/12 +f 24/50/10 303/41/10 305/43/10 +f 21/52/7 305/43/7 306/42/7 +f 26/54/9 27/48/9 30/49/9 +f 31/55/11 39/231/11 41/56/11 +f 40/58/13 43/232/13 35/59/13 +f 41/56/14 46/233/14 38/61/14 +f 35/59/9 43/232/9 45/62/9 +f 38/61/10 46/233/10 44/64/10 +f 36/65/15 44/64/15 42/66/15 +f 37/63/16 45/62/16 39/68/16 +f 34/67/8 42/66/8 40/58/8 +f 42/66/19 49/77/19 50/73/19 +f 47/71/20 41/70/20 39/75/20 +f 46/72/21 47/71/21 49/77/21 +f 49/80/8 61/83/8 62/81/8 +f 50/73/24 48/76/24 45/79/24 +f 61/83/12 59/98/12 60/84/12 +f 56/85/12 58/234/12 57/86/12 +f 54/88/8 58/235/8 56/85/8 +f 51/90/11 55/87/11 57/91/11 +f 47/93/10 59/98/10 61/83/10 +f 52/89/9 56/85/9 55/87/9 +f 50/95/9 62/81/9 60/84/9 +f 48/97/11 60/84/11 59/98/11 +f 237/100/12 238/104/12 235/101/12 +f 233/103/10 235/101/10 238/104/10 +f 232/106/9 237/100/9 236/102/9 +f 234/108/8 238/104/8 237/100/8 +f 231/110/11 236/102/11 235/101/11 +f 245/112/12 246/138/12 243/113/12 +f 241/115/10 243/236/10 246/116/10 +f 239/118/9 240/237/9 245/119/9 +f 261/121/12 262/125/12 259/122/12 +f 257/124/10 259/131/10 262/125/10 +f 256/127/9 261/238/9 260/128/9 +f 258/126/8 262/125/8 261/121/8 +f 255/129/11 260/128/11 259/131/11 +f 543/132/12 544/179/12 541/133/12 +f 296/135/12 295/141/12 294/136/12 +f 245/119/9 240/237/9 296/135/9 +f 245/112/11 293/137/11 294/136/11 +f 242/139/8 295/141/8 296/135/8 +f 246/116/10 294/136/10 295/141/10 +f 301/142/9 306/42/9 304/143/9 +f 302/145/12 304/143/12 303/41/12 +f 28/33/8 27/48/8 21/147/8 +f 20/148/8 302/32/8 24/149/8 +f 21/147/8 27/48/8 26/150/8 +f 18/30/8 24/149/8 26/150/8 +f 309/152/8 307/239/8 308/153/8 +f 312/155/10 314/172/10 316/156/10 +f 313/157/8 316/156/8 315/158/8 +f 318/160/10 320/164/10 322/161/10 +f 317/163/11 321/168/11 320/164/11 +f 324/170/9 328/166/9 327/165/9 +f 323/171/11 327/165/11 326/174/11 +f 25/44/11 19/45/11 17/176/11 +f 539/178/10 541/133/10 544/179/10 +f 538/181/9 543/132/9 542/134/9 +f 540/183/8 544/179/8 543/132/8 +f 537/185/11 542/134/11 541/133/11 +f 551/187/12 552/199/12 549/188/12 +f 547/190/10 549/240/10 552/191/10 +f 545/193/9 546/241/9 551/194/9 +f 556/196/12 555/202/12 554/197/12 +f 551/194/9 546/241/9 556/196/9 +f 551/187/11 553/198/11 554/197/11 +f 548/200/8 555/202/8 556/196/8 +f 552/191/10 554/197/10 555/202/10 +f 557/203/25 559/212/25 560/204/25 +f 557/206/11 561/230/11 563/207/11 +f 558/209/8 560/242/8 564/210/8 +f 559/212/10 565/218/10 566/213/10 +f 563/214/10 568/243/10 567/215/10 +f 560/204/10 569/219/10 570/216/10 +f 570/220/11 569/228/11 575/221/11 +f 565/218/26 571/225/26 572/223/26 +f 567/224/27 573/227/27 571/225/27 +f 568/226/8 574/229/8 573/227/8 +f 569/228/28 566/213/28 572/223/28 +f 574/229/25 568/226/25 563/207/25 +f 570/220/25 576/222/25 562/211/25 +s 1 +f 66/244/29 73/245/30 65/246/12 +f 64/247/25 71/248/31 63/249/10 +f 63/249/10 78/250/32 70/251/33 +f 69/252/7 76/253/34 68/254/26 +f 67/255/9 74/256/35 66/244/29 +f 65/246/12 72/257/36 64/247/25 +f 70/251/33 77/258/37 69/259/7 +f 68/254/26 75/260/38 67/255/9 +f 74/261/35 83/262/39 82/263/40 +f 73/245/30 80/264/41 72/265/36 +f 76/266/34 83/262/39 75/267/38 +f 74/261/35 81/268/42 73/245/30 +f 72/265/36 79/269/43 71/270/31 +f 71/270/31 85/271/44 78/272/32 +f 80/264/41 86/273/45 79/269/43 +f 79/269/43 92/274/46 85/271/44 +f 83/262/39 89/275/47 82/263/40 +f 81/268/42 87/276/48 80/264/41 +f 83/262/39 91/277/49 90/278/50 +f 81/268/42 89/275/47 88/279/51 +f 78/272/32 85/271/44 77/280/37 +f 85/271/44 92/274/46 77/280/37 +f 76/266/34 77/281/37 84/282/52 +f 84/282/52 77/281/37 91/277/49 +f 77/283/37 99/284/16 91/285/49 +f 86/286/45 100/287/14 92/288/46 +f 92/288/46 93/289/11 77/290/37 +f 90/291/50 97/292/13 89/293/47 +f 88/279/51 95/294/15 87/295/48 +f 91/285/49 98/296/9 90/291/50 +f 89/293/47 96/297/8 88/279/51 +f 87/295/48 94/298/10 86/286/45 +f 104/299/29 111/300/30 103/301/12 +f 102/302/25 109/303/31 101/304/10 +f 101/304/10 116/305/32 108/306/33 +f 107/307/7 114/308/34 106/309/26 +f 105/310/9 112/311/35 104/299/29 +f 103/301/12 110/312/36 102/302/25 +f 108/306/33 115/313/37 107/314/7 +f 106/309/26 113/315/38 105/310/9 +f 112/316/35 121/317/39 120/318/40 +f 111/300/30 118/319/41 110/320/36 +f 113/321/38 122/322/52 121/317/39 +f 111/300/30 120/318/40 119/323/42 +f 110/320/36 117/324/43 109/325/31 +f 109/325/31 123/326/44 116/327/32 +f 118/319/41 124/328/45 117/324/43 +f 117/324/43 130/329/46 123/326/44 +f 120/318/40 128/330/50 127/331/47 +f 118/319/41 126/332/51 125/333/48 +f 121/317/39 129/334/49 128/330/50 +f 120/318/40 126/332/51 119/323/42 +f 116/327/32 123/326/44 115/335/37 +f 123/326/44 130/329/46 115/335/37 +f 114/336/34 115/337/37 122/322/52 +f 122/322/52 115/337/37 129/334/49 +f 115/338/37 137/339/16 129/340/49 +f 124/341/45 138/342/14 130/343/46 +f 130/343/46 131/344/11 115/345/37 +f 128/346/50 135/347/13 127/348/47 +f 126/332/51 133/349/15 125/350/48 +f 129/340/49 136/351/9 128/346/50 +f 127/348/47 134/352/8 126/332/51 +f 125/350/48 132/353/10 124/341/45 +f 142/354/53 149/355/54 141/356/12 +f 140/357/42 147/358/55 139/359/8 +f 139/359/8 154/360/56 146/361/57 +f 145/362/7 152/363/58 144/364/37 +f 143/365/11 150/366/59 142/354/53 +f 140/357/42 149/355/54 148/367/60 +f 146/361/57 153/368/33 145/369/7 +f 144/364/37 151/370/61 143/365/11 +f 150/371/59 159/372/62 158/373/63 +f 149/355/54 156/374/64 148/375/60 +f 152/376/58 159/372/62 151/377/61 +f 149/355/54 158/373/63 157/378/29 +f 148/375/60 155/379/65 147/380/55 +f 154/381/56 155/379/65 161/382/66 +f 155/379/65 163/383/67 162/384/68 +f 161/382/66 162/384/68 168/385/69 +f 159/372/62 165/386/70 158/373/63 +f 156/374/64 164/387/71 163/383/67 +f 160/388/72 166/389/73 159/372/62 +f 157/378/29 165/386/70 164/387/71 +f 154/381/56 161/382/66 153/390/33 +f 161/382/66 168/385/69 153/390/33 +f 152/376/58 153/391/33 160/388/72 +f 160/388/72 153/391/33 167/392/74 +f 153/393/33 175/394/75 167/395/74 +f 162/396/68 176/397/76 168/398/69 +f 168/398/69 169/399/77 153/400/33 +f 166/401/73 173/402/78 165/403/70 +f 164/387/71 171/404/79 163/405/67 +f 167/395/74 174/406/80 166/401/73 +f 165/403/70 172/407/29 164/387/71 +f 163/405/67 170/408/81 162/396/68 +f 174/409/80 182/410/82 181/411/83 +f 171/412/79 178/413/84 170/414/81 +f 169/415/77 182/410/82 175/416/75 +f 170/414/81 183/417/85 176/418/76 +f 173/419/78 181/411/83 180/420/86 +f 176/418/76 177/421/33 169/399/77 +f 177/421/33 190/422/87 184/423/88 +f 181/411/83 189/424/89 188/425/90 +f 178/413/84 186/426/91 185/427/92 +f 177/428/33 189/424/89 182/410/82 +f 178/413/84 190/422/87 183/417/85 +f 181/411/83 187/429/93 180/420/86 +f 171/412/79 172/430/29 179/431/94 +f 179/431/94 172/430/29 186/426/91 +f 173/419/78 180/420/86 172/430/29 +f 180/420/86 187/429/93 172/430/29 +f 194/432/53 201/433/12 193/434/12 +f 192/435/42 199/436/8 191/437/8 +f 191/437/8 206/438/57 198/439/57 +f 197/440/7 204/441/37 196/442/37 +f 195/443/11 202/444/53 194/432/53 +f 192/435/42 201/433/12 200/445/42 +f 198/439/57 205/446/7 197/447/7 +f 196/442/37 203/448/11 195/443/11 +f 210/449/53 217/450/12 209/451/12 +f 208/452/42 215/453/8 207/454/8 +f 207/454/8 222/455/57 214/456/57 +f 213/457/7 220/458/37 212/459/37 +f 211/460/11 218/461/53 210/449/53 +f 208/452/42 217/450/12 216/462/42 +f 214/456/57 221/463/7 213/464/7 +f 212/459/37 219/465/11 211/460/11 +f 249/466/95 226/467/96 250/468/97 +f 247/469/98 224/470/53 248/471/99 +f 229/472/100 329/473/101 230/474/102 +f 248/471/99 225/475/103 249/466/95 +f 247/469/98 329/473/101 223/476/104 +f 253/477/33 230/478/102 254/479/10 +f 251/480/26 228/481/57 252/482/7 +f 298/483/12 249/484/95 299/485/29 +f 254/479/10 247/486/98 297/487/25 +f 252/488/7 229/489/100 253/477/33 +f 190/490/87 264/491/105 184/423/88 +f 189/492/89 268/493/14 188/494/90 +f 186/495/91 265/496/106 185/497/92 +f 187/498/93 263/499/107 172/500/29 +f 184/501/88 269/502/108 189/492/89 +f 172/500/29 266/503/109 186/495/91 +f 185/497/92 270/504/110 190/490/87 +f 188/494/90 267/505/111 187/498/93 +f 266/506/109 271/507/112 274/508/113 +f 270/509/110 272/510/114 264/511/105 +f 266/506/109 273/512/13 265/496/106 +f 267/513/111 271/507/112 263/514/107 +f 269/515/108 272/516/114 276/517/115 +f 270/509/110 273/512/13 277/518/116 +f 277/518/116 280/519/117 284/520/118 +f 271/507/112 281/521/119 274/508/113 +f 272/510/114 284/520/118 279/522/120 +f 274/508/113 280/519/117 273/512/13 +f 275/523/121 278/524/122 271/507/112 +f 272/516/114 283/525/123 276/517/115 +f 269/515/108 276/517/115 268/526/14 +f 276/517/115 283/525/123 268/526/14 +f 267/513/111 268/526/14 275/523/121 +f 275/523/121 268/526/14 282/527/124 +f 278/528/122 289/529/29 281/530/119 +f 284/531/118 287/532/7 279/533/120 +f 281/530/119 288/534/9 280/519/117 +f 268/535/14 290/536/25 282/537/124 +f 282/537/124 286/538/12 278/528/122 +f 283/539/123 285/540/10 268/535/14 +f 279/541/120 291/542/33 283/539/123 +f 280/519/117 292/543/26 284/531/118 +f 300/544/9 227/545/125 251/480/26 +f 299/485/29 250/546/97 300/544/9 +f 297/487/25 248/471/99 298/483/12 +f 250/468/97 331/547/126 227/548/125 +f 225/475/103 332/549/127 226/467/96 +f 226/467/96 338/550/128 331/547/126 +f 329/473/101 335/551/129 223/476/104 +f 224/470/53 333/552/130 225/475/103 +f 329/473/101 337/553/131 336/554/132 +f 224/470/53 335/551/129 334/555/133 +f 227/548/125 331/547/126 228/556/57 +f 331/547/126 338/550/128 228/556/57 +f 229/472/100 228/557/57 330/558/134 +f 330/558/134 228/557/57 337/553/131 +f 228/559/57 345/560/15 337/561/131 +f 332/562/127 346/563/13 338/564/128 +f 338/564/128 339/565/8 228/566/57 +f 336/567/132 343/568/14 335/569/129 +f 334/555/133 341/570/16 333/571/130 +f 337/561/131 344/572/10 336/567/132 +f 335/569/129 342/573/11 334/555/133 +f 333/571/130 340/574/9 332/562/127 +f 350/575/25 357/576/99 349/577/12 +f 348/578/29 355/579/97 347/580/9 +f 347/580/9 362/581/125 354/582/26 +f 353/583/7 360/584/100 352/585/33 +f 351/586/10 358/587/98 350/575/25 +f 349/577/12 356/588/95 348/578/29 +f 354/582/26 361/589/57 353/590/7 +f 352/585/33 359/591/102 351/586/10 +f 359/592/102 366/593/104 358/594/98 +f 357/576/99 364/595/103 356/596/95 +f 359/592/102 368/597/134 367/598/101 +f 357/576/99 366/593/104 365/599/53 +f 356/596/95 363/600/96 355/601/97 +f 355/601/97 369/602/126 362/603/125 +f 363/600/96 371/604/130 370/605/127 +f 363/600/96 376/606/128 369/602/126 +f 367/598/101 373/607/129 366/593/104 +f 365/599/53 371/604/130 364/595/103 +f 367/598/101 375/608/131 374/609/132 +f 365/599/53 373/607/129 372/610/133 +f 362/603/125 369/602/126 361/611/57 +f 369/602/126 376/606/128 361/611/57 +f 360/612/100 361/613/57 368/597/134 +f 368/597/134 361/613/57 375/608/131 +f 361/614/57 383/615/15 375/616/131 +f 370/617/127 384/618/13 376/619/128 +f 376/619/128 377/620/8 361/621/57 +f 374/622/132 381/623/14 373/624/129 +f 372/610/133 379/625/16 371/626/130 +f 375/616/131 382/627/10 374/622/132 +f 373/624/129 380/628/11 372/610/133 +f 371/626/130 378/629/9 370/617/127 +f 388/630/42 395/631/135 387/632/12 +f 386/633/53 393/634/136 385/635/11 +f 385/635/11 400/636/137 392/637/37 +f 391/638/7 398/639/138 390/640/57 +f 389/641/8 396/642/139 388/630/42 +f 387/632/12 394/643/140 386/633/53 +f 392/637/37 399/644/26 391/645/7 +f 390/640/57 397/646/141 389/641/8 +f 396/647/139 405/648/142 404/649/143 +f 395/631/135 402/650/144 394/651/140 +f 398/652/138 405/648/142 397/653/141 +f 396/647/139 403/654/25 395/631/135 +f 394/651/140 401/655/145 393/656/136 +f 393/656/136 407/657/146 400/658/137 +f 402/650/144 408/659/147 401/655/145 +f 401/655/145 414/660/148 407/657/146 +f 405/648/142 411/661/149 404/649/143 +f 403/654/25 409/662/150 402/650/144 +f 405/648/142 413/663/151 412/664/152 +f 404/649/143 410/665/153 403/654/25 +f 400/658/137 407/657/146 399/666/26 +f 407/657/146 414/660/148 399/666/26 +f 398/652/138 399/667/26 406/668/154 +f 406/668/154 399/667/26 413/663/151 +f 399/669/26 421/670/13 413/671/151 +f 408/672/147 422/673/16 414/674/148 +f 414/674/148 415/675/9 399/676/26 +f 412/677/152 419/678/15 411/679/149 +f 410/665/153 417/680/14 409/681/150 +f 413/671/151 420/682/8 412/677/152 +f 411/679/149 418/683/10 410/665/153 +f 409/681/150 416/684/11 408/672/147 +f 426/685/42 433/686/135 425/687/12 +f 424/688/53 431/689/136 423/690/11 +f 423/690/11 438/691/137 430/692/37 +f 429/693/7 436/694/138 428/695/57 +f 427/696/8 434/697/139 426/685/42 +f 425/687/12 432/698/140 424/688/53 +f 430/692/37 437/699/26 429/700/7 +f 428/695/57 435/701/141 427/696/8 +f 434/702/139 443/703/142 442/704/143 +f 433/686/135 440/705/144 432/706/140 +f 435/707/141 444/708/154 443/703/142 +f 433/686/135 442/704/143 441/709/25 +f 431/710/136 440/705/144 439/711/145 +f 431/710/136 445/712/146 438/713/137 +f 439/711/145 447/714/150 446/715/147 +f 439/711/145 452/716/148 445/712/146 +f 443/703/142 449/717/149 442/704/143 +f 441/709/25 447/714/150 440/705/144 +f 443/703/142 451/718/151 450/719/152 +f 441/709/25 449/717/149 448/720/153 +f 438/713/137 445/712/146 437/721/26 +f 445/712/146 452/716/148 437/721/26 +f 436/722/138 437/723/26 444/708/154 +f 444/708/154 437/723/26 451/718/151 +f 437/724/26 459/725/13 451/726/151 +f 446/727/147 460/728/16 452/729/148 +f 452/729/148 453/730/9 437/731/26 +f 450/732/152 457/733/15 449/734/149 +f 448/720/153 455/735/14 447/736/150 +f 451/726/151 458/737/8 450/732/152 +f 449/734/149 456/738/10 448/720/153 +f 447/736/150 454/739/11 446/727/147 +f 471/740/60 464/741/65 472/742/55 +f 470/743/54 461/744/63 462/745/29 +f 467/746/58 481/747/62 468/748/61 +f 470/743/54 463/749/64 471/740/60 +f 469/750/59 481/747/62 461/744/63 +f 475/751/37 468/752/61 476/753/11 +f 473/754/57 466/755/33 474/756/7 +f 478/757/12 471/758/60 479/759/42 +f 476/753/11 469/760/59 477/761/53 +f 474/762/7 467/763/58 475/751/37 +f 480/764/8 465/765/56 473/754/57 +f 479/759/42 472/766/55 480/764/8 +f 477/761/53 470/743/54 478/757/12 +f 472/742/55 483/767/66 465/768/56 +f 464/741/65 485/769/67 484/770/68 +f 483/767/66 484/770/68 490/771/69 +f 481/747/62 487/772/70 461/744/63 +f 463/749/64 486/773/71 485/769/67 +f 482/774/72 488/775/73 481/747/62 +f 462/745/29 487/772/70 486/773/71 +f 465/768/56 483/767/66 466/776/33 +f 483/767/66 490/771/69 466/776/33 +f 467/746/58 466/777/33 482/774/72 +f 482/774/72 466/777/33 489/778/74 +f 466/779/33 497/780/14 489/781/74 +f 484/782/68 498/783/15 490/784/69 +f 490/784/69 491/785/10 466/786/33 +f 488/787/73 495/788/16 487/789/70 +f 486/773/71 493/790/13 485/791/67 +f 489/781/74 496/792/11 488/787/73 +f 487/789/70 494/793/9 486/773/71 +f 485/791/67 492/794/8 484/782/68 +f 502/795/53 509/796/54 501/797/12 +f 500/798/42 507/799/55 499/800/8 +f 499/800/8 514/801/56 506/802/57 +f 505/803/7 512/804/58 504/805/37 +f 503/806/11 510/807/59 502/795/53 +f 501/797/12 508/808/60 500/798/42 +f 506/802/57 513/809/33 505/810/7 +f 504/805/37 511/811/61 503/806/11 +f 511/812/61 518/813/63 510/814/59 +f 509/796/54 516/815/64 508/816/60 +f 511/812/61 520/817/72 519/818/62 +f 509/796/54 518/813/63 517/819/29 +f 508/816/60 515/820/65 507/821/55 +f 507/821/55 521/822/66 514/823/56 +f 516/815/64 522/824/68 515/820/65 +f 521/822/66 522/824/68 528/825/69 +f 519/818/62 525/826/70 518/813/63 +f 516/815/64 524/827/71 523/828/67 +f 520/817/72 526/829/73 519/818/62 +f 517/819/29 525/826/70 524/827/71 +f 514/823/56 521/822/66 513/830/33 +f 521/822/66 528/825/69 513/830/33 +f 512/831/58 513/832/33 520/817/72 +f 520/817/72 513/832/33 527/833/74 +f 513/834/33 535/835/14 527/836/74 +f 522/837/68 536/838/15 528/839/69 +f 528/839/69 529/840/10 513/841/33 +f 526/842/73 533/843/16 525/844/70 +f 524/827/71 531/845/13 523/846/67 +f 527/836/74 534/847/11 526/842/73 +f 525/844/70 532/848/9 524/827/71 +f 523/846/67 530/849/8 522/837/68 +f 66/244/29 74/256/35 73/245/30 +f 64/247/25 72/257/36 71/248/31 +f 63/249/10 71/248/31 78/250/32 +f 69/252/7 77/850/37 76/253/34 +f 67/255/9 75/260/38 74/256/35 +f 65/246/12 73/245/30 72/257/36 +f 70/251/33 78/250/32 77/258/37 +f 68/254/26 76/253/34 75/260/38 +f 74/261/35 75/267/38 83/262/39 +f 73/245/30 81/268/42 80/264/41 +f 76/266/34 84/282/52 83/262/39 +f 74/261/35 82/263/40 81/268/42 +f 72/265/36 80/264/41 79/269/43 +f 71/270/31 79/269/43 85/271/44 +f 80/264/41 87/276/48 86/273/45 +f 79/269/43 86/273/45 92/274/46 +f 83/262/39 90/278/50 89/275/47 +f 81/268/42 88/279/51 87/276/48 +f 83/262/39 84/282/52 91/277/49 +f 81/268/42 82/263/40 89/275/47 +f 77/283/37 93/851/11 99/284/16 +f 86/286/45 94/298/10 100/287/14 +f 92/288/46 100/287/14 93/289/11 +f 90/291/50 98/296/9 97/292/13 +f 88/279/51 96/297/8 95/294/15 +f 91/285/49 99/284/16 98/296/9 +f 89/293/47 97/292/13 96/297/8 +f 87/295/48 95/294/15 94/298/10 +f 104/299/29 112/311/35 111/300/30 +f 102/302/25 110/312/36 109/303/31 +f 101/304/10 109/303/31 116/305/32 +f 107/307/7 115/852/37 114/308/34 +f 105/310/9 113/315/38 112/311/35 +f 103/301/12 111/300/30 110/312/36 +f 108/306/33 116/305/32 115/313/37 +f 106/309/26 114/308/34 113/315/38 +f 112/316/35 113/321/38 121/317/39 +f 111/300/30 119/323/42 118/319/41 +f 113/321/38 114/336/34 122/322/52 +f 111/300/30 112/316/35 120/318/40 +f 110/320/36 118/319/41 117/324/43 +f 109/325/31 117/324/43 123/326/44 +f 118/319/41 125/333/48 124/328/45 +f 117/324/43 124/328/45 130/329/46 +f 120/318/40 121/317/39 128/330/50 +f 118/319/41 119/323/42 126/332/51 +f 121/317/39 122/322/52 129/334/49 +f 120/318/40 127/331/47 126/332/51 +f 115/338/37 131/853/11 137/339/16 +f 124/341/45 132/353/10 138/342/14 +f 130/343/46 138/342/14 131/344/11 +f 128/346/50 136/351/9 135/347/13 +f 126/332/51 134/352/8 133/349/15 +f 129/340/49 137/339/16 136/351/9 +f 127/348/47 135/347/13 134/352/8 +f 125/350/48 133/349/15 132/353/10 +f 142/354/53 150/366/59 149/355/54 +f 140/357/42 148/367/60 147/358/55 +f 139/359/8 147/358/55 154/360/56 +f 145/362/7 153/854/33 152/363/58 +f 143/365/11 151/370/61 150/366/59 +f 140/357/42 141/356/12 149/355/54 +f 146/361/57 154/360/56 153/368/33 +f 144/364/37 152/363/58 151/370/61 +f 150/371/59 151/377/61 159/372/62 +f 149/355/54 157/378/29 156/374/64 +f 152/376/58 160/388/72 159/372/62 +f 149/355/54 150/371/59 158/373/63 +f 148/375/60 156/374/64 155/379/65 +f 154/381/56 147/380/55 155/379/65 +f 155/379/65 156/374/64 163/383/67 +f 161/382/66 155/379/65 162/384/68 +f 159/372/62 166/389/73 165/386/70 +f 156/374/64 157/378/29 164/387/71 +f 160/388/72 167/392/74 166/389/73 +f 157/378/29 158/373/63 165/386/70 +f 153/393/33 169/415/77 175/394/75 +f 162/396/68 170/408/81 176/397/76 +f 168/398/69 176/397/76 169/399/77 +f 166/401/73 174/406/80 173/402/78 +f 164/387/71 172/407/29 171/404/79 +f 167/395/74 175/394/75 174/406/80 +f 165/403/70 173/402/78 172/407/29 +f 163/405/67 171/404/79 170/408/81 +f 174/409/80 175/416/75 182/410/82 +f 171/412/79 179/431/94 178/413/84 +f 169/415/77 177/428/33 182/410/82 +f 170/414/81 178/413/84 183/417/85 +f 173/419/78 174/409/80 181/411/83 +f 176/418/76 183/417/85 177/421/33 +f 177/421/33 183/417/85 190/422/87 +f 181/411/83 182/410/82 189/424/89 +f 178/413/84 179/431/94 186/426/91 +f 177/428/33 184/501/88 189/424/89 +f 178/413/84 185/427/92 190/422/87 +f 181/411/83 188/425/90 187/429/93 +f 194/432/53 202/444/53 201/433/12 +f 192/435/42 200/445/42 199/436/8 +f 191/437/8 199/436/8 206/438/57 +f 197/440/7 205/855/7 204/441/37 +f 195/443/11 203/448/11 202/444/53 +f 192/435/42 193/434/12 201/433/12 +f 198/439/57 206/438/57 205/446/7 +f 196/442/37 204/441/37 203/448/11 +f 210/449/53 218/461/53 217/450/12 +f 208/452/42 216/462/42 215/453/8 +f 207/454/8 215/453/8 222/455/57 +f 213/457/7 221/856/7 220/458/37 +f 211/460/11 219/465/11 218/461/53 +f 208/452/42 209/451/12 217/450/12 +f 214/456/57 222/455/57 221/463/7 +f 212/459/37 220/458/37 219/465/11 +f 249/466/95 225/475/103 226/467/96 +f 247/469/98 223/476/104 224/470/53 +f 229/472/100 330/558/134 329/473/101 +f 248/471/99 224/470/53 225/475/103 +f 247/469/98 230/474/102 329/473/101 +f 253/477/33 229/489/100 230/478/102 +f 251/480/26 227/545/125 228/481/57 +f 298/483/12 248/471/99 249/484/95 +f 254/479/10 230/478/102 247/486/98 +f 252/488/7 228/857/57 229/489/100 +f 190/490/87 270/504/110 264/491/105 +f 189/492/89 269/502/108 268/493/14 +f 186/495/91 266/503/109 265/496/106 +f 187/498/93 267/505/111 263/499/107 +f 184/501/88 264/858/105 269/502/108 +f 172/500/29 263/499/107 266/503/109 +f 185/497/92 265/496/106 270/504/110 +f 188/494/90 268/493/14 267/505/111 +f 266/506/109 263/514/107 271/507/112 +f 270/509/110 277/518/116 272/510/114 +f 266/506/109 274/508/113 273/512/13 +f 267/513/111 275/523/121 271/507/112 +f 269/515/108 264/859/105 272/516/114 +f 270/509/110 265/496/106 273/512/13 +f 277/518/116 273/512/13 280/519/117 +f 271/507/112 278/524/122 281/521/119 +f 272/510/114 277/518/116 284/520/118 +f 274/508/113 281/521/119 280/519/117 +f 275/523/121 282/527/124 278/524/122 +f 272/516/114 279/860/120 283/525/123 +f 278/528/122 286/538/12 289/529/29 +f 284/531/118 292/543/26 287/532/7 +f 281/530/119 289/529/29 288/534/9 +f 268/535/14 285/540/10 290/536/25 +f 282/537/124 290/536/25 286/538/12 +f 283/539/123 291/542/33 285/540/10 +f 279/541/120 287/861/7 291/542/33 +f 280/519/117 288/534/9 292/543/26 +f 300/544/9 250/546/97 227/545/125 +f 299/485/29 249/484/95 250/546/97 +f 297/487/25 247/486/98 248/471/99 +f 250/468/97 226/467/96 331/547/126 +f 225/475/103 333/552/130 332/549/127 +f 226/467/96 332/549/127 338/550/128 +f 329/473/101 336/554/132 335/551/129 +f 224/470/53 334/555/133 333/552/130 +f 329/473/101 330/558/134 337/553/131 +f 224/470/53 223/476/104 335/551/129 +f 228/559/57 339/862/8 345/560/15 +f 332/562/127 340/574/9 346/563/13 +f 338/564/128 346/563/13 339/565/8 +f 336/567/132 344/572/10 343/568/14 +f 334/555/133 342/573/11 341/570/16 +f 337/561/131 345/560/15 344/572/10 +f 335/569/129 343/568/14 342/573/11 +f 333/571/130 341/570/16 340/574/9 +f 350/575/25 358/587/98 357/576/99 +f 348/578/29 356/588/95 355/579/97 +f 347/580/9 355/579/97 362/581/125 +f 353/583/7 361/863/57 360/584/100 +f 351/586/10 359/591/102 358/587/98 +f 349/577/12 357/576/99 356/588/95 +f 354/582/26 362/581/125 361/589/57 +f 352/585/33 360/584/100 359/591/102 +f 359/592/102 367/598/101 366/593/104 +f 357/576/99 365/599/53 364/595/103 +f 359/592/102 360/612/100 368/597/134 +f 357/576/99 358/594/98 366/593/104 +f 356/596/95 364/595/103 363/600/96 +f 355/601/97 363/600/96 369/602/126 +f 363/600/96 364/595/103 371/604/130 +f 363/600/96 370/605/127 376/606/128 +f 367/598/101 374/609/132 373/607/129 +f 365/599/53 372/610/133 371/604/130 +f 367/598/101 368/597/134 375/608/131 +f 365/599/53 366/593/104 373/607/129 +f 361/614/57 377/864/8 383/615/15 +f 370/617/127 378/629/9 384/618/13 +f 376/619/128 384/618/13 377/620/8 +f 374/622/132 382/627/10 381/623/14 +f 372/610/133 380/628/11 379/625/16 +f 375/616/131 383/615/15 382/627/10 +f 373/624/129 381/623/14 380/628/11 +f 371/626/130 379/625/16 378/629/9 +f 388/630/42 396/642/139 395/631/135 +f 386/633/53 394/643/140 393/634/136 +f 385/635/11 393/634/136 400/636/137 +f 391/638/7 399/865/26 398/639/138 +f 389/641/8 397/646/141 396/642/139 +f 387/632/12 395/631/135 394/643/140 +f 392/637/37 400/636/137 399/644/26 +f 390/640/57 398/639/138 397/646/141 +f 396/647/139 397/653/141 405/648/142 +f 395/631/135 403/654/25 402/650/144 +f 398/652/138 406/668/154 405/648/142 +f 396/647/139 404/649/143 403/654/25 +f 394/651/140 402/650/144 401/655/145 +f 393/656/136 401/655/145 407/657/146 +f 402/650/144 409/662/150 408/659/147 +f 401/655/145 408/659/147 414/660/148 +f 405/648/142 412/664/152 411/661/149 +f 403/654/25 410/665/153 409/662/150 +f 405/648/142 406/668/154 413/663/151 +f 404/649/143 411/661/149 410/665/153 +f 399/669/26 415/866/9 421/670/13 +f 408/672/147 416/684/11 422/673/16 +f 414/674/148 422/673/16 415/675/9 +f 412/677/152 420/682/8 419/678/15 +f 410/665/153 418/683/10 417/680/14 +f 413/671/151 421/670/13 420/682/8 +f 411/679/149 419/678/15 418/683/10 +f 409/681/150 417/680/14 416/684/11 +f 426/685/42 434/697/139 433/686/135 +f 424/688/53 432/698/140 431/689/136 +f 423/690/11 431/689/136 438/691/137 +f 429/693/7 437/867/26 436/694/138 +f 427/696/8 435/701/141 434/697/139 +f 425/687/12 433/686/135 432/698/140 +f 430/692/37 438/691/137 437/699/26 +f 428/695/57 436/694/138 435/701/141 +f 434/702/139 435/707/141 443/703/142 +f 433/686/135 441/709/25 440/705/144 +f 435/707/141 436/722/138 444/708/154 +f 433/686/135 434/702/139 442/704/143 +f 431/710/136 432/706/140 440/705/144 +f 431/710/136 439/711/145 445/712/146 +f 439/711/145 440/705/144 447/714/150 +f 439/711/145 446/715/147 452/716/148 +f 443/703/142 450/719/152 449/717/149 +f 441/709/25 448/720/153 447/714/150 +f 443/703/142 444/708/154 451/718/151 +f 441/709/25 442/704/143 449/717/149 +f 437/724/26 453/868/9 459/725/13 +f 446/727/147 454/739/11 460/728/16 +f 452/729/148 460/728/16 453/730/9 +f 450/732/152 458/737/8 457/733/15 +f 448/720/153 456/738/10 455/735/14 +f 451/726/151 459/725/13 458/737/8 +f 449/734/149 457/733/15 456/738/10 +f 447/736/150 455/735/14 454/739/11 +f 471/740/60 463/749/64 464/741/65 +f 470/743/54 469/750/59 461/744/63 +f 467/746/58 482/774/72 481/747/62 +f 470/743/54 462/745/29 463/749/64 +f 469/750/59 468/748/61 481/747/62 +f 475/751/37 467/763/58 468/752/61 +f 473/754/57 465/765/56 466/755/33 +f 478/757/12 470/743/54 471/758/60 +f 476/753/11 468/752/61 469/760/59 +f 474/762/7 466/869/33 467/763/58 +f 480/764/8 472/766/55 465/765/56 +f 479/759/42 471/758/60 472/766/55 +f 477/761/53 469/760/59 470/743/54 +f 472/742/55 464/741/65 483/767/66 +f 464/741/65 463/749/64 485/769/67 +f 483/767/66 464/741/65 484/770/68 +f 481/747/62 488/775/73 487/772/70 +f 463/749/64 462/745/29 486/773/71 +f 482/774/72 489/778/74 488/775/73 +f 462/745/29 461/744/63 487/772/70 +f 466/779/33 491/870/10 497/780/14 +f 484/782/68 492/794/8 498/783/15 +f 490/784/69 498/783/15 491/785/10 +f 488/787/73 496/792/11 495/788/16 +f 486/773/71 494/793/9 493/790/13 +f 489/781/74 497/780/14 496/792/11 +f 487/789/70 495/788/16 494/793/9 +f 485/791/67 493/790/13 492/794/8 +f 502/795/53 510/807/59 509/796/54 +f 500/798/42 508/808/60 507/799/55 +f 499/800/8 507/799/55 514/801/56 +f 505/803/7 513/871/33 512/804/58 +f 503/806/11 511/811/61 510/807/59 +f 501/797/12 509/796/54 508/808/60 +f 506/802/57 514/801/56 513/809/33 +f 504/805/37 512/804/58 511/811/61 +f 511/812/61 519/818/62 518/813/63 +f 509/796/54 517/819/29 516/815/64 +f 511/812/61 512/831/58 520/817/72 +f 509/796/54 510/814/59 518/813/63 +f 508/816/60 516/815/64 515/820/65 +f 507/821/55 515/820/65 521/822/66 +f 516/815/64 523/828/67 522/824/68 +f 521/822/66 515/820/65 522/824/68 +f 519/818/62 526/829/73 525/826/70 +f 516/815/64 517/819/29 524/827/71 +f 520/817/72 527/833/74 526/829/73 +f 517/819/29 518/813/63 525/826/70 +f 513/834/33 529/872/10 535/835/14 +f 522/837/68 530/849/8 536/838/15 +f 528/839/69 536/838/15 529/840/10 +f 526/842/73 534/847/11 533/843/16 +f 524/827/71 532/848/9 531/845/13 +f 527/836/74 535/835/14 534/847/11 +f 525/844/70 533/843/16 532/848/9 +f 523/846/67 531/845/13 530/849/8 +o Plane +v 4.500000 0.500000 -3.500000 +v 7.500000 0.500000 -3.500000 +v 7.500000 0.000000 -3.500000 +v 4.500000 0.000000 -3.500000 +v 7.500000 0.000000 3.500000 +v 4.500000 0.000000 3.500000 +v 7.500000 0.500000 3.500000 +v 4.500000 0.500000 3.500000 +v 4.750000 1.250000 -3.000000 +v 7.250000 1.250000 -3.000000 +v 4.750000 2.250000 -3.000000 +v 7.250000 2.250000 -3.000000 +v 5.500000 3.000000 -3.000000 +v 5.500000 0.500000 -3.000000 +v 6.500000 3.000000 -3.000000 +v 6.500000 0.500000 -3.000000 +v 4.750000 1.250000 1.000000 +v 7.250000 1.250000 1.000000 +v 4.750000 2.250000 1.000000 +v 7.250000 2.250000 1.000000 +v 5.500000 3.000000 1.000000 +v 5.500000 0.500000 1.000000 +v 6.500000 3.000000 1.000000 +v 6.500000 0.500000 1.000000 +v 4.500000 0.500000 -3.000000 +v 7.500000 0.500000 -3.000000 +v 4.500000 0.500000 -3.500000 +v 7.500000 0.500000 -3.500000 +v 4.500000 2.500000 -3.500000 +v 4.500000 2.500000 -3.000000 +v 7.500000 2.500000 -3.000000 +v 7.500000 2.500000 -3.500000 +v 5.000000 3.000000 -3.500000 +v 5.000000 3.000000 -3.000000 +v 7.000000 3.000000 -3.000000 +v 7.000000 3.000000 -3.500000 +v 4.500000 0.500000 1.500000 +v 7.500000 0.500000 1.500000 +v 4.500000 0.500000 1.000000 +v 7.500000 0.500000 1.000000 +v 4.500000 2.500000 1.000000 +v 4.500000 2.500000 1.500000 +v 7.500000 2.500000 1.500000 +v 7.500000 2.500000 1.000000 +v 5.000000 3.000000 1.000000 +v 5.000000 3.000000 1.500000 +v 7.000000 3.000000 1.500000 +v 7.000000 3.000000 1.000000 +v 4.500000 0.500000 3.000000 +v 7.500000 0.500000 3.000000 +v 4.500000 0.500000 2.500000 +v 7.500000 0.500000 2.500000 +v 4.500000 2.500000 2.500000 +v 4.500000 2.500000 3.000000 +v 7.500000 2.500000 3.000000 +v 7.500000 2.500000 2.500000 +v 5.000000 3.000000 2.500000 +v 5.000000 3.000000 3.000000 +v 7.000000 3.000000 3.000000 +v 7.000000 3.000000 2.500000 +v 7.250000 0.750000 1.750000 +v 7.250000 0.750000 2.250000 +v 7.500000 0.750000 2.250000 +v 7.500000 0.750000 1.750000 +v 4.750000 0.750000 1.750000 +v 4.750000 0.750000 2.250000 +v 4.500000 0.750000 2.250000 +v 4.500000 0.750000 1.750000 +v 4.750000 0.500000 1.750000 +v 4.500000 0.500000 1.750000 +v 4.750000 0.500000 2.250000 +v 4.500000 0.500000 2.250000 +v 6.500000 2.616025 2.500000 +v 6.866026 2.249999 2.500000 +v 7.000000 1.749999 2.500000 +v 6.866025 1.250000 2.500000 +v 6.500000 0.883974 2.500000 +v 6.000000 0.750000 2.500000 +v 5.500000 0.883974 2.500000 +v 5.133975 1.250000 2.500000 +v 5.000000 1.750000 2.500000 +v 5.133975 2.250000 2.500000 +v 5.500000 2.616025 2.500000 +v 6.000000 2.750000 2.500000 +v 6.000000 2.750000 1.500000 +v 5.500000 2.616025 1.500000 +v 5.133975 2.250000 1.500000 +v 5.000000 1.750000 1.500000 +v 5.133975 1.250000 1.500000 +v 5.500000 0.883974 1.500000 +v 6.000000 0.750000 1.500000 +v 6.500000 0.883974 1.500000 +v 6.866025 1.250000 1.500000 +v 7.000000 1.749999 1.500000 +v 6.866026 2.249999 1.500000 +v 6.500000 2.616025 1.500000 +v 7.500000 0.500000 1.750000 +v 7.250000 0.500000 1.750000 +v 7.500000 0.500000 2.250000 +v 7.250000 0.500000 2.250000 +v 4.750000 0.500000 2.187500 +v 4.750000 0.500000 1.812500 +v 4.750000 0.687500 1.812500 +v 4.750000 0.687500 2.187500 +v 5.250000 0.500000 2.187500 +v 5.250000 0.500000 1.812500 +v 5.250000 0.687500 1.812500 +v 5.250000 0.687500 2.187500 +v 6.750000 0.750000 1.750000 +v 6.750000 0.750000 2.250000 +v 6.750000 0.500000 1.750000 +v 6.750000 0.500000 2.250000 +v 5.250000 0.750000 1.750000 +v 5.250000 0.750000 2.250000 +v 5.250000 0.500000 1.750000 +v 5.250000 0.500000 2.250000 +v 7.250000 0.500000 2.187500 +v 7.250000 0.500000 1.812500 +v 7.250000 0.687500 1.812500 +v 7.250000 0.687500 2.187500 +v 6.750000 0.500000 2.187500 +v 6.750000 0.500000 1.812500 +v 6.750000 0.687500 1.812500 +v 6.750000 0.687500 2.187500 +v 6.500000 0.500000 3.500000 +v 7.000000 0.500000 3.500000 +v 6.500000 0.500000 3.000000 +v 7.000000 0.500000 3.000000 +v 6.500000 2.500000 3.000000 +v 6.500000 2.000000 3.500000 +v 7.000000 2.000000 3.500000 +v 7.000000 2.500000 3.000000 +v 5.000000 0.500000 3.500000 +v 5.500000 0.500000 3.500000 +v 5.000000 0.500000 3.000000 +v 5.500000 0.500000 3.000000 +v 5.000000 2.500000 3.000000 +v 5.000000 2.000000 3.500000 +v 5.500000 2.000000 3.500000 +v 5.500000 2.500000 3.000000 +v 5.500000 3.000000 -1.500000 +v 6.500000 3.000000 -1.500000 +v 5.500000 3.000000 -2.500000 +v 6.500000 3.000000 -2.500000 +v 5.500000 4.000000 -2.500000 +v 5.500000 4.000000 -1.500000 +v 6.500000 4.000000 -1.500000 +v 6.500000 4.000000 -2.500000 +v 7.000000 3.000000 -1.500000 +v 6.926776 3.176777 -1.500000 +v 6.750000 3.250000 -1.500000 +v 6.573223 3.176777 -1.500000 +v 6.500000 3.000000 -1.500000 +v 6.573223 2.823223 -1.500000 +v 6.750000 2.750000 -1.500000 +v 6.926776 2.823223 -1.500000 +v 7.000000 3.000000 0.000000 +v 6.926777 3.176777 0.000000 +v 6.750000 3.250000 0.000000 +v 6.573223 3.176777 0.000000 +v 6.500000 3.000000 0.000000 +v 6.573223 2.823223 0.000000 +v 6.750000 2.750000 0.000000 +v 6.926777 2.823223 0.000000 +v 7.000000 2.926777 0.176777 +v 6.926777 3.051777 0.301777 +v 6.750000 3.103553 0.353554 +v 6.573223 3.051777 0.301777 +v 6.500000 2.926777 0.176777 +v 6.573223 2.801776 0.051777 +v 6.926777 2.801776 0.051777 +v 7.000000 2.750000 0.250000 +v 6.926777 2.750000 0.426777 +v 6.750000 2.750000 0.500000 +v 6.573223 2.750000 0.426777 +v 6.500000 2.750000 0.250000 +v 6.573223 2.750000 0.073223 +v 6.926777 2.750000 0.073223 +v 6.750000 2.500000 0.000000 +v 7.000000 2.500000 0.250000 +v 6.926777 2.500000 0.426777 +v 6.750000 2.500000 0.500000 +v 6.573223 2.500000 0.426777 +v 6.500000 2.500000 0.250000 +v 6.573223 2.500000 0.073223 +v 6.926777 2.500000 0.073223 +v 7.000000 3.073223 -1.676777 +v 6.926776 3.198223 -1.551776 +v 6.573223 3.198223 -1.551776 +v 6.500000 3.073223 -1.676777 +v 6.573223 2.948223 -1.801777 +v 6.750000 2.896447 -1.853553 +v 6.926776 2.948223 -1.801777 +v 7.000000 3.250000 -1.750000 +v 6.926776 3.250000 -1.573223 +v 6.573223 3.250000 -1.573223 +v 6.500000 3.250000 -1.750000 +v 6.573223 3.250000 -1.926777 +v 6.750000 3.250000 -2.000000 +v 6.926776 3.250000 -1.926777 +v 6.750000 3.500000 -1.500000 +v 7.000000 3.500000 -1.750000 +v 6.926776 3.500000 -1.573223 +v 6.573223 3.500000 -1.573223 +v 6.500000 3.500000 -1.750000 +v 6.573223 3.500000 -1.926777 +v 6.750000 3.500000 -2.000000 +v 6.926776 3.500000 -1.926777 +v 6.676777 3.676777 -1.500000 +v 6.853553 3.853553 -1.750000 +v 6.801776 3.801776 -1.573223 +v 6.551777 3.551777 -1.573223 +v 6.551777 3.551777 -1.926777 +v 6.676777 3.676777 -2.000000 +v 6.801776 3.801776 -1.926777 +v 6.500000 3.750000 -1.500000 +v 6.500000 4.000000 -1.750000 +v 6.500000 3.926776 -1.573223 +v 6.500000 3.573223 -1.573223 +v 6.500000 3.573223 -1.926777 +v 6.500000 3.750000 -2.000000 +v 6.500000 3.926776 -1.926777 +v 6.750000 2.500000 -2.000000 +v 7.000000 2.500000 -2.250000 +v 6.926776 2.500000 -2.073223 +v 6.573223 2.500000 -2.073223 +v 6.500000 2.500000 -2.250000 +v 6.573223 2.500000 -2.426777 +v 6.750000 2.500000 -2.500000 +v 6.926776 2.500000 -2.426777 +v 6.750000 3.500000 -2.000000 +v 7.000000 3.500000 -2.250000 +v 6.926776 3.500000 -2.073223 +v 6.573223 3.500000 -2.073223 +v 6.500000 3.500000 -2.250000 +v 6.573223 3.500000 -2.426777 +v 6.750000 3.500000 -2.500000 +v 6.926776 3.500000 -2.426777 +v 6.676777 3.676777 -2.000000 +v 6.853553 3.853553 -2.250000 +v 6.801776 3.801776 -2.073223 +v 6.551777 3.551777 -2.073223 +v 6.551777 3.551777 -2.426777 +v 6.676777 3.676777 -2.500000 +v 6.801776 3.801776 -2.426777 +v 6.500000 3.750000 -2.000000 +v 6.500000 4.000000 -2.250000 +v 6.500000 3.926776 -2.073223 +v 6.500000 3.573223 -2.073223 +v 6.500000 3.573223 -2.426777 +v 6.500000 3.750000 -2.500000 +v 6.500000 3.926776 -2.426777 +v 5.000000 3.000000 -1.500000 +v 5.073224 3.176777 -1.500000 +v 5.250000 3.250000 -1.500000 +v 5.426777 3.176777 -1.500000 +v 5.500000 3.000000 -1.500000 +v 5.426777 2.823223 -1.500000 +v 5.250000 2.750000 -1.500000 +v 5.073224 2.823223 -1.500000 +v 5.000000 3.000000 0.000000 +v 5.073223 3.176777 0.000000 +v 5.250000 3.250000 0.000000 +v 5.426777 3.176777 0.000000 +v 5.500000 3.000000 0.000000 +v 5.426777 2.823223 0.000000 +v 5.250000 2.750000 0.000000 +v 5.073223 2.823223 0.000000 +v 5.000000 2.926777 0.176777 +v 5.073223 3.051777 0.301777 +v 5.250000 3.103553 0.353554 +v 5.426777 3.051777 0.301777 +v 5.500000 2.926777 0.176777 +v 5.426777 2.801776 0.051777 +v 5.073223 2.801776 0.051777 +v 5.000000 2.750000 0.250000 +v 5.073223 2.750000 0.426777 +v 5.250000 2.750000 0.500000 +v 5.426777 2.750000 0.426777 +v 5.500000 2.750000 0.250000 +v 5.426777 2.750000 0.073223 +v 5.073223 2.750000 0.073223 +v 5.250000 2.500000 0.000000 +v 5.000000 2.500000 0.250000 +v 5.073223 2.500000 0.426777 +v 5.250000 2.500000 0.500000 +v 5.426777 2.500000 0.426777 +v 5.500000 2.500000 0.250000 +v 5.426777 2.500000 0.073223 +v 5.073223 2.500000 0.073223 +v 5.000000 3.073223 -1.676777 +v 5.073224 3.198223 -1.551776 +v 5.426777 3.198223 -1.551776 +v 5.500000 3.073223 -1.676777 +v 5.426777 2.948223 -1.801777 +v 5.250000 2.896447 -1.853553 +v 5.073224 2.948223 -1.801777 +v 5.000000 3.250000 -1.750000 +v 5.073224 3.250000 -1.573223 +v 5.426777 3.250000 -1.573223 +v 5.500000 3.250000 -1.750000 +v 5.426777 3.250000 -1.926777 +v 5.250000 3.250000 -2.000000 +v 5.073224 3.250000 -1.926777 +v 5.250000 3.500000 -1.500000 +v 5.000000 3.500000 -1.750000 +v 5.073224 3.500000 -1.573223 +v 5.426777 3.500000 -1.573223 +v 5.500000 3.500000 -1.750000 +v 5.426777 3.500000 -1.926777 +v 5.250000 3.500000 -2.000000 +v 5.073224 3.500000 -1.926777 +v 5.323223 3.676777 -1.500000 +v 5.146447 3.853553 -1.750000 +v 5.198224 3.801776 -1.573223 +v 5.448223 3.551777 -1.573223 +v 5.448223 3.551777 -1.926777 +v 5.323223 3.676777 -2.000000 +v 5.198224 3.801776 -1.926777 +v 5.500000 3.750000 -1.500000 +v 5.500000 4.000000 -1.750000 +v 5.500000 3.926776 -1.573223 +v 5.500000 3.573223 -1.573223 +v 5.500000 3.573223 -1.926777 +v 5.500000 3.750000 -2.000000 +v 5.500000 3.926776 -1.926777 +v 5.250000 2.500000 -2.000000 +v 5.000000 2.500000 -2.250000 +v 5.073224 2.500000 -2.073223 +v 5.426777 2.500000 -2.073223 +v 5.500000 2.500000 -2.250000 +v 5.426777 2.500000 -2.426777 +v 5.250000 2.500000 -2.500000 +v 5.073224 2.500000 -2.426777 +v 5.250000 3.500000 -2.000000 +v 5.000000 3.500000 -2.250000 +v 5.073224 3.500000 -2.073223 +v 5.426777 3.500000 -2.073223 +v 5.500000 3.500000 -2.250000 +v 5.426777 3.500000 -2.426777 +v 5.250000 3.500000 -2.500000 +v 5.073224 3.500000 -2.426777 +v 5.323223 3.676777 -2.000000 +v 5.146447 3.853553 -2.250000 +v 5.198224 3.801776 -2.073223 +v 5.448223 3.551777 -2.073223 +v 5.448223 3.551777 -2.426777 +v 5.323223 3.676777 -2.500000 +v 5.198224 3.801776 -2.426777 +v 5.500000 3.750000 -2.000000 +v 5.500000 4.000000 -2.250000 +v 5.500000 3.926776 -2.073223 +v 5.500000 3.573223 -2.073223 +v 5.500000 3.573223 -2.426777 +v 5.500000 3.750000 -2.500000 +v 5.500000 3.926776 -2.426777 +v 5.000000 0.500000 0.250000 +v 7.000000 0.500000 0.250000 +v 5.000000 0.500000 -0.250000 +v 7.000000 0.500000 -0.250000 +v 5.000000 1.000000 -0.250000 +v 5.000000 1.000000 0.250000 +v 7.000000 1.000000 0.250000 +v 7.000000 1.000000 -0.250000 +v 5.000000 0.500000 -1.750000 +v 7.000000 0.500000 -1.750000 +v 5.000000 0.500000 -2.250000 +v 7.000000 0.500000 -2.250000 +v 5.000000 1.000000 -2.250000 +v 5.000000 1.000000 -1.750000 +v 7.000000 1.000000 -1.750000 +v 7.000000 1.000000 -2.250000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vn 0.0000 0.0000 -1.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.7071 -0.7071 0.0000 +vn -0.7071 0.7071 0.0000 +vn 0.7071 0.7071 0.0000 +vn 0.7071 -0.7071 0.0000 +vn -0.9659 0.2588 0.0000 +vn -0.2588 -0.9659 0.0000 +vn 0.9659 -0.2588 0.0000 +vn 0.2588 0.9659 0.0000 +vn -0.2588 0.9659 0.0000 +vn -0.9659 -0.2588 0.0000 +vn 0.2588 -0.9659 0.0000 +vn 0.9659 0.2588 0.0000 +vn 0.0000 0.7071 0.7071 +vn -0.7263 0.6737 0.1363 +vn 0.0000 0.9824 0.1866 +vn 0.7263 0.6737 0.1363 +vn 0.9987 0.0473 0.0196 +vn 0.9987 -0.0473 -0.0196 +vn 0.7263 -0.6737 -0.1363 +vn 0.6794 -0.7194 -0.1447 +vn 0.0000 -0.9824 -0.1866 +vn -0.7263 -0.6737 -0.1363 +vn -0.6794 -0.7194 -0.1447 +vn -0.9987 -0.0473 -0.0196 +vn -0.6794 0.7194 0.1447 +vn 0.6794 0.7194 0.1447 +vn 0.0000 -0.7071 -0.7071 +vn -0.9987 0.0473 0.0196 +vn -0.9955 0.0670 0.0670 +vn -0.6630 0.5293 0.5293 +vn 0.6630 0.5293 0.5293 +vn 0.9955 0.0670 0.0670 +vn 0.7573 -0.4617 -0.4617 +vn 0.9987 0.0196 0.0473 +vn 0.7263 -0.1363 -0.6737 +vn -0.9987 0.0196 0.0473 +vn -0.6794 0.1447 0.7194 +vn 0.6794 0.1447 0.7194 +vn -0.7573 -0.4617 -0.4617 +vn 0.0000 0.1866 0.9824 +vn -0.7263 -0.1363 -0.6737 +vn -0.7071 0.0000 -0.7071 +vn 0.7071 0.0000 -0.7071 +vn -0.7071 0.0000 0.7071 +vn 0.7071 0.0000 0.7071 +vn 0.6630 -0.5293 -0.5293 +vn -0.6630 -0.5293 -0.5293 +vn 0.9955 -0.0670 -0.0670 +vn 0.7573 0.4617 0.4617 +vn -0.7573 0.4617 0.4617 +vn -0.9955 -0.0670 -0.0670 +vn 0.6794 -0.1447 -0.7194 +vn -0.6794 -0.1447 -0.7194 +vn 0.9987 -0.0196 -0.0473 +vn 0.7263 0.1363 0.6737 +vn 0.0000 -0.1866 -0.9824 +vn -0.7263 0.1363 0.6737 +vn -0.9987 -0.0196 -0.0473 +vn 0.7194 0.1447 -0.6794 +vn -0.6737 -0.1363 -0.7263 +vn 0.7194 0.1447 0.6794 +vn 0.0473 0.0196 0.9987 +vn 0.9824 0.1866 0.0000 +vn -0.6737 -0.1363 0.7263 +vn 0.0473 0.0196 -0.9987 +vn -0.9809 -0.1944 0.0000 +vn 0.5293 0.5293 0.6630 +vn 0.0670 0.0670 0.9955 +vn -0.4617 -0.4617 -0.7573 +vn 0.0670 0.0670 -0.9955 +vn -0.4617 -0.4617 0.7573 +vn 0.5293 0.5293 -0.6630 +vn -0.2611 -0.6303 0.7311 +vn 0.0392 0.0948 -0.9947 +vn 0.2962 0.7150 -0.6332 +vn 0.3827 0.9239 0.0000 +vn 0.2962 0.7150 0.6332 +vn 0.0392 0.0948 0.9947 +vn -0.2611 -0.6303 -0.7311 +vn -0.7194 0.1447 -0.6794 +vn 0.6737 -0.1363 -0.7263 +vn -0.7194 0.1447 0.6794 +vn -0.0473 0.0196 0.9987 +vn -0.9824 0.1866 0.0000 +vn 0.6737 -0.1363 0.7263 +vn -0.0473 0.0196 -0.9987 +vn 0.9809 -0.1944 0.0000 +vn -0.0670 0.0670 0.9955 +vn 0.4617 -0.4617 -0.7573 +vn 0.4617 -0.4617 0.7573 +vn -0.0670 0.0670 -0.9955 +vn 0.2611 -0.6303 0.7311 +vn -0.5293 0.5293 -0.6630 +vn -0.0392 0.0948 -0.9947 +vn -0.5293 0.5293 0.6630 +vn -0.3827 0.9239 0.0000 +vn -0.0392 0.0948 0.9947 +vn 0.2611 -0.6303 -0.7311 +vn -0.2962 0.7150 0.6332 +vn -0.2962 0.7150 -0.6332 +s off +f 577/873/155 579/874/155 580/875/155 +f 578/876/156 581/877/156 579/874/156 +f 583/878/157 582/879/157 581/877/157 +f 584/880/158 580/875/158 582/879/158 +f 583/878/159 577/873/159 584/880/159 +f 580/875/160 581/877/160 582/879/160 +f 613/881/158 617/882/158 615/883/158 +f 617/882/155 624/884/155 620/885/155 +f 596/886/156 586/887/156 588/888/156 +f 593/889/158 587/890/158 585/891/158 +f 598/892/161 585/891/161 590/893/161 +f 595/894/162 589/895/162 587/890/162 +f 597/896/159 591/897/159 589/895/159 +f 944/898/156 947/899/156 942/900/156 +f 599/901/163 588/888/163 591/897/163 +f 594/902/164 592/903/164 586/887/164 +f 615/883/155 620/885/155 616/904/155 +f 605/905/155 612/906/155 608/907/155 +f 601/908/158 605/905/158 603/909/158 +f 603/909/155 608/907/155 604/910/155 +f 602/911/157 606/912/157 601/908/157 +f 604/910/156 607/913/156 602/911/156 +f 611/914/159 609/915/159 610/916/159 +f 607/913/157 610/916/157 606/912/157 +f 608/907/163 611/914/163 607/913/163 +f 606/912/162 609/915/162 605/905/162 +f 614/917/157 618/918/157 613/881/157 +f 616/904/156 619/919/156 614/917/156 +f 623/920/159 621/921/159 622/922/159 +f 619/919/157 622/922/157 618/918/157 +f 620/885/163 623/920/163 619/919/163 +f 618/918/162 621/921/162 617/882/162 +f 625/923/158 629/924/158 627/925/158 +f 629/924/155 636/926/155 632/927/155 +f 627/925/155 632/927/155 628/928/155 +f 626/929/157 630/930/157 625/923/157 +f 628/928/156 631/931/156 626/929/156 +f 635/932/159 633/933/159 634/934/159 +f 631/931/157 634/934/157 630/930/157 +f 632/927/163 635/932/163 631/931/163 +f 630/930/162 633/933/162 629/924/162 +f 664/935/165 658/936/165 663/937/165 +f 667/938/166 655/939/166 666/940/166 +f 670/941/167 652/942/167 669/943/167 +f 663/937/162 659/944/162 662/945/162 +f 661/946/168 649/947/168 672/948/168 +f 666/940/161 656/949/161 665/950/161 +f 669/943/164 653/951/164 668/952/164 +f 662/945/169 660/953/169 661/946/169 +f 672/948/163 650/954/163 671/955/163 +f 665/950/170 657/956/170 664/935/170 +f 668/952/171 654/957/171 667/938/171 +f 671/955/172 651/958/172 670/941/172 +f 642/959/159 644/960/159 643/961/159 +f 646/962/155 641/963/155 645/964/155 +f 647/965/157 643/961/157 648/966/157 +f 679/967/156 645/964/156 641/963/156 +f 648/966/158 644/960/158 646/962/158 +f 639/968/159 637/969/159 638/970/159 +f 674/971/155 640/972/155 673/973/155 +f 675/974/157 638/970/157 676/975/157 +f 673/973/156 639/968/156 675/974/156 +f 637/969/158 696/976/158 638/970/158 +f 681/977/157 680/978/157 677/979/157 +f 683/980/155 678/981/155 679/967/155 +f 684/982/159 679/967/159 680/978/159 +f 685/983/159 690/984/159 686/985/159 +f 687/986/155 689/987/155 685/983/155 +f 686/985/157 692/988/157 688/989/157 +f 690/984/158 683/980/158 684/982/158 +f 692/988/158 684/982/158 681/977/158 +f 683/980/158 691/990/158 682/991/158 +f 680/978/156 641/963/156 642/959/156 +f 647/965/156 680/978/156 642/959/156 +f 695/992/158 674/971/158 694/993/158 +f 676/975/158 696/976/158 693/994/158 +f 696/976/157 697/995/157 693/994/157 +f 694/993/155 699/996/155 695/992/155 +f 695/992/159 700/997/159 696/976/159 +f 700/997/156 685/983/156 686/985/156 +f 699/996/156 687/986/156 685/983/156 +f 688/989/156 700/997/156 686/985/156 +f 712/998/156 715/999/156 710/1000/156 +f 707/1001/173 705/1002/173 706/1003/173 +f 704/1004/156 707/1001/156 702/1005/156 +f 703/1006/158 706/1003/158 705/1002/158 +f 715/999/173 713/1007/173 714/1008/173 +f 702/1005/157 706/1003/157 701/1009/157 +f 711/1010/158 714/1008/158 713/1007/158 +f 710/1000/157 714/1008/157 709/1011/157 +f 723/1012/159 721/1013/159 722/1014/159 +f 720/1015/156 723/1012/156 718/1016/156 +f 717/1017/158 721/1013/158 719/1018/158 +f 719/1018/155 724/1019/155 720/1015/155 +f 718/1016/157 722/1014/157 717/1017/157 +f 942/900/157 946/1020/157 941/1021/157 +f 943/1022/155 948/1023/155 944/898/155 +f 935/1024/155 940/1025/155 936/1026/155 +f 934/1027/157 938/1028/157 933/1029/157 +f 936/1026/156 939/1030/156 934/1027/156 +f 933/1029/158 937/1031/158 935/1024/158 +f 941/1021/158 945/1032/158 943/1022/158 +f 577/873/155 578/876/155 579/874/155 +f 578/876/156 583/878/156 581/877/156 +f 583/878/157 584/880/157 582/879/157 +f 584/880/158 577/873/158 580/875/158 +f 583/878/159 578/876/159 577/873/159 +f 580/875/160 579/874/160 581/877/160 +f 613/881/158 618/918/158 617/882/158 +f 617/882/155 621/921/155 624/884/155 +f 596/886/156 594/902/156 586/887/156 +f 593/889/158 595/894/158 587/890/158 +f 598/892/161 593/889/161 585/891/161 +f 595/894/162 597/896/162 589/895/162 +f 597/896/159 599/901/159 591/897/159 +f 944/898/156 948/1023/156 947/899/156 +f 599/901/163 596/886/163 588/888/163 +f 594/902/164 600/1033/164 592/903/164 +f 615/883/155 617/882/155 620/885/155 +f 605/905/155 609/915/155 612/906/155 +f 601/908/158 606/912/158 605/905/158 +f 603/909/155 605/905/155 608/907/155 +f 602/911/157 607/913/157 606/912/157 +f 604/910/156 608/907/156 607/913/156 +f 611/914/159 612/906/159 609/915/159 +f 607/913/157 611/914/157 610/916/157 +f 608/907/163 612/906/163 611/914/163 +f 606/912/162 610/916/162 609/915/162 +f 614/917/157 619/919/157 618/918/157 +f 616/904/156 620/885/156 619/919/156 +f 623/920/159 624/884/159 621/921/159 +f 619/919/157 623/920/157 622/922/157 +f 620/885/163 624/884/163 623/920/163 +f 618/918/162 622/922/162 621/921/162 +f 625/923/158 630/930/158 629/924/158 +f 629/924/155 633/933/155 636/926/155 +f 627/925/155 629/924/155 632/927/155 +f 626/929/157 631/931/157 630/930/157 +f 628/928/156 632/927/156 631/931/156 +f 635/932/159 636/926/159 633/933/159 +f 631/931/157 635/932/157 634/934/157 +f 632/927/163 636/926/163 635/932/163 +f 630/930/162 634/934/162 633/933/162 +f 664/935/165 657/956/165 658/936/165 +f 667/938/166 654/957/166 655/939/166 +f 670/941/167 651/958/167 652/942/167 +f 663/937/162 658/936/162 659/944/162 +f 661/946/168 660/953/168 649/947/168 +f 666/940/161 655/939/161 656/949/161 +f 669/943/164 652/942/164 653/951/164 +f 662/945/169 659/944/169 660/953/169 +f 672/948/163 649/947/163 650/954/163 +f 665/950/170 656/949/170 657/956/170 +f 668/952/171 653/951/171 654/957/171 +f 671/955/172 650/954/172 651/958/172 +f 642/959/159 641/963/159 644/960/159 +f 646/962/155 644/960/155 641/963/155 +f 647/965/157 642/959/157 643/961/157 +f 679/967/156 678/981/156 645/964/156 +f 648/966/158 643/961/158 644/960/158 +f 639/968/159 640/972/159 637/969/159 +f 674/971/155 637/969/155 640/972/155 +f 675/974/157 639/968/157 638/970/157 +f 673/973/156 640/972/156 639/968/156 +f 637/969/158 695/992/158 696/976/158 +f 681/977/157 684/982/157 680/978/157 +f 683/980/155 682/991/155 678/981/155 +f 684/982/159 683/980/159 679/967/159 +f 685/983/159 689/987/159 690/984/159 +f 687/986/155 691/990/155 689/987/155 +f 686/985/157 690/984/157 692/988/157 +f 690/984/158 689/987/158 683/980/158 +f 692/988/158 690/984/158 684/982/158 +f 683/980/158 689/987/158 691/990/158 +f 680/978/156 679/967/156 641/963/156 +f 647/965/156 677/979/156 680/978/156 +f 695/992/158 637/969/158 674/971/158 +f 676/975/158 638/970/158 696/976/158 +f 696/976/157 700/997/157 697/995/157 +f 694/993/155 698/1034/155 699/996/155 +f 695/992/159 699/996/159 700/997/159 +f 700/997/156 699/996/156 685/983/156 +f 699/996/156 698/1034/156 687/986/156 +f 688/989/156 697/995/156 700/997/156 +f 712/998/156 716/1035/156 715/999/156 +f 707/1001/173 708/1036/173 705/1002/173 +f 704/1004/156 708/1036/156 707/1001/156 +f 703/1006/158 701/1009/158 706/1003/158 +f 715/999/173 716/1035/173 713/1007/173 +f 702/1005/157 707/1001/157 706/1003/157 +f 711/1010/158 709/1011/158 714/1008/158 +f 710/1000/157 715/999/157 714/1008/157 +f 723/1012/159 724/1019/159 721/1013/159 +f 720/1015/156 724/1019/156 723/1012/156 +f 717/1017/158 722/1014/158 721/1013/158 +f 719/1018/155 721/1013/155 724/1019/155 +f 718/1016/157 723/1012/157 722/1014/157 +f 942/900/157 947/899/157 946/1020/157 +f 943/1022/155 945/1032/155 948/1023/155 +f 935/1024/155 937/1031/155 940/1025/155 +f 934/1027/157 939/1030/157 938/1028/157 +f 936/1026/156 940/1025/156 939/1030/156 +f 933/1029/158 938/1028/158 937/1031/158 +f 941/1021/158 946/1020/158 945/1032/158 +s 1 +f 728/1037/174 735/1038/175 727/1039/173 +f 726/1040/176 733/1041/177 725/1042/178 +f 725/1042/178 740/1043/179 732/1044/180 +f 731/1045/181 738/1046/182 730/1047/183 +f 729/1048/184 736/1049/185 728/1037/174 +f 727/1039/173 734/1050/186 726/1040/176 +f 732/1044/180 739/1051/187 731/1045/181 +f 730/1047/183 737/1052/188 729/1048/184 +f 736/1049/185 745/1053/189 744/1054/190 +f 735/1038/175 742/1055/191 734/1050/186 +f 738/1046/182 745/1053/189 737/1052/188 +f 736/1049/185 743/1056/173 735/1038/175 +f 734/1050/186 741/1057/192 733/1041/177 +f 733/1041/177 747/1058/193 740/1043/179 +f 742/1055/191 748/1059/194 741/1057/192 +f 747/1058/193 748/1059/194 754/1060/195 +f 744/1054/190 752/1061/196 751/1062/197 +f 743/1056/173 749/1063/198 742/1055/191 +f 746/1064/199 752/1061/196 745/1053/189 +f 743/1056/173 751/1062/197 750/1065/200 +f 740/1043/179 747/1058/193 739/1051/187 +f 747/1058/193 754/1060/195 739/1051/187 +f 738/1046/182 739/1051/187 746/1064/199 +f 746/1064/199 739/1051/187 753/1066/201 +f 739/1051/187 761/1067/202 753/1066/201 +f 748/1059/194 762/1068/203 754/1060/195 +f 754/1060/195 755/1069/155 739/1051/187 +f 752/1061/196 759/1070/204 751/1062/197 +f 750/1065/200 757/1071/205 749/1063/198 +f 753/1066/201 760/1072/158 752/1061/196 +f 751/1062/197 758/1073/157 750/1065/200 +f 749/1063/198 756/1074/156 748/1059/194 +f 731/1045/181 769/1075/206 732/1044/180 +f 729/1048/184 767/1076/207 730/1047/183 +f 726/1040/176 763/1077/208 764/1078/209 +f 725/1042/178 769/1075/206 763/1077/208 +f 730/1047/183 768/1079/187 731/1045/181 +f 729/1048/184 765/1080/210 766/1081/211 +f 768/1079/187 776/1082/212 769/1075/206 +f 766/1081/211 774/1083/213 767/1076/207 +f 764/1078/209 770/1084/214 771/1085/215 +f 769/1075/206 770/1084/214 763/1077/208 +f 768/1079/187 774/1083/213 775/1086/216 +f 766/1081/211 772/1087/217 773/1088/218 +f 727/1039/173 765/1080/210 728/1037/174 +f 765/1080/210 727/1039/173 772/1087/217 +f 726/1040/176 764/1078/209 727/1039/173 +f 764/1078/209 771/1085/215 727/1039/173 +f 775/1086/216 784/1089/219 776/1082/212 +f 773/1088/218 782/1090/220 774/1083/213 +f 770/1084/214 779/1091/221 771/1085/215 +f 771/1085/215 777/1092/222 727/1039/173 +f 776/1082/212 778/1093/223 770/1084/214 +f 727/1039/173 780/1094/224 772/1087/217 +f 774/1083/213 783/1095/225 775/1086/216 +f 772/1087/217 781/1096/226 773/1088/218 +f 778/1093/223 787/1097/227 779/1091/221 +f 779/1091/221 785/1098/228 777/1092/222 +f 784/1089/219 786/1099/163 778/1093/223 +f 783/1095/225 789/1100/229 790/1101/230 +f 777/1092/222 788/1102/231 780/1094/224 +f 784/1089/219 790/1101/230 791/1103/232 +f 785/1098/228 795/1104/233 788/1102/231 +f 791/1103/232 797/1105/234 798/1106/235 +f 787/1097/227 793/1107/236 794/1108/237 +f 787/1097/227 792/1109/238 785/1098/228 +f 791/1103/232 793/1107/236 786/1099/163 +f 789/1100/229 797/1105/234 790/1101/230 +f 781/1096/226 789/1100/229 782/1090/220 +f 789/1100/229 781/1096/226 796/1110/239 +f 780/1094/224 788/1102/231 781/1096/226 +f 788/1102/231 795/1104/233 781/1096/226 +f 805/1111/155 814/1112/219 806/1113/203 +f 803/1114/158 812/1115/220 804/1116/202 +f 800/1117/156 809/1118/221 801/1119/205 +f 801/1119/205 807/1120/222 799/1121/157 +f 806/1113/203 808/1122/223 800/1117/156 +f 799/1121/157 810/1123/224 802/1124/204 +f 804/1116/202 813/1125/225 805/1111/155 +f 802/1124/204 811/1126/226 803/1114/158 +f 808/1122/223 817/1127/227 809/1118/221 +f 809/1118/221 815/1128/228 807/1120/222 +f 814/1112/219 816/1129/163 808/1122/223 +f 813/1125/225 819/1130/229 820/1131/230 +f 807/1120/222 818/1132/231 810/1123/224 +f 814/1112/219 820/1131/230 821/1133/232 +f 818/1132/231 822/1134/238 825/1135/233 +f 821/1133/232 827/1136/234 828/1137/235 +f 816/1129/163 824/1138/237 817/1127/227 +f 815/1128/228 824/1138/237 822/1134/238 +f 821/1133/232 823/1139/236 816/1129/163 +f 819/1130/229 827/1136/234 820/1131/230 +f 811/1126/226 819/1130/229 812/1115/220 +f 819/1130/229 811/1126/226 826/1140/239 +f 810/1123/224 818/1132/231 811/1126/226 +f 818/1132/231 825/1135/233 811/1126/226 +f 839/1141/175 832/1142/176 831/1143/173 +f 837/1144/188 830/1145/174 829/1146/184 +f 844/1147/182 829/1146/184 836/1148/183 +f 842/1149/179 835/1150/181 834/1151/180 +f 840/1152/186 833/1153/178 832/1142/176 +f 838/1154/185 831/1143/173 830/1145/174 +f 843/1155/187 836/1148/183 835/1150/181 +f 841/1156/177 834/1151/180 833/1153/178 +f 840/1152/186 849/1157/192 841/1156/177 +f 846/1158/190 839/1141/175 838/1154/185 +f 849/1157/192 842/1149/179 841/1156/177 +f 847/1159/173 840/1152/186 839/1141/175 +f 845/1160/189 838/1154/185 837/1144/188 +f 844/1147/182 845/1160/189 837/1144/188 +f 852/1161/196 846/1158/190 845/1160/189 +f 858/1162/201 845/1160/189 851/1163/199 +f 855/1164/198 849/1157/192 848/1165/191 +f 853/1166/197 847/1159/173 846/1158/190 +f 849/1157/192 857/1167/195 850/1168/193 +f 847/1159/173 855/1164/198 848/1165/191 +f 844/1147/182 843/1155/187 851/1163/199 +f 851/1163/199 843/1155/187 858/1162/201 +f 842/1149/179 850/1168/193 843/1155/187 +f 850/1168/193 857/1167/195 843/1155/187 +f 865/1169/203 843/1155/187 857/1167/195 +f 866/1170/202 852/1161/196 858/1162/201 +f 859/1171/155 858/1162/201 843/1155/187 +f 863/1172/205 856/1173/194 855/1164/198 +f 861/1174/204 854/1175/200 853/1166/197 +f 864/1176/156 857/1167/195 856/1173/194 +f 862/1177/157 855/1164/198 854/1175/200 +f 860/1178/158 853/1166/197 852/1161/196 +f 873/1179/207 835/1150/181 836/1148/183 +f 834/1151/180 870/1180/208 833/1153/178 +f 830/1145/174 867/1181/211 829/1146/184 +f 829/1146/184 873/1179/207 836/1148/183 +f 835/1150/181 871/1182/206 834/1151/180 +f 870/1180/208 832/1142/176 833/1153/178 +f 880/1183/213 872/1184/187 873/1179/207 +f 878/1185/212 870/1180/208 871/1182/206 +f 868/1186/210 874/1187/218 867/1181/211 +f 867/1181/211 880/1183/213 873/1179/207 +f 872/1184/187 878/1185/212 871/1182/206 +f 877/1188/214 869/1189/209 870/1180/208 +f 831/1143/173 832/1142/176 869/1189/209 +f 869/1189/209 876/1190/215 831/1143/173 +f 830/1145/174 831/1143/173 868/1186/210 +f 868/1186/210 831/1143/173 875/1191/217 +f 888/1192/240 879/1193/216 880/1183/213 +f 886/1194/241 877/1188/214 878/1185/212 +f 883/1195/242 874/1187/218 875/1191/217 +f 881/1196/243 875/1191/217 831/1143/173 +f 882/1197/244 880/1183/213 874/1187/218 +f 884/1198/245 831/1143/173 876/1190/215 +f 887/1199/246 878/1185/212 879/1193/216 +f 885/1200/247 876/1190/215 877/1188/214 +f 883/1195/242 890/1201/162 882/1197/244 +f 889/1202/248 883/1195/242 881/1196/243 +f 890/1201/162 888/1192/240 882/1197/244 +f 887/1199/246 893/1203/249 886/1194/241 +f 892/1204/250 881/1196/243 884/1198/245 +f 888/1192/240 894/1205/251 887/1199/246 +f 899/1206/252 889/1202/248 892/1204/250 +f 895/1207/253 901/1208/254 894/1205/251 +f 891/1209/255 897/1210/256 890/1201/162 +f 896/1211/257 891/1209/255 889/1202/248 +f 897/1210/256 895/1207/253 890/1201/162 +f 901/1208/254 893/1203/249 894/1205/251 +f 885/1200/247 886/1194/241 893/1203/249 +f 893/1203/249 900/1212/258 885/1200/247 +f 884/1198/245 885/1200/247 892/1204/250 +f 892/1204/250 885/1200/247 899/1206/252 +f 918/1213/240 909/1214/155 910/1215/202 +f 916/1216/241 907/1217/156 908/1218/203 +f 913/1219/242 904/1220/158 905/1221/204 +f 911/1222/243 905/1221/204 903/1223/157 +f 912/1224/244 910/1215/202 904/1220/158 +f 914/1225/245 903/1223/157 906/1226/205 +f 917/1227/246 908/1218/203 909/1214/155 +f 915/1228/247 906/1226/205 907/1217/156 +f 913/1219/242 920/1229/162 912/1224/244 +f 911/1222/243 921/1230/255 913/1219/242 +f 920/1229/162 918/1213/240 912/1224/244 +f 917/1227/246 923/1231/249 916/1216/241 +f 922/1232/250 911/1222/243 914/1225/245 +f 918/1213/240 924/1233/251 917/1227/246 +f 922/1232/250 926/1234/257 919/1235/248 +f 925/1236/253 931/1237/254 924/1233/251 +f 928/1238/259 920/1229/162 921/1230/255 +f 926/1234/257 921/1230/255 919/1235/248 +f 927/1239/256 925/1236/253 920/1229/162 +f 931/1237/254 923/1231/249 924/1233/251 +f 915/1228/247 916/1216/241 923/1231/249 +f 923/1231/249 930/1240/258 915/1228/247 +f 914/1225/245 915/1228/247 922/1232/250 +f 922/1232/250 915/1228/247 929/1241/252 +f 728/1037/174 736/1049/185 735/1038/175 +f 726/1040/176 734/1050/186 733/1041/177 +f 725/1042/178 733/1041/177 740/1043/179 +f 731/1045/181 739/1051/187 738/1046/182 +f 729/1048/184 737/1052/188 736/1049/185 +f 727/1039/173 735/1038/175 734/1050/186 +f 732/1044/180 740/1043/179 739/1051/187 +f 730/1047/183 738/1046/182 737/1052/188 +f 736/1049/185 737/1052/188 745/1053/189 +f 735/1038/175 743/1056/173 742/1055/191 +f 738/1046/182 746/1064/199 745/1053/189 +f 736/1049/185 744/1054/190 743/1056/173 +f 734/1050/186 742/1055/191 741/1057/192 +f 733/1041/177 741/1057/192 747/1058/193 +f 742/1055/191 749/1063/198 748/1059/194 +f 747/1058/193 741/1057/192 748/1059/194 +f 744/1054/190 745/1053/189 752/1061/196 +f 743/1056/173 750/1065/200 749/1063/198 +f 746/1064/199 753/1066/201 752/1061/196 +f 743/1056/173 744/1054/190 751/1062/197 +f 739/1051/187 755/1069/155 761/1067/202 +f 748/1059/194 756/1074/156 762/1068/203 +f 754/1060/195 762/1068/203 755/1069/155 +f 752/1061/196 760/1072/158 759/1070/204 +f 750/1065/200 758/1073/157 757/1071/205 +f 753/1066/201 761/1067/202 760/1072/158 +f 751/1062/197 759/1070/204 758/1073/157 +f 749/1063/198 757/1071/205 756/1074/156 +f 731/1045/181 768/1079/187 769/1075/206 +f 729/1048/184 766/1081/211 767/1076/207 +f 726/1040/176 725/1042/178 763/1077/208 +f 725/1042/178 732/1044/180 769/1075/206 +f 730/1047/183 767/1076/207 768/1079/187 +f 729/1048/184 728/1037/174 765/1080/210 +f 768/1079/187 775/1086/216 776/1082/212 +f 766/1081/211 773/1088/218 774/1083/213 +f 764/1078/209 763/1077/208 770/1084/214 +f 769/1075/206 776/1082/212 770/1084/214 +f 768/1079/187 767/1076/207 774/1083/213 +f 766/1081/211 765/1080/210 772/1087/217 +f 775/1086/216 783/1095/225 784/1089/219 +f 773/1088/218 781/1096/226 782/1090/220 +f 770/1084/214 778/1093/223 779/1091/221 +f 771/1085/215 779/1091/221 777/1092/222 +f 776/1082/212 784/1089/219 778/1093/223 +f 727/1039/173 777/1092/222 780/1094/224 +f 774/1083/213 782/1090/220 783/1095/225 +f 772/1087/217 780/1094/224 781/1096/226 +f 778/1093/223 786/1099/163 787/1097/227 +f 779/1091/221 787/1097/227 785/1098/228 +f 784/1089/219 791/1103/232 786/1099/163 +f 783/1095/225 782/1090/220 789/1100/229 +f 777/1092/222 785/1098/228 788/1102/231 +f 784/1089/219 783/1095/225 790/1101/230 +f 785/1098/228 792/1109/238 795/1104/233 +f 791/1103/232 790/1101/230 797/1105/234 +f 787/1097/227 786/1099/163 793/1107/236 +f 787/1097/227 794/1108/237 792/1109/238 +f 791/1103/232 798/1106/235 793/1107/236 +f 789/1100/229 796/1110/239 797/1105/234 +f 805/1111/155 813/1125/225 814/1112/219 +f 803/1114/158 811/1126/226 812/1115/220 +f 800/1117/156 808/1122/223 809/1118/221 +f 801/1119/205 809/1118/221 807/1120/222 +f 806/1113/203 814/1112/219 808/1122/223 +f 799/1121/157 807/1120/222 810/1123/224 +f 804/1116/202 812/1115/220 813/1125/225 +f 802/1124/204 810/1123/224 811/1126/226 +f 808/1122/223 816/1129/163 817/1127/227 +f 809/1118/221 817/1127/227 815/1128/228 +f 814/1112/219 821/1133/232 816/1129/163 +f 813/1125/225 812/1115/220 819/1130/229 +f 807/1120/222 815/1128/228 818/1132/231 +f 814/1112/219 813/1125/225 820/1131/230 +f 818/1132/231 815/1128/228 822/1134/238 +f 821/1133/232 820/1131/230 827/1136/234 +f 816/1129/163 823/1139/236 824/1138/237 +f 815/1128/228 817/1127/227 824/1138/237 +f 821/1133/232 828/1137/235 823/1139/236 +f 819/1130/229 826/1140/239 827/1136/234 +f 839/1141/175 840/1152/186 832/1142/176 +f 837/1144/188 838/1154/185 830/1145/174 +f 844/1147/182 837/1144/188 829/1146/184 +f 842/1149/179 843/1155/187 835/1150/181 +f 840/1152/186 841/1156/177 833/1153/178 +f 838/1154/185 839/1141/175 831/1143/173 +f 843/1155/187 844/1147/182 836/1148/183 +f 841/1156/177 842/1149/179 834/1151/180 +f 840/1152/186 848/1165/191 849/1157/192 +f 846/1158/190 847/1159/173 839/1141/175 +f 849/1157/192 850/1168/193 842/1149/179 +f 847/1159/173 848/1165/191 840/1152/186 +f 845/1160/189 846/1158/190 838/1154/185 +f 844/1147/182 851/1163/199 845/1160/189 +f 852/1161/196 853/1166/197 846/1158/190 +f 858/1162/201 852/1161/196 845/1160/189 +f 855/1164/198 856/1173/194 849/1157/192 +f 853/1166/197 854/1175/200 847/1159/173 +f 849/1157/192 856/1173/194 857/1167/195 +f 847/1159/173 854/1175/200 855/1164/198 +f 865/1169/203 859/1171/155 843/1155/187 +f 866/1170/202 860/1178/158 852/1161/196 +f 859/1171/155 866/1170/202 858/1162/201 +f 863/1172/205 864/1176/156 856/1173/194 +f 861/1174/204 862/1177/157 854/1175/200 +f 864/1176/156 865/1169/203 857/1167/195 +f 862/1177/157 863/1172/205 855/1164/198 +f 860/1178/158 861/1174/204 853/1166/197 +f 873/1179/207 872/1184/187 835/1150/181 +f 834/1151/180 871/1182/206 870/1180/208 +f 830/1145/174 868/1186/210 867/1181/211 +f 829/1146/184 867/1181/211 873/1179/207 +f 835/1150/181 872/1184/187 871/1182/206 +f 870/1180/208 869/1189/209 832/1142/176 +f 880/1183/213 879/1193/216 872/1184/187 +f 878/1185/212 877/1188/214 870/1180/208 +f 868/1186/210 875/1191/217 874/1187/218 +f 867/1181/211 874/1187/218 880/1183/213 +f 872/1184/187 879/1193/216 878/1185/212 +f 877/1188/214 876/1190/215 869/1189/209 +f 888/1192/240 887/1199/246 879/1193/216 +f 886/1194/241 885/1200/247 877/1188/214 +f 883/1195/242 882/1197/244 874/1187/218 +f 881/1196/243 883/1195/242 875/1191/217 +f 882/1197/244 888/1192/240 880/1183/213 +f 884/1198/245 881/1196/243 831/1143/173 +f 887/1199/246 886/1194/241 878/1185/212 +f 885/1200/247 884/1198/245 876/1190/215 +f 883/1195/242 891/1209/255 890/1201/162 +f 889/1202/248 891/1209/255 883/1195/242 +f 890/1201/162 895/1207/253 888/1192/240 +f 887/1199/246 894/1205/251 893/1203/249 +f 892/1204/250 889/1202/248 881/1196/243 +f 888/1192/240 895/1207/253 894/1205/251 +f 899/1206/252 896/1211/257 889/1202/248 +f 895/1207/253 902/1242/260 901/1208/254 +f 891/1209/255 898/1243/259 897/1210/256 +f 896/1211/257 898/1243/259 891/1209/255 +f 897/1210/256 902/1242/260 895/1207/253 +f 901/1208/254 900/1212/258 893/1203/249 +f 918/1213/240 917/1227/246 909/1214/155 +f 916/1216/241 915/1228/247 907/1217/156 +f 913/1219/242 912/1224/244 904/1220/158 +f 911/1222/243 913/1219/242 905/1221/204 +f 912/1224/244 918/1213/240 910/1215/202 +f 914/1225/245 911/1222/243 903/1223/157 +f 917/1227/246 916/1216/241 908/1218/203 +f 915/1228/247 914/1225/245 906/1226/205 +f 913/1219/242 921/1230/255 920/1229/162 +f 911/1222/243 919/1235/248 921/1230/255 +f 920/1229/162 925/1236/253 918/1213/240 +f 917/1227/246 924/1233/251 923/1231/249 +f 922/1232/250 919/1235/248 911/1222/243 +f 918/1213/240 925/1236/253 924/1233/251 +f 922/1232/250 929/1241/252 926/1234/257 +f 925/1236/253 932/1244/260 931/1237/254 +f 928/1238/259 927/1239/256 920/1229/162 +f 926/1234/257 928/1238/259 921/1230/255 +f 927/1239/256 932/1244/260 925/1236/253 +f 931/1237/254 930/1240/258 923/1231/249 diff --git a/src/main/resources/assets/hbm/models/weapons/am180.obj b/src/main/resources/assets/hbm/models/weapons/am180.obj new file mode 100644 index 000000000..ed63feb9a --- /dev/null +++ b/src/main/resources/assets/hbm/models/weapons/am180.obj @@ -0,0 +1,4369 @@ +# Blender v2.79 (sub 0) OBJ File: 'am180.blend' +# www.blender.org +o Mag +v 0.574255 2.611670 3.643148 +v 0.000000 2.611670 2.937500 +v 0.000000 2.611670 3.718750 +v 0.718750 2.611670 2.744912 +v 0.372052 2.611670 2.888518 +v 1.568893 2.611670 3.068893 +v 1.109375 2.611670 3.421494 +v 1.921494 2.611670 2.609375 +v 1.016466 2.611670 2.516466 +v 2.143148 2.611670 2.074255 +v 1.244912 2.611670 2.218750 +v 2.218750 2.611670 1.500000 +v 1.388518 2.611670 1.872052 +v 1.388518 2.611670 1.127948 +v 1.437500 2.611670 1.500000 +v 2.143148 2.611670 0.925745 +v 1.244912 2.611670 0.781250 +v 1.568893 2.611670 -0.068893 +v 1.921494 2.611670 0.390625 +v 1.109375 2.611670 -0.421494 +v 1.016466 2.611670 0.483534 +v 0.574255 2.611670 -0.643148 +v 0.718750 2.611670 0.255088 +v 0.000000 2.611670 -0.718750 +v 0.372052 2.611670 0.111482 +v -0.574255 2.611670 -0.643148 +v 0.000000 2.611670 0.062500 +v -1.109375 2.611670 -0.421494 +v -0.372052 2.611670 0.111482 +v -1.568893 2.611670 -0.068893 +v -0.718750 2.611670 0.255088 +v -1.921494 2.611670 0.390625 +v -1.016466 2.611670 0.483534 +v -2.143148 2.611670 0.925746 +v -1.244911 2.611670 0.781250 +v -2.218750 2.611670 1.500000 +v -1.388518 2.611670 1.127948 +v -2.143148 2.611670 2.074255 +v -1.437500 2.611670 1.500000 +v -1.921494 2.611670 2.609375 +v -1.388518 2.611670 1.872052 +v -1.568893 2.611670 3.068893 +v -1.244912 2.611670 2.218750 +v -1.109375 2.611670 3.421494 +v -1.016466 2.611670 2.516466 +v -0.372052 2.611670 2.888518 +v -0.718750 2.611670 2.744912 +v -0.574255 2.611670 3.643148 +v 1.016466 2.111670 0.483534 +v 0.718750 2.111670 0.255088 +v 1.149048 2.486670 0.616117 +v 0.815595 2.111670 0.949570 +v 1.149048 2.111670 0.616117 +v 0.550430 2.486670 0.684405 +v 0.883884 2.486670 0.350952 +v -0.815595 2.486670 2.050431 +v -1.149048 2.111670 2.383884 +v -1.149048 2.486670 2.383884 +v -0.883883 2.486670 2.649049 +v -0.500000 2.424170 0.633975 +v -0.156677 2.424170 0.684405 +v 0.000000 2.424170 0.500000 +v 0.550430 2.424170 0.684405 +v 0.500000 2.424170 0.633975 +v 0.326286 2.424170 0.813814 +v 0.067467 2.424170 0.813814 +v 0.500000 2.424170 2.366026 +v 0.156677 2.424170 2.315596 +v 0.000000 2.424170 2.500000 +v -0.067467 2.424170 2.186186 +v -0.550430 2.424170 2.315596 +v -0.500000 2.424170 2.366026 +v -0.326286 2.424170 2.186186 +v 0.326286 2.486670 0.813814 +v 0.067467 2.486670 0.813814 +v -0.067467 2.486670 2.186186 +v 0.062500 2.549170 1.391747 +v 0.125000 2.486670 1.500000 +v 0.062500 2.486670 1.391747 +v 0.062500 2.549170 1.608253 +v -0.062500 2.486670 1.608253 +v 0.062500 2.486670 1.608253 +v -0.062500 2.549170 1.391747 +v -0.062500 2.486670 1.391747 +v 0.125000 2.549170 1.500000 +v -0.062500 2.549170 1.608253 +v -0.125000 2.486670 1.500000 +v -0.125000 2.549170 1.500000 +v 0.437500 2.549170 1.016747 +v 0.500000 2.486670 1.125000 +v 0.437500 2.486670 1.016747 +v 0.437500 2.549170 1.233253 +v 0.312500 2.486670 1.233253 +v 0.437500 2.486670 1.233253 +v 0.312500 2.549170 1.016747 +v 0.312500 2.486670 1.016747 +v 0.500000 2.549170 1.125000 +v 0.312500 2.549170 1.233253 +v 0.250000 2.486670 1.125000 +v 0.250000 2.549170 1.125000 +v -0.312500 2.549170 1.766747 +v -0.250000 2.486670 1.875000 +v -0.312500 2.486670 1.766747 +v -0.312500 2.549170 1.983253 +v -0.437500 2.486670 1.983253 +v -0.312500 2.486670 1.983253 +v -0.437500 2.549170 1.766747 +v -0.437500 2.486670 1.766747 +v -0.250000 2.549170 1.875000 +v -0.437500 2.549170 1.983253 +v -0.500000 2.486670 1.875000 +v -0.500000 2.549170 1.875000 +v 1.244912 2.111670 0.781250 +v 0.815595 2.486670 0.949570 +v -0.815595 2.111670 2.050431 +v -0.550430 2.486670 2.315596 +v -1.000000 2.486670 1.500000 +v -0.866025 2.486670 2.000000 +v -0.326286 2.486670 2.186186 +v 0.156677 2.486670 2.315596 +v 0.866025 2.486670 2.000000 +v 0.500000 2.486670 2.366026 +v -0.866025 2.486670 1.000000 +v -0.156677 2.486670 0.684405 +v -0.500000 2.486670 0.633975 +v 1.000000 2.486670 1.500000 +v 0.866025 2.486670 1.000000 +v 0.574255 2.111670 3.643148 +v 0.000000 2.111670 3.718750 +v 1.921494 2.111670 0.390625 +v 2.143148 2.111670 0.925745 +v -1.568893 2.111670 -0.068893 +v -1.109375 2.111670 -0.421494 +v -0.574255 2.111670 3.643148 +v 2.218750 2.111670 1.500000 +v -0.574255 2.111670 -0.643148 +v -1.109375 2.111670 3.421494 +v 2.143148 2.111670 2.074255 +v 0.000000 2.111670 -0.718750 +v -1.568893 2.111670 3.068893 +v 1.921494 2.111670 2.609375 +v 0.574255 2.111670 -0.643148 +v -1.921494 2.111670 2.609375 +v 1.568893 2.111670 3.068893 +v 1.109375 2.111670 -0.421494 +v -2.143148 2.111670 2.074255 +v -2.218750 2.111670 1.500000 +v -2.143148 2.111670 0.925746 +v 1.109375 2.111670 3.421494 +v 1.568893 2.111670 -0.068893 +v -1.921494 2.111670 0.390625 +v -0.372052 2.111670 0.111482 +v 1.437500 2.111670 1.500000 +v -0.372052 2.111670 2.888518 +v -0.718750 2.111670 0.255088 +v 1.388518 2.111670 1.127948 +v 0.000000 2.111670 2.937500 +v -1.016466 2.111670 0.483534 +v 0.372052 2.111670 2.888518 +v -1.244911 2.111670 0.781250 +v -1.437500 2.111670 1.500000 +v 0.718750 2.111670 2.744912 +v -1.388518 2.111670 1.127948 +v -1.388518 2.111670 1.872052 +v 1.016466 2.111670 2.516466 +v 0.372052 2.111670 0.111482 +v 1.244912 2.111670 2.218750 +v 0.000000 2.111670 0.062500 +v 1.388518 2.111670 1.872052 +v -0.718750 2.111670 2.744912 +v 1.000000 2.111670 1.500000 +v 0.866025 2.111670 2.000000 +v 0.866025 2.111670 1.000000 +v -0.883883 2.111670 2.649049 +v 0.000000 2.111670 0.500000 +v -0.500000 2.111670 0.633975 +v -0.866025 2.111670 2.000000 +v -1.000000 2.111670 1.500000 +v 0.500000 2.111670 2.366026 +v -0.866025 2.111670 1.000000 +v 0.500000 2.111670 0.633975 +v 0.550430 2.111670 0.684405 +v 0.883884 2.111670 0.350952 +v -0.500000 2.111670 2.366026 +v -1.016466 2.111670 2.516466 +v -0.550430 2.111670 2.315596 +v 0.031250 2.611670 1.445874 +v 0.062500 2.611670 1.500000 +v -0.062500 2.611670 1.500000 +v -0.031250 2.611670 1.554127 +v -0.031250 2.611670 1.445874 +v 0.031250 2.611670 1.554127 +v -1.244912 2.111670 2.218750 +v 0.000000 2.111670 2.500000 +vt 0.033582 0.955224 +vt 0.005597 1.000000 +vt 0.000000 0.955224 +vt 0.061567 1.000000 +vt 0.039179 1.000000 +vt 0.100746 0.955224 +vt 0.072761 1.000000 +vt 0.067164 0.955224 +vt 0.134328 0.955224 +vt 0.106343 1.000000 +vt 0.167910 0.955224 +vt 0.139925 1.000000 +vt 0.201493 0.955224 +vt 0.173507 1.000000 +vt 0.229478 1.000000 +vt 0.207089 1.000000 +vt 0.235075 0.955224 +vt 0.263060 1.000000 +vt 0.240672 1.000000 +vt 0.302239 0.955224 +vt 0.274254 1.000000 +vt 0.268657 0.955224 +vt 0.335821 0.955224 +vt 0.307836 1.000000 +vt 0.369403 0.955224 +vt 0.341418 1.000000 +vt 0.402985 0.955224 +vt 0.375000 1.000000 +vt 0.436567 0.955224 +vt 0.408582 1.000000 +vt 0.470149 0.955224 +vt 0.442164 1.000000 +vt 0.503731 0.955224 +vt 0.475746 1.000000 +vt 0.537313 0.955224 +vt 0.509328 1.000000 +vt 0.570895 0.955224 +vt 0.542910 1.000000 +vt 0.604478 0.955224 +vt 0.576492 1.000000 +vt 0.638060 0.955224 +vt 0.610075 1.000000 +vt 0.671642 0.955224 +vt 0.643657 1.000000 +vt 0.705224 0.955224 +vt 0.677239 1.000000 +vt 0.738806 0.955224 +vt 0.710821 1.000000 +vt 0.766791 1.000000 +vt 0.744403 1.000000 +vt 0.805970 0.955224 +vt 0.777986 1.000000 +vt 0.772388 0.955224 +vt 0.201493 0.895522 +vt 0.179104 0.925373 +vt 0.201493 0.925373 +vt 0.223881 0.895522 +vt 0.223881 0.925373 +vt 0.567164 0.902985 +vt 0.597015 0.925373 +vt 0.567164 0.925373 +vt 0.597015 0.880597 +vt 0.567164 0.880597 +vt 0.567164 0.902985 +vt 0.537313 0.925373 +vt 0.537313 0.902985 +vt 0.537313 0.880597 +vt 0.566630 0.343284 +vt 0.563619 0.322787 +vt 0.574627 0.313433 +vt 0.563619 0.280571 +vt 0.566630 0.283582 +vt 0.555892 0.293953 +vt 0.555892 0.309405 +vt 0.545310 0.283582 +vt 0.548321 0.304079 +vt 0.537312 0.313433 +vt 0.556049 0.317459 +vt 0.548321 0.346295 +vt 0.545310 0.343284 +vt 0.556047 0.332913 +vt 0.637981 0.779028 +vt 0.637981 0.794480 +vt 0.556049 0.802535 +vt 0.619403 0.876866 +vt 0.611940 0.880597 +vt 0.619403 0.880597 +vt 0.604478 0.876866 +vt 0.597015 0.880597 +vt 0.604478 0.880597 +vt 0.626866 0.876866 +vt 0.626866 0.880597 +vt 0.611940 0.876866 +vt 0.641791 0.876866 +vt 0.634328 0.880597 +vt 0.641791 0.880597 +vt 0.634328 0.876866 +vt 0.619403 0.876866 +vt 0.611940 0.880597 +vt 0.619403 0.880597 +vt 0.604478 0.876866 +vt 0.597015 0.880597 +vt 0.604478 0.880597 +vt 0.626866 0.876866 +vt 0.626866 0.880597 +vt 0.611940 0.876866 +vt 0.641791 0.876866 +vt 0.634328 0.880597 +vt 0.641791 0.880597 +vt 0.634328 0.876866 +vt 0.600746 0.872135 +vt 0.600746 0.859209 +vt 0.611940 0.865672 +vt 0.619403 0.876866 +vt 0.611940 0.880597 +vt 0.619403 0.880597 +vt 0.604478 0.876866 +vt 0.597015 0.880597 +vt 0.604478 0.880597 +vt 0.626866 0.876866 +vt 0.626866 0.880597 +vt 0.611940 0.876866 +vt 0.641791 0.876866 +vt 0.634328 0.880597 +vt 0.641791 0.880597 +vt 0.634328 0.876866 +vt 0.600746 0.872135 +vt 0.600746 0.859209 +vt 0.611940 0.865672 +vt 0.027985 1.000000 +vt 0.095149 1.000000 +vt 0.128731 1.000000 +vt 0.162313 1.000000 +vt 0.195895 1.000000 +vt 0.296642 1.000000 +vt 0.330224 1.000000 +vt 0.363807 1.000000 +vt 0.397388 1.000000 +vt 0.430970 1.000000 +vt 0.464552 1.000000 +vt 0.498134 1.000000 +vt 0.531716 1.000000 +vt 0.565298 1.000000 +vt 0.598881 1.000000 +vt 0.632463 1.000000 +vt 0.666045 1.000000 +vt 0.699627 1.000000 +vt 0.733209 1.000000 +vt 0.800373 1.000000 +vt 0.179104 0.895522 +vt 0.597015 0.902985 +vt 0.567164 0.925373 +vt 0.567164 0.880597 +vt 0.597015 0.858209 +vt 0.567164 0.850210 +vt 0.556049 0.817987 +vt 0.564153 0.847200 +vt 0.548323 0.831369 +vt 0.548323 0.789154 +vt 0.567164 0.746804 +vt 0.545312 0.768657 +vt 0.626866 0.850210 +vt 0.645707 0.807861 +vt 0.648718 0.828358 +vt 0.597015 0.738806 +vt 0.626866 0.746804 +vt 0.629876 0.749815 +vt 0.645707 0.765646 +vt 0.597015 0.876866 +vt 0.597015 0.876866 +vt 0.608209 0.872135 +vt 0.597015 0.865672 +vt 0.608209 0.859209 +vt 0.597015 0.876866 +vt 0.608209 0.872135 +vt 0.597015 0.865672 +vt 0.608209 0.859209 +vt 0.033582 0.925373 +vt 0.000000 0.925373 +vt 0.268657 0.925373 +vt 0.235075 0.925373 +vt 0.503731 0.925373 +vt 0.470149 0.925373 +vt 0.805970 0.925373 +vt 0.772388 0.925373 +vt 0.201493 0.925373 +vt 0.436567 0.925373 +vt 0.738806 0.925373 +vt 0.167910 0.925373 +vt 0.402985 0.925373 +vt 0.705224 0.925373 +vt 0.134328 0.925373 +vt 0.369403 0.925373 +vt 0.671642 0.925373 +vt 0.100746 0.925373 +vt 0.335821 0.925373 +vt 0.638060 0.925373 +vt 0.604478 0.925373 +vt 0.570895 0.925373 +vt 0.067164 0.925373 +vt 0.302239 0.925373 +vt 0.537313 0.925373 +vt 0.313433 0.925373 +vt 0.291045 0.895522 +vt 0.291045 0.925373 +vt 0.156716 0.925373 +vt 0.134328 0.895522 +vt 0.134328 0.925373 +vt 0.537313 0.925373 +vt 0.514925 0.895522 +vt 0.514925 0.925373 +vt 0.335821 0.925373 +vt 0.313433 0.895522 +vt 0.156716 0.895522 +vt 0.022388 0.925373 +vt 0.000000 0.895522 +vt 0.000000 0.925373 +vt 0.358209 0.925373 +vt 0.335821 0.895522 +vt 0.044776 0.925373 +vt 0.022388 0.895522 +vt 0.380597 0.925373 +vt 0.358209 0.895522 +vt 0.425373 0.925373 +vt 0.402985 0.895522 +vt 0.402985 0.925373 +vt 0.067164 0.925373 +vt 0.044776 0.895522 +vt 0.380597 0.895522 +vt 0.447761 0.925373 +vt 0.425373 0.895522 +vt 0.246269 0.925373 +vt 0.089552 0.925373 +vt 0.067164 0.895522 +vt 0.268657 0.925373 +vt 0.246269 0.895522 +vt 0.111940 0.925373 +vt 0.089552 0.895522 +vt 0.268657 0.895522 +vt 0.111940 0.895522 +vt 0.492537 0.895522 +vt 0.492537 0.925373 +vt 0.720149 0.902985 +vt 0.690298 0.925373 +vt 0.690298 0.902985 +vt 0.660448 0.925373 +vt 0.660448 0.921642 +vt 0.690298 0.902985 +vt 0.660448 0.902985 +vt 0.660448 0.899254 +vt 0.750000 0.902985 +vt 0.720149 0.925373 +vt 0.567164 0.876866 +vt 0.537313 0.858209 +vt 0.630597 0.880597 +vt 0.660448 0.880597 +vt 0.750000 0.880597 +vt 0.720149 0.902985 +vt 0.720149 0.880597 +vt 0.630597 0.921642 +vt 0.660448 0.902985 +vt 0.690298 0.880597 +vt 0.600746 0.899254 +vt 0.600746 0.880597 +vt 0.597015 0.880597 +vt 0.597015 0.899254 +vt 0.567164 0.858209 +vt 0.597015 0.858209 +vt 0.597015 0.876866 +vt 0.753731 0.902985 +vt 0.750000 0.902985 +vt 0.600746 0.902985 +vt 0.600746 0.921642 +vt 0.470149 0.925373 +vt 0.470149 0.895522 +vt 0.597015 0.921642 +vt 0.597015 0.902985 +vt 0.750000 0.925373 +vt 0.753731 0.902985 +vt 0.753731 0.925373 +vt 0.597015 0.902985 +vt 0.611940 0.899254 +vt 0.611940 0.902985 +vt 0.626866 0.902985 +vt 0.626866 0.899254 +vt 0.641791 0.902985 +vt 0.641791 0.899254 +vt 0.641791 0.925373 +vt 0.626866 0.925373 +vt 0.641791 0.921642 +vt 0.611940 0.925373 +vt 0.626866 0.921642 +vt 0.597015 0.925373 +vt 0.619403 0.873134 +vt 0.611940 0.873134 +vt 0.634328 0.873134 +vt 0.597015 0.873134 +vt 0.626866 0.873134 +vt 0.604478 0.873134 +vt 0.617537 0.858709 +vt 0.619403 0.861940 +vt 0.613806 0.865172 +vt 0.537313 0.895522 +vt 0.447761 0.895522 +vt 0.567164 0.858209 +vt 0.630597 0.899254 +vt 0.630597 0.902985 +vt 0.753731 0.880597 +vt 0.611940 0.921642 +vt 0.641791 0.873134 +vt 0.617537 0.865172 +vt 0.611940 0.861940 +vt 0.613806 0.858709 +vn 0.0000 1.0000 0.0000 +vn -0.7934 0.0000 0.6088 +vn -0.6088 0.0000 0.7934 +vn 0.7071 0.0000 0.7071 +vn -0.7071 0.0000 -0.7071 +vn 0.8660 0.0000 -0.5000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.8660 0.0000 0.5000 +vn -0.8660 0.0000 0.5000 +vn -0.8660 0.0000 -0.5000 +vn 0.2588 0.0000 0.9659 +vn 0.9659 0.0000 -0.2588 +vn -0.5000 0.0000 -0.8660 +vn -0.2588 0.0000 0.9659 +vn 1.0000 0.0000 -0.0000 +vn -0.2588 0.0000 -0.9659 +vn -0.5000 0.0000 0.8660 +vn 0.9659 0.0000 0.2588 +vn -0.7071 0.0000 0.7071 +vn 0.2588 0.0000 -0.9659 +vn 0.5000 0.0000 -0.8660 +vn -0.9659 0.0000 0.2588 +vn -1.0000 0.0000 -0.0000 +vn -0.9659 0.0000 -0.2588 +vn 0.5000 0.0000 0.8660 +vn 0.7071 0.0000 -0.7071 +vn -0.9239 0.0000 0.3827 +vn -0.3827 0.0000 0.9239 +vn 0.3144 0.0000 0.9493 +vn 0.4129 0.0000 0.9108 +vn -0.3144 0.0000 -0.9493 +vn -0.4129 0.0000 -0.9108 +vn 0.6430 0.0000 0.7659 +vn -0.6430 0.0000 -0.7659 +vn -0.6088 0.0000 -0.7934 +vn 0.3285 0.0000 -0.9445 +vn -0.3285 0.0000 0.9445 +vn 0.6088 0.0000 0.7934 +vn -0.3536 0.7071 -0.6124 +vn 0.2400 0.8773 -0.4156 +vn 0.3536 0.7071 -0.6124 +vn 0.4799 0.8773 -0.0000 +vn 0.7071 0.7071 -0.0000 +vn -0.3536 0.7071 0.6124 +vn -0.4799 0.8773 -0.0000 +vn -0.7071 0.7071 0.0000 +vn 0.3536 0.7071 0.6124 +vn -0.2400 0.8773 0.4157 +vn -0.2400 0.8773 -0.4156 +vn 0.2400 0.8773 0.4157 +s off +f 1/1/1 2/2/1 3/3/1 +f 1/1/1 4/4/1 5/5/1 +f 6/6/1 4/7/1 7/8/1 +f 8/9/1 9/10/1 6/6/1 +f 10/11/1 11/12/1 8/9/1 +f 12/13/1 13/14/1 10/11/1 +f 12/13/1 14/15/1 15/16/1 +f 16/17/1 17/18/1 14/19/1 +f 18/20/1 17/21/1 19/22/1 +f 20/23/1 21/24/1 18/20/1 +f 22/25/1 23/26/1 20/23/1 +f 24/27/1 25/28/1 22/25/1 +f 26/29/1 27/30/1 24/27/1 +f 28/31/1 29/32/1 26/29/1 +f 30/33/1 31/34/1 28/31/1 +f 32/35/1 33/36/1 30/33/1 +f 34/37/1 35/38/1 32/35/1 +f 36/39/1 37/40/1 34/37/1 +f 38/41/1 39/42/1 36/39/1 +f 40/43/1 41/44/1 38/41/1 +f 42/45/1 43/46/1 40/43/1 +f 44/47/1 45/48/1 42/45/1 +f 44/47/1 46/49/1 47/50/1 +f 3/51/1 46/52/1 48/53/1 +f 49/54/2 17/55/2 21/56/2 +f 50/57/3 21/56/3 23/58/3 +f 51/59/4 52/60/4 53/61/4 +f 54/62/1 51/59/1 55/63/1 +f 56/64/5 57/65/5 58/66/5 +f 59/67/1 56/64/1 58/66/1 +f 60/68/1 61/69/1 62/70/1 +f 63/71/1 64/72/1 65/73/1 +f 62/70/1 65/73/1 64/72/1 +f 66/74/1 62/70/1 61/69/1 +f 67/75/1 68/76/1 69/77/1 +f 70/78/1 69/77/1 68/76/1 +f 71/79/1 72/80/1 73/81/1 +f 69/77/1 73/81/1 72/80/1 +f 74/82/1 75/83/1 76/84/1 +f 77/85/6 78/86/6 79/87/6 +f 80/88/7 81/89/7 82/90/7 +f 83/91/8 79/87/8 84/92/8 +f 85/93/9 82/90/9 78/86/9 +f 86/94/10 87/95/10 81/96/10 +f 88/97/11 84/92/11 87/95/11 +f 89/98/6 90/99/6 91/100/6 +f 92/101/7 93/102/7 94/103/7 +f 95/104/8 91/100/8 96/105/8 +f 97/106/9 94/103/9 90/99/9 +f 98/107/10 99/108/10 93/109/10 +f 100/110/11 96/105/11 99/108/11 +f 92/111/1 89/112/1 100/113/1 +f 101/114/6 102/115/6 103/116/6 +f 104/117/7 105/118/7 106/119/7 +f 107/120/8 103/116/8 108/121/8 +f 109/122/9 106/119/9 102/115/9 +f 110/123/10 111/124/10 105/125/10 +f 112/126/11 108/121/11 111/124/11 +f 104/127/1 101/128/1 112/129/1 +f 1/1/1 5/130/1 2/2/1 +f 1/1/1 7/8/1 4/4/1 +f 6/6/1 9/131/1 4/7/1 +f 8/9/1 11/132/1 9/10/1 +f 10/11/1 13/133/1 11/12/1 +f 12/13/1 15/134/1 13/14/1 +f 12/13/1 16/17/1 14/15/1 +f 16/17/1 19/22/1 17/18/1 +f 18/20/1 21/135/1 17/21/1 +f 20/23/1 23/136/1 21/24/1 +f 22/25/1 25/137/1 23/26/1 +f 24/27/1 27/138/1 25/28/1 +f 26/29/1 29/139/1 27/30/1 +f 28/31/1 31/140/1 29/32/1 +f 30/33/1 33/141/1 31/34/1 +f 32/35/1 35/142/1 33/36/1 +f 34/37/1 37/143/1 35/38/1 +f 36/39/1 39/144/1 37/40/1 +f 38/41/1 41/145/1 39/42/1 +f 40/43/1 43/146/1 41/44/1 +f 42/45/1 45/147/1 43/46/1 +f 44/47/1 47/148/1 45/48/1 +f 44/47/1 48/53/1 46/49/1 +f 3/51/1 2/149/1 46/52/1 +f 49/54/2 113/150/2 17/55/2 +f 50/57/3 49/54/3 21/56/3 +f 51/59/4 114/151/4 52/60/4 +f 54/62/1 114/151/1 51/59/1 +f 56/64/5 115/152/5 57/65/5 +f 59/67/1 116/153/1 56/64/1 +f 62/70/1 66/74/1 65/73/1 +f 69/77/1 70/78/1 73/81/1 +f 117/154/1 118/155/1 119/156/1 +f 118/155/1 56/157/1 119/156/1 +f 56/157/1 116/158/1 119/156/1 +f 76/84/1 120/159/1 121/160/1 +f 120/159/1 122/161/1 121/160/1 +f 119/156/1 76/84/1 75/83/1 +f 117/154/1 119/156/1 75/83/1 +f 123/162/1 117/154/1 75/83/1 +f 124/163/1 125/164/1 123/162/1 +f 75/83/1 124/163/1 123/162/1 +f 121/160/1 126/165/1 76/84/1 +f 126/165/1 127/166/1 74/82/1 +f 76/84/1 126/165/1 74/82/1 +f 127/166/1 114/167/1 74/82/1 +f 114/167/1 54/168/1 74/82/1 +f 77/85/6 85/93/6 78/86/6 +f 80/88/7 86/169/7 81/89/7 +f 83/91/8 77/85/8 79/87/8 +f 85/93/9 80/88/9 82/90/9 +f 86/94/10 88/97/10 87/95/10 +f 88/97/11 83/91/11 84/92/11 +f 89/98/6 97/106/6 90/99/6 +f 92/101/7 98/170/7 93/102/7 +f 95/104/8 89/98/8 91/100/8 +f 97/106/9 92/101/9 94/103/9 +f 98/107/10 100/110/10 99/108/10 +f 100/110/11 95/104/11 96/105/11 +f 100/113/1 98/171/1 92/111/1 +f 92/111/1 97/172/1 89/112/1 +f 89/112/1 95/173/1 100/113/1 +f 101/114/6 109/122/6 102/115/6 +f 104/117/7 110/174/7 105/118/7 +f 107/120/8 101/114/8 103/116/8 +f 109/122/9 104/117/9 106/119/9 +f 110/123/10 112/126/10 111/124/10 +f 112/126/11 107/120/11 108/121/11 +f 112/129/1 110/175/1 104/127/1 +f 104/127/1 109/176/1 101/128/1 +f 101/128/1 107/177/1 112/129/1 +s 1 +f 128/178/12 3/3/7 129/179/7 +f 130/180/6 16/17/13 131/181/13 +f 132/182/5 28/31/14 133/183/14 +f 129/184/7 48/53/15 134/185/15 +f 131/181/13 12/13/16 135/186/16 +f 133/183/14 26/29/17 136/187/17 +f 134/185/15 44/47/18 137/188/18 +f 135/186/16 10/11/19 138/189/19 +f 136/187/17 24/27/8 139/190/8 +f 137/188/18 42/45/20 140/191/20 +f 138/189/19 8/9/9 141/192/9 +f 139/190/8 22/25/21 142/193/21 +f 140/191/20 40/43/10 143/194/10 +f 141/192/9 6/6/4 144/195/4 +f 142/193/21 20/23/22 145/196/22 +f 143/194/10 38/41/23 146/197/23 +f 147/198/24 34/37/25 148/199/25 +f 144/195/4 7/8/26 149/200/26 +f 145/196/22 18/20/27 150/201/27 +f 146/197/23 36/39/24 147/198/24 +f 148/199/25 32/35/11 151/202/11 +f 149/200/26 1/1/12 128/178/12 +f 150/201/27 19/22/6 130/180/6 +f 151/202/11 30/33/5 132/182/5 +f 31/203/26 152/204/12 29/205/12 +f 14/206/23 153/207/24 15/208/24 +f 2/209/8 154/210/21 46/211/21 +f 33/212/4 155/213/26 31/203/26 +f 17/55/28 156/214/23 14/206/23 +f 5/215/17 157/216/8 2/217/8 +f 35/218/9 158/219/4 33/212/4 +f 4/220/14 159/221/17 5/215/17 +f 37/222/19 160/223/9 35/218/9 +f 41/224/13 161/225/16 39/226/16 +f 9/227/5 162/228/14 4/220/14 +f 39/226/16 163/229/19 37/222/19 +f 43/230/6 164/231/13 41/224/13 +f 25/232/15 50/57/29 23/58/29 +f 11/233/11 165/234/5 9/227/5 +f 27/235/7 166/236/15 25/232/15 +f 13/237/25 167/238/11 11/233/11 +f 29/205/12 168/239/7 27/235/7 +f 15/208/24 169/240/25 13/237/25 +f 46/211/21 170/241/22 47/242/22 +f 171/243/16 121/244/9 172/245/9 +f 121/244/9 122/246/30 67/247/31 +f 123/248/11 125/249/32 60/250/33 +f 173/251/6 126/252/16 171/243/16 +f 71/253/34 59/67/4 174/254/4 +f 60/250/33 175/255/8 176/256/14 +f 177/257/10 117/258/24 178/259/24 +f 69/260/7 179/261/26 67/247/31 +f 178/259/24 123/248/11 180/262/11 +f 175/255/8 64/263/22 181/264/22 +f 182/265/27 64/263/22 63/266/27 +f 183/267/5 182/268/5 63/269/35 +f 177/257/10 56/270/20 118/271/10 +f 184/272/18 69/260/7 72/273/18 +f 45/274/27 170/241/22 185/275/27 +f 185/275/27 43/230/6 45/274/27 +f 184/272/18 71/276/20 186/277/20 +f 127/278/6 52/279/27 114/280/27 +f 54/281/36 65/282/17 74/283/17 +f 75/284/21 65/282/17 66/285/21 +f 124/286/37 66/285/21 61/287/37 +f 124/286/37 60/250/33 125/249/32 +f 120/288/38 67/247/31 122/246/30 +f 76/289/15 68/290/38 120/288/38 +f 119/291/12 70/292/15 76/289/15 +f 71/276/34 119/291/12 116/293/39 +f 83/91/40 187/294/41 77/85/42 +f 77/85/42 188/295/43 85/93/44 +f 86/94/45 189/296/46 88/97/47 +f 80/88/48 190/297/49 86/169/45 +f 83/91/40 189/296/46 191/298/50 +f 85/93/44 192/299/51 80/88/48 +f 191/300/50 189/301/46 192/302/51 +f 128/178/12 1/1/12 3/3/7 +f 130/180/6 19/22/6 16/17/13 +f 132/182/5 30/33/5 28/31/14 +f 129/184/7 3/51/7 48/53/15 +f 131/181/13 16/17/13 12/13/16 +f 133/183/14 28/31/14 26/29/17 +f 134/185/15 48/53/15 44/47/18 +f 135/186/16 12/13/16 10/11/19 +f 136/187/17 26/29/17 24/27/8 +f 137/188/18 44/47/18 42/45/20 +f 138/189/19 10/11/19 8/9/9 +f 139/190/8 24/27/8 22/25/21 +f 140/191/20 42/45/20 40/43/10 +f 141/192/9 8/9/9 6/6/4 +f 142/193/21 22/25/21 20/23/22 +f 143/194/10 40/43/10 38/41/23 +f 147/198/24 36/39/24 34/37/25 +f 144/195/4 6/6/4 7/8/26 +f 145/196/22 20/23/22 18/20/27 +f 146/197/23 38/41/23 36/39/24 +f 148/199/25 34/37/25 32/35/11 +f 149/200/26 7/8/26 1/1/12 +f 150/201/27 18/20/27 19/22/6 +f 151/202/11 32/35/11 30/33/5 +f 31/203/26 155/213/26 152/204/12 +f 14/206/23 156/214/23 153/207/24 +f 2/209/8 157/303/8 154/210/21 +f 33/212/4 158/219/4 155/213/26 +f 17/55/28 113/150/28 156/214/23 +f 5/215/17 159/221/17 157/216/8 +f 35/218/9 160/223/9 158/219/4 +f 4/220/14 162/228/14 159/221/17 +f 37/222/19 163/229/19 160/223/9 +f 41/224/13 164/231/13 161/225/16 +f 9/227/5 165/234/5 162/228/14 +f 39/226/16 161/225/16 163/229/19 +f 43/230/6 193/304/6 164/231/13 +f 25/232/15 166/236/15 50/57/29 +f 11/233/11 167/238/11 165/234/5 +f 27/235/7 168/239/7 166/236/15 +f 13/237/25 169/240/25 167/238/11 +f 29/205/12 152/204/12 168/239/7 +f 15/208/24 153/207/24 169/240/25 +f 46/211/21 154/210/21 170/241/22 +f 171/243/16 126/252/16 121/244/9 +f 179/261/26 172/245/9 67/247/31 +f 172/245/9 121/244/9 67/247/31 +f 60/250/33 176/256/14 180/262/11 +f 180/262/11 123/248/11 60/250/33 +f 173/251/6 127/278/6 126/252/16 +f 174/254/4 186/305/4 71/253/34 +f 71/253/34 116/153/39 59/67/4 +f 60/250/33 62/306/8 175/255/8 +f 177/257/10 118/271/10 117/258/24 +f 69/260/7 194/307/7 179/261/26 +f 178/259/24 117/258/24 123/248/11 +f 175/255/8 62/306/8 64/263/22 +f 182/265/27 181/264/22 64/263/22 +f 63/269/35 54/62/36 55/63/5 +f 55/63/5 183/267/5 63/269/35 +f 177/257/10 115/308/20 56/270/20 +f 184/272/18 194/307/7 69/260/7 +f 45/274/27 47/242/22 170/241/22 +f 185/275/27 193/304/6 43/230/6 +f 184/272/18 72/273/18 71/276/20 +f 127/278/6 173/251/6 52/279/27 +f 54/281/36 63/266/35 65/282/17 +f 75/284/21 74/283/17 65/282/17 +f 124/286/37 75/284/21 66/285/21 +f 124/286/37 61/287/37 60/250/33 +f 120/288/38 68/290/38 67/247/31 +f 76/289/15 70/292/15 68/290/38 +f 119/291/12 73/309/12 70/292/15 +f 71/276/34 73/309/12 119/291/12 +f 83/91/40 191/298/50 187/294/41 +f 77/85/42 187/294/41 188/295/43 +f 86/94/45 190/310/49 189/296/46 +f 80/88/48 192/299/51 190/297/49 +f 83/91/40 88/97/47 189/296/46 +f 85/93/44 188/295/43 192/299/51 +f 189/301/46 190/311/49 192/302/51 +f 192/302/51 188/312/43 187/313/41 +f 187/313/41 191/300/50 192/302/51 +o MagPlate +v -0.239382 2.111670 3.718485 +v -0.239382 2.111670 3.780985 +v 0.239382 2.111670 3.718485 +v -1.590990 2.049170 3.090990 +v -1.948557 2.049170 2.625000 +v -0.239382 2.049170 3.718485 +v 0.239382 2.049170 3.780985 +v 0.239382 2.049170 3.718485 +v 0.239382 2.111670 3.780985 +v -0.239382 2.049170 3.780985 +v 0.582343 2.111670 3.673333 +v 1.125000 2.111670 3.448557 +v 1.590990 2.111670 3.090990 +v 1.948557 2.111670 2.625000 +v 2.173333 2.111670 2.082343 +v 2.250000 2.111670 1.500000 +v 2.173333 2.111670 0.917657 +v 1.948557 2.111670 0.375000 +v 1.590990 2.111670 -0.090990 +v 1.125000 2.111670 -0.448557 +v 0.582343 2.111670 -0.673333 +v 0.000000 2.111670 -0.750000 +v -0.582343 2.111670 -0.673333 +v -1.125000 2.111670 -0.448557 +v -1.590990 2.111670 -0.090991 +v -1.948557 2.111670 0.375000 +v -2.173333 2.111670 0.917658 +v -2.250000 2.111670 1.500000 +v -2.173333 2.111670 2.082343 +v -1.948557 2.111670 2.625000 +v -1.590990 2.111670 3.090990 +v -1.125000 2.111670 3.448557 +v -0.582343 2.111670 3.673333 +v -0.582343 2.049170 3.673333 +v -1.125000 2.049170 3.448557 +v 1.125000 2.049170 3.448557 +v 0.582343 2.049170 3.673333 +v 1.948557 2.049170 2.625000 +v 1.590990 2.049170 3.090990 +v 2.250000 2.049170 1.500000 +v 2.173333 2.049170 2.082343 +v 1.948557 2.049170 0.375000 +v 2.173333 2.049170 0.917657 +v 1.125000 2.049170 -0.448557 +v 1.590990 2.049170 -0.090990 +v 0.000000 2.049170 -0.750000 +v 0.582343 2.049170 -0.673333 +v -1.125000 2.049170 -0.448557 +v -0.582343 2.049170 -0.673333 +v -1.948557 2.049170 0.375000 +v -1.590990 2.049170 -0.090991 +v -2.250000 2.049170 1.500000 +v -2.173333 2.049170 0.917658 +v -2.173333 2.049170 2.082343 +vt 0.148620 0.891768 +vt 0.148620 0.895526 +vt 0.120037 0.891768 +vt 0.308001 0.854042 +vt 0.286653 0.826028 +vt 0.388694 0.891765 +vt 0.022388 0.619403 +vt 0.018657 0.623134 +vt 0.022388 0.623134 +vt 0.018657 0.619403 +vt 0.000000 0.623134 +vt 0.391791 0.615672 +vt 0.388060 0.619403 +vt 0.391791 0.619403 +vt 0.120037 0.895526 +vt 0.099562 0.889054 +vt 0.067164 0.875541 +vt 0.039344 0.854046 +vt 0.017997 0.826032 +vt 0.004577 0.793409 +vt 0.000000 0.758400 +vt 0.004577 0.723392 +vt 0.017997 0.690770 +vt 0.039344 0.662756 +vt 0.067164 0.641260 +vt 0.099562 0.627747 +vt 0.134328 0.623138 +vt 0.169095 0.627747 +vt 0.201493 0.641260 +vt 0.229313 0.662756 +vt 0.250660 0.690770 +vt 0.264080 0.723392 +vt 0.268657 0.758403 +vt 0.264080 0.793409 +vt 0.250660 0.826032 +vt 0.229313 0.854046 +vt 0.201493 0.875541 +vt 0.169095 0.889054 +vt 0.417277 0.891765 +vt 0.417276 0.895522 +vt 0.388694 0.895522 +vt 0.368218 0.889050 +vt 0.335821 0.875538 +vt 0.470149 0.875538 +vt 0.437752 0.889050 +vt 0.519317 0.826028 +vt 0.497970 0.854042 +vt 0.537313 0.758398 +vt 0.532736 0.793405 +vt 0.519317 0.690766 +vt 0.532736 0.723389 +vt 0.470149 0.641256 +vt 0.497970 0.662752 +vt 0.402985 0.623134 +vt 0.437752 0.627744 +vt 0.335821 0.641256 +vt 0.368218 0.627744 +vt 0.286653 0.690766 +vt 0.308001 0.662752 +vt 0.268657 0.758395 +vt 0.273234 0.723389 +vt 0.273234 0.793405 +vt 0.000000 0.619403 +vt 0.388060 0.615672 +vt 0.302239 0.615672 +vt 0.268657 0.619403 +vt 0.302239 0.619403 +vt 0.410448 0.619403 +vt 0.376866 0.623134 +vt 0.410448 0.623134 +vt 0.175373 0.619403 +vt 0.141791 0.623134 +vt 0.175373 0.623134 +vt 0.335821 0.615672 +vt 0.335821 0.619403 +vt 0.033582 0.615672 +vt -0.000000 0.619403 +vt 0.033582 0.619403 +vt 0.208955 0.619403 +vt 0.208955 0.623134 +vt 0.369403 0.615672 +vt 0.369403 0.619403 +vt 0.067164 0.615672 +vt 0.067164 0.619403 +vt 0.242537 0.619403 +vt 0.242537 0.623134 +vt 0.100746 0.615672 +vt 0.100746 0.619403 +vt 0.276119 0.619403 +vt 0.276119 0.623134 +vt 0.041045 0.619403 +vt 0.041045 0.623134 +vt 0.134328 0.615672 +vt 0.134328 0.619403 +vt 0.309702 0.619403 +vt 0.309702 0.623134 +vt 0.074627 0.619403 +vt 0.074627 0.623134 +vt 0.167910 0.615672 +vt 0.167910 0.619403 +vt 0.235075 0.615672 +vt 0.201493 0.619403 +vt 0.235075 0.619403 +vt 0.343284 0.619403 +vt 0.343284 0.623134 +vt 0.108209 0.619403 +vt 0.108209 0.623134 +vt 0.201493 0.615672 +vt 0.268657 0.615672 +vt 0.376866 0.619403 +vt 0.141791 0.619403 +vt 0.000000 0.615672 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn -1.0000 0.0000 0.0000 +vn -0.7071 0.0000 0.7071 +vn -0.8660 0.0000 0.5000 +vn -0.0000 0.0000 -1.0000 +vn 0.2588 0.0000 -0.9659 +vn 0.9659 0.0000 0.2588 +vn 0.8660 0.0000 0.5000 +vn -0.5000 0.0000 0.8660 +vn -0.2588 0.0000 -0.9659 +vn -0.2588 0.0000 0.9659 +vn -0.5000 0.0000 -0.8660 +vn 0.9659 0.0000 -0.2588 +vn -0.7071 0.0000 -0.7071 +vn 0.8660 0.0000 -0.5000 +vn 0.2588 0.0000 0.9659 +vn 0.1305 0.0000 0.9914 +vn -0.8660 0.0000 -0.5000 +vn 0.7071 0.0000 -0.7071 +vn 0.5000 0.0000 0.8660 +vn -0.9659 0.0000 -0.2588 +vn -0.9659 0.0000 0.2588 +vn 0.5000 0.0000 -0.8660 +vn -0.1305 0.0000 0.9914 +vn 0.7071 0.0000 0.7071 +s off +f 195/314/52 196/315/52 197/316/52 +f 198/317/53 199/318/53 200/319/53 +f 197/320/54 201/321/54 202/322/54 +f 203/323/55 204/324/55 201/321/55 +f 196/325/56 200/326/56 204/327/56 +f 196/315/52 203/328/52 197/316/52 +f 197/316/52 205/329/52 206/330/52 +f 206/330/52 207/331/52 197/316/52 +f 207/331/52 208/332/52 197/316/52 +f 208/332/52 209/333/52 197/316/52 +f 209/333/52 210/334/52 197/316/52 +f 210/334/52 211/335/52 197/316/52 +f 211/335/52 212/336/52 197/316/52 +f 212/336/52 213/337/52 197/316/52 +f 213/337/52 214/338/52 197/316/52 +f 214/338/52 215/339/52 197/316/52 +f 215/339/52 216/340/52 197/316/52 +f 197/316/52 216/340/52 195/314/52 +f 216/340/52 217/341/52 195/314/52 +f 217/341/52 218/342/52 195/314/52 +f 218/342/52 219/343/52 195/314/52 +f 219/343/52 220/344/52 195/314/52 +f 220/344/52 221/345/52 195/314/52 +f 221/345/52 222/346/52 195/314/52 +f 222/346/52 223/347/52 195/314/52 +f 223/347/52 224/348/52 195/314/52 +f 224/348/52 225/349/52 195/314/52 +f 225/349/52 226/350/52 195/314/52 +f 226/350/52 227/351/52 195/314/52 +f 202/352/53 201/353/53 204/354/53 +f 200/319/53 228/355/53 229/356/53 +f 202/352/53 204/354/53 200/319/53 +f 230/357/53 231/358/53 202/352/53 +f 232/359/53 233/360/53 202/352/53 +f 233/360/53 230/357/53 202/352/53 +f 234/361/53 235/362/53 202/352/53 +f 235/362/53 232/359/53 202/352/53 +f 236/363/53 237/364/53 202/352/53 +f 237/364/53 234/361/53 202/352/53 +f 238/365/53 239/366/53 202/352/53 +f 239/366/53 236/363/53 202/352/53 +f 240/367/53 241/368/53 202/352/53 +f 241/368/53 238/365/53 202/352/53 +f 242/369/53 243/370/53 200/319/53 +f 243/370/53 240/367/53 200/319/53 +f 200/319/53 240/367/53 202/352/53 +f 244/371/53 245/372/53 200/319/53 +f 245/372/53 242/369/53 200/319/53 +f 246/373/53 247/374/53 200/319/53 +f 247/374/53 244/371/53 200/319/53 +f 199/318/53 248/375/53 200/319/53 +f 248/375/53 246/373/53 200/319/53 +f 229/356/53 198/317/53 200/319/53 +f 197/320/54 203/323/54 201/321/54 +f 203/323/55 196/376/55 204/324/55 +f 196/325/56 195/377/56 200/326/56 +s 1 +f 225/378/57 199/379/58 198/380/57 +f 216/381/59 241/382/60 240/383/59 +f 209/384/61 232/385/62 235/386/61 +f 226/387/63 198/380/57 229/388/63 +f 217/389/64 240/390/59 243/391/64 +f 210/392/54 235/386/61 234/393/54 +f 227/394/65 229/388/63 228/395/65 +f 218/396/66 243/391/64 242/397/66 +f 211/398/67 234/393/54 237/399/67 +f 219/400/68 242/397/66 245/401/68 +f 212/402/69 237/399/67 236/403/69 +f 205/404/70 202/322/71 231/405/70 +f 220/406/72 245/401/68 244/407/72 +f 213/408/73 236/403/69 239/409/73 +f 206/410/74 231/405/70 230/411/74 +f 221/412/75 244/407/72 247/413/75 +f 223/414/76 246/415/56 248/416/76 +f 214/417/77 239/409/73 238/418/77 +f 195/377/78 228/395/65 200/326/78 +f 207/419/79 230/411/74 233/420/79 +f 222/421/56 247/413/75 246/415/56 +f 224/422/58 248/416/76 199/379/58 +f 215/423/60 238/418/77 241/382/60 +f 208/424/62 233/420/79 232/385/62 +f 225/378/57 224/422/58 199/379/58 +f 216/381/59 215/423/60 241/382/60 +f 209/384/61 208/424/62 232/385/62 +f 226/387/63 225/378/57 198/380/57 +f 217/389/64 216/425/59 240/390/59 +f 210/392/54 209/384/61 235/386/61 +f 227/394/65 226/387/63 229/388/63 +f 218/396/66 217/389/64 243/391/64 +f 211/398/67 210/392/54 234/393/54 +f 219/400/68 218/396/66 242/397/66 +f 212/402/69 211/398/67 237/399/67 +f 205/404/70 197/320/71 202/322/71 +f 220/406/72 219/400/68 245/401/68 +f 213/408/73 212/402/69 236/403/69 +f 206/410/74 205/404/70 231/405/70 +f 221/412/75 220/406/72 244/407/72 +f 223/414/76 222/421/56 246/415/56 +f 214/417/77 213/408/73 239/409/73 +f 195/377/78 227/394/65 228/395/65 +f 207/419/79 206/410/74 230/411/74 +f 222/421/56 221/412/75 247/413/75 +f 224/422/58 223/414/76 248/416/76 +f 215/423/60 214/417/77 238/418/77 +f 208/424/62 207/419/79 233/420/79 +o Silencer +v 0.000000 1.736670 16.750000 +v -0.088388 1.773282 11.875000 +v -0.088388 1.773282 16.750000 +v 0.125000 1.861670 16.750000 +v 0.088388 1.773282 11.875000 +v 0.088388 1.773282 16.750000 +v 0.000000 1.986670 16.750000 +v 0.088388 1.950058 11.875000 +v 0.088388 1.950058 16.750000 +v -0.125000 1.861670 16.750000 +v -0.088388 1.950058 11.875000 +v -0.088388 1.950058 16.750000 +v -0.125000 1.861670 11.875000 +v 0.000000 1.736670 11.875000 +v 0.125000 1.861670 11.875000 +v 0.000000 1.986670 11.875000 +v -0.281250 2.348809 16.750000 +v -0.487139 2.142920 16.750000 +v -0.281250 1.374531 16.750000 +v 0.281250 1.374531 16.750000 +v 0.487139 1.580420 16.750000 +v 0.000000 1.299170 16.750000 +v 0.562500 1.861670 16.750000 +v 0.281250 2.348809 16.750000 +v 0.000000 2.424170 16.750000 +v -0.487139 1.580420 16.750000 +v -0.562500 1.861670 16.750000 +v 0.000000 2.424170 11.875000 +v 0.281250 2.348809 11.875000 +v -0.487139 1.580420 11.875000 +v -0.562500 1.861670 11.875000 +v -0.487139 2.142920 11.875000 +v 0.487139 1.580420 11.875000 +v 0.281250 1.374531 11.875000 +v 0.487139 2.142920 16.750000 +v 0.487139 2.142920 11.875000 +v -0.281250 2.348809 11.875000 +v 0.000000 1.299170 11.875000 +v 0.562500 1.861670 11.875000 +v -0.281250 1.374531 11.875000 +vt 0.287313 0.361940 +vt -0.000000 0.354478 +vt 0.287313 0.354478 +vt 0.287313 0.376866 +vt -0.000000 0.369403 +vt 0.287313 0.369403 +vt 0.287313 0.391791 +vt -0.000000 0.384328 +vt 0.287313 0.384328 +vt 0.287313 0.347015 +vt -0.000000 0.339552 +vt 0.287313 0.339552 +vt -0.000000 0.347015 +vt -0.000000 0.361940 +vt -0.000000 0.376866 +vt -0.000000 0.332090 +vt 0.287313 0.332090 +vt 0.026119 0.410448 +vt 0.026119 0.429104 +vt -0.000000 0.421642 +vt 0.026119 0.485075 +vt -0.000000 0.500000 +vt -0.000000 0.492537 +vt 0.026119 0.522388 +vt 0.026119 0.541045 +vt 0.000000 0.533582 +vt 0.000000 0.511194 +vt 0.026119 0.503731 +vt 0.000000 0.555970 +vt 0.026119 0.559702 +vt -0.000000 0.611940 +vt 0.026119 0.597015 +vt 0.026119 0.615672 +vt 0.000000 0.444030 +vt 0.000000 0.436567 +vt 0.000000 0.399254 +vt 0.026119 0.391791 +vt 0.026119 0.466418 +vt -0.000000 0.455224 +vt 0.026119 0.447761 +vt 0.313433 0.615672 +vt 0.313433 0.597015 +vt 0.313433 0.466418 +vt 0.313433 0.447761 +vt 0.313433 0.429104 +vt 0.313433 0.541045 +vt 0.313433 0.522388 +vt 0.026119 0.578358 +vt 0.313433 0.578358 +vt 0.313433 0.410448 +vt 0.313433 0.503731 +vt 0.313433 0.559702 +vt 0.313433 0.391791 +vt 0.313433 0.485075 +vt 0.376007 0.565419 +vt 0.376007 0.598760 +vt 0.347015 0.615672 +vt 0.000000 0.477612 +vt -0.000000 0.589552 +vt -0.000000 0.567164 +vt -0.000000 0.574627 +vt -0.000000 0.391791 +vt -0.000000 0.518657 +vt 0.000000 0.548507 +vt 0.000000 0.604478 +vt 0.000000 0.406716 +vt 0.000000 0.462687 +vt 0.330345 0.611081 +vt 0.318023 0.598760 +vt 0.313433 0.582090 +vt 0.318023 0.565419 +vt 0.330345 0.553098 +vt 0.347015 0.548507 +vt 0.363685 0.553098 +vt 0.380597 0.582090 +vt 0.363685 0.611081 +vn 0.0000 1.0000 0.0000 +vn 0.7071 0.7071 0.0000 +vn -1.0000 0.0000 0.0000 +vn -0.7071 0.7071 0.0000 +vn -0.0000 -1.0000 0.0000 +vn -0.7071 -0.7071 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.7071 -0.7071 0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.5000 0.8660 0.0000 +vn -0.8660 -0.5000 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.8660 0.5000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn 0.5000 -0.8660 0.0000 +vn 0.8660 0.5000 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.0000 0.0000 -1.0000 +s 1 +f 249/426/80 250/427/81 251/428/81 +f 252/429/82 253/430/83 254/431/83 +f 255/432/84 256/433/85 257/434/85 +f 258/435/86 259/436/87 260/437/87 +f 258/435/86 250/427/81 261/438/86 +f 254/431/83 262/439/80 249/426/80 +f 252/429/82 256/433/85 263/440/82 +f 260/437/87 264/441/84 255/442/84 +f 265/443/88 266/444/88 260/445/88 +f 267/446/88 249/447/88 251/448/88 +f 268/449/88 269/450/88 254/451/88 +f 268/449/88 249/452/88 270/453/88 +f 252/454/88 269/450/88 271/455/88 +f 255/456/88 272/457/88 273/458/88 +f 266/444/88 258/459/88 260/460/88 +f 265/443/88 255/461/88 273/462/88 +f 274/463/88 258/464/88 275/465/88 +f 276/466/80 272/457/89 277/467/89 +f 278/468/90 267/446/91 274/463/90 +f 279/469/82 266/444/92 280/470/92 +f 281/471/93 268/449/94 282/472/94 +f 277/467/89 283/473/95 284/474/95 +f 278/468/90 275/465/82 279/469/82 +f 280/470/92 265/443/96 285/475/96 +f 282/472/94 270/453/84 286/476/84 +f 284/474/95 271/455/86 287/477/86 +f 276/478/80 265/443/96 273/462/80 +f 286/476/84 267/446/91 288/479/91 +f 287/477/86 269/450/93 281/471/93 +f 282/480/97 288/481/97 279/482/97 +f 274/463/88 267/446/88 251/483/88 +f 283/473/88 272/457/88 257/484/88 +f 252/485/88 283/473/88 257/486/88 +f 249/426/80 262/439/80 250/427/81 +f 252/429/82 263/440/82 253/430/83 +f 255/432/84 264/487/84 256/433/85 +f 258/435/86 261/438/86 259/436/87 +f 258/435/86 251/428/81 250/427/81 +f 254/431/83 253/430/83 262/439/80 +f 252/429/82 257/434/85 256/433/85 +f 260/437/87 259/436/87 264/441/84 +f 267/446/88 270/453/88 249/447/88 +f 268/449/88 254/488/88 249/452/88 +f 252/454/88 254/489/88 269/450/88 +f 255/456/88 257/490/88 272/457/88 +f 266/444/88 275/465/88 258/459/88 +f 265/443/88 260/491/88 255/461/88 +f 274/463/88 251/492/88 258/464/88 +f 276/466/80 273/458/80 272/457/89 +f 278/468/90 288/479/91 267/446/91 +f 279/469/82 275/465/82 266/444/92 +f 281/471/93 269/450/93 268/449/94 +f 277/467/89 272/457/89 283/473/95 +f 278/468/90 274/463/90 275/465/82 +f 280/470/92 266/444/92 265/443/96 +f 282/472/94 268/449/94 270/453/84 +f 284/474/95 283/473/95 271/455/86 +f 276/478/80 285/475/96 265/443/96 +f 286/476/84 270/453/84 267/446/91 +f 287/477/86 271/455/86 269/450/93 +f 279/482/97 280/493/97 285/494/97 +f 285/494/97 276/495/97 277/496/97 +f 277/496/97 284/497/97 287/498/97 +f 287/498/97 281/499/97 277/496/97 +f 281/499/97 282/480/97 277/496/97 +f 282/480/97 286/500/97 288/481/97 +f 288/481/97 278/501/97 279/482/97 +f 279/482/97 285/494/97 282/480/97 +f 285/494/97 277/496/97 282/480/97 +f 252/485/88 271/455/88 283/473/88 +o Bolt +v 0.625000 1.745043 -1.673765 +v 0.625000 1.861670 -1.705015 +v 0.625000 1.947047 -1.619638 +v 0.375000 1.947047 -1.619638 +v 0.375000 1.915797 -1.503012 +v 0.375000 1.947047 -1.557138 +v 0.375000 1.745044 -1.503012 +v 0.375000 1.713794 -1.619638 +v 0.375000 1.713794 -1.557138 +v 0.625000 1.947047 -1.557138 +v 0.625000 1.915797 -1.503012 +v 0.625000 1.861670 -1.471762 +v 0.625000 1.799170 -1.471762 +v 0.625000 1.745043 -1.503012 +v 0.625000 1.713793 -1.557138 +v 0.625000 1.713793 -1.619638 +v 0.625000 1.799170 -1.705015 +v 0.625000 1.915797 -1.673765 +v 0.375000 1.915797 -1.673765 +v 0.375000 1.745044 -1.673765 +v 0.343750 1.986670 -3.250000 +v 0.375000 1.869253 -3.279029 +v 0.343750 1.895141 -3.341529 +v 0.343750 1.765699 -3.341529 +v 0.375000 1.791587 -3.279029 +v 0.343750 1.674170 -3.250000 +v 0.343750 1.674170 -1.312500 +v 0.375000 1.791587 -1.283471 +v 0.343750 1.765699 -1.220971 +v 0.375000 1.869253 -1.283471 +v 0.343750 1.895141 -1.220971 +v 0.343750 1.986670 -1.312500 +v 0.375000 1.924170 -1.338388 +v 0.375000 1.736670 -3.224112 +v 0.375000 1.736670 -1.338388 +v 0.375000 1.861670 -1.471762 +v 0.375000 1.799170 -1.705015 +v 0.375000 1.861670 -1.705015 +v 0.375000 1.799170 -1.471762 +v 0.375000 1.924170 -3.224112 +vt 0.595015 0.509462 +vt 0.587553 0.507463 +vt 0.582090 0.512926 +vt 0.597015 0.500000 +vt 0.593284 0.507463 +vt 0.597015 0.503731 +vt 0.593284 0.507463 +vt 0.589552 0.500000 +vt 0.589552 0.503731 +vt 0.582090 0.516925 +vt 0.584089 0.520388 +vt 0.587553 0.522388 +vt 0.591552 0.522388 +vt 0.595015 0.520388 +vt 0.597015 0.516925 +vt 0.597015 0.512926 +vt 0.591552 0.507463 +vt 0.584089 0.509462 +vt 0.593284 0.496269 +vt 0.593284 0.496269 +vt 0.570895 0.507463 +vt 0.567164 0.500000 +vt 0.570895 0.500000 +vt 0.570895 0.492537 +vt 0.567164 0.492537 +vt 0.570895 0.485075 +vt 0.570895 0.369403 +vt 0.567164 0.361940 +vt 0.570895 0.361940 +vt 0.567164 0.354478 +vt 0.570895 0.354478 +vt 0.570895 0.347015 +vt 0.567164 0.623134 +vt 0.570895 0.623134 +vt 0.567164 0.485075 +vt 0.574627 0.567164 +vt 0.582090 0.563433 +vt 0.570895 0.563433 +vt 0.597015 0.529851 +vt 0.582090 0.526119 +vt 0.582090 0.529851 +vt 0.597015 0.555970 +vt 0.582090 0.552239 +vt 0.582090 0.555970 +vt 0.597015 0.544776 +vt 0.582090 0.541045 +vt 0.582090 0.544776 +vt 0.597015 0.533582 +vt 0.582090 0.533582 +vt 0.597015 0.559702 +vt 0.582090 0.559702 +vt 0.597015 0.567164 +vt 0.582090 0.563433 +vt 0.582090 0.567164 +vt 0.597015 0.548507 +vt 0.582090 0.548507 +vt 0.597015 0.537313 +vt 0.582090 0.537313 +vt 0.597015 0.563433 +vt 0.597015 0.526119 +vt 0.582090 0.522388 +vt 0.597015 0.552239 +vt 0.597015 0.541045 +vt 0.582090 0.451493 +vt 0.574627 0.447761 +vt 0.578358 0.447761 +vt 0.567164 0.507463 +vt 0.567164 0.369403 +vt 0.567164 0.347015 +vt 0.578358 0.567164 +vt 0.597015 0.522388 +vt 0.570895 0.451493 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.9078 0.3874 -0.1605 +vn 0.9644 0.1012 -0.2444 +vn 0.9078 0.1605 -0.3874 +vn 0.9078 -0.1605 -0.3874 +vn 0.9644 -0.1012 -0.2444 +vn 0.9078 -0.3874 -0.1605 +vn 0.9078 -0.3874 0.1605 +vn 0.9644 -0.1012 0.2444 +vn 0.9078 -0.1605 0.3874 +vn 0.9644 0.1012 0.2444 +vn 0.9078 0.1605 0.3874 +vn 0.9078 0.3874 0.1605 +vn 0.9644 0.2444 0.1012 +vn 0.9644 -0.2444 -0.1012 +vn 0.9644 -0.2444 0.1012 +vn 0.0000 0.2588 0.9659 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.2588 -0.9659 +vn 0.0000 -0.2588 -0.9659 +vn -0.0000 -0.9659 -0.2588 +vn -0.0000 -0.9659 0.2588 +vn 0.0000 -0.2588 0.9659 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 0.9659 0.2588 +vn 0.0000 0.9659 -0.2588 +vn -0.0000 -0.7071 -0.7071 +vn -0.0000 -0.7071 0.7071 +vn 0.9644 0.2444 -0.1012 +s off +f 289/502/98 290/503/98 291/504/98 +f 292/505/99 293/506/99 294/507/99 +f 295/508/99 296/509/99 297/510/99 +f 291/504/98 298/511/98 299/512/98 +f 299/512/98 300/513/98 301/514/98 +f 301/514/98 302/515/98 289/502/98 +f 302/515/98 303/516/98 289/502/98 +f 303/516/98 304/517/98 289/502/98 +f 289/502/98 305/518/98 290/503/98 +f 290/503/98 306/519/98 291/504/98 +f 291/504/98 299/512/98 289/502/98 +f 299/512/98 301/514/98 289/502/98 +f 292/505/99 307/520/99 293/506/99 +f 295/508/99 308/521/99 296/509/99 +s 1 +f 309/522/100 310/523/101 311/524/102 +f 312/525/103 310/523/101 313/526/104 +f 313/526/104 314/527/105 312/525/103 +f 315/528/106 316/529/107 317/530/108 +f 317/530/108 318/531/109 319/532/110 +f 318/531/109 320/533/111 319/532/110 +f 321/534/112 309/522/100 320/535/111 +f 322/536/113 315/528/106 314/527/105 +f 318/537/109 323/538/114 321/539/112 +f 300/540/115 293/541/116 324/542/115 +f 290/543/117 325/544/118 326/545/117 +f 304/546/119 297/547/120 296/548/119 +f 301/549/121 324/542/115 327/550/121 +f 306/551/122 326/545/117 307/552/122 +f 298/553/123 292/554/124 294/555/123 +f 289/556/125 296/548/119 308/557/125 +f 302/558/126 327/550/121 295/559/126 +f 291/560/124 307/552/122 292/554/124 +f 299/561/116 294/562/123 293/541/116 +f 305/563/118 308/557/125 325/544/118 +f 303/564/120 295/559/126 297/547/120 +f 322/565/113 321/539/112 323/538/114 +f 310/566/101 322/565/113 313/567/104 +f 309/522/100 328/568/127 310/523/101 +f 312/525/103 311/524/102 310/523/101 +f 313/526/104 322/536/113 314/527/105 +f 315/528/106 323/569/114 316/529/107 +f 317/530/108 316/529/107 318/531/109 +f 318/531/109 321/570/112 320/533/111 +f 321/534/112 328/568/127 309/522/100 +f 322/536/113 323/569/114 315/528/106 +f 318/537/109 316/571/107 323/538/114 +f 300/540/115 299/561/116 293/541/116 +f 290/543/117 305/563/118 325/544/118 +f 304/546/119 303/564/120 297/547/120 +f 301/549/121 300/540/115 324/542/115 +f 306/551/122 290/543/117 326/545/117 +f 298/553/123 291/560/124 292/554/124 +f 289/556/125 304/546/119 296/548/119 +f 302/558/126 301/549/121 327/550/121 +f 291/560/124 306/551/122 307/552/122 +f 299/561/116 298/572/123 294/562/123 +f 305/563/118 289/556/125 308/557/125 +f 303/564/120 302/558/126 295/559/126 +f 322/565/113 328/573/127 321/539/112 +f 310/566/101 328/573/127 322/565/113 +o Trigger +v 0.125000 0.528950 -1.431801 +v 0.125000 0.562727 -1.589303 +v 0.125000 0.600647 -1.534195 +v 0.125000 0.754238 -1.641741 +v -0.125000 0.600647 -1.534195 +v -0.125000 0.562727 -1.589303 +v -0.125000 0.528950 -1.431801 +v -0.125000 0.754238 -1.641741 +v 0.125000 0.754238 -1.750000 +v 0.125000 0.941738 -1.641741 +v 0.125000 0.861670 -1.812500 +v 0.125000 1.111670 -1.562500 +v -0.125000 0.941738 -1.641741 +v -0.125000 0.754238 -1.750000 +v -0.125000 0.861670 -1.812500 +v -0.125000 1.111670 -1.562500 +vt 0.582090 0.358209 +vt 0.578358 0.365672 +vt 0.582090 0.365672 +vt 0.582090 0.376866 +vt 0.597015 0.365672 +vt 0.600746 0.365672 +vt 0.597015 0.358209 +vt 0.597015 0.376866 +vt 0.574627 0.380597 +vt 0.582090 0.391791 +vt 0.582090 0.380597 +vt 0.574627 0.391791 +vt 0.582090 0.410448 +vt 0.582090 0.399254 +vt 0.597015 0.391791 +vt 0.604478 0.380597 +vt 0.597015 0.380597 +vt 0.604478 0.391791 +vt 0.597015 0.399254 +vt 0.597015 0.410448 +vt 0.570895 0.391791 +vt 0.608209 0.391791 +vt 0.582090 0.324627 +vt 0.597015 0.332090 +vt 0.597015 0.324627 +vt 0.582090 0.347015 +vt 0.597015 0.347015 +vt 0.582090 0.332090 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 -0.2164 0.9763 +vn 0.0000 -0.4226 0.9063 +vn 0.0000 0.3007 0.9537 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.8192 0.5736 +vn 0.0000 -0.5029 -0.8644 +vn 0.0000 -0.5749 -0.8182 +vn 0.0000 -0.8567 -0.5158 +vn 0.0000 -0.9778 -0.2097 +s off +f 329/574/128 330/575/128 331/576/128 +f 330/575/128 332/577/128 331/576/128 +f 333/578/129 334/579/129 335/580/129 +f 336/581/129 334/579/129 333/578/129 +f 337/582/128 338/583/128 332/584/128 +f 339/585/128 340/586/128 338/587/128 +f 341/588/129 342/589/129 336/590/129 +f 343/591/129 341/592/129 344/593/129 +f 330/575/128 337/582/128 332/577/128 +f 336/581/129 342/589/129 334/579/129 +f 337/582/128 339/594/128 338/583/128 +f 341/588/129 343/595/129 342/589/129 +s 1 +f 341/592/130 340/586/131 344/593/131 +f 336/590/132 338/583/130 341/588/130 +f 333/578/133 332/577/132 336/581/132 +f 335/580/134 331/576/133 333/578/133 +f 339/596/135 342/597/136 343/598/135 +f 342/597/136 330/599/137 334/600/137 +f 335/580/138 330/599/137 329/574/138 +f 341/592/130 338/587/130 340/586/131 +f 336/590/132 332/584/132 338/583/130 +f 333/578/133 331/576/133 332/577/132 +f 335/580/134 329/574/134 331/576/133 +f 339/596/135 337/601/136 342/597/136 +f 342/597/136 337/601/136 330/599/137 +f 335/580/138 334/600/137 330/599/137 +o Gun +v 0.343750 1.299170 2.437500 +v -0.343750 1.299170 -2.062500 +v 0.343750 1.299170 -2.062500 +v 0.125000 2.424170 -0.750000 +v 0.343750 2.049170 -0.750000 +v 0.343750 2.424170 -0.750000 +v -0.343750 2.424170 -0.750000 +v -0.125000 2.049170 -0.750000 +v -0.125000 2.424170 -0.750000 +v 0.125000 2.236670 -0.812500 +v 0.125000 2.424170 -0.812500 +v -0.125000 2.236670 -0.812500 +v -0.125000 2.424170 -0.812500 +v 0.343750 2.299170 -1.187500 +v 0.218750 2.424170 -1.187500 +v 0.343750 2.424170 -1.125000 +v -0.343750 2.424170 -1.125000 +v -0.218750 2.424170 -1.187500 +v -0.343750 2.299170 -1.187500 +v 0.218750 2.424170 -5.375000 +v -0.218750 2.424170 -5.375000 +v 0.343750 2.299170 -5.562500 +v 0.125000 2.049170 -0.750000 +v 0.125000 1.861670 11.875000 +v 0.220971 2.082641 11.875000 +v 0.088388 1.950058 11.875000 +v 0.220971 1.640699 11.875000 +v 0.312500 1.861670 11.875000 +v 0.000000 1.736670 11.875000 +v 0.088388 1.773282 11.875000 +v -0.220971 1.640699 11.875000 +v 0.000000 1.549170 11.875000 +v -0.088388 1.950058 11.875000 +v -0.312500 1.861670 11.875000 +v -0.125000 1.861670 11.875000 +v -0.088388 1.773282 11.875000 +v 0.218750 1.799170 2.250000 +v 0.218750 2.049170 2.062500 +v 0.218750 1.861670 2.363165 +v -0.218750 1.861670 2.363165 +v -0.218750 2.049170 2.437500 +v -0.218750 2.049170 2.062500 +v 0.239382 2.049170 3.750000 +v -0.239382 2.049170 2.437500 +v -0.239382 2.049170 3.750000 +v 0.343750 2.049170 1.625000 +v -0.343750 1.799170 1.625000 +v 0.343750 1.799170 1.625000 +v 0.093750 2.517920 -5.031250 +v 0.156250 2.486670 -5.031250 +v 0.156250 2.424170 -5.031250 +v -0.093750 2.517920 -2.406250 +v -0.156250 2.486670 -2.406250 +v -0.156250 2.424170 -2.406250 +v 0.093750 2.517920 -2.406250 +v -0.093750 2.517920 -5.031250 +v 0.343750 1.299170 -5.562500 +v 0.343750 1.799170 2.437500 +v -0.343750 2.049170 -0.750000 +v -0.343750 2.299170 -5.562500 +v -0.343750 2.049170 1.625000 +v -0.343750 1.299170 2.437500 +v -0.218750 2.486670 -4.093750 +v 0.218750 2.486670 -4.968750 +v 0.218750 2.486670 -4.093750 +v -0.156250 2.549170 -4.093750 +v -0.218750 2.486670 -4.968750 +v -0.218750 2.611670 -4.093750 +v -0.218750 2.799170 -4.968750 +v -0.156250 2.799170 -4.968750 +v -0.156250 2.611670 -4.093750 +v 0.218750 2.611670 -4.093750 +v 0.156250 2.799170 -4.968750 +v 0.156250 2.611670 -4.093750 +v 0.093750 2.549170 -4.968750 +v -0.093750 2.736670 -4.968750 +v 0.093750 2.736670 -4.968750 +v -0.156250 2.549170 -4.968750 +v 0.156250 2.549170 -4.968750 +v 0.156250 2.549170 -4.093750 +v 0.093750 2.861670 -4.468750 +v -0.093750 2.861670 -4.406250 +v 0.093750 2.861670 -4.406250 +v -0.093750 2.674170 -4.468750 +v -0.093750 2.861670 -4.468750 +v 0.000000 2.830420 -4.468750 +v -0.022097 2.821268 -4.468750 +v 0.022097 2.821268 -4.468750 +v 0.093750 2.674170 -4.468750 +v 0.031250 2.799170 -4.468750 +v -0.031250 2.799170 -4.468750 +v -0.022097 2.777073 -4.468750 +v 0.022097 2.777073 -4.468750 +v 0.000000 2.767920 -4.468750 +v 0.000000 2.830420 -4.406250 +v 0.022097 2.821268 -4.406250 +v -0.022097 2.821268 -4.406250 +v -0.031250 2.799170 -4.406250 +v -0.156250 2.665242 -4.343750 +v 0.156250 2.549170 -4.343750 +v 0.156250 2.665242 -4.343750 +v -0.156250 2.678635 -4.406250 +v -0.093750 2.549170 -4.406250 +v -0.156250 2.549170 -4.406250 +v 0.093750 2.549170 -4.406250 +v 0.156250 2.678635 -4.406250 +v 0.156250 2.549170 -4.406250 +v -0.093750 2.678635 -4.406250 +v 0.022097 2.777073 -4.406250 +v 0.093750 2.678635 -4.406250 +v 0.031250 2.799170 -4.406250 +v 0.250000 2.580420 -4.781250 +v 0.250000 2.642920 -4.843750 +v 0.250000 2.705420 -4.781250 +v -0.343750 2.642920 -4.906250 +v -0.343750 2.517920 -4.781250 +v -0.343750 2.642920 -4.656250 +v 0.281250 0.924170 0.812500 +v 0.140625 0.924170 1.056070 +v -0.140625 0.924170 1.056070 +v 0.187500 1.174170 0.812500 +v 0.243570 1.174170 0.671875 +v 0.132583 1.174170 0.679918 +v 0.243570 1.174170 0.953125 +v 0.132583 1.174170 0.945082 +v 0.140625 1.174170 1.056070 +v 0.140625 1.174170 0.568930 +v 0.000000 1.174170 1.000000 +v 0.000000 1.174170 0.625000 +v -0.140625 1.174170 0.568930 +v -0.132583 1.174170 0.679917 +v -0.243570 1.174170 0.671875 +v -0.187500 1.174170 0.812500 +v -0.243570 1.174170 0.953125 +v -0.132583 1.174170 0.945082 +v -0.140625 1.174170 1.056070 +v 0.218750 0.394023 -1.004259 +v 0.218750 0.565917 -0.875000 +v 0.218750 0.565917 -0.812500 +v 0.218750 0.674170 -0.812500 +v 0.218750 0.674170 -0.750000 +v 0.218750 0.424170 -1.125000 +v 0.218750 0.456523 -1.004259 +v -0.156250 1.916588 1.934359 +v -0.156250 2.049170 1.625000 +v -0.156250 1.861670 1.625000 +v 0.156250 2.049170 1.625000 +v 0.156250 1.916588 1.934359 +v 0.156250 1.861670 1.625000 +v -0.156250 2.049170 2.062500 +v 0.156250 2.049170 2.062500 +v -0.218750 0.394023 -1.004259 +v -0.218750 0.424170 -1.125000 +v -0.218750 0.361670 -1.125000 +v -0.218750 0.565917 -0.875000 +v -0.218750 0.565917 -0.812500 +v -0.218750 0.674170 -0.812500 +v 0.281250 1.299170 -0.750000 +v 0.218750 1.236670 -1.937500 +v 0.281250 1.299170 -2.062500 +v 0.218750 0.361670 -1.125000 +v 0.218750 0.424170 -1.562500 +v 0.218750 0.503411 -1.732433 +v 0.218750 0.361670 -1.937500 +v 0.218750 0.674170 -1.812500 +v 0.218750 0.861670 -1.812500 +v 0.218750 1.111670 -1.562500 +v 0.218750 0.861670 -0.812500 +v 0.218750 1.236670 -0.750000 +v 0.218750 1.111670 -1.062500 +v -0.218750 0.424170 -1.562500 +v -0.218750 0.361670 -1.937500 +v -0.218750 0.503411 -1.732433 +v -0.218750 0.674170 -1.812500 +v -0.218750 0.861670 -0.812500 +v -0.218750 0.674170 -0.750000 +v -0.218750 1.236670 -0.750000 +v -0.218750 1.111670 -1.562500 +v -0.218750 1.111670 -1.062500 +v -0.218750 1.236670 -1.937500 +v -0.218750 0.861670 -1.812500 +v -0.281250 1.299170 -0.750000 +v -0.281250 1.299170 -2.062500 +v -0.343750 1.299170 -5.562500 +v 0.156250 2.109449 11.875000 +v -0.220971 2.082641 11.875000 +v -0.156250 2.109449 11.875000 +v 0.093750 2.421949 11.000000 +v 0.156250 2.421949 11.000000 +v 0.156250 2.109449 11.000000 +v -0.093750 2.421949 11.000000 +v 0.093750 2.421949 11.875000 +v 0.170671 2.863656 11.312500 +v -0.170671 2.863656 11.812500 +v -0.159818 2.802105 11.875000 +v -0.093750 2.421949 11.875000 +v -0.031250 2.421949 11.437500 +v 0.015625 2.796949 11.437500 +v 0.031250 2.421949 11.437500 +v -0.015625 2.796949 11.437500 +v 0.015625 2.796949 11.625000 +v -0.015625 2.796949 11.625000 +v -0.031250 2.421949 11.875000 +v 0.031250 2.421949 11.875000 +v 0.088388 1.950058 11.000000 +v 0.000000 1.986670 11.000000 +v 0.000000 1.736670 11.000000 +v 0.000000 2.174170 3.750000 +v -0.022097 2.777073 -4.406250 +v 0.000000 2.767920 -4.406250 +v 0.371209 1.780864 2.702665 +v 0.218750 1.799170 1.625000 +v 0.218750 1.916588 1.934359 +v 0.218750 1.861670 1.625000 +v 0.218750 2.049170 2.437500 +v -0.218750 1.916588 1.934359 +v -0.218750 1.861670 1.625000 +v -0.218750 1.799170 1.625000 +v -0.218750 1.799170 2.250000 +v 0.239382 2.049170 2.437500 +v -0.156250 2.424170 -5.031250 +v -0.156250 2.486670 -5.031250 +v 0.156250 2.424170 -2.406250 +v 0.156250 2.486670 -2.406250 +v -0.343750 1.799170 2.437500 +v 0.218750 2.799170 -4.968750 +v -0.093750 2.549170 -4.968750 +v -0.156250 2.549170 -4.343750 +v 0.250000 2.687115 -4.737056 +v 0.250000 2.642920 -4.718750 +v 0.250000 2.598726 -4.737056 +v 0.250000 2.598726 -4.825444 +v 0.250000 2.687115 -4.825444 +v -0.343750 2.731309 -4.692862 +v -0.343750 2.767920 -4.781250 +v -0.343750 2.731309 -4.869638 +v -0.343750 2.554532 -4.869638 +v -0.343750 2.554532 -4.692862 +v -0.243570 0.924170 0.953125 +v -0.281250 0.924170 0.812500 +v -0.243570 0.924170 0.671875 +v -0.140625 0.924170 0.568930 +v 0.000000 0.924170 0.531250 +v 0.140625 0.924170 0.568930 +v 0.243570 0.924170 0.671875 +v 0.243570 0.924170 0.953125 +v 0.000000 0.924170 1.093750 +v 0.281250 1.174170 0.812500 +v 0.000000 1.174170 1.093750 +v 0.000000 1.174170 0.531250 +v -0.281250 1.174170 0.812500 +v -0.218750 0.456523 -1.004259 +v -0.156250 2.109449 11.000000 +v -0.156250 2.421949 11.000000 +v 0.159818 2.802105 11.875000 +v 0.170671 2.863656 11.812500 +v -0.170671 2.863656 11.312500 +v -0.088388 1.950058 11.000000 +v -0.125000 1.861670 11.000000 +v -0.088388 1.773282 11.000000 +v 0.088388 1.773282 11.000000 +v 0.125000 1.861670 11.000000 +v -0.156250 2.132303 3.750000 +v 0.156250 2.132303 3.750000 +v 0.220971 1.640699 11.000000 +v 0.220971 2.082641 11.000000 +v 0.000000 1.549170 11.000000 +v 0.312500 1.861670 11.000000 +v -0.312500 1.861670 11.000000 +v -0.220971 1.640699 11.000000 +v 0.000000 2.174170 4.062500 +v 0.156250 2.132303 4.062500 +v -0.156250 2.132303 4.062500 +v 0.295753 1.799170 4.062500 +v 0.312500 1.861670 2.363165 +v 0.312500 1.861670 4.062500 +v 0.270633 2.017920 2.427792 +v 0.270633 2.017920 4.062500 +v -0.270633 2.017920 2.437500 +v -0.312500 1.861670 4.062500 +v -0.270633 2.017920 4.062500 +v 0.295753 1.799170 2.250000 +v -0.295753 1.799170 4.062500 +v -0.312500 1.861670 2.363165 +v -0.295753 1.799170 2.250000 +v 0.000000 2.049170 7.625000 +v -0.132583 1.994253 7.625000 +v 0.187500 1.861670 7.625000 +v 0.437500 1.736670 2.812500 +v 0.343750 1.799170 2.812500 +v -0.343750 1.799170 2.812500 +v -0.371209 1.780864 2.702665 +v 0.437500 1.111670 2.812500 +v 0.312500 1.299170 8.000000 +v 0.312500 1.049170 2.812500 +v -0.437500 1.361670 8.000000 +v -0.437500 1.736670 2.812500 +v -0.437500 1.111670 2.812500 +v -0.312500 1.799170 7.875000 +v -0.312500 1.299170 8.000000 +v -0.312500 1.049170 2.812500 +v 0.437500 1.361670 8.000000 +v 0.312500 1.799170 7.875000 +v 0.132583 1.994253 10.812500 +v 0.000000 2.174170 11.000000 +v -0.132583 1.994253 10.812500 +v -0.220971 2.082641 11.000000 +v -0.132583 1.729087 10.812500 +v 0.132583 1.729087 10.812500 +v 0.187500 1.861670 10.812500 +v 0.000000 2.049170 10.812500 +v -0.187500 1.861670 10.812500 +v 0.000000 1.674170 10.812500 +v -0.187500 1.861670 7.625000 +v -0.132583 1.729087 7.625000 +v 0.000000 1.674170 8.000000 +v 0.132583 1.994253 7.625000 +v 0.132583 1.729087 7.625000 +v 0.218750 2.598726 -4.737056 +v 0.218750 2.580420 -4.781250 +v 0.218750 2.687115 -4.737056 +v 0.218750 2.642920 -4.718750 +v 0.218750 2.642920 -4.843750 +v 0.218750 2.687115 -4.825444 +v 0.218750 2.598726 -4.825444 +v 0.218750 2.705420 -4.781250 +v -0.218750 2.709212 -4.847541 +v -0.281250 2.767920 -4.781250 +v -0.218750 2.736670 -4.781250 +v -0.281250 2.554532 -4.869638 +v -0.218750 2.642920 -4.875000 +v -0.218750 2.576629 -4.847541 +v -0.218750 2.576629 -4.714959 +v -0.281250 2.517920 -4.781250 +v -0.218750 2.549170 -4.781250 +v -0.281250 2.731309 -4.692862 +v -0.218750 2.642920 -4.687500 +v -0.218750 2.709212 -4.714959 +v -0.281250 2.731309 -4.869638 +v -0.281250 2.554532 -4.692862 +v -0.281250 2.642920 -4.906250 +v -0.281250 2.642920 -4.656250 +v 0.000000 1.299170 0.625000 +v -0.132583 1.299170 0.679917 +v 0.187500 1.299170 0.812500 +v 0.132583 1.299170 0.679918 +v 0.000000 1.299170 1.000000 +v 0.132583 1.299170 0.945082 +v -0.187500 1.299170 0.812500 +v -0.132583 1.299170 0.945082 +v -0.218750 0.969924 -0.875000 +v 0.218750 0.969924 -0.875000 +v 0.156250 0.799411 -3.472389 +v -0.218750 1.017962 -3.851390 +v 0.218750 1.017962 -3.851390 +v 0.156250 1.706500 -6.971929 +v -0.156250 1.749912 -6.725727 +v 0.156250 1.749912 -6.725727 +v 0.156250 -0.261926 -2.410389 +v -0.093750 -0.394406 -2.622401 +v 0.093750 -0.394406 -2.622401 +v 0.156250 0.572834 -3.366735 +v -0.156250 0.799411 -3.472389 +v 0.093750 1.812155 -7.198505 +v -0.156250 1.706500 -6.971929 +v 0.093750 -0.074426 -2.410389 +v -0.156250 -0.261926 -2.410389 +v 0.218750 0.262663 -3.404819 +v -0.156250 0.572834 -3.366735 +v 0.031250 1.892503 -7.294261 +v -0.093750 1.812155 -7.198505 +v 0.093750 0.152151 -2.304735 +v -0.093750 -0.074426 -2.410389 +v 0.218750 -0.607686 -4.014244 +v -0.218750 0.262663 -3.404819 +v -0.156250 1.100554 -12.294434 +v 0.156250 1.100554 -12.294434 +v -0.218750 0.272674 -2.161101 +v -0.093750 0.152151 -2.304735 +v 0.218750 -0.848001 -4.083153 +v -0.218750 -0.607686 -4.014244 +v 0.218750 0.730171 -12.235770 +v 0.343750 0.730171 -12.110770 +v 0.343750 0.361670 -1.937500 +v 0.218750 0.272674 -2.161101 +v 0.218750 -1.259117 -3.933519 +v -0.218750 -0.848001 -4.083153 +v 0.218750 -0.894829 -12.235770 +v -0.218750 0.730171 -12.235770 +v 0.218750 -1.474552 -3.552739 +v -0.218750 -1.259117 -3.933519 +v 0.218750 -1.445037 -12.118820 +v -0.218750 -0.894829 -12.235770 +v 0.218750 -1.441887 -3.241951 +v -0.218750 -1.474552 -3.552739 +v 0.093750 -1.752219 -11.903729 +v -0.218750 -1.445037 -12.118820 +v 0.156250 -1.289697 -3.043612 +v -0.218750 -1.441887 -3.241951 +v 0.093750 -1.428696 -10.696322 +v -0.093750 -1.752219 -11.903729 +v 0.093750 -1.102197 -3.043612 +v -0.156250 -1.289697 -3.043612 +v 0.218750 0.301005 -7.510611 +v -0.093750 -1.428696 -10.696322 +v 0.093750 -0.897409 -2.900218 +v -0.093750 -1.102197 -3.043612 +v 0.218750 0.585548 -6.749564 +v -0.218750 0.301005 -7.510611 +v 0.218750 2.174170 -5.687500 +v -0.343750 2.174170 -5.562500 +v 0.343750 2.174170 -5.562500 +v 0.156250 -0.803659 -2.737838 +v -0.093750 -0.897409 -2.900218 +v 0.218750 0.795839 -5.964749 +v -0.218750 0.585548 -6.749564 +v 0.218750 2.093290 -5.989352 +v -0.218750 2.174170 -5.687500 +v 0.093750 -0.616159 -2.737838 +v -0.156250 -0.803659 -2.737838 +v -0.218750 0.795839 -5.964749 +v -0.218750 2.093290 -5.989352 +v -0.093750 -0.616159 -2.737838 +v 0.343750 -0.848001 -3.895653 +v 0.343750 -1.071617 -3.746019 +v 0.343750 -0.769829 -12.110770 +v 0.343750 -1.191887 -3.241951 +v 0.343750 -1.164697 -3.168612 +v 0.343750 -1.502219 -12.028729 +v 0.343750 -1.053696 -10.696322 +v 0.343750 -0.977197 -3.168612 +v 0.343750 0.551005 -7.573111 +v 0.343750 -0.772409 -3.025218 +v 0.343750 0.835548 -6.874564 +v 0.343750 -0.741159 -2.862838 +v 0.343750 1.045839 -6.089749 +v 0.343750 2.049170 -5.687500 +v 0.343750 1.968290 -5.926852 +v 0.343750 -0.491159 -2.862838 +v -0.343750 1.045839 -6.089749 +v -0.343750 1.142962 -3.851390 +v 0.343750 1.562412 -6.725727 +v 0.343750 -0.331906 -2.747401 +v 0.343750 1.142962 -3.851390 +v 0.343750 0.799411 -3.222389 +v 0.343750 1.456500 -6.971929 +v 0.343750 -0.199426 -2.535389 +v 0.343750 0.510334 -3.179235 +v 0.343750 1.374655 -7.198505 +v 0.343750 0.050574 -2.535389 +v -0.343750 0.137663 -3.279819 +v 0.343750 0.277151 -2.429735 +v 0.343750 -0.607686 -3.889244 +v 0.343750 0.137663 -3.279819 +v 0.343750 0.397674 -2.161101 +v -0.343750 0.361670 -1.937500 +v 0.343750 1.236670 -1.937500 +v -0.343750 1.236670 -1.937500 +v -0.343750 -1.502219 -12.028729 +v -0.343750 -0.769829 -12.110770 +v 0.343750 -1.224552 -3.552739 +v -0.343750 0.730171 -12.110770 +v -0.343750 -1.053696 -10.696322 +v -0.343750 0.551005 -7.573111 +v -0.343750 0.835548 -6.874564 +v -0.343750 1.374655 -7.198505 +v -0.343750 1.456500 -6.971929 +v -0.343750 1.562412 -6.725727 +v -0.343750 1.968290 -5.926852 +v -0.343750 -0.848001 -3.895653 +v -0.343750 -0.977197 -3.168612 +v -0.343750 -0.607686 -3.889244 +v -0.343750 -0.772409 -3.025218 +v -0.343750 -0.741159 -2.862838 +v -0.343750 -0.491159 -2.862838 +v -0.343750 0.050574 -2.535389 +v -0.343750 0.277151 -2.429735 +v -0.343750 0.510334 -3.179235 +v -0.343750 -0.199426 -2.535389 +v -0.343750 -0.331906 -2.747401 +v -0.343750 0.397674 -2.161101 +v -0.343750 0.799411 -3.222389 +v -0.031250 1.892503 -7.294261 +v -0.343750 2.049170 -5.687500 +v -0.343750 -1.071617 -3.746019 +v -0.343750 -1.191887 -3.241951 +v -0.343750 -1.164697 -3.168612 +v -0.343750 -1.224552 -3.552739 +v 0.000000 1.986670 11.875000 +v 0.156250 2.421949 11.875000 +v -0.156250 2.421949 11.875000 +v 0.232221 2.852803 11.812500 +v 0.221368 2.791252 11.875000 +v -0.221368 2.791252 11.875000 +v -0.232221 2.852803 11.812500 +v -0.232221 2.852803 11.312500 +v 0.232221 2.852803 11.312500 +v 0.371209 1.225947 2.702665 +v -0.371209 1.225947 2.702665 +v -0.437500 1.736670 8.000000 +v 0.437500 1.736670 8.000000 +vt 0.742537 0.847015 +vt 0.701493 0.578358 +vt 0.742537 0.578358 +vt 0.615672 0.432836 +vt 0.630597 0.410448 +vt 0.630597 0.432836 +vt 0.589552 0.432836 +vt 0.604478 0.410448 +vt 0.604478 0.432836 +vt 0.611940 0.421642 +vt 0.611940 0.432836 +vt 0.608209 0.421642 +vt 0.608209 0.708955 +vt 0.619403 0.723881 +vt 0.608209 0.723881 +vt 0.828358 0.992537 +vt 0.839552 0.992537 +vt 0.833955 1.000000 +vt 0.835821 0.421642 +vt 0.839552 0.429104 +vt 0.828358 0.429104 +vt 0.839552 0.742537 +vt 0.839552 0.679105 +vt 0.828358 0.731343 +vt 0.839552 0.697761 +vt 0.839552 0.723881 +vt 0.597015 0.708955 +vt 0.488806 0.466418 +vt 0.500000 0.477612 +vt 0.488806 0.473881 +vt 0.488806 0.458955 +vt 0.500000 0.447761 +vt 0.500000 0.462687 +vt 0.488806 0.436567 +vt 0.488806 0.444030 +vt 0.488806 0.429104 +vt 0.500000 0.417910 +vt 0.500000 0.432836 +vt 0.488806 0.391791 +vt 0.500000 0.402985 +vt 0.488806 0.399254 +vt 0.488806 0.406716 +vt 0.488806 0.414179 +vt 0.764925 0.880597 +vt 0.776119 0.895522 +vt 0.757463 0.884328 +vt 0.757463 0.906716 +vt 0.753731 0.895522 +vt 0.776119 0.895522 +vt 0.664179 0.850746 +vt 0.742537 0.880597 +vt 0.664179 0.880597 +vt 0.787313 0.798507 +vt 0.828358 0.813433 +vt 0.787313 0.813433 +vt 0.630597 0.455224 +vt 0.623134 0.458955 +vt 0.615672 0.436567 +vt 0.604478 0.436567 +vt 0.597015 0.458955 +vt 0.634328 0.238806 +vt 0.636194 0.235075 +vt 0.641791 0.235075 +vt 0.634328 0.414179 +vt 0.636194 0.410448 +vt 0.641791 0.410448 +vt 0.623134 0.410448 +vt 0.634328 0.253731 +vt 0.634328 0.410448 +vt 0.802239 0.369403 +vt 0.742537 0.369403 +vt 0.802239 0.630597 +vt 0.809702 0.656716 +vt 0.787313 0.656716 +vt 0.772388 0.798507 +vt 0.772388 0.847015 +vt 0.634328 0.656716 +vt 0.641791 0.630597 +vt 0.656716 0.656716 +vt 0.641791 0.369403 +vt 0.671642 0.798507 +vt 0.656716 0.798507 +vt 0.701493 0.847015 +vt 0.828358 0.656716 +vt 0.828358 0.798507 +vt 0.514925 0.574627 +vt 0.567164 0.600746 +vt 0.514925 0.600746 +vt 0.488806 0.600746 +vt 0.492537 0.604478 +vt 0.436567 0.600746 +vt 0.488806 0.608209 +vt 0.436567 0.619403 +vt 0.462687 0.597015 +vt 0.410448 0.600746 +vt 0.410448 0.597015 +vt 0.410448 0.544776 +vt 0.462687 0.548507 +vt 0.410448 0.548507 +vt 0.514925 0.608209 +vt 0.552239 0.574627 +vt 0.541045 0.563433 +vt 0.552239 0.563433 +vt 0.462687 0.582090 +vt 0.410448 0.585821 +vt 0.410448 0.582090 +vt 0.410448 0.559702 +vt 0.462687 0.563433 +vt 0.410448 0.563433 +vt 0.507463 0.555970 +vt 0.496269 0.552239 +vt 0.507463 0.552239 +vt 0.410448 0.600746 +vt 0.414179 0.604478 +vt 0.511194 0.563433 +vt 0.541045 0.552239 +vt 0.496269 0.555970 +vt 0.501866 0.557836 +vt 0.500546 0.558382 +vt 0.503185 0.558382 +vt 0.507463 0.567164 +vt 0.503731 0.559702 +vt 0.500000 0.559702 +vt 0.496269 0.567164 +vt 0.500546 0.561021 +vt 0.503185 0.561021 +vt 0.501866 0.561567 +vt 0.496269 0.541045 +vt 0.501866 0.543044 +vt 0.507463 0.541045 +vt 0.503185 0.543590 +vt 0.500546 0.543590 +vt 0.500000 0.544909 +vt 0.473881 0.582090 +vt 0.481343 0.600746 +vt 0.473881 0.600746 +vt 0.470149 0.582090 +vt 0.462687 0.585821 +vt 0.462687 0.582090 +vt 0.462687 0.597015 +vt 0.470149 0.600746 +vt 0.462687 0.600746 +vt 0.470149 0.585821 +vt 0.503185 0.546229 +vt 0.507463 0.552239 +vt 0.503731 0.544909 +vt 0.496269 0.552239 +vt 0.507463 0.567164 +vt 0.511194 0.555970 +vt 0.511194 0.567164 +vt 0.492537 0.555970 +vt 0.496269 0.555970 +vt 0.496269 0.567164 +vt 0.511194 0.589552 +vt 0.514925 0.593284 +vt 0.511194 0.597015 +vt 0.477612 0.552239 +vt 0.470149 0.544776 +vt 0.462687 0.552239 +vt 0.313433 0.531716 +vt 0.321828 0.546258 +vt 0.338619 0.546258 +vt 0.320896 0.447761 +vt 0.324627 0.455224 +vt 0.320896 0.455224 +vt 0.324627 0.440298 +vt 0.320896 0.440298 +vt 0.320896 0.436567 +vt 0.324627 0.432836 +vt 0.324627 0.462687 +vt 0.320896 0.458955 +vt 0.320896 0.425373 +vt 0.320896 0.432836 +vt 0.320896 0.470149 +vt 0.320896 0.462687 +vt 0.324627 0.477612 +vt 0.320896 0.477612 +vt 0.324627 0.485075 +vt 0.320896 0.481343 +vt 0.320896 0.492537 +vt 0.320896 0.485075 +vt 0.324627 0.500000 +vt 0.320896 0.500000 +vt 0.324627 0.507463 +vt 0.320896 0.503731 +vt 0.320896 0.514925 +vt 0.320896 0.507463 +vt 0.541045 0.679105 +vt 0.537313 0.690298 +vt 0.541045 0.694030 +vt 0.537313 0.701493 +vt 0.541045 0.701493 +vt 0.537313 0.671642 +vt 0.537313 0.679105 +vt 0.779851 0.850746 +vt 0.798507 0.843284 +vt 0.798507 0.854478 +vt 0.798507 0.843284 +vt 0.779851 0.835821 +vt 0.798507 0.832090 +vt 0.764925 0.876866 +vt 0.742537 0.880597 +vt 0.764925 0.858209 +vt 0.567164 0.679105 +vt 0.570895 0.671642 +vt 0.567164 0.671642 +vt 0.570895 0.690298 +vt 0.567164 0.694030 +vt 0.570895 0.701493 +vt 0.570895 0.694030 +vt 0.496269 0.537313 +vt 0.429104 0.533582 +vt 0.421642 0.537313 +vt 0.541045 0.671642 +vt 0.537313 0.645522 +vt 0.402581 0.489807 +vt 0.392969 0.485076 +vt 0.414179 0.481343 +vt 0.407109 0.500000 +vt 0.407109 0.511194 +vt 0.414179 0.533582 +vt 0.392969 0.526118 +vt 0.537313 0.712687 +vt 0.541045 0.735075 +vt 0.347015 0.533580 +vt 0.364690 0.526118 +vt 0.570895 0.645522 +vt 0.567164 0.623134 +vt 0.450314 0.485075 +vt 0.440703 0.489807 +vt 0.429104 0.481343 +vt 0.436174 0.500000 +vt 0.570895 0.712687 +vt 0.567164 0.701493 +vt 0.567164 0.735075 +vt 0.496269 0.533580 +vt 0.450314 0.526118 +vt 0.478594 0.526118 +vt 0.429104 0.533580 +vt 0.436174 0.511194 +vt 0.414179 0.533582 +vt 0.347015 0.537313 +vt 0.421642 0.537313 +vt 0.742537 0.328358 +vt 0.802239 0.328358 +vt 0.500000 0.481343 +vt 0.488806 0.481343 +vt 0.500000 0.388060 +vt 0.488806 0.384328 +vt 0.500000 0.384328 +vt 0.369403 0.507463 +vt 0.369403 0.511194 +vt 0.350746 0.511194 +vt 0.451493 0.481343 +vt 0.462687 0.429104 +vt 0.462687 0.481343 +vt 0.488806 0.462687 +vt 0.425373 0.432836 +vt 0.429104 0.429104 +vt 0.451493 0.429104 +vt 0.514925 0.384328 +vt 0.518657 0.365672 +vt 0.518657 0.384328 +vt 0.488806 0.361940 +vt 0.500000 0.365672 +vt 0.488806 0.365672 +vt 0.503731 0.365672 +vt 0.488806 0.384328 +vt 0.526119 0.365672 +vt 0.500000 0.361940 +vt 0.526119 0.361940 +vt 0.529851 0.365672 +vt 0.544776 0.384328 +vt 0.476066 0.374680 +vt 0.481343 0.376866 +vt 0.481343 0.361940 +vt 0.656716 0.865672 +vt 0.500546 0.546229 +vt 0.501866 0.546775 +vt 0.623134 0.708955 +vt 0.597015 0.458955 +vt 0.597015 0.708955 +vt 0.858209 0.421642 +vt 0.858209 0.406716 +vt 0.888060 0.421642 +vt 0.615672 0.410448 +vt 0.589552 0.410448 +vt 0.608209 0.432836 +vt 0.619403 0.708955 +vt 0.828358 0.690298 +vt 0.597015 0.723881 +vt 0.488806 0.451493 +vt 0.488806 0.421642 +vt 0.802239 0.880597 +vt 0.783582 0.888060 +vt 0.802239 0.884328 +vt 0.753731 0.895522 +vt 0.783582 0.902985 +vt 0.802239 0.906716 +vt 0.802239 0.910448 +vt 0.764925 0.910448 +vt 0.742537 0.850746 +vt 0.589552 0.455224 +vt 0.641791 0.253731 +vt 0.636194 0.253731 +vt 0.634328 0.250000 +vt 0.641791 0.429104 +vt 0.636194 0.429104 +vt 0.634328 0.425373 +vt 0.623134 0.253731 +vt 0.809702 0.634328 +vt 0.634328 0.634328 +vt 0.701493 0.369403 +vt 0.671642 0.847015 +vt 0.567164 0.574627 +vt 0.492537 0.608209 +vt 0.511194 0.604478 +vt 0.511194 0.608209 +vt 0.462687 0.600746 +vt 0.462687 0.544776 +vt 0.567164 0.619403 +vt 0.541045 0.574627 +vt 0.432836 0.604478 +vt 0.432836 0.619403 +vt 0.414179 0.619403 +vt 0.410448 0.619403 +vt 0.511194 0.552239 +vt 0.481343 0.582090 +vt 0.470149 0.597015 +vt 0.507463 0.574627 +vt 0.507463 0.555970 +vt 0.496269 0.574627 +vt 0.492537 0.567164 +vt 0.462687 0.574627 +vt 0.462687 0.563433 +vt 0.508556 0.595922 +vt 0.507463 0.593284 +vt 0.508556 0.590645 +vt 0.513832 0.590645 +vt 0.513832 0.595922 +vt 0.464872 0.557516 +vt 0.470149 0.559702 +vt 0.475426 0.557516 +vt 0.475426 0.546962 +vt 0.464872 0.546962 +vt 0.344765 0.540112 +vt 0.347015 0.531716 +vt 0.344765 0.523321 +vt 0.338619 0.517175 +vt 0.330224 0.514925 +vt 0.321828 0.517175 +vt 0.315682 0.523321 +vt 0.315682 0.540112 +vt 0.330224 0.548507 +vt 0.324627 0.447761 +vt 0.324627 0.425373 +vt 0.324627 0.470149 +vt 0.324627 0.492537 +vt 0.324627 0.514925 +vt 0.537313 0.682836 +vt 0.537313 0.694030 +vt 0.772388 0.843284 +vt 0.772388 0.843284 +vt 0.791045 0.858209 +vt 0.791045 0.876866 +vt 0.764925 0.880597 +vt 0.742537 0.854478 +vt 0.764925 0.854478 +vt 0.570895 0.679105 +vt 0.570895 0.682836 +vt 0.496269 0.533582 +vt 0.541045 0.623134 +vt 0.347015 0.533582 +vt 0.350746 0.492537 +vt 0.369403 0.496269 +vt 0.369403 0.492537 +vt 0.485075 0.429104 +vt 0.488806 0.432836 +vt 0.425373 0.462687 +vt 0.514925 0.365672 +vt 0.486620 0.374680 +vt 0.488806 0.369403 +vt 0.486620 0.364126 +vt 0.476066 0.364126 +vt 0.473881 0.369403 +vt 0.660448 0.876866 +vt 0.660448 0.854478 +vt 0.623134 0.458955 +vt 0.776119 0.876866 +vt 0.794776 0.880597 +vt 0.776119 0.880597 +vt 0.552239 0.447761 +vt 0.552239 0.477612 +vt 0.552239 0.432836 +vt 0.552239 0.462687 +vt 0.552239 0.481343 +vt 0.552239 0.402985 +vt 0.552239 0.417910 +vt 0.552239 0.384328 +vt 0.231343 0.279851 +vt 0.212687 0.291045 +vt 0.212687 0.279851 +vt 0.231343 0.291045 +vt 0.212687 0.302239 +vt 0.212687 0.253731 +vt 0.313433 0.257463 +vt 0.212687 0.257463 +vt 0.309702 0.268657 +vt 0.212687 0.268657 +vt 0.309702 0.313433 +vt 0.212687 0.324627 +vt 0.212687 0.313433 +vt 0.649251 0.864581 +vt 0.656716 0.860243 +vt 0.656716 0.864583 +vt 0.639900 0.861656 +vt 0.638062 0.864582 +vt 0.638060 0.863421 +vt 0.212687 0.328358 +vt 0.313433 0.324627 +vt 0.320896 0.328358 +vt 0.656716 0.871099 +vt 0.649259 0.866761 +vt 0.656716 0.866761 +vt 0.639900 0.869687 +vt 0.649252 0.872045 +vt 0.000000 0.291045 +vt 0.000000 0.302239 +vt 0.000000 0.263060 +vt 0.858209 0.350746 +vt 0.854478 0.358209 +vt 0.850746 0.350746 +vt 0.809702 0.350746 +vt 0.809702 0.373134 +vt 0.805970 0.358209 +vt 0.899254 0.399254 +vt 0.906716 0.089552 +vt 0.906716 0.399254 +vt 0.966418 0.089552 +vt 0.988806 0.399254 +vt 0.951493 0.399254 +vt 0.802239 0.350746 +vt 0.809702 0.055970 +vt 0.944030 0.089552 +vt 0.944030 0.399254 +vt 0.861940 0.399254 +vt 0.884328 0.089552 +vt 0.850746 0.055970 +vt 0.567164 0.473881 +vt 0.552239 0.373134 +vt 0.567164 0.384328 +vt 0.552239 0.388060 +vt 0.567164 0.414179 +vt 0.567164 0.444030 +vt 0.567164 0.451493 +vt 0.567164 0.458955 +vt 0.552239 0.492537 +vt 0.567164 0.481343 +vt 0.567164 0.488806 +vt 0.567164 0.391791 +vt 0.567164 0.399254 +vt 0.567164 0.429104 +vt 0.511194 0.291045 +vt 0.320896 0.283582 +vt 0.511194 0.283582 +vt 0.511194 0.298507 +vt 0.320896 0.291045 +vt 0.492537 0.305970 +vt 0.320896 0.313433 +vt 0.320896 0.305970 +vt 0.511194 0.328358 +vt 0.320896 0.320896 +vt 0.511194 0.320896 +vt 0.320896 0.276119 +vt 0.511194 0.276119 +vt 0.320896 0.298507 +vt 0.511194 0.313433 +vt 0.511194 0.335821 +vt 0.320896 0.328358 +vt 0.638060 0.253731 +vt 0.641791 0.585821 +vt 0.638060 0.429104 +vt 0.638060 0.410448 +vt 0.638060 0.585821 +vt 0.634328 0.429104 +vt 0.000000 0.319030 +vt 0.850746 0.373134 +vt 0.850746 0.421642 +vt 0.000000 0.257463 +vt 0.000000 0.250000 +vt 0.492537 0.582090 +vt 0.488806 0.578358 +vt 0.492537 0.578358 +vt 0.481343 0.582090 +vt 0.477612 0.578358 +vt 0.481343 0.578358 +vt 0.473881 0.582090 +vt 0.470149 0.578358 +vt 0.473881 0.578358 +vt 0.466418 0.582090 +vt 0.462687 0.578358 +vt 0.466418 0.578358 +vt 0.488806 0.582090 +vt 0.485075 0.578358 +vt 0.485075 0.582090 +vt 0.477612 0.582090 +vt 0.470149 0.582090 +vt 0.500000 0.597015 +vt 0.503731 0.600746 +vt 0.500000 0.600746 +vt 0.507463 0.597015 +vt 0.511194 0.600746 +vt 0.507463 0.600746 +vt 0.488806 0.597015 +vt 0.492537 0.600746 +vt 0.488806 0.600746 +vt 0.496269 0.597015 +vt 0.496269 0.600746 +vt 0.503731 0.597015 +vt 0.511194 0.597015 +vt 0.514925 0.600746 +vt 0.485075 0.597015 +vt 0.485075 0.600746 +vt 0.492537 0.597015 +vt 0.417910 0.537313 +vt 0.410448 0.541045 +vt 0.410448 0.537313 +vt 0.432836 0.541045 +vt 0.425373 0.537313 +vt 0.432836 0.537313 +vt 0.447761 0.537313 +vt 0.440298 0.541045 +vt 0.440298 0.537313 +vt 0.462687 0.541045 +vt 0.455224 0.537313 +vt 0.462687 0.537313 +vt 0.470149 0.541045 +vt 0.470149 0.537313 +vt 0.417910 0.541045 +vt 0.447761 0.541045 +vt 0.462687 0.544776 +vt 0.410448 0.544776 +vt 0.425373 0.544776 +vt 0.425373 0.541045 +vt 0.440298 0.544776 +vt 0.455224 0.544776 +vt 0.455224 0.541045 +vt 0.417910 0.544776 +vt 0.432836 0.544776 +vt 0.447761 0.544776 +vt 0.320896 0.485075 +vt 0.313433 0.477612 +vt 0.320896 0.477612 +vt 0.320896 0.500000 +vt 0.313433 0.492537 +vt 0.320896 0.492537 +vt 0.320896 0.514925 +vt 0.313433 0.507463 +vt 0.320896 0.507463 +vt 0.320896 0.470149 +vt 0.313433 0.462687 +vt 0.320896 0.462687 +vt 0.313433 0.470149 +vt 0.313433 0.485075 +vt 0.313433 0.500000 +vt 0.313433 0.455224 +vt 0.320896 0.455224 +vt 0.339552 0.440298 +vt 0.339552 0.492537 +vt 0.339552 0.507463 +vt 0.339552 0.470149 +vt 0.339552 0.447761 +vt 0.339552 0.514925 +vt 0.339552 0.477612 +vt 0.339552 0.455224 +vt 0.339552 0.432836 +vt 0.339552 0.485075 +vt 0.339552 0.500000 +vt 0.339552 0.462687 +vt 0.794776 0.854478 +vt 0.776119 0.858209 +vt 0.776119 0.854478 +vt 0.570895 0.656716 +vt 0.597015 0.649254 +vt 0.570895 0.649254 +vt 0.597015 0.656716 +vt 0.570895 0.667910 +vt 0.597015 0.667910 +vt 0.597015 0.675373 +vt 0.570895 0.675373 +vt 0.489199 0.517656 +vt 0.570895 0.686567 +vt 0.597015 0.686567 +vt 0.570895 0.694030 +vt 0.597015 0.694030 +vt 0.597015 0.708955 +vt 0.570895 0.708955 +vt 0.597015 0.738806 +vt 0.570895 0.738806 +vt 0.597015 0.567164 +vt 0.570895 0.589552 +vt 0.597015 0.589552 +vt 0.597015 0.600746 +vt 0.570895 0.600746 +vt 0.597015 0.611940 +vt 0.570895 0.611940 +vt 0.597015 0.623134 +vt 0.570895 0.623134 +vt 0.492734 0.511194 +vt 0.000000 0.324627 +vt -0.000000 0.332090 +vt 0.858209 0.970149 +vt 0.880597 0.996269 +vt 0.854478 0.996269 +vt 0.970149 0.910448 +vt 0.988806 0.925373 +vt 0.970149 0.925373 +vt 0.858209 0.679105 +vt 0.873134 0.694030 +vt 0.861940 0.694030 +vt 0.858209 0.940298 +vt 0.876866 0.955224 +vt 0.858209 0.955224 +vt 0.973881 0.895522 +vt 0.988806 0.910448 +vt 0.861940 0.667910 +vt 0.876866 0.679105 +vt 0.854478 0.921642 +vt 0.876866 0.940298 +vt 0.977612 0.888060 +vt 0.985075 0.895522 +vt 0.861940 0.652985 +vt 0.873134 0.667910 +vt 0.854478 0.858209 +vt 0.880597 0.921642 +vt 0.988806 0.585821 +vt 0.970149 0.585821 +vt 0.880597 0.641791 +vt 0.873134 0.652985 +vt 0.854478 0.843284 +vt 0.880597 0.858209 +vt 0.902985 0.977612 +vt 0.906716 1.000000 +vt 0.891791 0.977612 +vt 0.847015 0.626866 +vt 0.854478 0.641791 +vt 0.854478 0.817164 +vt 0.880597 0.843284 +vt 0.902985 0.880597 +vt 0.929105 0.977612 +vt 0.854478 0.791045 +vt 0.880597 0.817164 +vt 0.902985 0.847015 +vt 0.929105 0.880597 +vt 0.854478 0.772388 +vt 0.880597 0.791045 +vt 0.910448 0.824627 +vt 0.929105 0.847015 +vt 0.858209 0.757463 +vt 0.880597 0.772388 +vt 0.947761 0.899254 +vt 0.958955 0.973881 +vt 0.947761 0.973881 +vt 0.861940 0.746269 +vt 0.876866 0.757463 +vt 0.940298 0.682836 +vt 0.958955 0.899254 +vt 0.861940 0.731343 +vt 0.873134 0.746269 +vt 0.940298 0.634328 +vt 0.966418 0.682836 +vt 0.966418 0.992537 +vt 1.000000 1.000000 +vt 0.958955 1.000000 +vt 0.858209 0.720149 +vt 0.873134 0.731343 +vt 0.940298 0.585821 +vt 0.966418 0.634328 +vt 0.966418 0.973881 +vt 0.992537 0.992537 +vt 0.861940 0.708955 +vt 0.876866 0.720149 +vt 0.940298 0.458955 +vt 0.966418 0.585821 +vt 0.992537 0.973881 +vt 0.873134 0.708955 +vt 0.843284 0.843284 +vt 0.925373 1.000000 +vt 0.839552 0.817164 +vt 0.891791 0.884328 +vt 0.839552 0.772388 +vt 0.854478 0.757463 +vt 0.839552 0.764925 +vt 0.839552 0.757463 +vt 0.679105 0.022388 +vt 0.761194 0.022388 +vt 0.682836 0.048507 +vt 0.858209 0.746269 +vt 0.847015 0.757463 +vt 0.843284 0.746269 +vt 0.492537 0.130597 +vt 0.500000 0.149254 +vt 0.858209 0.731343 +vt 0.843284 0.731343 +vt 0.447761 0.149254 +vt 0.451493 0.167910 +vt 0.847015 0.720149 +vt 0.406716 0.179104 +vt 0.399254 0.160448 +vt 0.402985 0.246269 +vt 0.384328 0.238806 +vt 0.399254 0.235075 +vt 0.858209 0.708955 +vt 0.843284 0.708955 +vt 0.406716 0.179104 +vt 0.399254 0.160448 +vt 0.276119 0.182836 +vt 0.447761 0.208955 +vt 0.858209 0.694030 +vt 0.843284 0.694030 +vt 0.843284 1.000000 +vt 0.843284 0.955224 +vt 0.462687 0.223881 +vt 0.462687 0.201493 +vt 0.847015 0.679105 +vt 0.843284 0.940298 +vt 0.477612 0.197761 +vt 0.477612 0.231343 +vt 0.858209 0.667910 +vt 0.843284 0.667910 +vt 0.891791 0.921642 +vt 0.485075 0.235075 +vt 0.858209 0.652985 +vt 0.843284 0.652985 +vt 0.843284 0.858209 +vt 0.843284 0.921642 +vt 0.779851 0.182836 +vt 0.768657 0.156716 +vt 0.384328 0.250000 +vt 0.376866 0.246269 +vt 0.847015 0.638060 +vt 0.895522 0.764925 +vt 0.936567 0.817164 +vt 0.895522 0.817164 +vt 0.936567 0.824627 +vt 0.895522 0.824627 +vt 0.447761 0.227612 +vt 0.895522 0.847015 +vt 0.902985 0.824627 +vt 0.936567 0.847015 +vt 0.940298 0.884328 +vt 0.768657 0.067164 +vt 0.376866 0.194030 +vt 0.167910 0.194030 +vt 0.276119 0.182836 +vt 0.839552 0.791045 +vt 0.839552 0.802239 +vt 0.276119 0.063433 +vt 0.235075 0.059701 +vt 0.268657 0.052239 +vt 0.227612 0.070896 +vt 0.276119 0.078358 +vt 0.242537 0.123134 +vt 0.216418 0.070896 +vt 0.216418 0.085821 +vt 0.197761 0.119403 +vt 0.235075 0.145522 +vt 0.190299 0.134328 +vt 0.197761 0.104478 +vt 0.208955 0.097015 +vt 0.175373 0.141791 +vt 0.160448 0.190299 +vt 0.160448 0.138060 +vt 0.238806 0.164179 +vt 0.768657 0.067164 +vt 0.761194 0.022388 +vt 0.768657 0.156716 +vt 0.682836 0.048507 +vt 0.500000 0.149254 +vt 0.451493 0.167910 +vt 0.477612 0.197761 +vt 0.462687 0.201493 +vt 0.447761 0.208955 +vt 0.399254 0.235075 +vt 0.276119 0.063433 +vt 0.235075 0.059701 +vt 0.276119 0.078358 +vt 0.227612 0.070896 +vt 0.242537 0.123134 +vt 0.216418 0.070896 +vt 0.216418 0.085821 +vt 0.197761 0.119403 +vt 0.190299 0.134328 +vt 0.235075 0.145522 +vt 0.197761 0.104478 +vt 0.208955 0.097015 +vt 0.175373 0.141791 +vt 0.238806 0.164179 +vt 0.940298 0.977612 +vt 0.779851 0.182836 +vt 0.485075 0.235075 +vt 0.477612 0.231343 +vt 0.462687 0.223881 +vt 0.447761 0.227612 +vt 0.402985 0.246269 +vt 0.384328 0.238806 +vt 0.384328 0.250000 +vt 0.376866 0.246269 +vt 0.929105 0.824627 +vt 0.679105 0.022388 +vt 0.750000 0.003731 +vt 0.492537 0.130597 +vt 0.447761 0.149254 +vt 0.966418 0.458955 +vt 0.977612 0.458955 +vt 0.376866 0.194030 +vt 0.167910 0.194030 +vt 0.876866 0.970149 +vt 0.891791 1.000000 +vt 0.891791 0.955224 +vt 0.891791 0.940298 +vt 0.891791 0.858209 +vt 0.891791 0.843284 +vt 0.895522 0.817164 +vt 0.895522 0.772388 +vt 0.880597 0.757463 +vt 0.895522 0.764925 +vt 0.876866 0.746269 +vt 0.888060 0.757463 +vt 0.876866 0.731343 +vt 0.891791 0.746269 +vt 0.888060 0.720149 +vt 0.876866 0.708955 +vt 0.876866 0.694030 +vt 0.891791 0.708955 +vt 0.888060 0.679105 +vt 0.876866 0.667910 +vt 0.876866 0.652985 +vt 0.891791 0.667910 +vt 0.888060 0.638060 +vt 0.891791 0.652985 +vt 0.888060 0.626866 +vt 0.160448 0.190299 +vt 0.160448 0.138060 +vt 0.235075 0.048507 +vt 0.238806 0.044776 +vt 0.257463 0.041045 +vt 0.895522 0.791045 +vt 0.895522 0.802239 +vt 0.257463 0.041045 +vt 0.238806 0.044776 +vt 0.268657 0.052239 +vt 0.235075 0.048507 +vt 0.339552 0.436567 +vt 0.343284 0.430970 +vt 0.350746 0.440298 +vt 0.350746 0.369403 +vt 0.369403 0.421642 +vt 0.350746 0.421642 +vt 0.429104 0.354478 +vt 0.451493 0.358209 +vt 0.429104 0.358209 +vt 0.369403 0.436567 +vt 0.369403 0.440298 +vt 0.455224 0.354478 +vt 0.485075 0.358209 +vt 0.455224 0.358209 +vt 0.395523 0.417910 +vt 0.391791 0.421642 +vt 0.429104 0.361940 +vt 0.451493 0.358209 +vt 0.451493 0.361940 +vt 0.455224 0.361940 +vt 0.455224 0.358209 +vt 0.485075 0.361940 +vt 0.395523 0.473881 +vt 0.395523 0.444030 +vt 0.485075 0.354478 +vt 0.514925 0.358209 +vt 0.514925 0.354478 +vt 0.485075 0.358209 +vt 0.514925 0.358209 +vt 0.514925 0.361940 +vt 0.451493 0.429104 +vt 0.458955 0.376866 +vt 0.458955 0.429104 +vt 0.436567 0.429104 +vt 0.444030 0.376866 +vt 0.444030 0.429104 +vt 0.481343 0.429104 +vt 0.488806 0.376866 +vt 0.488806 0.429104 +vt 0.466418 0.376866 +vt 0.466418 0.429104 +vt 0.451493 0.376866 +vt 0.429104 0.429104 +vt 0.436567 0.376866 +vt 0.473881 0.429104 +vt 0.481343 0.376866 +vt 0.473881 0.376866 +vt 0.309702 0.272388 +vt 0.231343 0.272388 +vt 0.231343 0.309702 +vt 0.902985 0.414179 +vt 0.899254 0.402985 +vt 0.891791 0.406716 +vt 0.962687 0.421642 +vt 0.958955 0.406716 +vt 0.992537 0.406716 +vt 0.951493 0.402985 +vt 0.947761 0.414179 +vt 0.904851 0.429104 +vt 0.906716 0.055970 +vt 0.951493 0.063433 +vt 0.899254 0.063433 +vt 0.354085 0.517656 +vt 0.350550 0.511194 +vt 0.929105 0.458955 +vt 0.339552 0.425373 +vt 0.638060 0.866761 +vt 0.649252 0.859298 +vt 0.000000 0.313433 +vt 0.000000 0.279851 +vt 0.000000 0.268657 +vt 0.992537 0.421642 +vt 0.794776 0.876866 +vt 0.231343 0.302239 +vt 0.320896 0.253731 +vt 0.899254 0.089552 +vt 0.988806 0.089552 +vt 0.802239 0.048507 +vt 0.861940 0.089552 +vt 0.951493 0.089552 +vt 0.858209 0.048507 +vt 0.567164 0.466418 +vt 0.567164 0.376866 +vt 0.567164 0.406716 +vt 0.567164 0.436567 +vt 0.567164 0.421642 +vt 0.320896 0.335821 +vt 0.634328 0.585821 +vt 0.809702 0.421642 +vt 0.462687 0.582090 +vt 0.514925 0.597015 +vt 0.470149 0.544776 +vt 0.313433 0.514925 +vt 0.339552 0.425373 +vt 0.794776 0.858209 +vt 0.537313 0.738806 +vt 0.570895 0.738806 +vt 0.570895 0.567164 +vt 0.981343 0.888060 +vt 0.921642 0.824627 +vt 0.750000 0.003731 +vt 0.936567 0.764925 +vt 0.895522 0.757463 +vt 0.891791 0.731343 +vt 0.891791 0.694030 +vt 0.369403 0.369403 +vt 0.451493 0.354478 +vt 0.369403 0.425373 +vt 0.395523 0.388060 +vt 0.429104 0.358209 +vt 0.391791 0.440298 +vt 0.429104 0.376866 +vt 0.309702 0.309702 +vt 0.945896 0.429104 +vt 0.944030 0.055970 +vt 0.899254 0.085821 +vt 0.951493 0.085821 +vt 0.638060 0.867922 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.4082 0.4082 -0.8165 +vn -0.4082 0.4082 -0.8165 +vn 0.7071 0.7071 0.0000 +vn -0.7071 0.7071 0.0000 +vn 0.0000 0.8320 -0.5547 +vn 0.0000 0.3162 0.9487 +vn 0.0000 1.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 0.9778 0.2095 +vn 0.0000 0.9923 0.1240 +vn 0.7071 -0.7071 0.0000 +vn -0.7071 -0.7071 0.0000 +vn -0.9852 0.1716 0.0000 +vn 0.9852 0.1712 -0.0025 +vn -0.9991 0.0416 0.0000 +vn 0.0000 0.5547 0.8321 +vn 0.9991 0.0416 0.0000 +vn 0.9947 0.0000 -0.1030 +vn 0.0000 0.8321 -0.5547 +vn -0.9852 0.1712 -0.0025 +vn 0.9852 0.1716 0.0000 +vn 0.0000 0.8828 -0.4698 +vn 0.0000 0.9846 -0.1748 +vn 0.3827 0.9239 0.0000 +vn -0.3827 0.9239 0.0000 +vn 0.5000 0.8660 0.0000 +vn 0.0000 0.9998 0.0175 +vn 0.4997 0.8660 0.0171 +vn -0.4997 0.8660 0.0171 +vn 0.9654 -0.2604 0.0171 +vn 0.9950 -0.1001 0.0000 +vn 0.9998 -0.0000 0.0175 +vn 0.8892 0.4576 0.0000 +vn 0.8660 0.4997 0.0171 +vn -0.8817 0.4718 0.0000 +vn -0.9998 -0.0000 0.0175 +vn -0.8660 0.4997 0.0171 +vn 0.0048 0.6652 -0.7466 +vn 0.0000 0.8754 -0.4835 +vn 0.0336 0.3645 -0.9306 +vn 0.0308 0.3429 -0.9389 +vn 0.0000 0.2967 -0.9550 +vn -0.9654 -0.2604 0.0171 +vn -0.9945 -0.1050 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.0217 0.6807 -0.7322 +vn -0.1528 0.3440 -0.9265 +vn 0.0000 0.6945 -0.7195 +vn 0.0000 0.9998 0.0207 +vn -0.7070 0.7070 0.0208 +vn 0.9998 -0.0006 0.0198 +vn 0.8932 0.4073 -0.1902 +vn 0.5547 0.8321 0.0000 +vn 0.2903 0.9569 0.0009 +vn -0.2903 0.9569 0.0009 +vn -0.0212 0.9998 0.0000 +vn -0.5547 0.8321 0.0000 +vn 0.4468 -0.8936 0.0431 +vn 0.2311 -0.9718 0.0468 +vn 0.2279 -0.9725 0.0469 +vn -0.8932 0.4073 -0.1902 +vn -0.9817 0.0000 -0.1905 +vn -0.1753 0.9688 0.1753 +vn -0.2311 -0.9718 0.0468 +vn -0.2279 -0.9725 0.0469 +vn 0.9817 0.0000 -0.1905 +vn -0.4468 -0.8936 0.0431 +vn 0.1753 0.9688 0.1753 +vn 0.8321 -0.0000 -0.5547 +vn 0.5883 0.5883 -0.5547 +vn -0.5883 0.5883 -0.5547 +vn -0.8321 -0.0000 -0.5547 +vn -0.5883 -0.5883 -0.5547 +vn 0.0000 -0.8321 -0.5547 +vn 0.5883 -0.5883 -0.5547 +vn 0.8320 0.0000 -0.5547 +vn -0.8320 0.0000 -0.5547 +vn -0.9998 -0.0006 0.0198 +vn -0.8917 -0.4523 0.0158 +vn 0.7070 0.7070 0.0208 +vn 0.8917 -0.4523 0.0158 +vn -0.8507 0.5257 0.0000 +vn 0.8507 0.5257 0.0000 +vn -0.4472 0.8944 0.0000 +vn 0.4472 0.8944 0.0000 +vn 0.0212 0.9998 0.0000 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 -0.7071 -0.7071 +vn 0.4472 0.6325 -0.6325 +vn 0.4472 -0.6325 -0.6325 +vn 0.4472 -0.0000 -0.8944 +vn 0.4472 -0.6325 0.6325 +vn 0.4472 -0.8944 -0.0000 +vn 0.4472 0.6325 0.6325 +vn 0.4472 -0.0000 0.8944 +vn -0.7071 0.0000 -0.7071 +vn 0.7071 0.0000 -0.7071 +vn 0.7071 0.0000 0.7071 +vn -0.7071 0.0000 0.7071 +vn 0.5000 0.0000 0.8660 +vn 0.8660 0.0000 0.5000 +vn -0.8660 0.0000 -0.5000 +vn -0.8660 0.0000 0.5000 +vn -0.5000 0.0000 0.8660 +vn 0.5000 0.0000 -0.8660 +vn -0.5000 0.0000 -0.8660 +vn 0.8660 0.0000 -0.5000 +vn 0.0000 -0.9914 0.1305 +vn 0.0000 -0.8793 0.4762 +vn 0.0000 -0.6302 0.7764 +vn 0.0000 -0.2588 0.9659 +vn 0.0000 0.6950 -0.7190 +vn 0.0000 0.8860 -0.4636 +vn 0.0000 0.9914 -0.1305 +vn 0.0000 0.6412 -0.7674 +vn 0.0000 0.2588 -0.9659 +vn 0.0000 -0.2588 -0.9659 +vn 0.0000 -0.6620 -0.7495 +vn 0.0000 -0.7977 -0.6030 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.3827 0.9239 +vn 0.0000 0.7079 0.7064 +vn 0.0000 0.4245 0.9054 +vn 0.0000 0.9763 0.2164 +vn 0.3617 -0.6800 -0.6378 +vn -0.4283 -0.8116 -0.3974 +vn 0.4283 -0.8116 -0.3974 +vn 0.0000 0.9946 0.1041 +vn 0.0000 0.9528 -0.3037 +vn 0.2707 -0.8502 0.4515 +vn -0.2581 -0.6859 0.6804 +vn 0.2581 -0.6859 0.6804 +vn 0.4210 -0.1018 -0.9013 +vn -0.3617 -0.6800 -0.6378 +vn 0.0000 0.8601 0.5101 +vn 0.2571 -0.1631 0.9525 +vn -0.2939 0.0980 0.9508 +vn 0.2939 0.0980 0.9508 +vn 0.4989 0.3637 -0.7867 +vn -0.4210 -0.1018 -0.9013 +vn 0.0000 0.7660 0.6428 +vn 0.2599 -0.6377 0.7251 +vn -0.2571 -0.1631 0.9525 +vn 0.3812 0.3641 -0.8498 +vn -0.4989 0.3637 -0.7867 +vn 0.0000 0.9877 -0.1564 +vn -0.3656 -0.8719 0.3258 +vn -0.2599 -0.6377 0.7251 +vn 0.4369 -0.0300 -0.8990 +vn -0.3812 0.3641 -0.8498 +vn 0.4071 -0.0353 -0.9127 +vn 0.1358 -0.1326 -0.9818 +vn 0.7071 0.0028 -0.7071 +vn 0.3053 -0.9310 0.1999 +vn 0.3656 -0.8719 0.3258 +vn 0.4786 -0.5779 -0.6610 +vn -0.4369 -0.0300 -0.8990 +vn 0.3801 -0.0892 -0.9206 +vn -0.4071 -0.0353 -0.9127 +vn 0.4872 -0.8552 -0.1771 +vn -0.4786 -0.5779 -0.6610 +vn 0.2373 -0.3758 -0.8958 +vn -0.3801 -0.0892 -0.9206 +vn 0.4942 -0.7969 0.3475 +vn -0.4872 -0.8552 -0.1771 +vn 0.0464 -0.5855 -0.8093 +vn -0.2373 -0.3758 -0.8958 +vn 0.3436 -0.7133 0.6108 +vn -0.4942 -0.7969 0.3475 +vn 0.0000 -0.9283 0.3718 +vn 0.0000 -0.9659 0.2588 +vn 0.2689 -0.2349 0.9341 +vn -0.2532 0.0844 0.9637 +vn 0.2532 0.0844 0.9637 +vn 0.5452 -0.7653 0.3421 +vn 0.2726 -0.7450 0.6088 +vn -0.2689 -0.2349 0.9341 +vn 0.5496 -0.7960 0.2536 +vn -0.5452 -0.7653 0.3421 +vn 0.0000 0.9945 -0.1044 +vn 0.2686 -0.8754 0.4020 +vn -0.2726 -0.7450 0.6088 +vn 0.5439 -0.8274 0.1401 +vn -0.5496 -0.7960 0.2536 +vn 0.0000 0.9404 -0.3400 +vn 0.2611 -0.1819 0.9480 +vn 0.3902 -0.9157 0.0962 +vn -0.5439 -0.8274 0.1401 +vn -0.2611 -0.1819 0.9480 +vn 0.8328 -0.0769 -0.5481 +vn -0.1358 -0.1326 -0.9818 +vn 0.8962 -0.3180 -0.3092 +vn 0.7188 -0.0240 -0.6948 +vn 0.8128 -0.5252 0.2521 +vn 0.6507 -0.7120 0.2640 +vn 0.8077 -0.5485 0.2161 +vn 0.9322 -0.3484 0.0980 +vn 0.9464 -0.2954 0.1306 +vn 0.4576 0.0558 0.8874 +vn 0.5398 -0.2890 0.7906 +vn 0.9747 -0.2052 0.0886 +vn 0.5706 -0.6782 0.4631 +vn 0.9789 -0.1943 0.0638 +vn 0.4954 -0.8429 0.2102 +vn 0.9793 -0.1994 0.0343 +vn 0.7293 0.6317 -0.2627 +vn 0.9364 0.3106 -0.1634 +vn 0.9284 0.3428 -0.1432 +vn 0.4718 0.0643 0.8793 +vn 0.5046 -0.2779 0.8174 +vn -0.9793 -0.1994 0.0343 +vn -0.7249 -0.6853 0.0697 +vn 0.9300 0.3408 -0.1376 +vn 0.4666 -0.6348 0.6159 +vn 0.6337 -0.7027 -0.3235 +vn 0.7008 -0.3789 -0.6044 +vn 0.8048 0.5815 -0.1191 +vn 0.9451 0.3045 -0.1184 +vn 0.4634 -0.7810 0.4187 +vn 0.7152 0.0555 -0.6967 +vn 0.9654 0.2563 -0.0474 +vn 0.8634 0.4934 -0.1052 +vn 0.5213 -0.2174 0.8252 +vn -0.7979 0.3019 -0.5218 +vn 0.8618 0.4995 -0.0885 +vn 0.6057 -0.5861 0.5382 +vn 0.6936 0.2622 -0.6709 +vn 0.7979 0.3019 -0.5218 +vn 0.9003 0.4329 -0.0461 +vn 0.9716 0.2354 -0.0255 +vn 0.6590 0.6590 -0.3626 +vn 0.8518 0.3705 -0.3705 +vn 0.7047 -0.7047 0.0827 +vn 0.0000 0.5257 0.8507 +vn 0.0000 0.8944 0.4472 +vn 0.6830 0.6830 -0.2589 +vn 0.4122 -0.4345 -0.8008 +vn -0.4122 -0.4345 -0.8008 +vn -0.7188 -0.0240 -0.6948 +vn 0.8812 -0.4406 -0.1711 +vn -0.9322 -0.3484 0.0980 +vn -0.9716 0.2354 -0.0255 +vn -0.9464 -0.2954 0.1306 +vn -0.9747 -0.2052 0.0886 +vn -0.9789 -0.1943 0.0638 +vn -0.9654 0.2563 -0.0474 +vn -0.9451 0.3045 -0.1184 +vn -0.9291 0.3446 -0.1345 +vn -0.9266 0.3439 -0.1522 +vn -0.7071 0.0028 -0.7071 +vn -0.9003 0.4329 -0.0461 +vn -0.8618 0.4995 -0.0885 +vn -0.8634 0.4934 -0.1052 +vn -0.8048 0.5815 -0.1191 +vn -0.6914 0.6800 -0.2443 +vn -0.7374 0.6175 -0.2737 +vn -0.9364 0.3106 -0.1634 +vn -0.6590 0.6590 -0.3626 +vn -0.8517 0.3705 -0.3705 +vn -0.0464 -0.5855 -0.8093 +vn -0.8077 -0.5485 0.2161 +vn -0.7385 -0.6513 0.1745 +vn -0.3902 -0.9157 0.0962 +vn -0.6337 -0.7027 -0.3235 +vn -0.7008 -0.3789 -0.6044 +vn -0.7152 0.0555 -0.6967 +vn -0.6936 0.2622 -0.6709 +vn -0.8328 -0.0769 -0.5481 +vn -0.8962 -0.3180 -0.3092 +vn -0.8128 -0.5252 0.2521 +vn -0.3436 -0.7133 0.6108 +vn -0.4576 0.0558 0.8874 +vn -0.5398 -0.2890 0.7906 +vn -0.4954 -0.8429 0.2102 +vn -0.2686 -0.8754 0.4020 +vn -0.4718 0.0643 0.8793 +vn -0.5046 -0.2779 0.8174 +vn -0.4634 -0.7810 0.4187 +vn -0.2707 -0.8502 0.4515 +vn -0.5213 -0.2174 0.8252 +vn -0.7047 -0.7047 0.0827 +vn -0.6057 -0.5861 0.5382 +vn -0.3053 -0.9310 0.1999 +vn -0.8812 -0.4406 -0.1711 +vn -0.9978 -0.0657 0.0000 +vn 0.9962 -0.0872 0.0000 +vn 0.0665 0.3772 0.9238 +vn 0.1604 0.9098 0.3827 +vn 0.1540 0.8732 -0.4625 +vn 0.9848 -0.1736 -0.0000 +vn 0.9848 -0.1737 -0.0000 +vn -0.0665 0.3772 0.9238 +vn -0.0665 0.3769 0.9239 +vn -0.1604 0.9098 0.3827 +vn -0.1499 0.8739 -0.4623 +vn -0.9848 -0.1736 0.0000 +vn -0.9962 -0.0872 -0.0000 +vn 0.1499 0.8739 -0.4623 +vn 0.0079 0.5854 -0.8107 +vn 0.0000 0.5871 -0.8095 +vn -0.1540 0.8732 -0.4625 +vn -0.0079 0.5854 -0.8107 +vn 0.0960 -0.5481 -0.8309 +vn 0.0622 -0.7750 -0.6288 +vn 0.2862 -0.5725 -0.7684 +vn 0.9144 -0.0000 -0.4049 +vn 0.9269 0.0000 -0.3754 +vn -0.9947 0.0000 -0.1030 +vn -0.9269 0.0000 -0.3754 +vn -0.9577 0.0000 -0.2879 +vn -0.0960 -0.5481 -0.8309 +vn -0.2862 -0.5725 -0.7684 +vn -0.0622 -0.7750 -0.6288 +vn 0.0000 -0.9639 -0.2662 +vn 0.0000 0.3604 0.9328 +vn 0.7249 -0.6853 0.0697 +vn -0.1469 0.2439 -0.9586 +vn 0.0000 0.6769 -0.7360 +vn -0.5000 0.8660 0.0000 +vn 0.9659 -0.2588 0.0000 +vn -0.9328 0.3604 0.0000 +vn 0.9328 0.3604 0.0000 +vn 0.7385 -0.6513 0.1745 +vn -0.6507 -0.7120 0.2640 +vn -0.5706 -0.6782 0.4631 +vn -0.4666 -0.6348 0.6159 +vn 0.9978 -0.0657 -0.0000 +vn 0.0665 0.3769 0.9239 +vn -0.9848 -0.1737 -0.0000 +vn -0.0622 -0.7751 -0.6288 +s off +f 345/602/139 346/603/139 347/604/139 +f 348/605/140 349/606/140 350/607/140 +f 351/608/140 352/609/140 353/610/140 +f 354/611/141 348/605/141 355/612/141 +f 356/613/142 353/610/142 352/609/142 +f 354/614/140 357/615/140 356/616/140 +f 358/617/143 359/618/143 360/619/143 +f 361/620/144 362/621/144 363/622/144 +f 358/617/145 364/623/145 359/618/145 +f 365/624/146 363/622/146 362/621/146 +f 366/625/147 365/626/147 364/627/147 +f 356/616/148 367/628/148 354/614/148 +f 368/629/140 369/630/140 370/631/140 +f 368/632/140 371/633/140 372/634/140 +f 373/635/140 371/633/140 374/636/140 +f 373/637/140 375/638/140 376/639/140 +f 377/640/140 378/641/140 379/642/140 +f 379/643/140 375/638/140 380/644/140 +f 381/645/142 382/646/142 383/647/142 +f 384/648/141 385/649/141 386/650/141 +f 387/651/149 388/652/149 389/653/149 +f 390/654/140 391/655/140 392/656/140 +f 360/657/149 359/658/149 355/659/149 +f 351/608/149 353/610/149 357/660/149 +f 355/659/149 362/661/149 357/660/149 +f 393/662/150 394/663/150 395/664/150 +f 396/665/140 397/666/140 398/667/140 +f 399/668/149 400/669/149 396/670/149 +f 366/671/142 347/604/142 401/672/142 +f 358/673/142 350/674/142 349/675/142 +f 358/673/142 349/675/142 347/604/142 +f 349/675/142 392/676/142 347/604/142 +f 345/602/142 392/676/142 402/677/142 +f 351/678/141 363/679/141 403/680/141 +f 404/681/141 346/603/141 363/679/141 +f 363/679/141 346/603/141 403/680/141 +f 403/680/141 391/682/141 405/683/141 +f 406/684/141 391/682/141 346/603/141 +f 390/654/149 403/685/149 405/686/149 +f 407/687/139 408/688/139 409/689/139 +f 407/690/140 409/689/140 410/691/140 +f 411/692/141 412/693/141 413/694/141 +f 414/695/151 412/696/151 415/697/151 +f 416/698/151 417/699/151 418/700/151 +f 408/688/142 416/701/142 409/689/142 +f 419/702/150 420/703/150 421/704/150 +f 422/705/142 415/706/142 410/707/142 +f 418/708/141 423/709/141 424/710/141 +f 425/711/149 426/712/149 427/713/149 +f 423/709/149 410/707/149 424/710/149 +f 408/714/150 411/692/150 423/715/150 +f 428/716/152 421/717/152 420/703/152 +f 429/718/150 425/711/150 430/719/150 +f 431/720/150 429/718/150 430/719/150 +f 425/711/150 432/721/150 430/719/150 +f 425/711/150 433/722/150 434/723/150 +f 429/718/150 435/724/150 428/725/150 +f 436/726/150 428/725/150 435/724/150 +f 433/722/150 437/727/150 434/723/150 +f 433/722/150 428/725/150 438/728/150 +f 426/729/140 439/730/140 427/731/140 +f 440/732/140 427/731/140 439/730/140 +f 441/733/140 426/729/140 442/734/140 +f 443/735/140 444/736/140 445/737/140 +f 446/738/150 447/739/150 448/740/150 +f 449/741/150 450/742/150 451/743/150 +f 452/744/151 446/738/151 443/735/151 +f 453/745/140 454/746/140 455/747/140 +f 427/731/140 455/747/140 454/746/140 +f 426/729/140 452/748/140 442/734/140 +f 452/749/141 429/750/141 428/751/141 +f 425/752/142 427/753/142 454/754/142 +f 456/755/142 457/756/142 458/757/142 +f 459/758/141 460/759/141 461/760/141 +f 462/761/139 463/762/139 464/763/139 +f 465/764/149 466/765/149 467/766/149 +f 468/767/149 465/764/149 469/768/149 +f 468/767/149 469/769/149 470/770/149 +f 466/765/149 471/771/149 467/772/149 +f 472/773/149 470/770/149 469/774/149 +f 471/771/149 473/775/149 467/776/149 +f 473/775/149 474/777/149 475/778/149 +f 474/777/149 476/779/149 475/780/149 +f 476/779/149 477/781/149 475/782/149 +f 477/781/149 478/783/149 479/784/149 +f 478/783/149 480/785/149 479/786/149 +f 480/785/149 472/787/149 479/788/149 +f 481/789/142 482/790/142 483/791/142 +f 483/791/142 484/792/142 485/793/142 +f 481/789/142 486/794/142 487/795/142 +f 488/796/141 489/797/141 490/798/141 +f 491/799/142 492/800/142 493/801/142 +f 494/802/149 385/803/149 495/804/149 +f 496/805/141 497/806/141 498/807/141 +f 499/808/141 496/805/141 500/809/141 +f 500/809/141 501/810/141 499/811/141 +f 502/812/153 503/813/153 504/814/153 +f 505/815/142 506/816/142 486/794/142 +f 507/817/142 506/818/142 508/819/142 +f 509/820/142 507/817/142 508/819/142 +f 510/821/142 508/819/142 503/822/142 +f 510/821/142 503/822/142 511/823/142 +f 485/793/142 512/824/142 513/825/142 +f 511/823/142 513/826/142 514/827/142 +f 498/807/141 515/828/141 516/829/141 +f 515/830/141 517/831/141 516/832/141 +f 517/831/141 518/833/141 516/832/141 +f 519/834/141 520/835/141 521/836/141 +f 521/837/141 522/838/141 523/839/141 +f 522/838/141 524/840/141 525/841/141 +f 525/841/141 516/832/141 518/833/141 +f 524/842/154 526/843/154 527/844/154 +f 366/671/150 528/845/150 404/846/150 +f 369/630/140 529/847/140 370/848/140 +f 530/849/140 377/850/140 531/851/140 +f 532/852/150 533/853/150 534/854/150 +f 535/855/149 536/856/149 532/857/149 +f 537/858/155 532/857/155 536/856/155 +f 538/859/156 539/860/156 540/861/156 +f 541/862/150 542/863/150 543/864/150 +f 544/865/149 545/866/149 542/867/149 +f 546/868/157 541/862/157 547/869/157 +f 548/870/158 546/871/158 547/872/158 +f 543/864/159 545/873/159 548/874/159 +f 549/875/140 550/876/140 551/877/140 +f 389/653/150 552/878/150 387/651/150 +f 553/879/140 452/748/140 554/880/140 +f 452/748/140 454/746/140 554/880/140 +f 365/881/149 359/882/149 364/883/149 +f 402/884/160 555/885/160 345/886/160 +f 345/602/139 406/684/139 346/603/139 +f 348/605/140 367/887/140 349/606/140 +f 351/608/140 403/888/140 352/609/140 +f 354/611/141 367/887/141 348/605/141 +f 356/613/142 357/889/142 353/610/142 +f 354/614/140 355/890/140 357/615/140 +f 358/617/145 366/625/145 364/623/145 +f 365/624/146 404/891/146 363/622/146 +f 366/625/161 404/891/161 365/626/161 +f 356/616/148 352/892/148 367/628/148 +f 368/629/140 372/634/140 369/630/140 +f 368/632/140 374/893/140 371/633/140 +f 373/635/140 376/639/140 371/633/140 +f 373/637/140 380/894/140 375/638/140 +f 377/640/140 530/849/140 378/641/140 +f 379/643/140 378/641/140 375/638/140 +f 381/645/142 556/895/142 557/896/142 +f 556/895/142 558/897/142 557/896/142 +f 557/896/142 382/646/142 381/645/142 +f 382/646/142 559/898/142 383/647/142 +f 560/899/141 561/900/141 562/901/141 +f 562/901/141 563/902/141 560/899/141 +f 563/902/141 384/648/141 386/650/141 +f 560/899/141 563/902/141 386/650/141 +f 387/651/149 564/903/149 388/652/149 +f 390/654/140 405/686/140 391/655/140 +f 348/605/149 350/607/149 355/659/149 +f 350/607/149 360/657/149 355/659/149 +f 362/661/149 361/904/149 357/660/149 +f 361/904/149 351/608/149 357/660/149 +f 355/659/149 359/658/149 362/661/149 +f 395/664/150 565/905/150 393/662/150 +f 565/905/150 566/906/150 400/907/150 +f 393/662/150 565/905/150 400/907/150 +f 398/667/140 567/908/140 396/665/140 +f 567/908/140 568/909/140 399/910/140 +f 396/665/140 567/908/140 399/910/140 +f 399/668/149 393/911/149 400/669/149 +f 366/671/142 358/673/142 347/604/142 +f 358/673/142 360/912/142 350/674/142 +f 349/675/142 390/654/142 392/676/142 +f 345/602/142 347/604/142 392/676/142 +f 351/678/141 361/913/141 363/679/141 +f 404/681/141 528/914/141 346/603/141 +f 403/680/141 346/603/141 391/682/141 +f 406/684/141 569/915/141 391/682/141 +f 390/654/149 349/675/149 403/685/149 +f 407/687/139 411/916/139 408/688/139 +f 415/917/140 412/693/140 410/691/140 +f 412/693/140 407/690/140 410/691/140 +f 409/689/140 416/701/140 424/918/140 +f 416/701/140 418/919/140 424/918/140 +f 409/689/140 424/918/140 410/691/140 +f 411/692/141 407/690/141 412/693/141 +f 414/695/151 413/920/151 412/696/151 +f 416/698/151 570/921/151 417/699/151 +f 408/688/142 570/922/142 416/701/142 +f 419/702/150 571/923/150 420/703/150 +f 422/705/142 414/695/142 415/706/142 +f 418/708/141 417/699/141 423/709/141 +f 425/711/149 429/718/149 426/712/149 +f 423/709/149 422/705/149 410/707/149 +f 411/692/150 413/694/150 422/924/150 +f 413/694/150 414/925/150 422/924/150 +f 417/926/150 570/927/150 423/715/150 +f 570/927/150 408/714/150 423/715/150 +f 411/692/150 422/924/150 423/715/150 +f 428/716/152 433/928/152 421/717/152 +f 431/720/150 435/724/150 429/718/150 +f 425/711/150 434/723/150 432/721/150 +f 436/726/150 438/728/150 428/725/150 +f 433/722/150 438/728/150 437/727/150 +f 440/732/140 455/747/140 427/731/140 +f 441/733/140 439/730/140 426/729/140 +f 443/735/140 572/929/140 444/736/140 +f 446/738/150 452/744/150 447/739/150 +f 449/741/150 454/930/150 450/742/150 +f 443/735/151 445/737/151 454/930/151 +f 445/737/151 450/742/151 454/930/151 +f 454/930/151 452/744/151 443/735/151 +f 453/745/140 554/880/140 454/746/140 +f 428/751/141 420/703/141 571/923/141 +f 571/923/141 447/931/141 428/751/141 +f 447/931/141 452/749/141 428/751/141 +f 452/749/141 426/932/141 429/750/141 +f 454/754/142 449/933/142 433/934/142 +f 449/933/142 419/935/142 433/934/142 +f 419/935/142 421/936/142 433/934/142 +f 433/934/142 425/752/142 454/754/142 +f 458/757/142 573/937/142 574/938/142 +f 574/938/142 575/939/142 456/755/142 +f 456/755/142 576/940/142 457/756/142 +f 457/756/142 577/941/142 458/757/142 +f 458/757/142 574/938/142 456/755/142 +f 461/760/141 578/942/141 579/943/141 +f 579/943/141 580/944/141 459/758/141 +f 459/758/141 581/945/141 460/759/141 +f 460/759/141 582/946/141 461/760/141 +f 461/760/141 579/943/141 459/758/141 +f 464/763/139 583/947/139 584/948/139 +f 584/948/139 585/949/139 586/950/139 +f 586/950/139 587/951/139 588/952/139 +f 588/952/139 589/953/139 462/761/139 +f 462/761/139 590/954/139 463/762/139 +f 463/762/139 591/955/139 464/763/139 +f 464/763/139 584/948/139 462/761/139 +f 584/948/139 586/950/139 462/761/139 +f 586/950/139 588/952/139 462/761/139 +f 465/764/149 592/956/149 466/765/149 +f 468/767/149 592/956/149 465/764/149 +f 472/773/149 593/957/149 470/770/149 +f 471/771/149 594/958/149 473/775/149 +f 473/775/149 594/958/149 474/777/149 +f 476/779/149 595/959/149 477/781/149 +f 477/781/149 595/959/149 478/783/149 +f 480/785/149 593/960/149 472/787/149 +f 481/789/142 487/961/142 482/790/142 +f 483/791/142 482/962/142 484/792/142 +f 481/789/142 505/815/142 486/794/142 +f 488/796/141 494/963/141 489/797/141 +f 491/799/142 495/964/142 492/800/142 +f 491/965/149 489/966/149 494/802/149 +f 494/802/149 386/967/149 385/803/149 +f 385/803/149 559/968/149 495/804/149 +f 559/968/149 382/969/149 495/804/149 +f 495/804/149 491/965/149 494/802/149 +f 496/805/141 596/970/141 497/806/141 +f 499/808/141 596/971/141 496/805/141 +f 500/809/141 520/835/141 501/810/141 +f 502/812/153 513/972/153 503/813/153 +f 505/815/142 508/973/142 506/816/142 +f 510/821/142 509/820/142 508/819/142 +f 485/793/142 484/792/142 512/824/142 +f 511/823/142 503/822/142 513/826/142 +f 498/807/141 497/806/141 515/828/141 +f 519/834/141 501/810/141 520/835/141 +f 521/837/141 524/840/141 522/838/141 +f 525/841/141 524/840/141 516/832/141 +f 524/842/154 521/974/154 526/843/154 +f 366/671/150 401/672/150 528/845/150 +f 534/854/150 597/975/150 535/976/150 +f 597/975/150 598/977/150 535/976/150 +f 535/976/150 532/852/150 534/854/150 +f 535/855/149 540/861/149 536/856/149 +f 536/856/162 599/978/162 600/979/162 +f 600/979/155 537/858/155 536/856/155 +f 540/861/163 535/855/163 601/980/163 +f 601/980/163 538/859/163 540/861/163 +f 541/862/150 544/981/150 542/863/150 +f 544/865/149 546/871/149 545/866/149 +f 546/868/157 544/981/157 541/862/157 +f 548/870/158 545/866/158 546/871/158 +f 543/864/159 542/863/159 545/873/159 +f 550/876/140 602/982/140 603/983/140 +f 603/983/140 604/984/140 550/876/140 +f 604/984/140 551/877/140 550/876/140 +f 551/877/140 605/985/140 606/986/140 +f 606/986/140 549/875/140 551/877/140 +f 607/987/150 552/878/150 389/653/150 +f 552/878/150 608/988/150 387/651/150 +f 553/879/140 442/734/140 452/748/140 +f 365/881/149 362/989/149 359/882/149 +s 1 +f 488/990/164 561/991/165 560/992/164 +f 376/639/139 609/993/153 371/633/153 +f 372/634/142 610/994/145 369/630/145 +f 375/638/154 611/995/139 376/639/139 +f 371/633/153 612/996/142 372/634/142 +f 534/997/166 369/630/145 610/994/145 +f 530/849/146 613/998/141 378/641/141 +f 378/641/141 614/999/154 375/638/154 +f 597/1000/167 530/849/146 531/851/167 +f 608/1001/168 615/1002/169 616/1003/170 +f 552/1004/149 617/1005/171 615/1002/169 +f 618/1006/172 619/1007/173 620/1008/174 +f 620/1008/174 621/1009/175 622/1010/176 +f 623/1011/177 624/1012/178 625/1013/179 +f 383/1014/180 626/1015/181 381/1016/181 +f 621/1017/182 559/1018/183 564/1019/184 +f 627/1020/185 628/1021/186 629/1022/187 +f 629/1023/181 384/1024/188 563/1025/181 +f 623/1026/189 384/1024/188 628/1027/190 +f 615/1002/169 617/1005/171 630/1028/191 +f 631/1029/192 630/1028/191 617/1005/171 +f 622/1010/176 632/1030/193 620/1008/174 +f 633/1031/194 555/1032/195 634/1033/196 +f 635/1034/197 569/1035/198 636/1036/199 +f 637/1037/200 638/1038/201 639/1039/202 +f 640/1040/141 641/1041/203 642/1042/204 +f 641/1043/203 643/1044/205 635/1034/197 +f 639/1039/202 644/1045/206 645/1046/207 +f 633/1047/194 646/1048/142 637/1037/208 +f 644/1045/206 642/1042/209 645/1046/207 +f 647/1049/210 633/1031/194 634/1033/196 +f 612/996/211 648/1050/212 610/994/212 +f 649/1051/161 650/1052/213 651/1053/213 +f 613/998/214 652/1054/215 614/999/215 +f 611/995/216 653/1055/217 609/993/217 +f 612/996/211 653/1056/217 654/1057/218 +f 649/1058/161 648/1059/212 655/1060/161 +f 613/998/214 650/1061/213 656/1062/219 +f 614/999/215 657/1063/216 611/995/216 +f 658/1064/220 650/1065/146 631/1066/192 +f 659/1067/221 656/1068/141 658/1064/220 +f 660/1069/139 653/1070/153 657/1071/139 +f 661/1072/222 654/1073/142 632/1074/193 +f 631/1066/192 655/1075/149 630/1076/191 +f 660/1069/139 652/1077/154 659/1067/221 +f 632/1074/193 653/1070/153 662/1078/223 +f 630/1079/191 648/1080/145 661/1072/222 +f 398/667/141 566/1081/224 565/905/141 +f 395/1082/142 568/1083/225 567/908/142 +f 397/1084/224 400/669/226 566/1081/224 +f 394/1085/225 399/1086/227 568/1083/225 +f 625/1013/179 624/1012/178 658/1087/220 +f 402/1088/228 392/1089/149 569/1035/198 +f 618/1006/172 632/1090/193 662/1091/223 +f 439/1092/139 431/1093/153 430/1094/139 +f 553/1095/145 438/1096/149 436/1097/145 +f 453/1098/146 434/1099/141 437/1100/146 +f 440/1101/154 430/1102/139 432/1103/154 +f 441/1104/153 435/1105/142 431/1093/153 +f 442/1106/142 436/1097/145 435/1105/142 +f 554/1107/149 437/1100/146 438/1096/149 +f 455/1108/141 432/1103/154 434/1099/141 +f 456/1109/139 663/1110/229 664/1111/139 +f 574/1112/140 665/1113/230 666/1114/140 +f 577/1115/231 667/1116/150 668/1117/231 +f 576/1118/232 664/1111/139 669/1119/232 +f 575/1120/229 666/1114/140 663/1110/229 +f 573/1121/230 670/1122/149 665/1113/230 +f 458/1123/149 668/1117/231 670/1124/149 +f 457/1125/150 669/1119/232 667/1116/150 +f 671/1126/233 672/1127/227 673/1128/227 +f 674/1129/234 675/1130/235 676/1131/234 +f 677/1132/236 678/1133/237 679/1134/237 +f 680/1135/238 681/1136/239 682/1137/238 +f 672/1138/227 682/1137/238 673/1139/227 +f 675/1130/235 683/1140/233 671/1126/233 +f 678/1133/237 676/1131/234 679/1134/237 +f 681/1136/239 684/1141/236 677/1132/236 +f 672/1138/149 578/1142/230 680/1135/230 +f 683/1140/231 579/1143/149 672/1127/149 +f 674/1129/232 459/1144/150 685/1145/150 +f 684/1141/229 460/1146/139 678/1133/139 +f 680/1135/230 461/1147/140 686/1148/140 +f 685/1145/150 580/1149/231 683/1140/231 +f 678/1133/139 581/1150/232 674/1129/232 +f 686/1148/140 582/1151/229 684/1141/229 +f 687/1152/150 475/1153/240 688/1154/240 +f 689/1155/142 467/1156/241 690/1157/241 +f 691/1158/140 469/1159/242 692/1160/242 +f 693/1161/141 479/1162/243 694/1163/243 +f 688/1154/240 477/1164/141 693/1161/141 +f 690/1157/241 473/1165/150 687/1152/150 +f 692/1160/242 465/1166/142 689/1155/142 +f 694/1163/243 472/1167/140 691/1168/140 +f 470/770/244 590/1169/245 468/767/245 +f 476/779/246 584/1170/141 595/959/141 +f 478/783/247 464/1171/248 480/785/248 +f 471/771/249 587/1172/150 594/958/150 +f 468/767/245 462/1173/142 592/956/142 +f 480/785/248 591/1174/140 593/960/140 +f 594/958/150 586/1175/250 474/777/250 +f 592/956/142 589/1176/251 466/765/251 +f 593/957/140 463/1177/244 470/770/244 +f 474/777/250 585/1178/246 476/779/246 +f 595/959/141 583/1179/247 478/783/247 +f 466/765/251 588/1180/249 471/771/249 +f 498/807/252 481/789/253 496/805/253 +f 481/789/253 500/809/254 496/805/253 +f 500/809/254 485/793/255 520/835/255 +f 488/990/164 386/967/256 494/802/256 +f 558/1181/165 492/1182/164 557/1183/164 +f 382/969/256 492/1182/164 495/804/256 +f 596/1184/257 486/1185/258 497/1186/258 +f 487/1187/257 499/1188/259 482/1189/259 +f 484/1190/260 499/1188/259 501/1191/260 +f 521/836/140 485/793/255 513/825/140 +f 523/839/141 695/1192/141 521/837/141 +f 519/1193/261 484/1190/260 501/1191/260 +f 512/1194/261 695/1195/262 696/1196/262 +f 514/1197/263 695/1195/262 523/1198/263 +f 511/1199/264 523/1198/139 522/1200/264 +f 511/1201/264 525/1202/265 510/1203/265 +f 509/1204/140 525/1202/265 518/1205/140 +f 507/1206/266 518/1205/267 517/1207/266 +f 506/1208/268 517/1207/266 515/1209/268 +f 486/1185/258 515/1209/268 497/1186/258 +f 516/829/139 505/815/252 498/807/252 +f 519/1210/141 521/837/141 695/1192/141 +f 658/1211/220 627/1020/185 659/1212/221 +f 697/1213/269 698/1214/270 699/1215/271 +f 700/1216/272 701/1217/273 702/1218/273 +f 703/1219/274 704/1220/275 705/1221/276 +f 706/1222/277 707/1223/278 697/1224/269 +f 708/1225/279 709/1226/272 700/1216/272 +f 710/1227/280 711/1228/281 703/1219/282 +f 712/1229/283 713/1230/284 706/1222/277 +f 714/1231/285 715/1232/279 708/1225/279 +f 716/1233/286 717/1234/287 710/1227/280 +f 718/1235/288 719/1236/289 712/1229/283 +f 720/1237/290 714/1231/290 721/1238/290 +f 716/1233/286 722/1239/291 723/1240/292 +f 724/1241/293 725/1242/294 718/1235/288 +f 726/1243/295 721/1244/296 727/1245/297 +f 728/1246/298 722/1239/291 729/1247/299 +f 730/1248/300 731/1249/301 724/1241/293 +f 732/1250/302 733/1251/303 726/1243/295 +f 734/1252/304 735/1253/305 730/1248/300 +f 736/1254/306 737/1255/307 732/1250/302 +f 738/1256/308 739/1257/309 734/1252/304 +f 740/1258/310 741/1259/311 736/1254/306 +f 742/1260/312 743/1261/313 738/1256/308 +f 744/1262/314 745/1263/315 740/1264/315 +f 746/1265/316 747/1266/317 742/1260/318 +f 748/1267/319 749/1268/314 744/1262/314 +f 750/1269/320 751/1270/321 746/1265/316 +f 752/1271/322 753/1272/323 748/1267/319 +f 754/1273/324 755/1274/149 756/1275/149 +f 757/1276/325 758/1277/326 750/1269/320 +f 759/1278/327 760/1279/328 752/1271/322 +f 761/1280/329 762/1281/324 754/1273/324 +f 763/1282/330 764/1283/281 757/1276/282 +f 699/1284/331 765/1285/332 759/1278/327 +f 702/1218/273 766/1286/329 761/1280/329 +f 705/1221/276 767/1287/333 763/1282/330 +f 718/1235/288 768/1288/334 724/1241/293 +f 721/1244/296 733/1251/303 720/1289/335 +f 730/1248/300 768/1288/334 769/1290/336 +f 726/1243/295 770/1291/337 732/1250/302 +f 738/1256/308 734/1252/304 771/1292/338 +f 742/1293/312 771/1294/338 772/1295/339 +f 744/1296/340 773/1297/341 774/1298/342 +f 746/1299/316 772/1300/343 775/1301/344 +f 748/1302/319 744/1296/340 776/1303/345 +f 750/1304/320 775/1301/344 777/1305/346 +f 752/1306/322 748/1302/319 778/1307/347 +f 750/1304/320 779/1308/348 757/1276/325 +f 752/1306/322 780/1309/349 759/1310/327 +f 761/1311/350 781/1312/351 782/1313/352 +f 763/1314/330 779/1308/353 783/1315/354 +f 784/1316/355 765/1317/332 785/1318/356 +f 786/1319/357 761/1311/350 782/1313/352 +f 705/1320/276 783/1315/354 787/1321/358 +f 697/1213/269 788/1322/359 789/1323/360 +f 700/1324/361 786/1319/357 790/1325/362 +f 705/1320/276 791/1326/363 703/1219/274 +f 792/1327/364 706/1222/277 789/1323/360 +f 700/1324/361 793/1328/365 708/1329/366 +f 710/1330/280 791/1326/353 794/1331/367 +f 719/1236/289 795/1332/368 713/1230/284 +f 708/1329/366 793/1328/365 714/1333/369 +f 716/1334/286 794/1331/367 796/1335/370 +f 797/1336/371 712/1229/283 798/1337/372 +f 721/1338/373 714/1333/369 727/1339/374 +f 754/1340/375 756/1341/376 781/1312/351 +f 729/1247/299 799/1342/377 728/1246/298 +f 800/1343/140 801/1344/378 802/1345/378 +f 802/1345/378 347/1346/379 346/1347/379 +f 727/1339/374 714/1333/369 793/1328/365 +f 761/1311/350 786/1319/357 702/1348/380 +f 736/1254/306 773/1349/381 740/1350/310 +f 741/1259/311 803/1351/382 737/1255/307 +f 803/1351/382 804/1352/383 737/1255/307 +f 770/1353/142 727/1339/374 773/1297/341 +f 697/1224/269 789/1323/360 706/1222/277 +f 712/1229/283 797/1336/371 718/1235/288 +f 778/1307/347 748/1302/319 776/1303/345 +f 773/1297/341 727/1339/374 774/1298/342 +f 727/1339/374 776/1303/345 774/1298/342 +f 778/1307/347 776/1303/345 793/1328/365 +f 793/1328/365 790/1325/362 778/1307/347 +f 786/1319/357 778/1307/347 790/1325/362 +f 786/1319/357 782/1313/352 780/1309/349 +f 756/1341/376 401/1354/142 781/1312/351 +f 401/1354/142 782/1313/352 781/1312/351 +f 401/1354/142 347/1355/142 788/1356/142 +f 730/1248/300 769/1290/336 734/1252/304 +f 771/1292/338 734/1252/304 805/1357/384 +f 734/1252/304 769/1290/336 805/1358/384 +f 768/1359/142 775/1360/142 769/1361/142 +f 777/1362/142 797/1363/142 798/1364/142 +f 779/1365/142 777/1362/142 783/1366/142 +f 777/1362/142 798/1364/142 783/1366/142 +f 794/1367/142 792/1368/142 796/1369/142 +f 791/1370/142 787/1371/142 794/1367/142 +f 783/1366/142 798/1364/142 787/1371/142 +f 794/1367/142 787/1371/142 798/1364/142 +f 798/1364/142 792/1368/142 794/1367/142 +f 799/1372/142 796/1369/142 792/1368/142 +f 799/1372/142 801/1373/142 728/1374/142 +f 799/1372/142 789/1375/142 347/1355/142 +f 788/1356/142 347/1355/142 789/1375/142 +f 792/1368/142 789/1375/142 799/1372/142 +f 788/1356/142 780/1309/349 401/1354/142 +f 776/1303/345 744/1296/340 774/1298/342 +f 804/1376/141 803/1377/385 806/1378/386 +f 803/1377/385 807/1379/387 806/1378/386 +f 808/1380/388 806/1378/386 807/1379/387 +f 809/1381/389 810/1382/390 808/1380/388 +f 810/1382/390 809/1381/389 811/1383/391 +f 812/1384/392 809/1381/389 784/1316/355 +f 812/1384/392 784/1316/355 813/1385/393 +f 814/1386/141 815/1387/141 816/1388/141 +f 816/1388/141 817/1389/141 795/1390/141 +f 818/1391/141 819/1392/141 817/1389/141 +f 817/1389/141 819/1392/141 795/1390/141 +f 820/1393/141 821/1394/141 822/1395/141 +f 823/1396/141 820/1393/141 824/1397/141 +f 819/1392/141 824/1397/141 795/1390/141 +f 820/1393/141 795/1390/141 824/1397/141 +f 795/1390/141 820/1393/141 822/1395/141 +f 825/1398/141 822/1395/141 821/1394/141 +f 822/1395/141 825/1398/141 826/1399/141 +f 806/1400/394 720/1289/335 733/1251/303 +f 720/1401/395 806/1378/386 827/1402/396 +f 806/1378/386 810/1382/390 827/1402/396 +f 827/1402/396 810/1382/390 715/1403/397 +f 810/1382/390 709/1404/398 715/1403/397 +f 709/1404/398 812/1384/392 701/1405/399 +f 701/1405/399 813/1385/393 766/1406/400 +f 828/1407/401 766/1406/400 813/1385/393 +f 762/1408/402 828/1407/401 755/1409/403 +f 804/1352/383 733/1251/303 737/1255/307 +f 736/1254/306 732/1250/302 773/1349/381 +f 732/1250/302 770/1291/337 773/1349/381 +f 741/1259/311 745/1410/404 803/1351/382 +f 749/1411/405 803/1377/385 745/1412/406 +f 807/1379/387 749/1411/405 808/1380/388 +f 749/1411/405 753/1413/323 808/1380/388 +f 808/1380/388 753/1413/323 809/1381/389 +f 753/1413/323 760/1414/328 809/1381/389 +f 784/1316/355 760/1414/328 765/1317/332 +f 698/1415/407 785/1416/356 765/1285/332 +f 528/1417/141 755/1409/403 828/1407/401 +f 813/1385/393 528/1417/141 828/1407/401 +f 785/1318/141 528/1417/141 784/1316/355 +f 528/1417/141 785/1318/141 346/1418/141 +f 707/1419/278 785/1420/408 698/1214/270 +f 713/1230/284 826/1421/409 707/1223/278 +f 826/1421/409 713/1230/284 822/1422/410 +f 712/1229/283 706/1222/277 798/1337/372 +f 795/1332/368 719/1236/289 816/1423/411 +f 719/1236/289 725/1242/294 816/1423/411 +f 814/1424/412 725/1242/294 731/1249/301 +f 735/1253/305 814/1424/412 731/1249/301 +f 739/1257/309 829/1425/413 735/1253/305 +f 739/1257/309 743/1261/313 830/1426/414 +f 747/1427/415 830/1428/414 743/1261/313 +f 751/1429/321 831/1430/416 747/1266/317 +f 758/1431/326 815/1432/417 751/1429/321 +f 818/1433/418 758/1431/326 764/1283/419 +f 767/1434/333 818/1433/420 764/1283/281 +f 704/1435/275 819/1436/421 767/1434/333 +f 823/1437/422 704/1435/275 711/1228/423 +f 717/1438/287 823/1437/420 711/1228/281 +f 723/1439/292 820/1440/424 717/1438/287 +f 825/1441/425 821/1442/426 722/1239/291 +f 722/1239/291 800/1443/427 825/1441/425 +f 802/1444/141 825/1398/141 800/1445/141 +f 825/1398/141 346/1418/141 826/1399/141 +f 785/1318/141 826/1399/141 346/1418/141 +f 772/1446/142 771/1447/142 775/1360/142 +f 775/1360/142 771/1447/142 769/1361/142 +f 771/1447/142 805/1448/142 769/1361/142 +f 830/1426/414 832/1449/428 739/1257/309 +f 829/1425/413 739/1257/309 832/1450/428 +f 832/1451/141 830/1452/141 829/1453/141 +f 831/1454/141 815/1387/141 830/1452/141 +f 815/1387/141 829/1453/141 830/1452/141 +f 795/1332/368 822/1422/410 713/1230/284 +f 798/1337/372 706/1222/277 792/1327/364 +f 377/1455/140 833/1456/140 531/1457/140 +f 531/1457/141 598/977/429 597/975/141 +f 534/1458/142 834/1459/430 529/1460/142 +f 834/1461/140 599/1462/431 536/1463/140 +f 540/1464/140 835/1465/140 531/1457/140 +f 836/1466/432 537/1467/433 600/1468/432 +f 599/1462/431 836/1466/432 600/1468/432 +f 836/1469/434 837/1470/435 834/1459/430 +f 835/1471/140 539/1472/436 838/1473/437 +f 539/1472/436 839/1474/438 838/1473/437 +f 538/1475/438 840/1476/439 839/1474/438 +f 840/1477/440 835/1465/441 839/1478/440 +f 537/1467/433 841/1479/442 532/1480/443 +f 532/1480/443 841/1479/442 533/1481/444 +f 601/1482/445 535/1483/446 840/1476/439 +f 535/1483/446 598/1484/444 840/1476/439 +f 374/1485/146 551/1486/149 373/1487/149 +f 370/1488/154 606/1489/141 368/1490/141 +f 377/1491/153 550/1492/139 833/1493/139 +f 373/1487/149 604/1494/145 380/1495/145 +f 368/1490/141 605/1496/146 374/1485/146 +f 833/1497/139 549/1498/154 370/1488/154 +f 379/1499/142 602/1500/153 377/1491/153 +f 380/1495/145 603/1501/142 379/1499/142 +f 621/1009/175 564/1502/145 387/1503/145 +f 625/1013/179 389/1504/146 623/1011/177 +f 555/1032/195 402/1088/228 634/1033/196 +f 639/1039/447 842/1505/448 637/1506/449 +f 555/885/450 633/1047/194 842/1507/451 +f 555/885/450 842/1507/451 345/886/160 +f 641/1043/203 635/1034/197 636/1036/199 +f 406/1508/452 843/1509/453 636/1510/454 +f 636/1510/454 843/1509/453 641/1041/203 +f 645/1046/455 642/1511/456 843/1512/457 +f 843/1512/457 639/1039/447 645/1046/455 +f 843/1512/457 345/1513/458 842/1505/448 +f 637/1037/208 842/1507/451 633/1047/194 +f 642/1042/204 641/1041/203 843/1509/453 +f 647/1514/210 844/1515/459 845/1516/459 +f 644/1045/140 638/1038/140 845/1516/459 +f 696/1517/142 513/826/142 512/1518/142 +f 696/1517/142 514/827/142 513/826/142 +f 699/1284/331 759/1278/327 788/1519/460 +f 788/1356/460 759/1310/327 780/1309/349 +f 370/1520/140 529/1460/140 833/1456/140 +f 531/1457/140 833/1456/140 529/1460/140 +f 623/1026/189 385/1521/461 384/1024/188 +f 383/1014/180 621/1017/182 619/1522/462 +f 658/1523/220 631/1029/192 625/1013/179 +f 617/1005/171 625/1013/179 631/1029/192 +f 616/1003/170 661/1524/222 622/1010/176 +f 661/1524/222 632/1525/193 622/1010/176 +f 615/1002/169 630/1028/191 616/1003/170 +f 630/1028/191 661/1524/222 616/1003/170 +f 799/1342/377 729/1247/299 796/1335/370 +f 716/1334/286 796/1335/370 729/1247/299 +f 722/1239/291 821/1442/426 723/1439/292 +f 636/1510/454 569/1526/452 406/1508/452 +f 488/990/164 490/1527/165 561/991/165 +f 376/639/139 611/995/139 609/993/153 +f 372/634/142 612/996/142 610/994/145 +f 375/638/154 614/999/154 611/995/139 +f 371/633/153 609/993/153 612/996/142 +f 534/997/166 529/847/166 369/630/145 +f 530/849/146 651/1053/146 613/998/141 +f 378/641/141 613/998/141 614/999/154 +f 597/1000/167 651/1053/146 530/849/146 +f 608/1001/168 552/1004/149 615/1002/169 +f 552/1004/149 607/1528/463 617/1005/171 +f 618/1006/172 626/1529/464 619/1007/173 +f 620/1008/174 619/1007/173 621/1009/175 +f 623/1011/177 628/1021/186 624/1012/178 +f 383/1014/180 619/1522/462 626/1015/181 +f 621/1017/182 383/1014/180 559/1018/183 +f 627/1020/185 624/1012/178 628/1021/186 +f 629/1023/181 628/1027/190 384/1024/188 +f 637/1037/200 646/1530/200 638/1038/201 +f 640/1040/141 844/1531/465 641/1041/203 +f 641/1043/203 844/1532/465 643/1044/205 +f 639/1039/202 638/1038/201 644/1045/206 +f 633/1047/194 845/1533/466 646/1048/142 +f 644/1045/206 640/1534/209 642/1042/209 +f 647/1049/210 845/1535/466 633/1031/194 +f 612/996/211 654/1536/218 648/1050/212 +f 649/1051/161 655/1537/161 650/1052/213 +f 613/998/214 656/1538/219 652/1054/215 +f 611/995/216 657/1539/216 653/1055/217 +f 612/996/211 609/993/217 653/1056/217 +f 649/1058/161 610/994/212 648/1059/212 +f 613/998/214 651/1053/213 650/1061/213 +f 614/999/215 652/1540/215 657/1063/216 +f 658/1064/220 656/1068/141 650/1065/146 +f 659/1067/221 652/1077/154 656/1068/141 +f 660/1069/139 662/1078/223 653/1070/153 +f 661/1072/222 648/1080/145 654/1073/142 +f 631/1066/192 650/1065/146 655/1075/149 +f 660/1069/139 657/1071/139 652/1077/154 +f 632/1074/193 654/1073/142 653/1070/153 +f 630/1079/191 655/1541/149 648/1080/145 +f 398/667/141 397/1084/224 566/1081/224 +f 395/1082/142 394/1085/225 568/1083/225 +f 397/1084/224 396/670/226 400/669/226 +f 394/1085/225 393/1542/227 399/1086/227 +f 392/1089/149 391/1543/149 569/1035/198 +f 569/1035/198 635/1034/197 402/1088/228 +f 635/1034/197 643/1044/205 634/1033/196 +f 402/1088/228 635/1034/197 634/1033/196 +f 643/1044/205 647/1049/210 634/1033/196 +f 618/1006/172 620/1008/174 632/1090/193 +f 439/1092/139 441/1104/153 431/1093/153 +f 553/1095/145 554/1107/149 438/1096/149 +f 453/1098/146 455/1108/141 434/1099/141 +f 440/1101/154 439/1544/139 430/1102/139 +f 441/1104/153 442/1106/142 435/1105/142 +f 442/1106/142 553/1095/145 436/1097/145 +f 554/1107/149 453/1098/146 437/1100/146 +f 455/1108/141 440/1101/154 432/1103/154 +f 456/1109/139 575/1120/229 663/1110/229 +f 574/1112/140 573/1121/230 665/1113/230 +f 577/1115/231 457/1125/150 667/1116/150 +f 576/1118/232 456/1109/139 664/1111/139 +f 575/1120/229 574/1112/140 666/1114/140 +f 573/1121/230 458/1545/149 670/1122/149 +f 458/1123/149 577/1115/231 668/1117/231 +f 457/1125/150 576/1118/232 669/1119/232 +f 671/1126/233 683/1140/233 672/1127/227 +f 674/1129/234 685/1145/235 675/1130/235 +f 677/1132/236 684/1141/236 678/1133/237 +f 680/1135/238 686/1148/239 681/1136/239 +f 672/1138/227 680/1135/238 682/1137/238 +f 675/1130/235 685/1145/235 683/1140/233 +f 678/1133/237 674/1129/234 676/1131/234 +f 681/1136/239 686/1148/239 684/1141/236 +f 672/1138/149 579/1546/149 578/1142/230 +f 683/1140/231 580/1149/231 579/1143/149 +f 674/1129/232 581/1150/232 459/1144/150 +f 684/1141/229 582/1151/229 460/1146/139 +f 680/1135/230 578/1142/230 461/1147/140 +f 685/1145/150 459/1144/150 580/1149/231 +f 678/1133/139 460/1146/139 581/1150/232 +f 686/1148/140 461/1147/140 582/1151/229 +f 687/1152/150 473/1165/150 475/1153/240 +f 689/1155/142 465/1166/142 467/1156/241 +f 691/1158/140 472/1547/140 469/1159/242 +f 693/1161/141 477/1164/141 479/1162/243 +f 688/1154/240 475/1153/240 477/1164/141 +f 690/1157/241 467/1156/241 473/1165/150 +f 692/1160/242 469/1159/242 465/1166/142 +f 694/1163/243 479/1162/243 472/1167/140 +f 470/770/244 463/1177/244 590/1169/245 +f 476/779/246 585/1178/246 584/1170/141 +f 478/783/247 583/1179/247 464/1171/248 +f 471/771/249 588/1180/249 587/1172/150 +f 468/767/245 590/1169/245 462/1173/142 +f 480/785/248 464/1171/248 591/1174/140 +f 594/958/150 587/1172/150 586/1175/250 +f 592/956/142 462/1173/142 589/1176/251 +f 593/957/140 591/1548/140 463/1177/244 +f 474/777/250 586/1175/250 585/1178/246 +f 595/959/141 584/1170/141 583/1179/247 +f 466/765/251 589/1176/251 588/1180/249 +f 498/807/252 505/815/252 481/789/253 +f 481/789/253 483/791/254 500/809/254 +f 500/809/254 483/791/254 485/793/255 +f 488/990/164 560/992/164 386/967/256 +f 558/1181/165 493/1549/165 492/1182/164 +f 382/969/256 557/1183/164 492/1182/164 +f 596/1184/257 487/1187/257 486/1185/258 +f 487/1187/257 596/1184/257 499/1188/259 +f 484/1190/260 482/1189/259 499/1188/259 +f 513/825/140 502/1550/140 526/1551/140 +f 521/836/140 520/835/255 485/793/255 +f 513/825/140 526/1551/140 521/836/140 +f 519/1193/261 512/1194/261 484/1190/260 +f 512/1194/261 519/1193/261 695/1195/262 +f 514/1197/263 696/1196/262 695/1195/262 +f 511/1199/264 514/1197/139 523/1198/139 +f 511/1201/264 522/1552/264 525/1202/265 +f 509/1204/140 510/1203/265 525/1202/265 +f 507/1206/266 509/1204/267 518/1205/267 +f 506/1208/268 507/1206/266 517/1207/266 +f 486/1185/258 506/1208/268 515/1209/268 +f 516/829/139 508/973/139 505/815/252 +f 658/1211/220 624/1012/178 627/1020/185 +f 697/1213/269 707/1419/278 698/1214/270 +f 700/1216/272 709/1226/272 701/1217/273 +f 703/1219/274 711/1228/423 704/1220/275 +f 706/1222/277 713/1230/284 707/1223/278 +f 708/1225/279 715/1232/279 709/1226/272 +f 710/1227/280 717/1234/287 711/1228/281 +f 712/1229/283 719/1236/289 713/1230/284 +f 714/1231/285 827/1553/285 715/1232/279 +f 716/1233/286 723/1240/292 717/1234/287 +f 718/1235/288 725/1242/294 719/1236/289 +f 720/1237/290 827/1553/290 714/1231/290 +f 716/1233/286 729/1247/299 722/1239/291 +f 724/1241/293 731/1249/301 725/1242/294 +f 728/1246/298 800/1443/427 722/1239/291 +f 730/1248/300 735/1253/305 731/1249/301 +f 732/1250/302 737/1255/307 733/1251/303 +f 734/1252/304 739/1257/309 735/1253/305 +f 736/1254/306 741/1259/311 737/1255/307 +f 738/1256/308 743/1261/313 739/1257/309 +f 740/1258/310 745/1554/404 741/1259/311 +f 742/1260/312 747/1266/415 743/1261/313 +f 744/1262/314 749/1268/314 745/1263/315 +f 746/1265/316 751/1270/321 747/1266/317 +f 748/1267/319 753/1272/323 749/1268/314 +f 750/1269/320 758/1277/326 751/1270/321 +f 752/1271/322 760/1279/328 753/1272/323 +f 754/1273/324 762/1281/324 755/1274/149 +f 757/1276/325 764/1283/419 758/1277/326 +f 759/1278/327 765/1285/332 760/1279/328 +f 761/1280/329 766/1286/329 762/1281/324 +f 763/1282/330 767/1287/333 764/1283/281 +f 699/1284/331 698/1415/407 765/1285/332 +f 702/1218/273 701/1217/273 766/1286/329 +f 705/1221/276 704/1220/275 767/1287/333 +f 718/1235/288 797/1336/371 768/1288/334 +f 721/1244/296 726/1243/295 733/1251/303 +f 730/1248/300 724/1241/293 768/1288/334 +f 726/1243/295 727/1245/297 770/1291/337 +f 742/1293/312 738/1256/308 771/1294/338 +f 744/1296/340 740/1555/467 773/1297/341 +f 746/1299/316 742/1260/318 772/1300/343 +f 750/1304/320 746/1299/316 775/1301/344 +f 750/1304/320 777/1305/346 779/1308/348 +f 752/1306/322 778/1307/347 780/1309/349 +f 761/1311/350 754/1340/375 781/1312/351 +f 763/1314/330 757/1276/282 779/1308/353 +f 705/1320/276 763/1314/330 783/1315/354 +f 697/1213/269 699/1215/271 788/1322/359 +f 700/1324/361 702/1348/380 786/1319/357 +f 705/1320/276 787/1321/358 791/1326/363 +f 700/1324/361 790/1325/362 793/1328/365 +f 710/1330/280 703/1219/282 791/1326/353 +f 716/1334/286 710/1330/280 794/1331/367 +f 800/1343/140 728/1556/140 801/1344/378 +f 802/1345/378 801/1344/378 347/1346/379 +f 727/1339/374 793/1328/365 776/1303/345 +f 786/1319/357 780/1309/349 778/1307/347 +f 401/1354/142 780/1309/349 782/1313/352 +f 768/1359/142 797/1363/142 775/1360/142 +f 777/1362/142 775/1360/142 797/1363/142 +f 799/1372/142 347/1355/142 801/1373/142 +f 808/1380/388 810/1382/390 806/1378/386 +f 812/1384/392 811/1383/391 809/1381/389 +f 814/1386/141 829/1453/141 815/1387/141 +f 816/1388/141 815/1387/141 817/1389/141 +f 810/1382/390 811/1383/391 709/1404/398 +f 709/1404/398 811/1383/391 812/1384/392 +f 701/1405/399 812/1384/392 813/1385/393 +f 828/1407/401 762/1408/402 766/1406/400 +f 804/1352/383 806/1400/394 733/1251/303 +f 749/1411/405 807/1379/387 803/1377/385 +f 784/1316/355 809/1381/389 760/1414/328 +f 813/1385/393 784/1316/355 528/1417/141 +f 707/1419/278 826/1421/409 785/1420/408 +f 814/1424/412 816/1423/411 725/1242/294 +f 735/1253/305 829/1425/413 814/1424/412 +f 747/1427/415 831/1557/468 830/1428/414 +f 751/1429/321 815/1432/417 831/1430/416 +f 758/1431/326 817/1558/469 815/1432/417 +f 818/1433/418 817/1558/469 758/1431/326 +f 767/1434/333 819/1436/421 818/1433/420 +f 704/1435/275 824/1559/470 819/1436/421 +f 823/1437/422 824/1559/470 704/1435/275 +f 717/1438/287 820/1440/424 823/1437/420 +f 723/1439/292 821/1442/426 820/1440/424 +f 802/1444/141 346/1418/141 825/1398/141 +f 531/1457/141 835/1465/441 598/977/429 +f 534/1458/142 533/1560/471 834/1459/430 +f 834/1461/140 837/1561/472 599/1462/431 +f 531/1457/140 529/1460/140 536/1562/140 +f 529/1460/140 834/1459/140 536/1562/140 +f 536/1562/140 540/1464/140 531/1457/140 +f 836/1466/432 841/1479/442 537/1467/433 +f 599/1462/431 837/1561/472 836/1466/432 +f 834/1459/430 533/1560/471 841/1563/434 +f 841/1563/434 836/1469/434 834/1459/430 +f 835/1471/140 540/1564/140 539/1472/436 +f 539/1472/436 538/1475/438 839/1474/438 +f 538/1475/438 601/1482/445 840/1476/439 +f 598/977/429 835/1465/441 840/1477/440 +f 835/1465/441 838/1565/473 839/1478/440 +f 374/1485/146 605/1496/146 551/1486/149 +f 370/1488/154 549/1498/154 606/1489/141 +f 377/1491/153 602/1500/153 550/1492/139 +f 373/1487/149 551/1486/149 604/1494/145 +f 368/1490/141 606/1489/141 605/1496/146 +f 833/1497/139 550/1566/139 549/1498/154 +f 379/1499/142 603/1501/142 602/1500/153 +f 380/1495/145 604/1494/145 603/1501/142 +f 608/1001/168 616/1003/170 387/1503/145 +f 616/1003/170 622/1010/176 387/1503/145 +f 622/1010/176 621/1009/175 387/1503/145 +f 625/1013/179 617/1005/171 389/1504/146 +f 617/1005/171 607/1528/463 389/1504/146 +f 389/1504/146 388/1567/146 623/1011/177 +f 843/1512/457 842/1505/448 639/1039/447 +f 843/1512/474 406/1568/458 345/1513/458 +f 647/1514/210 643/1569/205 844/1515/459 +f 638/1038/140 646/1570/140 845/1516/459 +f 845/1516/459 844/1515/459 644/1045/140 +f 844/1515/459 640/1571/140 644/1045/140 +f 623/1026/189 388/1572/150 385/1521/461 +l 716 799 diff --git a/src/main/resources/assets/hbm/models/weapons/animations/congolake.json b/src/main/resources/assets/hbm/models/weapons/animations/congolake.json index 0fd6911a6..192bd4f63 100644 --- a/src/main/resources/assets/hbm/models/weapons/animations/congolake.json +++ b/src/main/resources/assets/hbm/models/weapons/animations/congolake.json @@ -1 +1 @@ -{"anim": {"Fire": {"Gun": {"location": {"x": [[0.0, 0.0], [0.0, 50.0], [-0.015234995633363724, 133.33333333333331], [-0.0032073669135570526, 166.66666666666669], [0.0, 150.0], [0.1729116439819336, 183.33333333333337], [0.13706907629966736, 83.33333333333326], [0.13706907629966736, 200.0], [0.08123889565467834, 166.66666666666663], [0.0, 116.66666666666674]], "z": [[-0.0, 0.0], [-0.7130982875823975, 50.0], [-0.8931010961532593, 133.33333333333331], [-0.1880212426185608, 166.66666666666669], [-0.0, 150.0], [0.07001475989818573, 183.33333333333337], [0.3594728708267212, 83.33333333333326], [0.3594728708267212, 200.0], [0.052131712436676025, 166.66666666666663], [-0.0, 116.66666666666674]], "y": [[0.0, 0.0], [-0.05462139472365379, 50.0], [0.33006909489631653, 133.33333333333331], [0.06948822736740112, 166.66666666666669], [0.0, 150.0], [0.1356278508901596, 183.33333333333337], [0.16076654195785522, 83.33333333333326], [0.16076654195785522, 200.0], [0.13280370831489563, 166.66666666666663], [0.0, 116.66666666666674]]}, "rotation_euler": {"x": [[0.0, 0.0], [5.533829083941263, 83.33333333333333], [-6.777895961066664, 133.33333333333337], [-1.4269255553586289, 166.66666666666663], [0.0, 116.66666666666669], [-1.6187724423744758, 216.66666666666663], [-3.0496036919995886, 100.0], [-1.5771150119048625, 216.66666666666663], [-1.3797563756722266, 133.33333333333348], [0.0, 116.66666666666652]], "z": [[-0.0, 0.0], [0.20789931232904474, 83.33333333333333], [-0.2137078679498249, 133.33333333333337], [-0.04499113641374835, 166.66666666666663], [-0.0, 116.66666666666669], [6.481160527009576, 216.66666666666663], [6.3670886839075465, 100.0], [2.910396325865089, 216.66666666666663], [2.9018462096847024, 133.33333333333348], [-0.0, 116.66666666666652]], "y": [[0.0, 0.0], [0.299797573280649, 83.33333333333333], [-0.3922261210480681, 133.33333333333337], [-0.08257391881641295, 166.66666666666663], [0.0, 116.66666666666669], [-1.7981676810899783, 216.66666666666663], [-1.8284025806680975, 100.0], [4.424185025436767, 216.66666666666663], [0.5393851613977845, 133.33333333333348], [0.0, 116.66666666666652]]}}, "Loop": {"rotation_euler": {"z": [[0.0, 0.0], [28.83552188323058, 50.0], [-11.070683087911195, 50.0], [-2.56723823045354, 33.33333333333334], [7.0765451287518255, 49.99999999999997], [80.15762477840892, 116.66666666666669], [60.820607917294126, 50.0], [-0.0, 83.33333333333337]]}, "location": {"x": [[0.2532634139060974, 0.0]], "z": [[3.4837722778320312, 0.0]], "y": [[1.4936577081680298, 0.0]]}}, "Pump": {"location": {"z": [[-0.0, 683.3333333333334], [-0.10627399384975433, 49.999999999999886], [-0.7439179420471191, 66.66666666666674], [-0.7439179420471191, 200.0], [-0.18597948551177979, 66.66666666666674], [-0.0, 66.66666666666652]]}}, "Shell": {"location": {"x": [[1.5205265935236412e-09, 0.0, "CONSTANT"], [-2.204763704938273e-09, 683.3333333333334], [-2.204763704938273e-09, 66.66666666666663], [1.5205265935236412e-09, 116.66666666666674], [-0.01397116482257843, 66.66666666666663], [-0.01397116482257843, 49.999999999999886], [1.5205265935236412e-09, 150.0]], "z": [[1.2549771070480347, 0.0, "CONSTANT"], [1.2549771070480347, 683.3333333333334], [0.4066495895385742, 66.66666666666663], [0.4066495895385742, 116.66666666666674], [0.4519183039665222, 66.66666666666663], [0.4519183039665222, 49.999999999999886], [1.2549771070480347, 150.0]], "y": [[1.7459099292755127, 0.0, "CONSTANT"], [1.199751853942871, 683.3333333333334], [1.199751853942871, 66.66666666666663], [1.5027252435684204, 116.66666666666674], [1.5814520120620728, 66.66666666666663], [1.5814520120620728, 49.999999999999886], [1.7459099292755127, 150.0]]}, "rotation_euler": {"x": [[0.0, 0.0, "CONSTANT"], [0.0, 683.3333333333334], [0.0, 66.66666666666663], [-24.580495030325643, 116.66666666666674], [-15.192167789711336, 66.66666666666663], [-15.192167789711336, 49.999999999999886], [0.0, 150.0]], "z": [[0.0, 0.0, "CONSTANT"], [0.0, 683.3333333333334], [0.0, 66.66666666666663], [0.0, 116.66666666666674], [-9.025331207124422e-09, 66.66666666666663], [-9.025331207124422e-09, 49.999999999999886], [0.0, 150.0]], "y": [[0.0, 0.0, "CONSTANT"], [0.0, 683.3333333333334], [0.0, 66.66666666666663], [8.004127933608693e-08, 116.66666666666674], [1.31019960381489e-07, 66.66666666666663], [1.31019960381489e-07, 49.999999999999886], [0.0, 150.0]]}}, "Sight": {"rotation_euler": {"x": [[0.0, 0.0], [-10.132303034637006, 50.0], [0.0, 33.33333333333333], [0.0, 99.99999999999999], [-7.955241708397972, 83.33333333333337], [-10.701222787779573, 99.99999999999994], [0.0, 116.66666666666669]]}, "location": {"x": [[0.0, 0.0]], "z": [[2.990000009536743, 0.0]], "y": [[2.104297161102295, 0.0]]}}}, "FireEmpty": {"Gun": {"location": {"x": [[0.0, 0.0], [0.0, 50.0], [-0.015234995633363724, 133.33333333333331], [-0.0032073669135570526, 166.66666666666669], [0.0, 150.0], [0.1729116439819336, 183.33333333333337], [0.13706907629966736, 83.33333333333326], [0.13706907629966736, 200.0], [0.08123889565467834, 166.66666666666663], [0.0, 116.66666666666674]], "z": [[-0.0, 0.0], [-0.7130982875823975, 50.0], [-0.8931010961532593, 133.33333333333331], [-0.1880212426185608, 166.66666666666669], [-0.0, 150.0], [0.07001475989818573, 183.33333333333337], [0.3594728708267212, 83.33333333333326], [0.3594728708267212, 200.0], [0.052131712436676025, 166.66666666666663], [-0.0, 116.66666666666674]], "y": [[0.0, 0.0], [-0.05462139472365379, 50.0], [0.33006909489631653, 133.33333333333331], [0.06948822736740112, 166.66666666666669], [0.0, 150.0], [0.1356278508901596, 183.33333333333337], [0.16076654195785522, 83.33333333333326], [0.16076654195785522, 200.0], [0.13280370831489563, 166.66666666666663], [0.0, 116.66666666666674]]}, "rotation_euler": {"x": [[0.0, 0.0], [5.533829083941263, 83.33333333333333], [-6.777895961066664, 133.33333333333337], [-1.4269255553586289, 166.66666666666663], [0.0, 116.66666666666669], [-1.6187724423744758, 216.66666666666663], [-3.0496036919995886, 100.0], [-1.5771150119048625, 216.66666666666663], [-1.3797563756722266, 133.33333333333348], [0.0, 116.66666666666652]], "z": [[-0.0, 0.0], [0.20789931232904474, 83.33333333333333], [-0.2137078679498249, 133.33333333333337], [-0.04499113641374835, 166.66666666666663], [-0.0, 116.66666666666669], [6.481160527009576, 216.66666666666663], [6.3670886839075465, 100.0], [2.910396325865089, 216.66666666666663], [2.9018462096847024, 133.33333333333348], [-0.0, 116.66666666666652]], "y": [[0.0, 0.0], [0.299797573280649, 83.33333333333333], [-0.3922261210480681, 133.33333333333337], [-0.08257391881641295, 166.66666666666663], [0.0, 116.66666666666669], [-1.7981676810899783, 216.66666666666663], [-1.8284025806680975, 100.0], [4.424185025436767, 216.66666666666663], [0.5393851613977845, 133.33333333333348], [0.0, 116.66666666666652]]}}, "Loop": {"rotation_euler": {"z": [[0.0, 0.0], [28.83552188323058, 50.0], [-11.070683087911195, 50.0], [-2.56723823045354, 33.33333333333334], [7.0765451287518255, 49.99999999999997], [80.15762477840892, 116.66666666666669], [60.820607917294126, 50.0], [-0.0, 83.33333333333337]]}, "location": {"x": [[0.2532634139060974, 0.0]], "z": [[3.4837722778320312, 0.0]], "y": [[1.4936577081680298, 0.0]]}}, "Pump": {"location": {"z": [[-0.0, 683.3333333333334], [-0.10627399384975433, 49.999999999999886], [-0.7439179420471191, 66.66666666666674], [-0.7439179420471191, 200.0], [-0.18597948551177979, 66.66666666666674], [-0.0, 66.66666666666652]]}}, "Shell": {"location": {"x": [[1.5205265935236412e-09, 0.0]], "z": [[1.2549771070480347, 0.0]], "y": [[-4.465472221374512, 0.0]]}}, "Sight": {"rotation_euler": {"x": [[0.0, 0.0], [-10.132303034637006, 50.0], [0.0, 33.33333333333333], [0.0, 99.99999999999999], [-7.955241708397972, 83.33333333333337], [-10.701222787779573, 99.99999999999994], [0.0, 116.66666666666669]]}, "location": {"x": [[0.0, 0.0]], "z": [[2.990000009536743, 0.0]], "y": [[2.104297161102295, 0.0]]}}}, "Reload": {"GuardInner": {"location": {"x": [[3.725290298461914e-09, 0.0]], "z": [[0.8854429721832275, 0.0]], "y": [[0.8707519173622131, 0.0]]}, "rotation_euler": {"x": [[0.0, 350.0], [16.02038116054145, 83.33333333333337], [23.71116221314476, 83.33333333333326], [23.71116221314476, 66.66666666666674], [0.0, 83.33333333333326]]}}, "GuardOuter": {"location": {"x": [[0.0, 0.0]], "z": [[-0.07262593507766724, 0.0]], "y": [[0.8707519173622131, 0.0]]}, "rotation_euler": {"x": [[0.0, 350.0], [-17.139458137176558, 83.33333333333337], [-29.355340260203572, 83.33333333333326], [-29.355340260203572, 100.00000000000011], [0.0, 99.99999999999989]]}}, "Gun": {"location": {"x": [[1.7611019611358643, 0.0], [1.7662079334259033, 150.0], [1.7611019611358643, 250.0], [1.613909363746643, 100.0], [1.7571532726287842, 116.66666666666674], [1.7611019611358643, 99.99999999999989]], "z": [[0.31467199325561523, 0.0], [0.30754023790359497, 150.0], [0.31467199325561523, 250.0], [0.4306454658508301, 100.0], [0.3806498050689697, 116.66666666666674], [0.31467199325561523, 99.99999999999989]], "y": [[0.8750439286231995, 0.0], [0.8376463055610657, 150.0], [0.8750439286231995, 250.0], [1.1308174133300781, 100.0], [1.108587384223938, 116.66666666666674], [0.8750439286231995, 99.99999999999989]]}, "rotation_euler": {"x": [[-18.983153297952903, 0.0], [-20.857867762844858, 250.0], [-18.983153297952903, 100.0], [-20.627756982159838, 116.66666666666669], [-20.258341078257818, 116.66666666666669], [-18.983153297952903, 133.33333333333326]], "z": [[86.04810969222216, 0.0], [87.57263523572567, 250.0], [86.04810969222216, 100.0], [89.15816119870658, 116.66666666666669], [86.00693048171614, 116.66666666666669], [86.04810969222216, 133.33333333333326]], "y": [[29.613753637261834, 0.0], [28.64577410544575, 250.0], [29.613753637261834, 100.0], [25.730953311102372, 116.66666666666669], [27.311677651096765, 116.66666666666669], [29.613753637261834, 133.33333333333326]]}}, "Shell": {"location": {"x": [[1.5205265935236412e-09, 0.0], [1.5205265935236412e-09, 216.66666666666669], [3.600797242597764e-07, 133.33333333333331], [1.9156854591528827e-07, 83.33333333333337], [2.418599649445241e-07, 83.33333333333326], [2.3999731979529315e-07, 100.00000000000011]], "z": [[-2.2731080055236816, 0.0], [-2.2731080055236816, 216.66666666666669], [0.2386959344148636, 133.33333333333331], [0.33605021238327026, 83.33333333333337], [0.4338737428188324, 83.33333333333326], [1.2500436305999756, 100.00000000000011]], "y": [[-1.4170563220977783, 0.0], [-1.4170563220977783, 216.66666666666669], [0.5333303213119507, 133.33333333333331], [0.8954256176948547, 83.33333333333337], [1.1207358837127686, 83.33333333333326], [1.2056175470352173, 100.00000000000011]]}, "rotation_euler": {"x": [[0.0, 0.0], [0.0, 216.66666666666669], [-23.121160227355304, 133.33333333333331], [-14.526026270149163, 83.33333333333337], [-5.042295800981765, 83.33333333333326], [0.0, 100.00000000000011]], "z": [[0.0, 0.0], [-0.0, 216.66666666666669], [-0.0, 133.33333333333331], [2.551953161995936e-07, 83.33333333333337], [7.134593799244011e-07, 83.33333333333326], [-0.0, 100.00000000000011]], "y": [[0.0, 0.0], [0.0, 216.66666666666669], [1.7075472925031877e-06, 133.33333333333331], [1.688370023551335e-06, 83.33333333333337], [1.6331417525071545e-06, 83.33333333333326], [0.0, 100.00000000000011]]}}}, "ReloadEmpty": {"Gun": {"location": {"x": [[0.0, 0.0], [1.2511006593704224, 183.33333333333331], [1.6423077583312988, 216.66666666666669], [1.6554410457611084, 150.0], [1.7105761766433716, 66.66666666666674], [1.7476284503936768, 116.66666666666652], [1.7611019611358643, 133.33333333333348]], "z": [[-0.0, 0.0], [0.26347818970680237, 183.33333333333331], [0.32502928376197815, 216.66666666666669], [0.30153536796569824, 150.0], [0.3000105023384094, 66.66666666666674], [0.3107622563838959, 116.66666666666652], [0.31467199325561523, 133.33333333333348]], "y": [[0.0, 0.0], [0.42658743262290955, 183.33333333333331], [-0.009814918041229248, 216.66666666666669], [-0.1131410151720047, 150.0], [-0.20051059126853943, 66.66666666666674], [0.5882294178009033, 116.66666666666652], [0.8750439286231995, 133.33333333333348]]}, "rotation_euler": {"x": [[0.0, 0.0], [-14.617513238986898, 116.66666666666667], [-37.38541266737456, 233.33333333333331], [-36.45018560017598, 166.66666666666663], [-30.74254485044399, 66.66666666666674], [-21.750068053366945, 149.9999999999999], [-18.983153297952903, 133.33333333333348]], "z": [[-0.0, 0.0], [32.06710636071164, 116.66666666666667], [40.97562647251089, 233.33333333333331], [38.71689657436601, 166.66666666666663], [32.11341504328433, 66.66666666666674], [73.35759772377095, 149.9999999999999], [86.04810969222216, 133.33333333333348]], "y": [[0.0, 0.0], [21.50487279989995, 116.66666666666667], [44.292741993873435, 233.33333333333331], [46.044774308440914, 166.66666666666663], [49.72028010083778, 66.66666666666674], [34.34470124134409, 149.9999999999999], [29.613753637261834, 133.33333333333348]]}}, "Pump": {"location": {"z": [[-0.0, 83.33333333333333], [-0.10627399384975433, 50.000000000000014], [-0.7439179420471191, 66.66666666666666], [-0.7439179420471191, 483.33333333333337], [-0.18597948551177979, 66.66666666666663], [-0.0, 66.66666666666663]]}}, "Shell": {"location": {"x": [[1.5205265935236412e-09, 0.0], [1.8807575702667236, 216.66666666666669], [0.1613924205303192, 216.66666666666669], [0.010319530963897705, 100.0], [2.558298035637563e-07, 83.33333333333337]], "z": [[-2.2731080055236816, 0.0], [-1.77922523021698, 216.66666666666669], [0.5386117100715637, 216.66666666666669], [0.9011819362640381, 100.0], [1.2500436305999756, 83.33333333333337]], "y": [[-1.4170563220977783, 0.0], [-0.7542737126350403, 216.66666666666669], [1.8265879154205322, 216.66666666666669], [1.7011022567749023, 100.0], [1.7520724534988403, 83.33333333333337]]}, "rotation_euler": {"x": [[0.0, 0.0], [0.0, 166.66666666666666], [17.895010248068782, 216.66666666666666], [3.92045772037468, 116.66666666666669], [0.0, 116.66666666666674]], "z": [[0.0, 0.0], [-0.0, 166.66666666666666], [-7.282242678909106, 216.66666666666666], [-2.104055355191472, 116.66666666666669], [-0.0, 116.66666666666674]], "y": [[0.0, 0.0], [0.0, 166.66666666666666], [-21.433229238148392, 216.66666666666666], [-7.3901921111938655, 116.66666666666669], [0.0, 116.66666666666674]]}}}, "ReloadEnd": {"Gun": {"location": {"x": [[1.7611019611358643, 0.0], [-0.31797051429748535, 216.66666666666669], [0.0, 83.33333333333331]], "z": [[0.31467199325561523, 0.0], [0.010336088016629219, 216.66666666666669], [-0.0, 83.33333333333331]], "y": [[0.8750439286231995, 0.0], [0.0250311940908432, 216.66666666666669], [0.0, 83.33333333333331]]}, "rotation_euler": {"x": [[-18.983153297952903, 0.0], [0.09662330444411844, 216.66666666666669], [0.0, 83.33333333333331]], "z": [[86.04810969222216, 0.0], [-9.502314560125358, 216.66666666666669], [-0.0, 83.33333333333331]], "y": [[29.613753637261834, 0.0], [-0.24104249845162748, 216.66666666666669], [0.0, 83.33333333333331]]}}}, "ReloadStart": {"GuardInner": {"location": {"x": [[3.725290298461914e-09, 0.0]], "z": [[0.8854429721832275, 0.0]], "y": [[0.8707519173622131, 0.0]]}, "rotation_euler": {"x": [[0.0, 350.0], [16.02038116054145, 83.33333333333337], [23.71116221314476, 83.33333333333326], [23.71116221314476, 66.66666666666674], [0.0, 83.33333333333326]]}}, "GuardOuter": {"location": {"x": [[0.0, 0.0]], "z": [[-0.07262593507766724, 0.0]], "y": [[0.8707519173622131, 0.0]]}, "rotation_euler": {"x": [[0.0, 350.0], [-17.139458137176558, 83.33333333333337], [-29.355340260203572, 83.33333333333326], [-29.355340260203572, 100.00000000000011], [0.0, 99.99999999999989]]}}, "Gun": {"location": {"x": [[0.0, 0.0], [1.2318342924118042, 183.33333333333331], [1.642445683479309, 83.33333333333337], [1.7611019611358643, 133.33333333333331], [1.613909363746643, 100.0], [1.7571532726287842, 116.66666666666674], [1.7611019611358643, 66.66666666666663]], "z": [[-0.0, 0.0], [0.2732446491718292, 183.33333333333331], [0.36432620882987976, 83.33333333333337], [0.31467199325561523, 133.33333333333331], [0.4306454658508301, 100.0], [0.3806498050689697, 116.66666666666674], [0.31467199325561523, 66.66666666666663]], "y": [[0.0, 0.0], [0.7328978776931763, 183.33333333333331], [0.9771971702575684, 83.33333333333337], [0.8750439286231995, 133.33333333333331], [1.1308174133300781, 100.0], [1.108587384223938, 116.66666666666674], [0.8750439286231995, 66.66666666666663]]}, "rotation_euler": {"x": [[0.0, 0.0], [-14.617513238986898, 150.0], [-19.490018221164963, 83.33333333333334], [-18.983153297952903, 116.66666666666666], [-20.627756982159838, 133.33333333333331], [-20.258341078257818, 100.00000000000006], [-18.983153297952903, 100.0]], "z": [[-0.0, 0.0], [65.44332775888294, 150.0], [87.25777034517726, 83.33333333333334], [86.04810969222216, 116.66666666666666], [89.15816119870658, 133.33333333333331], [86.00693048171614, 100.00000000000006], [86.04810969222216, 100.0]], "y": [[0.0, 0.0], [21.504871092352655, 150.0], [28.673161456470208, 83.33333333333334], [29.613753637261834, 116.66666666666666], [25.730953311102372, 133.33333333333331], [27.311677651096765, 100.00000000000006], [29.613753637261834, 100.0]]}}, "Shell": {"location": {"x": [[1.5205265935236412e-09, 0.0], [1.5205265935236412e-09, 216.66666666666669], [3.600797242597764e-07, 133.33333333333331], [1.9156854591528827e-07, 83.33333333333337], [2.418599649445241e-07, 83.33333333333326], [2.3999731979529315e-07, 100.00000000000011]], "z": [[-2.2731080055236816, 0.0], [-2.2731080055236816, 216.66666666666669], [0.2386959344148636, 133.33333333333331], [0.33605021238327026, 83.33333333333337], [0.4338737428188324, 83.33333333333326], [1.2500436305999756, 100.00000000000011]], "y": [[-1.4170563220977783, 0.0], [-1.4170563220977783, 216.66666666666669], [0.5333303213119507, 133.33333333333331], [0.8954256176948547, 83.33333333333337], [1.1207358837127686, 83.33333333333326], [1.2056175470352173, 100.00000000000011]]}, "rotation_euler": {"x": [[0.0, 0.0], [0.0, 216.66666666666669], [-23.121160227355304, 133.33333333333331], [-14.526026270149163, 83.33333333333337], [-5.042295800981765, 83.33333333333326], [0.0, 100.00000000000011]], "z": [[0.0, 0.0], [-0.0, 216.66666666666669], [-0.0, 133.33333333333331], [2.551953161995936e-07, 83.33333333333337], [7.134593799244011e-07, 83.33333333333326], [-0.0, 100.00000000000011]], "y": [[0.0, 0.0], [0.0, 216.66666666666669], [1.7075472925031877e-06, 133.33333333333331], [1.688370023551335e-06, 83.33333333333337], [1.6331417525071545e-06, 83.33333333333326], [0.0, 100.00000000000011]]}}}}, "offset": {"GuardInner": [3.725290298461914e-09, 0.8707519173622131, 0.8854429721832275], "GuardOuter": [0.0, 0.8707519173622131, -0.07262593507766724], "Loop": [0.2532634139060974, 1.4936577081680298, 3.4837722778320312], "Pump": [1.1568772606551647e-09, 0.0, -0.0], "Shell": [1.5205265935236412e-09, 1.7459099292755127, 1.2549771070480347], "ShellFore": [1.5205265935236412e-09, 1.7459099292755127, 1.2549771070480347], "Sight": [0.0, 2.104297161102295, 2.990000009536743]}} \ No newline at end of file +{"anim": {"Equip": {"Gun": {"location": {"x": [[-0.23637241125106812, 0.0, "BACK", "AUTO", 1.7015800476074219], [0.0, 716.6666666666666, "BEZIER", "AUTO", 955.555534362793, 0.0, "AUTO_CLAMPED"]], "z": [[-2.670673370361328, 0.0, "BACK", "AUTO", 1.7015800476074219], [-0.0, 716.6666666666666, "BEZIER", "AUTO", 955.555534362793, -0.0, "AUTO_CLAMPED"]], "y": [[-4.068621635437012, 0.0, "BACK", "AUTO", 1.7015800476074219], [0.0, 716.6666666666666, "BEZIER", "AUTO", 955.555534362793, 0.0, "AUTO_CLAMPED"]]}, "rotation_euler": {"x": [[88.63504384036447, 0.0, "BACK", "AUTO", 1.7015800476074219], [-3.8488709345706, 516.6666666666666, "BEZIER", "EASE_OUT", 611.1111323038737, -3.8488709345706, "AUTO_CLAMPED"], [0.0, 283.33333333333337, "BEZIER", "AUTO", 705.555534362793, 0.0, "AUTO_CLAMPED", 894.444465637207, 0.0, "AUTO_CLAMPED"]], "z": [[1.9343983654068213, 0.0, "BACK", "AUTO", 1.7015800476074219], [6.406567604197043, 516.6666666666666, "BEZIER", "EASE_OUT", 611.1111323038737, 6.406567604197043, "AUTO_CLAMPED"], [-0.0, 283.33333333333337, "BEZIER", "AUTO", 705.555534362793, -0.0, "AUTO_CLAMPED", 894.444465637207, -0.0, "AUTO_CLAMPED"]], "y": [[-3.580704901151205, 0.0, "BACK", "AUTO", 1.7015800476074219], [-0.8266392790306901, 516.6666666666666, "BEZIER", "EASE_OUT", 611.1111323038737, -0.2922556837352062, "AUTO_CLAMPED"], [0.0, 283.33333333333337, "BEZIER", "AUTO", 705.555534362793, 0.0, "AUTO_CLAMPED", 894.444465637207, 0.0, "AUTO_CLAMPED"]]}}, "Loop": {"rotation_euler": {"z": [[-0.0, 0.0, "BEZIER", "AUTO", 72.22222487131755, -0.0, "AUTO_CLAMPED"], [-0.0, 216.66666666666669, "BEZIER", "AUTO", 144.44443384806317, -0.0, "AUTO_CLAMPED", 277.7777671813965, -0.0, "AUTO_CLAMPED"], [40.12815367576864, 183.33333333333331, "BOUNCE", "AUTO", 338.8888994852702, 40.12815367576864, "AUTO_CLAMPED"], [-0.0, 450.0, "BEZIER", "AUTO", 1000.0, -0.0, "AUTO_CLAMPED"]]}, "location": {"x": [[0.2532634139060974, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.2532634139060974, "AUTO_CLAMPED"]], "z": [[3.4837722778320312, 0.0, "BEZIER", "AUTO", 16.666666666666668, 3.4837722778320312, "AUTO_CLAMPED"]], "y": [[1.4936577081680298, 0.0, "BEZIER", "AUTO", 16.666666666666668, 1.4936577081680298, "AUTO_CLAMPED"]]}}, "Sight": {"rotation_euler": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 83.33333333333333, 0.0, "AUTO_CLAMPED"], [0.0, 250.0, "BEZIER", "AUTO", 166.66666666666666, 0.0, "AUTO_CLAMPED", 300.0, 0.0, "AUTO_CLAMPED"], [-23.23367222600563, 150.0, "BOUNCE", "AUTO", 350.0, -23.23367222600563, "AUTO_CLAMPED"], [0.0, 383.33333333333337, "BEZIER", "AUTO", 911.1111323038737, 0.0, "AUTO_CLAMPED"]]}, "location": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.0, "AUTO_CLAMPED"]], "z": [[2.990000009536743, 0.0, "BEZIER", "AUTO", 16.666666666666668, 2.990000009536743, "AUTO_CLAMPED"]], "y": [[2.104297161102295, 0.0, "BEZIER", "AUTO", 16.666666666666668, 2.104297161102295, "AUTO_CLAMPED"]]}}}, "Fire": {"Gun": {"location": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [0.0, 50.0, "LINEAR", "AUTO"], [-0.015234995633363724, 133.33333333333331, "LINEAR", "AUTO"], [-0.0032073669135570526, 166.66666666666669, "LINEAR", "AUTO"], [0.0, 150.0, "LINEAR", "AUTO"], [0.1729116439819336, 183.33333333333337, "LINEAR", "AUTO"], [0.13706907629966736, 83.33333333333326, "LINEAR", "AUTO"], [0.13706907629966736, 200.0, "LINEAR", "AUTO"], [0.08123889565467834, 166.66666666666663, "LINEAR", "AUTO"], [0.0, 116.66666666666674, "LINEAR", "AUTO"]], "z": [[-0.0, 0.0, "LINEAR", "AUTO"], [-0.7130982875823975, 50.0, "LINEAR", "AUTO"], [-0.8931010961532593, 133.33333333333331, "LINEAR", "AUTO"], [-0.1880212426185608, 166.66666666666669, "LINEAR", "AUTO"], [-0.0, 150.0, "LINEAR", "AUTO"], [0.07001475989818573, 183.33333333333337, "LINEAR", "AUTO"], [0.3594728708267212, 83.33333333333326, "LINEAR", "AUTO"], [0.3594728708267212, 200.0, "LINEAR", "AUTO"], [0.052131712436676025, 166.66666666666663, "LINEAR", "AUTO"], [-0.0, 116.66666666666674, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [-0.05462139472365379, 50.0, "LINEAR", "AUTO"], [0.33006909489631653, 133.33333333333331, "LINEAR", "AUTO"], [0.06948822736740112, 166.66666666666669, "LINEAR", "AUTO"], [0.0, 150.0, "LINEAR", "AUTO"], [0.1356278508901596, 183.33333333333337, "LINEAR", "AUTO"], [0.16076654195785522, 83.33333333333326, "LINEAR", "AUTO"], [0.16076654195785522, 200.0, "LINEAR", "AUTO"], [0.13280370831489563, 166.66666666666663, "LINEAR", "AUTO"], [0.0, 116.66666666666674, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [5.533829083941263, 83.33333333333333, "LINEAR", "AUTO"], [-6.777895961066664, 133.33333333333337, "LINEAR", "AUTO"], [-1.4269255553586289, 166.66666666666663, "LINEAR", "AUTO"], [0.0, 116.66666666666669, "LINEAR", "AUTO"], [-1.6187724423744758, 216.66666666666663, "LINEAR", "AUTO"], [-3.0496036919995886, 100.0, "LINEAR", "AUTO"], [-1.5771150119048625, 216.66666666666663, "LINEAR", "AUTO"], [-1.3797563756722266, 133.33333333333348, "LINEAR", "AUTO"], [0.0, 116.66666666666652, "LINEAR", "AUTO"]], "z": [[-0.0, 0.0, "LINEAR", "AUTO"], [0.20789931232904474, 83.33333333333333, "LINEAR", "AUTO"], [-0.2137078679498249, 133.33333333333337, "LINEAR", "AUTO"], [-0.04499113641374835, 166.66666666666663, "LINEAR", "AUTO"], [-0.0, 116.66666666666669, "LINEAR", "AUTO"], [6.481160527009576, 216.66666666666663, "LINEAR", "AUTO"], [6.3670886839075465, 100.0, "LINEAR", "AUTO"], [2.910396325865089, 216.66666666666663, "LINEAR", "AUTO"], [2.9018462096847024, 133.33333333333348, "LINEAR", "AUTO"], [-0.0, 116.66666666666652, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [0.299797573280649, 83.33333333333333, "LINEAR", "AUTO"], [-0.3922261210480681, 133.33333333333337, "LINEAR", "AUTO"], [-0.08257391881641295, 166.66666666666663, "LINEAR", "AUTO"], [0.0, 116.66666666666669, "LINEAR", "AUTO"], [-1.7981676810899783, 216.66666666666663, "LINEAR", "AUTO"], [-1.8284025806680975, 100.0, "LINEAR", "AUTO"], [4.424185025436767, 216.66666666666663, "LINEAR", "AUTO"], [0.5393851613977845, 133.33333333333348, "LINEAR", "AUTO"], [0.0, 116.66666666666652, "LINEAR", "AUTO"]]}}, "Loop": {"rotation_euler": {"z": [[0.0, 0.0, "LINEAR", "AUTO"], [28.83552188323058, 50.0, "LINEAR", "AUTO"], [-11.070683087911195, 50.0, "LINEAR", "AUTO"], [-2.56723823045354, 33.33333333333334, "LINEAR", "AUTO"], [7.0765451287518255, 49.99999999999997, "LINEAR", "AUTO"], [80.15762477840892, 116.66666666666669, "LINEAR", "AUTO"], [60.820607917294126, 50.0, "LINEAR", "AUTO"], [-0.0, 83.33333333333337, "LINEAR", "AUTO"]]}, "location": {"x": [[0.2532634139060974, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.2532634139060974, "AUTO_CLAMPED"]], "z": [[3.4837722778320312, 0.0, "BEZIER", "AUTO", 16.666666666666668, 3.4837722778320312, "AUTO_CLAMPED"]], "y": [[1.4936577081680298, 0.0, "BEZIER", "AUTO", 16.666666666666668, 1.4936577081680298, "AUTO_CLAMPED"]]}}, "Pump": {"location": {"z": [[-0.0, 683.3333333333334, "LINEAR", "AUTO"], [-0.10627399384975433, 49.999999999999886, "LINEAR", "AUTO"], [-0.7439179420471191, 66.66666666666674, "LINEAR", "AUTO"], [-0.7439179420471191, 200.0, "LINEAR", "AUTO"], [-0.18597948551177979, 66.66666666666674, "LINEAR", "AUTO"], [-0.0, 66.66666666666652, "LINEAR", "AUTO"]]}}, "Shell": {"location": {"x": [[1.5205265935236412e-09, 0.0, "CONSTANT", "AUTO"], [-2.204763704938273e-09, 683.3333333333334, "LINEAR", "AUTO"], [-2.204763704938273e-09, 66.66666666666663, "LINEAR", "AUTO"], [1.5205265935236412e-09, 116.66666666666674, "LINEAR", "AUTO"], [-0.01397116482257843, 66.66666666666663, "LINEAR", "AUTO"], [-0.01397116482257843, 49.999999999999886, "LINEAR", "AUTO"], [1.5205265935236412e-09, 150.0, "BEZIER", "AUTO", 1183.3333333333333, 1.5205265935236412e-09, "AUTO_CLAMPED"]], "z": [[1.2549771070480347, 0.0, "CONSTANT", "AUTO"], [1.2549771070480347, 683.3333333333334, "LINEAR", "AUTO"], [0.4066495895385742, 66.66666666666663, "LINEAR", "AUTO"], [0.4066495895385742, 116.66666666666674, "LINEAR", "AUTO"], [0.4519183039665222, 66.66666666666663, "LINEAR", "AUTO"], [0.4519183039665222, 49.999999999999886, "LINEAR", "AUTO"], [1.2549771070480347, 150.0, "BEZIER", "AUTO", 1183.3333333333333, 1.2549771070480347, "AUTO_CLAMPED"]], "y": [[1.7459099292755127, 0.0, "CONSTANT", "AUTO"], [1.199751853942871, 683.3333333333334, "LINEAR", "AUTO"], [1.199751853942871, 66.66666666666663, "LINEAR", "AUTO"], [1.5027252435684204, 116.66666666666674, "LINEAR", "AUTO"], [1.5814520120620728, 66.66666666666663, "LINEAR", "AUTO"], [1.5814520120620728, 49.999999999999886, "LINEAR", "AUTO"], [1.7459099292755127, 150.0, "BEZIER", "AUTO", 1183.3333333333333, 1.7459099292755127, "AUTO_CLAMPED"]]}, "rotation_euler": {"x": [[0.0, 0.0, "CONSTANT", "AUTO"], [0.0, 683.3333333333334, "LINEAR", "AUTO"], [0.0, 66.66666666666663, "LINEAR", "AUTO"], [-24.580495030325643, 116.66666666666674, "LINEAR", "AUTO"], [-15.192167789711336, 66.66666666666663, "LINEAR", "AUTO"], [-15.192167789711336, 49.999999999999886, "LINEAR", "AUTO"], [0.0, 150.0, "BEZIER", "AUTO", 1183.3333333333333, 0.0, "AUTO_CLAMPED"]], "z": [[0.0, 0.0, "CONSTANT", "AUTO"], [0.0, 683.3333333333334, "LINEAR", "AUTO"], [0.0, 66.66666666666663, "LINEAR", "AUTO"], [0.0, 116.66666666666674, "LINEAR", "AUTO"], [-9.025331207124422e-09, 66.66666666666663, "LINEAR", "AUTO"], [-9.025331207124422e-09, 49.999999999999886, "LINEAR", "AUTO"], [0.0, 150.0, "BEZIER", "AUTO", 1183.3333333333333, 0.0, "AUTO_CLAMPED"]], "y": [[0.0, 0.0, "CONSTANT", "AUTO"], [0.0, 683.3333333333334, "LINEAR", "AUTO"], [0.0, 66.66666666666663, "LINEAR", "AUTO"], [8.004127933608693e-08, 116.66666666666674, "LINEAR", "AUTO"], [1.31019960381489e-07, 66.66666666666663, "LINEAR", "AUTO"], [1.31019960381489e-07, 49.999999999999886, "LINEAR", "AUTO"], [0.0, 150.0, "BEZIER", "AUTO", 1183.3333333333333, 0.0, "AUTO_CLAMPED"]]}}, "Sight": {"rotation_euler": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [-10.132303034637006, 50.0, "LINEAR", "AUTO"], [0.0, 33.33333333333333, "LINEAR", "AUTO"], [0.0, 99.99999999999999, "LINEAR", "AUTO"], [-7.955241708397972, 83.33333333333337, "LINEAR", "AUTO"], [-10.701222787779573, 99.99999999999994, "LINEAR", "AUTO"], [0.0, 116.66666666666669, "LINEAR", "AUTO"]]}, "location": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.0, "AUTO_CLAMPED"]], "z": [[2.990000009536743, 0.0, "BEZIER", "AUTO", 16.666666666666668, 2.990000009536743, "AUTO_CLAMPED"]], "y": [[2.104297161102295, 0.0, "BEZIER", "AUTO", 16.666666666666668, 2.104297161102295, "AUTO_CLAMPED"]]}}}, "FireEmpty": {"Gun": {"location": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [0.0, 50.0, "LINEAR", "AUTO"], [-0.015234995633363724, 133.33333333333331, "LINEAR", "AUTO"], [-0.0032073669135570526, 166.66666666666669, "LINEAR", "AUTO"], [0.0, 150.0, "LINEAR", "AUTO"], [0.1729116439819336, 183.33333333333337, "LINEAR", "AUTO"], [0.13706907629966736, 83.33333333333326, "LINEAR", "AUTO"], [0.13706907629966736, 200.0, "LINEAR", "AUTO"], [0.08123889565467834, 166.66666666666663, "LINEAR", "AUTO"], [0.0, 116.66666666666674, "LINEAR", "AUTO"]], "z": [[-0.0, 0.0, "LINEAR", "AUTO"], [-0.7130982875823975, 50.0, "LINEAR", "AUTO"], [-0.8931010961532593, 133.33333333333331, "LINEAR", "AUTO"], [-0.1880212426185608, 166.66666666666669, "LINEAR", "AUTO"], [-0.0, 150.0, "LINEAR", "AUTO"], [0.07001475989818573, 183.33333333333337, "LINEAR", "AUTO"], [0.3594728708267212, 83.33333333333326, "LINEAR", "AUTO"], [0.3594728708267212, 200.0, "LINEAR", "AUTO"], [0.052131712436676025, 166.66666666666663, "LINEAR", "AUTO"], [-0.0, 116.66666666666674, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [-0.05462139472365379, 50.0, "LINEAR", "AUTO"], [0.33006909489631653, 133.33333333333331, "LINEAR", "AUTO"], [0.06948822736740112, 166.66666666666669, "LINEAR", "AUTO"], [0.0, 150.0, "LINEAR", "AUTO"], [0.1356278508901596, 183.33333333333337, "LINEAR", "AUTO"], [0.16076654195785522, 83.33333333333326, "LINEAR", "AUTO"], [0.16076654195785522, 200.0, "LINEAR", "AUTO"], [0.13280370831489563, 166.66666666666663, "LINEAR", "AUTO"], [0.0, 116.66666666666674, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [5.533829083941263, 83.33333333333333, "LINEAR", "AUTO"], [-6.777895961066664, 133.33333333333337, "LINEAR", "AUTO"], [-1.4269255553586289, 166.66666666666663, "LINEAR", "AUTO"], [0.0, 116.66666666666669, "LINEAR", "AUTO"], [-1.6187724423744758, 216.66666666666663, "LINEAR", "AUTO"], [-3.0496036919995886, 100.0, "LINEAR", "AUTO"], [-1.5771150119048625, 216.66666666666663, "LINEAR", "AUTO"], [-1.3797563756722266, 133.33333333333348, "LINEAR", "AUTO"], [0.0, 116.66666666666652, "LINEAR", "AUTO"]], "z": [[-0.0, 0.0, "LINEAR", "AUTO"], [0.20789931232904474, 83.33333333333333, "LINEAR", "AUTO"], [-0.2137078679498249, 133.33333333333337, "LINEAR", "AUTO"], [-0.04499113641374835, 166.66666666666663, "LINEAR", "AUTO"], [-0.0, 116.66666666666669, "LINEAR", "AUTO"], [6.481160527009576, 216.66666666666663, "LINEAR", "AUTO"], [6.3670886839075465, 100.0, "LINEAR", "AUTO"], [2.910396325865089, 216.66666666666663, "LINEAR", "AUTO"], [2.9018462096847024, 133.33333333333348, "LINEAR", "AUTO"], [-0.0, 116.66666666666652, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [0.299797573280649, 83.33333333333333, "LINEAR", "AUTO"], [-0.3922261210480681, 133.33333333333337, "LINEAR", "AUTO"], [-0.08257391881641295, 166.66666666666663, "LINEAR", "AUTO"], [0.0, 116.66666666666669, "LINEAR", "AUTO"], [-1.7981676810899783, 216.66666666666663, "LINEAR", "AUTO"], [-1.8284025806680975, 100.0, "LINEAR", "AUTO"], [4.424185025436767, 216.66666666666663, "LINEAR", "AUTO"], [0.5393851613977845, 133.33333333333348, "LINEAR", "AUTO"], [0.0, 116.66666666666652, "LINEAR", "AUTO"]]}}, "Loop": {"rotation_euler": {"z": [[0.0, 0.0, "LINEAR", "AUTO"], [28.83552188323058, 50.0, "LINEAR", "AUTO"], [-11.070683087911195, 50.0, "LINEAR", "AUTO"], [-2.56723823045354, 33.33333333333334, "LINEAR", "AUTO"], [7.0765451287518255, 49.99999999999997, "LINEAR", "AUTO"], [80.15762477840892, 116.66666666666669, "LINEAR", "AUTO"], [60.820607917294126, 50.0, "LINEAR", "AUTO"], [-0.0, 83.33333333333337, "LINEAR", "AUTO"]]}, "location": {"x": [[0.2532634139060974, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.2532634139060974, "AUTO_CLAMPED"]], "z": [[3.4837722778320312, 0.0, "BEZIER", "AUTO", 16.666666666666668, 3.4837722778320312, "AUTO_CLAMPED"]], "y": [[1.4936577081680298, 0.0, "BEZIER", "AUTO", 16.666666666666668, 1.4936577081680298, "AUTO_CLAMPED"]]}}, "Pump": {"location": {"z": [[-0.0, 683.3333333333334, "LINEAR", "AUTO"], [-0.10627399384975433, 49.999999999999886, "LINEAR", "AUTO"], [-0.7439179420471191, 66.66666666666674, "LINEAR", "AUTO"], [-0.7439179420471191, 200.0, "LINEAR", "AUTO"], [-0.18597948551177979, 66.66666666666674, "LINEAR", "AUTO"], [-0.0, 66.66666666666652, "LINEAR", "AUTO"]]}}, "Shell": {"location": {"x": [[1.5205265935236412e-09, 0.0, "BEZIER", "AUTO", 16.666666666666668, 1.5205265935236412e-09, "AUTO_CLAMPED"]], "z": [[1.2549771070480347, 0.0, "BEZIER", "AUTO", 16.666666666666668, 1.2549771070480347, "AUTO_CLAMPED"]], "y": [[-4.465472221374512, 0.0, "BEZIER", "AUTO", 16.666666666666668, -4.465472221374512, "AUTO_CLAMPED"]]}}, "Sight": {"rotation_euler": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [-10.132303034637006, 50.0, "LINEAR", "AUTO"], [0.0, 33.33333333333333, "LINEAR", "AUTO"], [0.0, 99.99999999999999, "LINEAR", "AUTO"], [-7.955241708397972, 83.33333333333337, "LINEAR", "AUTO"], [-10.701222787779573, 99.99999999999994, "LINEAR", "AUTO"], [0.0, 116.66666666666669, "LINEAR", "AUTO"]]}, "location": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.0, "AUTO_CLAMPED"]], "z": [[2.990000009536743, 0.0, "BEZIER", "AUTO", 16.666666666666668, 2.990000009536743, "AUTO_CLAMPED"]], "y": [[2.104297161102295, 0.0, "BEZIER", "AUTO", 16.666666666666668, 2.104297161102295, "AUTO_CLAMPED"]]}}}, "Inspect": {"Gun": {"location": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 50.0, 0.0, "AUTO_CLAMPED"], [-0.12323401868343353, 150.0, "BEZIER", "AUTO", 100.0, -0.12323401868343353, "AUTO_CLAMPED", 244.44443384806314, -0.12323401868343353, "AUTO_CLAMPED"], [0.6714629530906677, 283.33333333333337, "BEZIER", "AUTO", 338.8888994852702, 0.6316179633140564, "AUTO_CLAMPED", 550.0, 0.720683217048645, "AUTO_CLAMPED"], [0.720683217048645, 350.0, "BEZIER", "AUTO", 666.6666666666666, 0.6878942847251892, "AUTO_CLAMPED", 822.2222010294596, 0.7316128611564636, "AUTO_CLAMPED"], [0.7498289346694946, 116.66666666666663, "BEZIER", "AUTO", 861.1111323038737, 0.7498289346694946, "AUTO_CLAMPED", 938.8888676961263, 0.7498289346694946, "AUTO_CLAMPED"], [-0.2174956500530243, 116.66666666666663, "BEZIER", "AUTO", 977.7777989705404, -0.2174956500530243, "AUTO_CLAMPED", 1055.555534362793, -0.2174956500530243, "AUTO_CLAMPED"], [0.6381056308746338, 116.66666666666663, "BEZIER", "AUTO", 1094.4444020589192, 0.25491249561309814, "AUTO_CLAMPED", 1177.7777353922525, 1.0760406255722046, "AUTO_CLAMPED"], [1.39745032787323, 133.33333333333326, "BEZIER", "AUTO", 1222.2222646077473, 1.39745032787323, "AUTO_CLAMPED", 1305.5555979410806, 1.39745032787323, "AUTO_CLAMPED"], [0.7498289346694946, 116.66666666666674, "BEZIER", "AUTO", 1344.4444020589192, 0.7582998871803284, "AUTO_CLAMPED", 1416.6666666666667, 0.7425681352615356, "AUTO_CLAMPED"], [0.7425681352615356, 100.00000000000023, "BEZIER", "AUTO", 1450.0, 0.7498289346694946, "AUTO_CLAMPED", 1572.2222646077473, 0.7232059836387634, "AUTO_CLAMPED"], [0.0, 266.6666666666665, "BEZIER", "AUTO", 1661.111068725586, 0.0, "AUTO_CLAMPED", 1838.888931274414, 0.0, "AUTO_CLAMPED"]], "z": [[-0.0, 0.0, "BEZIER", "AUTO", 50.0, -0.0, "AUTO_CLAMPED"], [0.004470236599445343, 150.0, "BEZIER", "AUTO", 100.0, 0.004470236599445343, "AUTO_CLAMPED", 244.44443384806314, 0.004470236599445343, "AUTO_CLAMPED"], [-0.7847118377685547, 283.33333333333337, "BEZIER", "AUTO", 338.8888994852702, -0.7847118377685547, "AUTO_CLAMPED", 550.0, -0.7847118377685547, "AUTO_CLAMPED"], [-0.7614920139312744, 350.0, "BEZIER", "AUTO", 666.6666666666666, -0.7614920139312744, "AUTO_CLAMPED", 822.2222010294596, -0.7614920139312744, "AUTO_CLAMPED"], [-0.8043150305747986, 116.66666666666663, "BEZIER", "AUTO", 861.1111323038737, -0.8043150305747986, "AUTO_CLAMPED", 938.8888676961263, -0.8043150305747986, "AUTO_CLAMPED"], [0.2914704382419586, 116.66666666666663, "BEZIER", "AUTO", 977.7777989705404, 0.2914704382419586, "AUTO_CLAMPED", 1055.555534362793, 0.2914704382419586, "AUTO_CLAMPED"], [-1.007084608078003, 116.66666666666663, "BEZIER", "AUTO", 1094.4444020589192, -0.7027649879455566, "AUTO_CLAMPED", 1177.7777353922525, -1.3548784255981445, "AUTO_CLAMPED"], [-1.3548784255981445, 133.33333333333326, "BEZIER", "AUTO", 1222.2222646077473, -1.3548784255981445, "AUTO_CLAMPED", 1305.5555979410806, -1.3548784255981445, "AUTO_CLAMPED"], [-0.8043150305747986, 116.66666666666674, "BEZIER", "AUTO", 1344.4444020589192, -0.9178578853607178, "AUTO_CLAMPED", 1416.6666666666667, -0.7069925665855408, "AUTO_CLAMPED"], [-0.7069925665855408, 100.00000000000023, "BEZIER", "AUTO", 1450.0, -0.7431455850601196, "AUTO_CLAMPED", 1572.2222646077473, -0.6105844974517822, "AUTO_CLAMPED"], [-0.0, 266.6666666666665, "BEZIER", "AUTO", 1661.111068725586, -0.0, "AUTO_CLAMPED", 1838.888931274414, -0.0, "AUTO_CLAMPED"]], "y": [[0.0, 0.0, "BEZIER", "AUTO", 50.0, 0.0, "AUTO_CLAMPED"], [-0.8819321990013123, 150.0, "BEZIER", "AUTO", 100.0, -0.8819321990013123, "AUTO_CLAMPED", 244.44443384806314, -0.8819321990013123, "AUTO_CLAMPED"], [0.7901571393013, 283.33333333333337, "BEZIER", "AUTO", 338.8888994852702, 0.7901571393013, "AUTO_CLAMPED", 550.0, 0.7901571393013, "AUTO_CLAMPED"], [0.597180962562561, 350.0, "BEZIER", "AUTO", 666.6666666666666, 0.7901571393013, "AUTO_CLAMPED", 822.2222010294596, 0.5328555703163147, "AUTO_CLAMPED"], [0.0791918933391571, 116.66666666666663, "BEZIER", "AUTO", 861.1111323038737, 0.0791918933391571, "AUTO_CLAMPED", 938.8888676961263, 0.0791918933391571, "AUTO_CLAMPED"], [2.510791063308716, 116.66666666666663, "BEZIER", "AUTO", 977.7777989705404, 0.9371596574783325, "AUTO_CLAMPED", 1055.555534362793, 4.084422588348389, "AUTO_CLAMPED"], [5.609644889831543, 116.66666666666663, "BEZIER", "AUTO", 1077.044932047526, 5.669650554656982, "ALIGNED", 1188.8394673665364, 5.550473213195801, "ALIGNED"], [1.905346393585205, 133.33333333333326, "BEZIER", "AUTO", 1222.2222646077473, 3.3027164936065674, "AUTO_CLAMPED", 1305.5555979410806, 0.6826475858688354, "AUTO_CLAMPED"], [0.0791918933391571, 116.66666666666674, "BEZIER", "AUTO", 1344.4444020589192, 0.37730181217193604, "AUTO_CLAMPED", 1416.6666666666667, -0.17633089423179626, "AUTO_CLAMPED"], [-0.42653748393058777, 100.00000000000023, "BEZIER", "AUTO", 1450.0, -0.42653748393058777, "AUTO_CLAMPED", 1572.2222646077473, -0.42653748393058777, "AUTO_CLAMPED"], [0.0, 266.6666666666665, "BEZIER", "AUTO", 1661.111068725586, 0.0, "AUTO_CLAMPED", 1838.888931274414, 0.0, "AUTO_CLAMPED"]]}, "rotation_euler": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 44.444445768992104, 0.0, "AUTO_CLAMPED"], [-4.633752304645683, 133.33333333333334, "BEZIER", "AUTO", 88.88888359069824, -4.633752304645683, "AUTO_CLAMPED", 166.66666666666666, -4.633752304645683, "AUTO_CLAMPED"], [5.477748961987227, 100.0, "BEZIER", "AUTO", 200.0, 5.477748961987227, "AUTO_CLAMPED", 344.44443384806317, 5.477748961987227, "AUTO_CLAMPED"], [-30.605503934936856, 333.33333333333326, "BEZIER", "AUTO", 455.55556615193683, -29.397615716071368, "AUTO_CLAMPED", 638.8888676961263, -31.390630764935235, "AUTO_CLAMPED"], [-31.390630764935235, 216.66666666666674, "BEZIER", "AUTO", 711.1111323038737, -31.390630764935235, "AUTO_CLAMPED", 822.2222010294596, -31.390630764935235, "AUTO_CLAMPED"], [-17.61978265282124, 116.66666666666663, "BEZIER", "EASE_IN_OUT", 861.1111323038737, -19.94842124466849, "AUTO_CLAMPED", 1066.6666666666667, -7.639905534796823, "AUTO_CLAMPED"], [-7.639905534796823, 500.0, "BEZIER", "AUTO", 1233.3333333333335, -17.248046192148713, "AUTO_CLAMPED", 1427.7777353922525, -6.0385489008671165, "AUTO_CLAMPED"], [-2.2699262857418203, 83.33333333333348, "BEZIER", "AUTO", 1455.5555979410808, -3.903406153111743, "AUTO_CLAMPED", 1555.5555979410806, 1.977121198665251, "AUTO_CLAMPED"], [2.8329244783173966, 216.66666666666652, "BEZIER", "AUTO", 1627.7777353922527, 2.8329244783173966, "AUTO_CLAMPED", 1750.0, 2.8329244783173966, "AUTO_CLAMPED"], [0.0, 149.99999999999977, "BEZIER", "AUTO", 1800.0, 0.0, "AUTO_CLAMPED", 1900.0, 0.0, "AUTO_CLAMPED"]], "z": [[-0.0, 0.0, "BEZIER", "AUTO", 44.444445768992104, -0.0, "AUTO_CLAMPED"], [-3.1105595018039556, 133.33333333333334, "BEZIER", "AUTO", 88.88888359069824, -1.7627949851521283, "AUTO_CLAMPED", 177.77778307596842, -4.458324018455783, "AUTO_CLAMPED"], [-6.432775040042382, 133.33333333333334, "BEZIER", "AUTO", 222.22221692403158, -5.391058066607309, "AUTO_CLAMPED", 366.66666666666663, -8.776637696662767, "AUTO_CLAMPED"], [-11.67222638585068, 299.99999999999994, "BEZIER", "AUTO", 466.6666666666667, -11.67222638585068, "AUTO_CLAMPED", 638.8888676961263, -11.67222638585068, "AUTO_CLAMPED"], [-4.456549023045226, 216.66666666666674, "BEZIER", "AUTO", 711.1111323038737, -4.456549023045226, "AUTO_CLAMPED", 822.2222010294596, -4.456549023045226, "AUTO_CLAMPED"], [-13.314149220808385, 116.66666666666663, "BEZIER", "EASE_IN_OUT", 861.1111323038737, -4.456549023045226, "AUTO_CLAMPED", 1066.6666666666667, -51.27529219370166, "AUTO_CLAMPED"], [-361.35626702102377, 500.0, "BEZIER", "AUTO", 1233.3333333333335, -361.35626702102377, "AUTO_CLAMPED", 1427.7777353922525, -361.35626702102377, "AUTO_CLAMPED"], [-355.8403428511049, 83.33333333333348, "BEZIER", "AUTO", 1455.5555979410808, -357.0212279170867, "AUTO_CLAMPED", 1555.5555979410806, -352.7700635361574, "AUTO_CLAMPED"], [-352.7700635361574, 216.66666666666652, "BEZIER", "AUTO", 1627.7777353922527, -352.7700635361574, "AUTO_CLAMPED", 1750.0, -352.7700635361574, "AUTO_CLAMPED"], [-360.00001001791264, 149.99999999999977, "BEZIER", "AUTO", 1800.0, -360.00001001791264, "AUTO_CLAMPED", 1900.0, -360.00001001791264, "AUTO_CLAMPED"]], "y": [[0.0, 0.0, "BEZIER", "AUTO", 44.444445768992104, 0.0, "AUTO_CLAMPED"], [0.33971415928555554, 133.33333333333334, "BEZIER", "AUTO", 88.88888359069824, 0.33971415928555554, "AUTO_CLAMPED", 177.77778307596842, 0.33971415928555554, "AUTO_CLAMPED"], [-0.41244006589672083, 133.33333333333334, "BEZIER", "AUTO", 222.22221692403158, -0.41244006589672083, "AUTO_CLAMPED", 366.66666666666663, -0.41244006589672083, "AUTO_CLAMPED"], [44.46649859126397, 299.99999999999994, "BEZIER", "AUTO", 466.6666666666667, 44.46649859126397, "AUTO_CLAMPED", 638.8888676961263, 44.46649859126397, "AUTO_CLAMPED"], [44.02138882343258, 216.66666666666674, "BEZIER", "AUTO", 711.1111323038737, 44.02138882343258, "AUTO_CLAMPED", 822.2222010294596, 44.02138882343258, "AUTO_CLAMPED"], [47.94823533200216, 116.66666666666663, "BEZIER", "EASE_IN_OUT", 861.1111323038737, 47.88392910096649, "AUTO_CLAMPED", 1066.6666666666667, 48.223830049917595, "AUTO_CLAMPED"], [48.223830049917595, 500.0, "BEZIER", "AUTO", 1233.3333333333335, 47.94823533200216, "AUTO_CLAMPED", 1427.7777353922525, 48.26976307208593, "AUTO_CLAMPED"], [48.38842053344197, 83.33333333333348, "BEZIER", "AUTO", 1455.5555979410808, 48.38842053344197, "AUTO_CLAMPED", 1555.5555979410806, 48.38842053344197, "AUTO_CLAMPED"], [5.144987695152906, 216.66666666666652, "BEZIER", "AUTO", 1627.7777353922527, 12.57663649328781, "AUTO_CLAMPED", 1750.0, 0.0, "AUTO_CLAMPED"], [0.0, 149.99999999999977, "BEZIER", "AUTO", 1800.0, 0.0, "AUTO_CLAMPED", 1900.0, 0.0, "AUTO_CLAMPED"]]}}, "Loop": {"rotation_euler": {"z": [[-0.0, 516.6666666666666, "BEZIER", "AUTO", 544.444465637207, -0.0, "AUTO_CLAMPED"], [46.517741002802204, 83.33333333333337, "BOUNCE", "AUTO", 572.2222010294596, 46.517741002802204, "AUTO_CLAMPED"], [-0.0, 250.0, "BEZIER", "AUTO", 866.6666666666667, -0.0, "AUTO_CLAMPED"], [-0.0, 50.0, "BEZIER", "EASE_IN", 883.3333333333333, -0.0, "AUTO_CLAMPED", 983.3333333333333, -0.0, "AUTO_CLAMPED"], [142.2283622194905, 250.0, "BEZIER", "AUTO", 1066.6666666666667, 142.2283622194905, "AUTO_CLAMPED", 1216.6666666666665, 142.2283622194905, "AUTO_CLAMPED"], [142.2283622194905, 200.0, "BOUNCE", "AUTO", 1283.3333333333333, 142.2283622194905, "AUTO_CLAMPED"], [-0.0, 300.0, "BEZIER", "AUTO", 1750.0, -0.0, "AUTO_CLAMPED"]]}, "location": {"x": [[0.2532634139060974, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.2532634139060974, "AUTO_CLAMPED"]], "z": [[3.4837722778320312, 0.0, "BEZIER", "AUTO", 16.666666666666668, 3.4837722778320312, "AUTO_CLAMPED"]], "y": [[1.4936577081680298, 0.0, "BEZIER", "AUTO", 16.666666666666668, 1.4936577081680298, "AUTO_CLAMPED"]]}}, "Pump": {"location": {"z": [[-0.0, 483.3333333333333, "BEZIER", "AUTO", 533.3333333333334, -0.0, "AUTO_CLAMPED"], [-0.5437495112419128, 149.99999999999994, "BEZIER", "AUTO", 583.3333333333334, -0.5437495112419128, "AUTO_CLAMPED", 894.444465637207, -0.5437495112419128, "AUTO_CLAMPED"], [-0.5437495112419128, 783.3333333333335, "BEZIER", "AUTO", 1155.5555979410808, -0.5437495112419128, "AUTO_CLAMPED", 1461.111068725586, -0.5437495112419128, "AUTO_CLAMPED"], [-0.0, 133.33333333333326, "BEZIER", "AUTO", 1505.5555979410806, -0.0, "AUTO_CLAMPED", 1594.4444020589192, -0.0, "AUTO_CLAMPED"]]}}, "Shell": {"location": {"z": [[1.2549771070480347, 0.0, "BEZIER", "AUTO", 161.11111640930176, 1.2549771070480347, "AUTO_CLAMPED"], [1.2549771070480347, 483.3333333333333, "BEZIER", "AUTO", 322.22220102945965, 1.2549771070480347, "AUTO_CLAMPED", 533.3333333333334, 1.2549771070480347, "AUTO_CLAMPED"], [0.6961657404899597, 149.99999999999994, "BEZIER", "AUTO", 583.3333333333334, 0.6961657404899597, "AUTO_CLAMPED", 894.444465637207, 0.6961657404899597, "AUTO_CLAMPED"], [0.6961657404899597, 783.3333333333335, "BEZIER", "AUTO", 1155.5555979410808, 0.6961657404899597, "AUTO_CLAMPED", 1461.111068725586, 0.6961657404899597, "AUTO_CLAMPED"], [1.2549771070480347, 133.33333333333326, "BEZIER", "AUTO", 1505.5555979410806, 1.2549771070480347, "AUTO_CLAMPED", 1594.4444020589192, 1.2549771070480347, "AUTO_CLAMPED"]], "x": [[1.5205265935236412e-09, 0.0, "BEZIER", "AUTO", 16.666666666666668, 1.5205265935236412e-09, "AUTO_CLAMPED"]], "y": [[1.7459099292755127, 0.0, "BEZIER", "AUTO", 16.666666666666668, 1.7459099292755127, "AUTO_CLAMPED"]]}}, "Sight": {"rotation_euler": {"x": [[0.0, 1083.3333333333333, "BEZIER", "AUTO", 1161.111068725586, 0.0, "AUTO_CLAMPED"], [-59.84361082822633, 233.33333333333348, "BOUNCE", "AUTO", 1238.888931274414, -59.84361082822633, "AUTO_CLAMPED"], [0.0, 350.0, "BEZIER", "AUTO", 1783.3333333333333, 0.0, "AUTO_CLAMPED"]]}, "location": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.0, "AUTO_CLAMPED"]], "z": [[2.990000009536743, 0.0, "BEZIER", "AUTO", 16.666666666666668, 2.990000009536743, "AUTO_CLAMPED"]], "y": [[2.104297161102295, 0.0, "BEZIER", "AUTO", 16.666666666666668, 2.104297161102295, "AUTO_CLAMPED"]]}}}, "Jammed": {"Gun": {"location": {"x": [[1.7611019611358643, 0.0, "BEZIER", "AUTO", 72.22222487131755, 1.7611019611358643, "AUTO_CLAMPED"], [0.4335063397884369, 216.66666666666669, "BEZIER", "AUTO", 144.44443384806317, 0.4335063397884369, "AUTO_CLAMPED", 261.11111640930176, 0.4335063397884369, "AUTO_CLAMPED"], [0.5203688144683838, 133.33333333333331, "BEZIER", "AUTO", 305.55556615193683, 0.5203688144683838, "AUTO_CLAMPED", 394.44443384806317, 0.5203688144683838, "AUTO_CLAMPED"], [0.5093004703521729, 133.33333333333331, "BEZIER", "AUTO", 438.88889948527014, 0.5203688144683838, "AUTO_CLAMPED", 516.6666666666666, 0.5009992122650146, "AUTO_CLAMPED"], [0.46423017978668213, 100.00000000000006, "BEZIER", "AUTO", 550.0, 0.46423017978668213, "AUTO_CLAMPED", 611.1111323038737, 0.46423017978668213, "AUTO_CLAMPED"], [0.5423690676689148, 83.33333333333326, "BEZIER", "AUTO", 638.8888676961263, 0.5423690676689148, "AUTO_CLAMPED", 716.6666666666666, 0.5423690676689148, "AUTO_CLAMPED"], [0.46423017978668213, 150.0, "BEZIER", "AUTO", 766.6666666666666, 0.483991414308548, "AUTO_CLAMPED", 877.7777989705403, 0.4400775730609894, "AUTO_CLAMPED"], [0.4400775730609894, 183.33333333333337, "BEZIER", "AUTO", 938.8888676961263, 0.46423017978668213, "AUTO_CLAMPED", 1072.2222646077473, 0.4115335941314697, "AUTO_CLAMPED"], [0.0, 216.66666666666652, "BEZIER", "AUTO", 1144.4444020589192, 0.0, "AUTO_CLAMPED", 1288.888931274414, 0.0, "AUTO_CLAMPED"]], "z": [[0.31467199325561523, 0.0, "BEZIER", "AUTO", 72.22222487131755, 0.31467199325561523, "AUTO_CLAMPED"], [0.1592063307762146, 216.66666666666669, "BEZIER", "AUTO", 144.44443384806317, 0.1592063307762146, "AUTO_CLAMPED", 261.11111640930176, 0.1592063307762146, "AUTO_CLAMPED"], [0.6345540285110474, 133.33333333333331, "BEZIER", "AUTO", 305.55556615193683, 0.6345540285110474, "AUTO_CLAMPED", 394.44443384806317, 0.6345540285110474, "AUTO_CLAMPED"], [0.5526263117790222, 133.33333333333331, "BEZIER", "AUTO", 438.88889948527014, 0.6345540285110474, "AUTO_CLAMPED", 516.6666666666666, 0.49118053913116455, "AUTO_CLAMPED"], [0.21367275714874268, 100.00000000000006, "BEZIER", "AUTO", 550.0, 0.3746391534805298, "AUTO_CLAMPED", 611.1111323038737, 0.07953411340713501, "AUTO_CLAMPED"], [-0.08545513451099396, 83.33333333333326, "BEZIER", "AUTO", 638.8888676961263, -0.08545513451099396, "AUTO_CLAMPED", 716.6666666666666, -0.08545513451099396, "AUTO_CLAMPED"], [0.21367275714874268, 150.0, "BEZIER", "AUTO", 766.6666666666666, 0.21367275714874268, "AUTO_CLAMPED", 877.7777989705403, 0.21367275714874268, "AUTO_CLAMPED"], [-0.23178784549236298, 183.33333333333337, "BEZIER", "AUTO", 938.8888676961263, -0.23178784549236298, "AUTO_CLAMPED", 1072.2222646077473, -0.23178784549236298, "AUTO_CLAMPED"], [-0.0, 216.66666666666652, "BEZIER", "AUTO", 1144.4444020589192, -0.0, "AUTO_CLAMPED", 1288.888931274414, -0.0, "AUTO_CLAMPED"]], "y": [[0.8750439286231995, 0.0, "BEZIER", "AUTO", 72.22222487131755, 0.8750439286231995, "AUTO_CLAMPED"], [0.8282241821289062, 216.66666666666669, "BEZIER", "AUTO", 144.44443384806317, 0.8282241821289062, "AUTO_CLAMPED", 261.11111640930176, 0.8282241821289062, "AUTO_CLAMPED"], [0.8524319529533386, 133.33333333333331, "BEZIER", "AUTO", 305.55556615193683, 0.8524319529533386, "AUTO_CLAMPED", 394.44443384806317, 0.8524319529533386, "AUTO_CLAMPED"], [0.694107174873352, 133.33333333333331, "BEZIER", "AUTO", 438.88889948527014, 0.7370265126228333, "AUTO_CLAMPED", 516.6666666666666, 0.6619176864624023, "AUTO_CLAMPED"], [0.5792746543884277, 100.00000000000006, "BEZIER", "AUTO", 550.0, 0.6705016493797302, "AUTO_CLAMPED", 611.1111323038737, 0.5032521486282349, "AUTO_CLAMPED"], [0.3579166531562805, 83.33333333333326, "BEZIER", "AUTO", 638.8888676961263, 0.3579166531562805, "AUTO_CLAMPED", 716.6666666666666, 0.3579166531562805, "AUTO_CLAMPED"], [0.5792746543884277, 150.0, "BEZIER", "AUTO", 766.6666666666666, 0.5792746543884277, "AUTO_CLAMPED", 877.7777989705403, 0.5792746543884277, "AUTO_CLAMPED"], [0.12604567408561707, 183.33333333333337, "BEZIER", "AUTO", 938.8888676961263, 0.23269972205162048, "AUTO_CLAMPED", 1072.2222646077473, 0.0, "AUTO_CLAMPED"], [0.0, 216.66666666666652, "BEZIER", "AUTO", 1144.4444020589192, 0.0, "AUTO_CLAMPED", 1288.888931274414, 0.0, "AUTO_CLAMPED"]]}, "rotation_euler": {"x": [[-18.983153297952903, 0.0, "BEZIER", "AUTO", 88.88889153798421, -18.983153297952903, "AUTO_CLAMPED"], [-19.09516157015194, 266.6666666666667, "BEZIER", "AUTO", 177.77776718139648, -18.983153297952903, "AUTO_CLAMPED", 300.0, -19.137165526000228, "AUTO_CLAMPED"], [-22.28346484640992, 99.99999999999994, "BEZIER", "AUTO", 333.3333333333333, -22.28346484640992, "AUTO_CLAMPED", 405.55556615193683, -22.28346484640992, "AUTO_CLAMPED"], [-17.511022135572542, 116.66666666666669, "BEZIER", "AUTO", 444.44443384806317, -18.973317825548083, "AUTO_CLAMPED", 516.6666666666666, -16.25762607381455, "AUTO_CLAMPED"], [-14.249356651213104, 100.00000000000006, "BEZIER", "AUTO", 550.0, -16.361834269981436, "AUTO_CLAMPED", 611.1111323038737, -12.488958208686002, "AUTO_CLAMPED"], [-9.18919392913623, 83.33333333333326, "BEZIER", "AUTO", 638.8888676961263, -9.18919392913623, "AUTO_CLAMPED", 716.6666666666666, -9.18919392913623, "AUTO_CLAMPED"], [-14.249356651213104, 150.0, "BEZIER", "AUTO", 766.6666666666666, -14.249356651213104, "AUTO_CLAMPED", 877.7777989705403, -14.249356651213104, "AUTO_CLAMPED"], [-4.831175507510316, 183.33333333333337, "BEZIER", "AUTO", 938.8888676961263, -7.957230147220092, "AUTO_CLAMPED", 1094.4444020589192, 0.0, "AUTO_CLAMPED"], [0.0, 283.33333333333326, "BEZIER", "AUTO", 1188.888931274414, 0.0, "AUTO_CLAMPED", 1377.7777353922527, 0.0, "AUTO_CLAMPED"]], "z": [[86.04810969222216, 0.0, "BEZIER", "AUTO", 88.88889153798421, 86.04810969222216, "AUTO_CLAMPED"], [12.109782818233683, 266.6666666666667, "BEZIER", "AUTO", 177.77776718139648, 12.109782818233683, "AUTO_CLAMPED", 300.0, 12.109782818233683, "AUTO_CLAMPED"], [14.211438856035777, 99.99999999999994, "BEZIER", "AUTO", 333.3333333333333, 14.211438856035777, "AUTO_CLAMPED", 405.55556615193683, 14.211438856035777, "AUTO_CLAMPED"], [11.62535165135053, 116.66666666666669, "BEZIER", "AUTO", 444.44443384806317, 12.759742765878451, "AUTO_CLAMPED", 516.6666666666666, 10.65301616639127, "AUTO_CLAMPED"], [9.913802721767361, 100.00000000000006, "BEZIER", "AUTO", 550.0, 9.913802721767361, "AUTO_CLAMPED", 611.1111323038737, 9.913802721767361, "AUTO_CLAMPED"], [14.555850291160024, 83.33333333333326, "BEZIER", "AUTO", 638.8888676961263, 14.555850291160024, "AUTO_CLAMPED", 716.6666666666666, 14.555850291160024, "AUTO_CLAMPED"], [9.913802721767361, 150.0, "BEZIER", "AUTO", 766.6666666666666, 9.913802721767361, "AUTO_CLAMPED", 877.7777989705403, 9.913802721767361, "AUTO_CLAMPED"], [10.868919299829018, 183.33333333333337, "BEZIER", "AUTO", 938.8888676961263, 10.868919299829018, "AUTO_CLAMPED", 1094.4444020589192, 10.868919299829018, "AUTO_CLAMPED"], [-0.0, 283.33333333333326, "BEZIER", "AUTO", 1188.888931274414, -0.0, "AUTO_CLAMPED", 1377.7777353922527, -0.0, "AUTO_CLAMPED"]], "y": [[29.613753637261834, 0.0, "BEZIER", "AUTO", 88.88889153798421, 29.613753637261834, "AUTO_CLAMPED"], [14.500921909854782, 266.6666666666667, "BEZIER", "AUTO", 177.77776718139648, 14.500921909854782, "AUTO_CLAMPED", 300.0, 14.500921909854782, "AUTO_CLAMPED"], [14.956577489764673, 99.99999999999994, "BEZIER", "AUTO", 333.3333333333333, 14.956577489764673, "AUTO_CLAMPED", 405.55556615193683, 14.956577489764673, "AUTO_CLAMPED"], [12.810625967647754, 116.66666666666669, "BEZIER", "AUTO", 444.44443384806317, 13.804464595661505, "AUTO_CLAMPED", 516.6666666666666, 11.958763920590117, "AUTO_CLAMPED"], [8.863413542520487, 100.00000000000006, "BEZIER", "AUTO", 550.0, 11.223185844151947, "AUTO_CLAMPED", 611.1111323038737, 6.896936339903054, "AUTO_CLAMPED"], [3.8025490185063964, 83.33333333333326, "BEZIER", "AUTO", 638.8888676961263, 3.8025490185063964, "AUTO_CLAMPED", 716.6666666666666, 3.8025490185063964, "AUTO_CLAMPED"], [8.863413542520487, 150.0, "BEZIER", "AUTO", 766.6666666666666, 8.863413542520487, "AUTO_CLAMPED", 877.7777989705403, 8.863413542520487, "AUTO_CLAMPED"], [4.843448503675183, 183.33333333333337, "BEZIER", "AUTO", 938.8888676961263, 6.679401645027318, "AUTO_CLAMPED", 1094.4444020589192, 2.0060666865941186, "AUTO_CLAMPED"], [0.0, 283.33333333333326, "BEZIER", "AUTO", 1188.888931274414, 0.0, "AUTO_CLAMPED", 1377.7777353922527, 0.0, "AUTO_CLAMPED"]]}}, "Pump": {"location": {"z": [[-0.0, 250.0, "BEZIER", "AUTO", 294.4444338480631, -0.0, "AUTO_CLAMPED"], [-0.7347903847694397, 133.33333333333331, "BEZIER", "AUTO", 338.8888994852702, -0.7347903847694397, "AUTO_CLAMPED", 438.88889948527014, -0.7347903847694397, "AUTO_CLAMPED"], [-0.7347903847694397, 166.66666666666669, "BEZIER", "EASE_OUT", 494.4444338480631, -0.7347903847694397, "AUTO_CLAMPED", 561.1111323038737, -0.7347903847694397, "AUTO_CLAMPED"], [-0.5442891716957092, 33.33333333333337, "BEZIER", "AUTO", 572.2222010294596, -0.5442891716957092, "AUTO_CLAMPED", 627.7777989705403, -0.5442891716957092, "AUTO_CLAMPED"], [-0.5442891716957092, 133.33333333333326, "BEZIER", "AUTO", 672.2222010294596, -0.5442891716957092, "AUTO_CLAMPED", 733.3333333333333, -0.5442891716957092, "AUTO_CLAMPED"], [-0.7347903847694397, 50.0, "BEZIER", "EASE_OUT", 750.0, -0.7347903847694397, "AUTO_CLAMPED", 805.555534362793, -0.7347903847694397, "AUTO_CLAMPED"], [-0.7347903847694397, 116.66666666666663, "BEZIER", "EASE_OUT", 844.444465637207, -0.7347903847694397, "AUTO_CLAMPED", 916.6666666666666, -0.7347903847694397, "AUTO_CLAMPED"], [-0.0, 100.0, "BEZIER", "AUTO", 950.0, -0.0, "AUTO_CLAMPED", 1016.6666666666666, -0.0, "AUTO_CLAMPED"]]}}, "Shell": {"location": {"x": [[-0.0016984597314149141, 0.0, "BEZIER", "AUTO", 83.33333333333333, -0.0016984597314149141, "AUTO_CLAMPED"], [-0.0016984597314149141, 250.0, "BEZIER", "AUTO", 166.66666666666666, -0.0016984597314149141, "AUTO_CLAMPED", 294.4444338480631, -0.0016984597314149141, "AUTO_CLAMPED"], [-0.007186012342572212, 133.33333333333331, "BEZIER", "AUTO", 338.8888994852702, -0.007186012342572212, "AUTO_CLAMPED", 438.88889948527014, -0.007186012342572212, "AUTO_CLAMPED"], [-0.007186012342572212, 166.66666666666669, "BEZIER", "AUTO", 494.4444338480631, -0.007186012342572212, "AUTO_CLAMPED", 561.1111323038737, -0.007186012342572212, "AUTO_CLAMPED"], [-0.005604023113846779, 33.33333333333337, "BEZIER", "AUTO", 572.2222010294596, -0.005604023113846779, "AUTO_CLAMPED", 627.7777989705403, -0.005604023113846779, "AUTO_CLAMPED"], [-0.005604023113846779, 133.33333333333326, "BEZIER", "AUTO", 672.2222010294596, -0.005604023113846779, "AUTO_CLAMPED", 733.3333333333333, -0.005604023113846779, "AUTO_CLAMPED"], [-0.00728671345859766, 50.0, "BEZIER", "AUTO", 750.0, -0.00728671345859766, "AUTO_CLAMPED", 805.555534362793, -0.00728671345859766, "AUTO_CLAMPED"], [-0.00728671345859766, 116.66666666666663, "BEZIER", "AUTO", 844.444465637207, -0.00728671345859766, "AUTO_CLAMPED", 916.6666666666666, -0.00728671345859766, "AUTO_CLAMPED"], [1.5205265935236412e-09, 100.0, "CONSTANT", "AUTO", 950.0, 1.5205265935236412e-09, "AUTO_CLAMPED"], [-0.00728671345859766, 33.33333333333337, "BEZIER", "AUTO", 1027.7777989705403, -0.00728671345859766, "AUTO_CLAMPED"]], "z": [[1.2552038431167603, 0.0, "BEZIER", "AUTO", 83.33333333333333, 1.2552038431167603, "AUTO_CLAMPED"], [1.2552038431167603, 250.0, "BEZIER", "AUTO", 166.66666666666666, 1.2552038431167603, "AUTO_CLAMPED", 294.4444338480631, 1.2552038431167603, "AUTO_CLAMPED"], [0.5118296146392822, 133.33333333333331, "BEZIER", "AUTO", 338.8888994852702, 0.5118296146392822, "AUTO_CLAMPED", 438.88889948527014, 0.5118296146392822, "AUTO_CLAMPED"], [0.5118296146392822, 166.66666666666669, "BEZIER", "AUTO", 494.4444338480631, 0.5118296146392822, "AUTO_CLAMPED", 561.1111323038737, 0.5118296146392822, "AUTO_CLAMPED"], [0.7032749652862549, 33.33333333333337, "BEZIER", "AUTO", 572.2222010294596, 0.7032749652862549, "AUTO_CLAMPED", 627.7777989705403, 0.7032749652862549, "AUTO_CLAMPED"], [0.7032749652862549, 133.33333333333326, "BEZIER", "AUTO", 672.2222010294596, 0.7032749652862549, "AUTO_CLAMPED", 733.3333333333333, 0.7032749652862549, "AUTO_CLAMPED"], [0.5241438150405884, 50.0, "BEZIER", "AUTO", 750.0, 0.5241438150405884, "AUTO_CLAMPED", 805.555534362793, 0.5241438150405884, "AUTO_CLAMPED"], [0.5241438150405884, 116.66666666666663, "BEZIER", "AUTO", 844.444465637207, 0.5241438150405884, "AUTO_CLAMPED", 916.6666666666666, 0.5241438150405884, "AUTO_CLAMPED"], [1.2549771070480347, 100.0, "CONSTANT", "AUTO", 950.0, 1.2549771070480347, "AUTO_CLAMPED"], [0.5241438150405884, 33.33333333333337, "BEZIER", "AUTO", 1027.7777989705403, 0.5241438150405884, "AUTO_CLAMPED"]], "y": [[1.7186778783798218, 0.0, "BEZIER", "AUTO", 83.33333333333333, 1.7186778783798218, "AUTO_CLAMPED"], [1.7186778783798218, 250.0, "BEZIER", "AUTO", 166.66666666666666, 1.7186778783798218, "AUTO_CLAMPED", 294.4444338480631, 1.7186778783798218, "AUTO_CLAMPED"], [1.6501657962799072, 133.33333333333331, "BEZIER", "AUTO", 338.8888994852702, 1.6501657962799072, "AUTO_CLAMPED", 438.88889948527014, 1.6501657962799072, "AUTO_CLAMPED"], [1.6501657962799072, 166.66666666666669, "BEZIER", "AUTO", 494.4444338480631, 1.6501657962799072, "AUTO_CLAMPED", 561.1111323038737, 1.6501657962799072, "AUTO_CLAMPED"], [1.6572562456130981, 33.33333333333337, "BEZIER", "AUTO", 572.2222010294596, 1.6572562456130981, "AUTO_CLAMPED", 627.7777989705403, 1.6572562456130981, "AUTO_CLAMPED"], [1.6572562456130981, 133.33333333333326, "BEZIER", "AUTO", 672.2222010294596, 1.6572562456130981, "AUTO_CLAMPED", 733.3333333333333, 1.6572562456130981, "AUTO_CLAMPED"], [1.6632939577102661, 50.0, "BEZIER", "AUTO", 750.0, 1.6632939577102661, "AUTO_CLAMPED", 805.555534362793, 1.6632939577102661, "AUTO_CLAMPED"], [1.6632939577102661, 116.66666666666663, "BEZIER", "AUTO", 844.444465637207, 1.6632939577102661, "AUTO_CLAMPED", 916.6666666666666, 1.6632939577102661, "AUTO_CLAMPED"], [1.7459099292755127, 100.0, "CONSTANT", "AUTO", 950.0, 1.7459099292755127, "AUTO_CLAMPED"], [1.6632939577102661, 33.33333333333337, "BEZIER", "AUTO", 1027.7777989705403, 1.6632939577102661, "AUTO_CLAMPED"]]}, "rotation_euler": {"x": [[-7.092402266683656, 0.0, "BEZIER", "AUTO", 83.33333333333333, -7.092402266683656, "AUTO_CLAMPED"], [-7.092402266683656, 250.0, "BEZIER", "AUTO", 166.66666666666666, -7.092402266683656, "AUTO_CLAMPED", 294.4444338480631, -7.092402266683656, "AUTO_CLAMPED"], [-7.092402266683656, 133.33333333333331, "BEZIER", "AUTO", 338.8888994852702, -7.092402266683656, "AUTO_CLAMPED", 438.88889948527014, -7.092402266683656, "AUTO_CLAMPED"], [-7.092402266683656, 166.66666666666669, "BEZIER", "AUTO", 494.4444338480631, -7.092402266683656, "AUTO_CLAMPED", 561.1111323038737, -7.092402266683656, "AUTO_CLAMPED"], [-15.248571491877302, 33.33333333333337, "BEZIER", "AUTO", 572.2222010294596, -15.248571491877302, "AUTO_CLAMPED", 627.7777989705403, -15.248571491877302, "AUTO_CLAMPED"], [-15.248571491877302, 133.33333333333326, "BEZIER", "AUTO", 672.2222010294596, -15.248571491877302, "AUTO_CLAMPED", 733.3333333333333, -15.248571491877302, "AUTO_CLAMPED"], [-7.092402266683656, 50.0, "BEZIER", "AUTO", 750.0, -7.092402266683656, "AUTO_CLAMPED", 805.555534362793, -7.092402266683656, "AUTO_CLAMPED"], [-7.092402266683656, 116.66666666666663, "BEZIER", "AUTO", 844.444465637207, -7.092402266683656, "AUTO_CLAMPED", 916.6666666666666, -7.092402266683656, "AUTO_CLAMPED"], [0.0, 100.0, "CONSTANT", "AUTO", 950.0, 0.0, "AUTO_CLAMPED"], [-7.092402266683656, 33.33333333333337, "BEZIER", "AUTO", 1027.7777989705403, -7.092402266683656, "AUTO_CLAMPED"]], "z": [[0.9713454276947256, 0.0, "BEZIER", "AUTO", 83.33333333333333, 0.9713454276947256, "AUTO_CLAMPED"], [0.9713454276947256, 250.0, "BEZIER", "AUTO", 166.66666666666666, 0.9713454276947256, "AUTO_CLAMPED", 294.4444338480631, 0.9713454276947256, "AUTO_CLAMPED"], [0.9713454276947256, 133.33333333333331, "BEZIER", "AUTO", 338.8888994852702, 0.9713454276947256, "AUTO_CLAMPED", 438.88889948527014, 0.9713454276947256, "AUTO_CLAMPED"], [0.9713454276947256, 166.66666666666669, "BEZIER", "AUTO", 494.4444338480631, 0.9713454276947256, "AUTO_CLAMPED", 561.1111323038737, 0.9713454276947256, "AUTO_CLAMPED"], [1.0169068448835306, 33.33333333333337, "BEZIER", "AUTO", 572.2222010294596, 1.0169068448835306, "AUTO_CLAMPED", 627.7777989705403, 1.0169068448835306, "AUTO_CLAMPED"], [1.0169068448835306, 133.33333333333326, "BEZIER", "AUTO", 672.2222010294596, 1.0169068448835306, "AUTO_CLAMPED", 733.3333333333333, 1.0169068448835306, "AUTO_CLAMPED"], [0.9713454276947256, 50.0, "BEZIER", "AUTO", 750.0, 0.9713454276947256, "AUTO_CLAMPED", 805.555534362793, 0.9713454276947256, "AUTO_CLAMPED"], [0.9713454276947256, 116.66666666666663, "BEZIER", "AUTO", 844.444465637207, 0.9713454276947256, "AUTO_CLAMPED", 916.6666666666666, 0.9713454276947256, "AUTO_CLAMPED"], [-0.0, 100.0, "CONSTANT", "AUTO", 950.0, -0.0, "AUTO_CLAMPED"], [0.9713454276947256, 33.33333333333337, "BEZIER", "AUTO", 1027.7777989705403, 0.9713454276947256, "AUTO_CLAMPED"]], "y": [[0.39039896540381036, 0.0, "BEZIER", "AUTO", 83.33333333333333, 0.39039896540381036, "AUTO_CLAMPED"], [0.39039896540381036, 250.0, "BEZIER", "AUTO", 166.66666666666666, 0.39039896540381036, "AUTO_CLAMPED", 294.4444338480631, 0.39039896540381036, "AUTO_CLAMPED"], [0.39039896540381036, 133.33333333333331, "BEZIER", "AUTO", 338.8888994852702, 0.39039896540381036, "AUTO_CLAMPED", 438.88889948527014, 0.39039896540381036, "AUTO_CLAMPED"], [0.39039896540381036, 166.66666666666669, "BEZIER", "AUTO", 494.4444338480631, 0.39039896540381036, "AUTO_CLAMPED", 561.1111323038737, 0.39039896540381036, "AUTO_CLAMPED"], [0.24863083861951166, 33.33333333333337, "BEZIER", "AUTO", 572.2222010294596, 0.24863083861951166, "AUTO_CLAMPED", 627.7777989705403, 0.24863083861951166, "AUTO_CLAMPED"], [0.24863083861951166, 133.33333333333326, "BEZIER", "AUTO", 672.2222010294596, 0.24863083861951166, "AUTO_CLAMPED", 733.3333333333333, 0.24863083861951166, "AUTO_CLAMPED"], [0.39039896540381036, 50.0, "BEZIER", "AUTO", 750.0, 0.39039896540381036, "AUTO_CLAMPED", 805.555534362793, 0.39039896540381036, "AUTO_CLAMPED"], [0.39039896540381036, 116.66666666666663, "BEZIER", "AUTO", 844.444465637207, 0.39039896540381036, "AUTO_CLAMPED", 916.6666666666666, 0.39039896540381036, "AUTO_CLAMPED"], [0.0, 100.0, "CONSTANT", "AUTO", 950.0, 0.0, "AUTO_CLAMPED"], [0.39039896540381036, 33.33333333333337, "BEZIER", "AUTO", 1027.7777989705403, 0.39039896540381036, "AUTO_CLAMPED"]]}}}, "Reload": {"GuardInner": {"location": {"x": [[3.725290298461914e-09, 0.0, "LINEAR", "AUTO"]], "z": [[0.8854429721832275, 0.0, "LINEAR", "AUTO"]], "y": [[0.8707519173622131, 0.0, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[0.0, 350.0, "LINEAR", "AUTO"], [16.02038116054145, 83.33333333333337, "LINEAR", "AUTO"], [23.71116221314476, 83.33333333333326, "LINEAR", "AUTO"], [23.71116221314476, 66.66666666666674, "LINEAR", "AUTO"], [0.0, 83.33333333333326, "LINEAR", "AUTO"]]}}, "GuardOuter": {"location": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.0, "AUTO_CLAMPED"]], "z": [[-0.07262593507766724, 0.0, "BEZIER", "AUTO", 16.666666666666668, -0.07262593507766724, "AUTO_CLAMPED"]], "y": [[0.8707519173622131, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.8707519173622131, "AUTO_CLAMPED"]]}, "rotation_euler": {"x": [[0.0, 350.0, "BEZIER", "AUTO", 377.7777671813965, 0.0, "AUTO_CLAMPED"], [-17.139458137176558, 83.33333333333337, "BEZIER", "AUTO", 405.55556615193683, -9.800624779672956, "AUTO_CLAMPED", 461.1111005147298, -24.478291494680157, "AUTO_CLAMPED"], [-29.355340260203572, 83.33333333333326, "BEZIER", "AUTO", 488.8888994852702, -29.355340260203572, "AUTO_CLAMPED", 550.0, -29.355340260203572, "AUTO_CLAMPED"], [-29.355340260203572, 100.00000000000011, "BEZIER", "AUTO", 583.3333333333334, -29.355340260203572, "AUTO_CLAMPED", 650.0, -29.355340260203572, "AUTO_CLAMPED"], [0.0, 99.99999999999989, "BEZIER", "AUTO", 683.3333333333334, 0.0, "AUTO_CLAMPED", 750.0, 0.0, "AUTO_CLAMPED"]]}}, "Gun": {"location": {"x": [[1.7611019611358643, 0.0, "LINEAR", "AUTO"], [1.7662079334259033, 150.0, "LINEAR", "AUTO"], [1.7611019611358643, 250.0, "LINEAR", "AUTO"], [1.613909363746643, 100.0, "LINEAR", "AUTO"], [1.7571532726287842, 116.66666666666674, "LINEAR", "AUTO"], [1.7611019611358643, 99.99999999999989, "LINEAR", "AUTO"]], "z": [[0.31467199325561523, 0.0, "LINEAR", "AUTO"], [0.30754023790359497, 150.0, "LINEAR", "AUTO"], [0.31467199325561523, 250.0, "LINEAR", "AUTO"], [0.4306454658508301, 100.0, "LINEAR", "AUTO"], [0.3806498050689697, 116.66666666666674, "LINEAR", "AUTO"], [0.31467199325561523, 99.99999999999989, "LINEAR", "AUTO"]], "y": [[0.8750439286231995, 0.0, "LINEAR", "AUTO"], [0.8376463055610657, 150.0, "LINEAR", "AUTO"], [0.8750439286231995, 250.0, "LINEAR", "AUTO"], [1.1308174133300781, 100.0, "LINEAR", "AUTO"], [1.108587384223938, 116.66666666666674, "LINEAR", "AUTO"], [0.8750439286231995, 99.99999999999989, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[-18.983153297952903, 0.0, "LINEAR", "AUTO"], [-20.857867762844858, 250.0, "LINEAR", "AUTO"], [-18.983153297952903, 100.0, "LINEAR", "AUTO"], [-20.627756982159838, 116.66666666666669, "LINEAR", "AUTO"], [-20.258341078257818, 116.66666666666669, "LINEAR", "AUTO"], [-18.983153297952903, 133.33333333333326, "LINEAR", "AUTO"]], "z": [[86.04810969222216, 0.0, "LINEAR", "AUTO"], [87.57263523572567, 250.0, "LINEAR", "AUTO"], [86.04810969222216, 100.0, "LINEAR", "AUTO"], [89.15816119870658, 116.66666666666669, "LINEAR", "AUTO"], [86.00693048171614, 116.66666666666669, "LINEAR", "AUTO"], [86.04810969222216, 133.33333333333326, "LINEAR", "AUTO"]], "y": [[29.613753637261834, 0.0, "LINEAR", "AUTO"], [28.64577410544575, 250.0, "LINEAR", "AUTO"], [29.613753637261834, 100.0, "LINEAR", "AUTO"], [25.730953311102372, 116.66666666666669, "LINEAR", "AUTO"], [27.311677651096765, 116.66666666666669, "LINEAR", "AUTO"], [29.613753637261834, 133.33333333333326, "LINEAR", "AUTO"]]}}, "Shell": {"location": {"x": [[1.5205265935236412e-09, 0.0, "LINEAR", "AUTO"], [1.5205265935236412e-09, 216.66666666666669, "LINEAR", "AUTO"], [3.600797242597764e-07, 133.33333333333331, "LINEAR", "AUTO"], [1.9156854591528827e-07, 83.33333333333337, "LINEAR", "AUTO"], [2.418599649445241e-07, 83.33333333333326, "LINEAR", "AUTO"], [2.3999731979529315e-07, 100.00000000000011, "LINEAR", "AUTO"]], "z": [[-2.2731080055236816, 0.0, "LINEAR", "AUTO"], [-2.2731080055236816, 216.66666666666669, "LINEAR", "AUTO"], [0.2386959344148636, 133.33333333333331, "LINEAR", "AUTO"], [0.33605021238327026, 83.33333333333337, "LINEAR", "AUTO"], [0.4338737428188324, 83.33333333333326, "LINEAR", "AUTO"], [1.2500436305999756, 100.00000000000011, "LINEAR", "AUTO"]], "y": [[-1.4170563220977783, 0.0, "LINEAR", "AUTO"], [-1.4170563220977783, 216.66666666666669, "LINEAR", "AUTO"], [0.5333303213119507, 133.33333333333331, "LINEAR", "AUTO"], [0.8954256176948547, 83.33333333333337, "LINEAR", "AUTO"], [1.1207358837127686, 83.33333333333326, "LINEAR", "AUTO"], [1.2056175470352173, 100.00000000000011, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [0.0, 216.66666666666669, "LINEAR", "AUTO"], [-23.121160227355304, 133.33333333333331, "LINEAR", "AUTO"], [-14.526026270149163, 83.33333333333337, "LINEAR", "AUTO"], [-5.042295800981765, 83.33333333333326, "LINEAR", "AUTO"], [0.0, 100.00000000000011, "LINEAR", "AUTO"]], "z": [[0.0, 0.0, "LINEAR", "AUTO"], [-0.0, 216.66666666666669, "LINEAR", "AUTO"], [-0.0, 133.33333333333331, "LINEAR", "AUTO"], [2.551953161995936e-07, 83.33333333333337, "LINEAR", "AUTO"], [7.134593799244011e-07, 83.33333333333326, "LINEAR", "AUTO"], [-0.0, 100.00000000000011, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [0.0, 216.66666666666669, "LINEAR", "AUTO"], [1.7075472925031877e-06, 133.33333333333331, "LINEAR", "AUTO"], [1.688370023551335e-06, 83.33333333333337, "LINEAR", "AUTO"], [1.6331417525071545e-06, 83.33333333333326, "LINEAR", "AUTO"], [0.0, 100.00000000000011, "LINEAR", "AUTO"]]}}}, "ReloadEmpty": {"Gun": {"location": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [1.2511006593704224, 183.33333333333331, "LINEAR", "AUTO"], [1.6423077583312988, 216.66666666666669, "LINEAR", "AUTO"], [1.6554410457611084, 150.0, "LINEAR", "AUTO"], [1.7105761766433716, 66.66666666666674, "LINEAR", "AUTO"], [1.7476284503936768, 116.66666666666652, "LINEAR", "AUTO"], [1.7611019611358643, 133.33333333333348, "LINEAR", "AUTO"]], "z": [[-0.0, 0.0, "LINEAR", "AUTO"], [0.26347818970680237, 183.33333333333331, "LINEAR", "AUTO"], [0.32502928376197815, 216.66666666666669, "LINEAR", "AUTO"], [0.30153536796569824, 150.0, "LINEAR", "AUTO"], [0.3000105023384094, 66.66666666666674, "LINEAR", "AUTO"], [0.3107622563838959, 116.66666666666652, "LINEAR", "AUTO"], [0.31467199325561523, 133.33333333333348, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [0.42658743262290955, 183.33333333333331, "LINEAR", "AUTO"], [-0.009814918041229248, 216.66666666666669, "LINEAR", "AUTO"], [-0.1131410151720047, 150.0, "LINEAR", "AUTO"], [-0.20051059126853943, 66.66666666666674, "LINEAR", "AUTO"], [0.5882294178009033, 116.66666666666652, "LINEAR", "AUTO"], [0.8750439286231995, 133.33333333333348, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [-14.617513238986898, 116.66666666666667, "LINEAR", "AUTO"], [-37.38541266737456, 233.33333333333331, "LINEAR", "AUTO"], [-36.45018560017598, 166.66666666666663, "LINEAR", "AUTO"], [-30.74254485044399, 66.66666666666674, "LINEAR", "AUTO"], [-21.750068053366945, 149.9999999999999, "LINEAR", "AUTO"], [-18.983153297952903, 133.33333333333348, "LINEAR", "AUTO"]], "z": [[-0.0, 0.0, "LINEAR", "AUTO"], [32.06710636071164, 116.66666666666667, "LINEAR", "AUTO"], [40.97562647251089, 233.33333333333331, "LINEAR", "AUTO"], [38.71689657436601, 166.66666666666663, "LINEAR", "AUTO"], [32.11341504328433, 66.66666666666674, "LINEAR", "AUTO"], [73.35759772377095, 149.9999999999999, "LINEAR", "AUTO"], [86.04810969222216, 133.33333333333348, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [21.50487279989995, 116.66666666666667, "LINEAR", "AUTO"], [44.292741993873435, 233.33333333333331, "LINEAR", "AUTO"], [46.044774308440914, 166.66666666666663, "LINEAR", "AUTO"], [49.72028010083778, 66.66666666666674, "LINEAR", "AUTO"], [34.34470124134409, 149.9999999999999, "LINEAR", "AUTO"], [29.613753637261834, 133.33333333333348, "LINEAR", "AUTO"]]}}, "Pump": {"location": {"z": [[-0.0, 83.33333333333333, "LINEAR", "AUTO"], [-0.10627399384975433, 50.000000000000014, "LINEAR", "AUTO"], [-0.7439179420471191, 66.66666666666666, "LINEAR", "AUTO"], [-0.7439179420471191, 483.33333333333337, "LINEAR", "AUTO"], [-0.18597948551177979, 66.66666666666663, "LINEAR", "AUTO"], [-0.0, 66.66666666666663, "LINEAR", "AUTO"]]}}, "Shell": {"location": {"x": [[1.5205265935236412e-09, 0.0, "LINEAR", "AUTO"], [1.8807575702667236, 216.66666666666669, "LINEAR", "AUTO"], [0.1613924205303192, 216.66666666666669, "LINEAR", "AUTO"], [0.010319530963897705, 100.0, "LINEAR", "AUTO"], [2.558298035637563e-07, 83.33333333333337, "LINEAR", "AUTO"]], "z": [[-2.2731080055236816, 0.0, "LINEAR", "AUTO"], [-1.77922523021698, 216.66666666666669, "LINEAR", "AUTO"], [0.5386117100715637, 216.66666666666669, "LINEAR", "AUTO"], [0.9011819362640381, 100.0, "LINEAR", "AUTO"], [1.2500436305999756, 83.33333333333337, "LINEAR", "AUTO"]], "y": [[-1.4170563220977783, 0.0, "LINEAR", "AUTO"], [-0.7542737126350403, 216.66666666666669, "LINEAR", "AUTO"], [1.8265879154205322, 216.66666666666669, "LINEAR", "AUTO"], [1.7011022567749023, 100.0, "LINEAR", "AUTO"], [1.7520724534988403, 83.33333333333337, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [0.0, 166.66666666666666, "LINEAR", "AUTO"], [17.895010248068782, 216.66666666666666, "LINEAR", "AUTO"], [3.92045772037468, 116.66666666666669, "LINEAR", "AUTO"], [0.0, 116.66666666666674, "LINEAR", "AUTO"]], "z": [[0.0, 0.0, "LINEAR", "AUTO"], [-0.0, 166.66666666666666, "LINEAR", "AUTO"], [-7.282242678909106, 216.66666666666666, "LINEAR", "AUTO"], [-2.104055355191472, 116.66666666666669, "LINEAR", "AUTO"], [-0.0, 116.66666666666674, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [0.0, 166.66666666666666, "LINEAR", "AUTO"], [-21.433229238148392, 216.66666666666666, "LINEAR", "AUTO"], [-7.3901921111938655, 116.66666666666669, "LINEAR", "AUTO"], [0.0, 116.66666666666674, "LINEAR", "AUTO"]]}}}, "ReloadEnd": {"Gun": {"location": {"x": [[1.7611019611358643, 0.0, "LINEAR", "AUTO"], [-0.31797051429748535, 216.66666666666669, "LINEAR", "AUTO"], [0.0, 83.33333333333331, "LINEAR", "AUTO"]], "z": [[0.31467199325561523, 0.0, "LINEAR", "AUTO"], [0.010336088016629219, 216.66666666666669, "LINEAR", "AUTO"], [-0.0, 83.33333333333331, "LINEAR", "AUTO"]], "y": [[0.8750439286231995, 0.0, "LINEAR", "AUTO"], [0.0250311940908432, 216.66666666666669, "LINEAR", "AUTO"], [0.0, 83.33333333333331, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[-18.983153297952903, 0.0, "LINEAR", "AUTO"], [0.09662330444411844, 216.66666666666669, "LINEAR", "AUTO"], [0.0, 83.33333333333331, "LINEAR", "AUTO"]], "z": [[86.04810969222216, 0.0, "LINEAR", "AUTO"], [-9.502314560125358, 216.66666666666669, "LINEAR", "AUTO"], [-0.0, 83.33333333333331, "LINEAR", "AUTO"]], "y": [[29.613753637261834, 0.0, "LINEAR", "AUTO"], [-0.24104249845162748, 216.66666666666669, "LINEAR", "AUTO"], [0.0, 83.33333333333331, "LINEAR", "AUTO"]]}}}, "ReloadStart": {"GuardInner": {"location": {"x": [[3.725290298461914e-09, 0.0, "LINEAR", "AUTO"]], "z": [[0.8854429721832275, 0.0, "LINEAR", "AUTO"]], "y": [[0.8707519173622131, 0.0, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[0.0, 350.0, "LINEAR", "AUTO"], [16.02038116054145, 83.33333333333337, "LINEAR", "AUTO"], [23.71116221314476, 83.33333333333326, "LINEAR", "AUTO"], [23.71116221314476, 66.66666666666674, "LINEAR", "AUTO"], [0.0, 83.33333333333326, "LINEAR", "AUTO"]]}}, "GuardOuter": {"location": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.0, "AUTO_CLAMPED"]], "z": [[-0.07262593507766724, 0.0, "BEZIER", "AUTO", 16.666666666666668, -0.07262593507766724, "AUTO_CLAMPED"]], "y": [[0.8707519173622131, 0.0, "BEZIER", "AUTO", 16.666666666666668, 0.8707519173622131, "AUTO_CLAMPED"]]}, "rotation_euler": {"x": [[0.0, 350.0, "BEZIER", "AUTO", 377.7777671813965, 0.0, "AUTO_CLAMPED"], [-17.139458137176558, 83.33333333333337, "BEZIER", "AUTO", 405.55556615193683, -9.800624779672956, "AUTO_CLAMPED", 461.1111005147298, -24.478291494680157, "AUTO_CLAMPED"], [-29.355340260203572, 83.33333333333326, "BEZIER", "AUTO", 488.8888994852702, -29.355340260203572, "AUTO_CLAMPED", 550.0, -29.355340260203572, "AUTO_CLAMPED"], [-29.355340260203572, 100.00000000000011, "BEZIER", "AUTO", 583.3333333333334, -29.355340260203572, "AUTO_CLAMPED", 650.0, -29.355340260203572, "AUTO_CLAMPED"], [0.0, 99.99999999999989, "BEZIER", "AUTO", 683.3333333333334, 0.0, "AUTO_CLAMPED", 750.0, 0.0, "AUTO_CLAMPED"]]}}, "Gun": {"location": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [1.2318342924118042, 183.33333333333331, "LINEAR", "AUTO"], [1.642445683479309, 83.33333333333337, "LINEAR", "AUTO"], [1.7611019611358643, 133.33333333333331, "LINEAR", "AUTO"], [1.613909363746643, 100.0, "LINEAR", "AUTO"], [1.7571532726287842, 116.66666666666674, "LINEAR", "AUTO"], [1.7611019611358643, 66.66666666666663, "LINEAR", "AUTO"]], "z": [[-0.0, 0.0, "LINEAR", "AUTO"], [0.2732446491718292, 183.33333333333331, "LINEAR", "AUTO"], [0.36432620882987976, 83.33333333333337, "LINEAR", "AUTO"], [0.31467199325561523, 133.33333333333331, "LINEAR", "AUTO"], [0.4306454658508301, 100.0, "LINEAR", "AUTO"], [0.3806498050689697, 116.66666666666674, "LINEAR", "AUTO"], [0.31467199325561523, 66.66666666666663, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [0.7328978776931763, 183.33333333333331, "LINEAR", "AUTO"], [0.9771971702575684, 83.33333333333337, "LINEAR", "AUTO"], [0.8750439286231995, 133.33333333333331, "LINEAR", "AUTO"], [1.1308174133300781, 100.0, "LINEAR", "AUTO"], [1.108587384223938, 116.66666666666674, "LINEAR", "AUTO"], [0.8750439286231995, 66.66666666666663, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [-14.617513238986898, 150.0, "LINEAR", "AUTO"], [-19.490018221164963, 83.33333333333334, "LINEAR", "AUTO"], [-18.983153297952903, 116.66666666666666, "LINEAR", "AUTO"], [-20.627756982159838, 133.33333333333331, "LINEAR", "AUTO"], [-20.258341078257818, 100.00000000000006, "LINEAR", "AUTO"], [-18.983153297952903, 100.0, "LINEAR", "AUTO"]], "z": [[-0.0, 0.0, "LINEAR", "AUTO"], [65.44332775888294, 150.0, "LINEAR", "AUTO"], [87.25777034517726, 83.33333333333334, "LINEAR", "AUTO"], [86.04810969222216, 116.66666666666666, "LINEAR", "AUTO"], [89.15816119870658, 133.33333333333331, "LINEAR", "AUTO"], [86.00693048171614, 100.00000000000006, "LINEAR", "AUTO"], [86.04810969222216, 100.0, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [21.504871092352655, 150.0, "LINEAR", "AUTO"], [28.673161456470208, 83.33333333333334, "LINEAR", "AUTO"], [29.613753637261834, 116.66666666666666, "LINEAR", "AUTO"], [25.730953311102372, 133.33333333333331, "LINEAR", "AUTO"], [27.311677651096765, 100.00000000000006, "LINEAR", "AUTO"], [29.613753637261834, 100.0, "LINEAR", "AUTO"]]}}, "Shell": {"location": {"x": [[1.5205265935236412e-09, 0.0, "LINEAR", "AUTO"], [1.5205265935236412e-09, 216.66666666666669, "LINEAR", "AUTO"], [3.600797242597764e-07, 133.33333333333331, "LINEAR", "AUTO"], [1.9156854591528827e-07, 83.33333333333337, "LINEAR", "AUTO"], [2.418599649445241e-07, 83.33333333333326, "LINEAR", "AUTO"], [2.3999731979529315e-07, 100.00000000000011, "LINEAR", "AUTO"]], "z": [[-2.2731080055236816, 0.0, "LINEAR", "AUTO"], [-2.2731080055236816, 216.66666666666669, "LINEAR", "AUTO"], [0.2386959344148636, 133.33333333333331, "LINEAR", "AUTO"], [0.33605021238327026, 83.33333333333337, "LINEAR", "AUTO"], [0.4338737428188324, 83.33333333333326, "LINEAR", "AUTO"], [1.2500436305999756, 100.00000000000011, "LINEAR", "AUTO"]], "y": [[-1.4170563220977783, 0.0, "LINEAR", "AUTO"], [-1.4170563220977783, 216.66666666666669, "LINEAR", "AUTO"], [0.5333303213119507, 133.33333333333331, "LINEAR", "AUTO"], [0.8954256176948547, 83.33333333333337, "LINEAR", "AUTO"], [1.1207358837127686, 83.33333333333326, "LINEAR", "AUTO"], [1.2056175470352173, 100.00000000000011, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [0.0, 216.66666666666669, "LINEAR", "AUTO"], [-23.121160227355304, 133.33333333333331, "LINEAR", "AUTO"], [-14.526026270149163, 83.33333333333337, "LINEAR", "AUTO"], [-5.042295800981765, 83.33333333333326, "LINEAR", "AUTO"], [0.0, 100.00000000000011, "LINEAR", "AUTO"]], "z": [[0.0, 0.0, "LINEAR", "AUTO"], [-0.0, 216.66666666666669, "LINEAR", "AUTO"], [-0.0, 133.33333333333331, "LINEAR", "AUTO"], [2.551953161995936e-07, 83.33333333333337, "LINEAR", "AUTO"], [7.134593799244011e-07, 83.33333333333326, "LINEAR", "AUTO"], [-0.0, 100.00000000000011, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [0.0, 216.66666666666669, "LINEAR", "AUTO"], [1.7075472925031877e-06, 133.33333333333331, "LINEAR", "AUTO"], [1.688370023551335e-06, 83.33333333333337, "LINEAR", "AUTO"], [1.6331417525071545e-06, 83.33333333333326, "LINEAR", "AUTO"], [0.0, 100.00000000000011, "LINEAR", "AUTO"]]}}}}, "offset": {"GuardInner": [3.725290298461914e-09, 0.8707519173622131, 0.8854429721832275], "GuardOuter": [0.0, 0.8707519173622131, -0.07262593507766724], "Loop": [0.2532634139060974, 1.4936577081680298, 3.4837722778320312], "Pump": [1.6174453776329756e-08, 1.1175870895385742e-08, -0.0], "Shell": [1.5205265935236412e-09, 1.7459099292755127, 1.2549771070480347], "ShellFore": [1.5205265935236412e-09, 1.7459099292755127, 1.2549771070480347], "Sight": [0.0, 2.104297161102295, 2.990000009536743]}, "hierarchy": {"GuardInner": "GuardOuter", "GuardOuter": "Gun", "Loop": "Gun", "Pump": "Gun", "Shell": "Gun", "ShellFore": "Shell", "Sight": "Gun"}} \ No newline at end of file diff --git a/src/main/resources/assets/hbm/models/weapons/animations/python.json b/src/main/resources/assets/hbm/models/weapons/animations/python.json index 8659ec6c1..2a65e9774 100644 --- a/src/main/resources/assets/hbm/models/weapons/animations/python.json +++ b/src/main/resources/assets/hbm/models/weapons/animations/python.json @@ -1 +1 @@ -{"anim": {"Fire": {"Body": {"location": {"z": [[-0.0, 0.0], [0.1901400089263916, 50.0], [-0.0, 283.3333333333333]], "y": [[0.0, 0.0], [0.22623062133789062, 50.0], [0.0, 283.3333333333333]]}, "rotation_euler": {"x": [[0.0, 16.666666666666668], [50.512076610560676, 66.66666666666666], [0.0, 250.0]]}}, "Hammer": {"rotation_euler": {"x": [[0.0, 0.0], [-44.61753114928588, 16.666666666666668], [-44.61753114928588, 183.33333333333334], [0.0, 300.0]]}, "location": {"x": [[0.00012800097465515137, 0.0]], "z": [[0.1478099822998047, 0.0]], "y": [[0.1151699647307396, 0.0]]}}}, "Reload": {"Body": {"location": {"x": [[0.0, 0.0], [0.1266033947467804, 216.66666666666669], [-0.1256844699382782, 66.66666666666663], [-0.10699314624071121, 100.0], [-0.05540347099304199, 183.33333333333331], [-0.04984791576862335, 83.33333333333337], [-0.04814600944519043, 100.0], [-0.0495946928858757, 50.0], [-0.1901838481426239, 216.66666666666663], [-0.209717258810997, 366.66666666666663], [-0.2682616710662842, 83.33333333333326], [0.06351689994335175, 100.00000000000023], [0.059162016957998276, 83.33333333333326], [0.0, 199.99999999999977]], "z": [[-0.0, 0.0], [0.018239933997392654, 216.66666666666669], [-0.003715081140398979, 66.66666666666663], [0.003378540277481079, 100.0], [0.06673367321491241, 183.33333333333331], [0.13605912029743195, 83.33333333333337], [0.11836071312427521, 100.0], [0.13753235340118408, 50.0], [0.2322661280632019, 216.66666666666663], [0.20868675410747528, 366.66666666666663], [0.15863937139511108, 83.33333333333326], [0.2003980427980423, 100.00000000000023], [0.09448619186878204, 83.33333333333326], [-0.0, 199.99999999999977]], "y": [[0.0, 0.0], [0.04348362237215042, 216.66666666666669], [0.04043026641011238, 66.66666666666663], [0.0498494915664196, 100.0], [0.21255171298980713, 183.33333333333331], [0.027551360428333282, 83.33333333333337], [0.09703753143548965, 100.0], [0.024584002792835236, 50.0], [-0.3309659957885742, 216.66666666666663], [-0.3340303301811218, 366.66666666666663], [-0.1700890064239502, 83.33333333333326], [0.016301512718200684, 100.00000000000023], [-0.015913818031549454, 83.33333333333326], [0.0, 199.99999999999977]]}, "rotation_euler": {"x": [[0.0, 0.0], [3.3686347844983024, 150.0], [0.02222707974050119, 166.66666666666663], [4.537149524119608, 100.00000000000006], [61.414745582626026, 233.33333333333331], [52.280518454609116, 133.33333333333337], [-71.68136001842309, 199.9999999999999], [-67.29034068404862, 366.66666666666674], [-53.072130549224426, 116.66666666666652], [-7.130840436898373, 100.00000000000023], [-2.7997762896148553, 83.33333333333326], [0.0, 199.99999999999977]], "z": [[0.0, 0.0], [-17.712562234959403, 150.0], [13.30397138517142, 166.66666666666663], [5.758366003376731, 100.00000000000006], [5.603675025280636, 233.33333333333331], [6.040763589705493, 133.33333333333337], [-1.4811513876747122, 199.9999999999999], [-0.9937320130296772, 366.66666666666674], [5.75973417564485, 116.66666666666652], [-7.87355264592462, 100.00000000000023], [-5.935155631645579, 83.33333333333326], [-0.0, 199.99999999999977]], "y": [[0.0, 0.0], [-3.362418245136533, 150.0], [5.488280686800564, 166.66666666666663], [2.9251945710321565, 100.00000000000006], [-3.2122371128833507, 233.33333333333331], [-2.2836878362589266, 133.33333333333337], [6.285038902068653, 199.9999999999999], [6.379913644734715, 366.66666666666674], [24.273973215848397, 116.66666666666652], [-30.381999654726528, 100.00000000000023], [-9.056688259237983, 83.33333333333326], [0.0, 199.99999999999977]]}}, "Cylinder": {"location": {"x": [[-0.0010489225387573242, 0.0], [-0.0010489225387573242, 283.3333333333333], [-0.07956840097904205, 83.33333333333331], [-0.07956840097904205, 1200.0], [-0.0010489225387573242, 83.33333333333326]], "z": [[0.07426249980926514, 0.0], [0.07426249980926514, 283.3333333333333], [0.07129553705453873, 83.33333333333331], [0.07129553705453873, 1200.0], [0.07426249980926514, 83.33333333333326]], "y": [[0.10388392210006714, 0.0], [0.10388392210006714, 283.3333333333333], [0.07195358723402023, 83.33333333333331], [0.07195358723402023, 1200.0], [0.10388392210006714, 83.33333333333326]]}}}}, "offset": {"Cylinder": [-0.0010489225387573242, 0.10388392210006714, 0.07426249980926514], "Grip": [0.0, -1.8214237229585706e-08, -0.0], "Hammer": [0.00012800097465515137, 0.1151699647307396, 0.1478099822998047]}} \ No newline at end of file +{"anim": {"Fire": {"Body": {"location": {"z": [[-0.0, 0.0, "LINEAR", "AUTO"], [0.1901400089263916, 50.0, "LINEAR", "AUTO"], [-0.0, 283.3333333333333, "LINEAR", "AUTO"]], "y": [[0.0, 0.0, "LINEAR", "AUTO"], [0.22623062133789062, 50.0, "LINEAR", "AUTO"], [0.0, 283.3333333333333, "LINEAR", "AUTO"]]}, "rotation_euler": {"x": [[0.0, 16.666666666666668, "LINEAR", "AUTO"], [50.512076610560676, 66.66666666666666, "LINEAR", "AUTO"], [0.0, 250.0, "LINEAR", "AUTO"]]}}, "Hammer": {"rotation_euler": {"x": [[0.0, 0.0, "LINEAR", "AUTO"], [-44.61753114928588, 16.666666666666668, "LINEAR", "AUTO"], [-44.61753114928588, 183.33333333333334, "LINEAR", "AUTO"], [0.0, 300.0, "LINEAR", "AUTO"]]}, "location": {"x": [[0.00012800097465515137, 0.0, "LINEAR", "AUTO"]], "z": [[0.1478099822998047, 0.0, "LINEAR", "AUTO"]], "y": [[0.1151699647307396, 0.0, "LINEAR", "AUTO"]]}}}, "Reload": {"Body": {"location": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 72.22222487131755, 0.0, "AUTO_CLAMPED"], [0.1266033947467804, 216.66666666666669, "BEZIER", "AUTO", 144.44443384806317, 0.1266033947467804, "AUTO_CLAMPED", 238.88888359069824, 0.1266033947467804, "AUTO_CLAMPED"], [-0.1256844699382782, 66.66666666666663, "BEZIER", "AUTO", 261.11111640930176, -0.1256844699382782, "AUTO_CLAMPED", 316.66666666666663, -0.1256844699382782, "AUTO_CLAMPED"], [-0.10699314624071121, 100.0, "BEZIER", "AUTO", 350.0, -0.11716071516275406, "AUTO_CLAMPED", 444.44443384806317, -0.08835260570049286, "AUTO_CLAMPED"], [-0.05540347099304199, 183.33333333333331, "BEZIER", "AUTO", 505.5555661519369, -0.06418702006340027, "AUTO_CLAMPED", 594.444465637207, -0.05141094699501991, "AUTO_CLAMPED"], [-0.04984791576862335, 83.33333333333337, "BEZIER", "AUTO", 622.2222010294596, -0.05059652775526047, "AUTO_CLAMPED", 683.3333333333334, -0.048949580639600754, "AUTO_CLAMPED"], [-0.04814600944519043, 100.0, "BEZIER", "AUTO", 716.6666666666666, -0.04814600944519043, "AUTO_CLAMPED", 766.6666666666666, -0.04814600944519043, "AUTO_CLAMPED"], [-0.0495946928858757, 50.0, "BEZIER", "AUTO", 783.3333333333334, -0.04814600944519043, "AUTO_CLAMPED", 872.2222010294596, -0.055872321128845215, "AUTO_CLAMPED"], [-0.1901838481426239, 216.66666666666663, "BEZIER", "AUTO", 944.4444656372069, -0.17864137887954712, "AUTO_CLAMPED", 1138.888931274414, -0.209717258810997, "AUTO_CLAMPED"], [-0.209717258810997, 366.66666666666663, "BEZIER", "AUTO", 1261.111068725586, -0.1901838481426239, "AUTO_CLAMPED", 1411.111068725586, -0.21415667235851288, "AUTO_CLAMPED"], [-0.2682616710662842, 83.33333333333326, "BEZIER", "AUTO", 1438.888931274414, -0.2682616710662842, "AUTO_CLAMPED", 1500.0, -0.2682616710662842, "AUTO_CLAMPED"], [0.06351689994335175, 100.00000000000023, "BEZIER", "AUTO", 1533.3333333333333, 0.06351689994335175, "AUTO_CLAMPED", 1594.4444020589192, 0.06351689994335175, "AUTO_CLAMPED"], [0.059162016957998276, 83.33333333333326, "BEZIER", "AUTO", 1622.2222646077473, 0.06351689994335175, "AUTO_CLAMPED", 1716.6666666666665, 0.04871029779314995, "AUTO_CLAMPED"], [0.0, 199.99999999999977, "BEZIER", "AUTO", 1783.3333333333333, 0.0, "AUTO_CLAMPED", 1916.6666666666667, 0.0, "AUTO_CLAMPED"]], "z": [[-0.0, 0.0, "BEZIER", "AUTO", 72.22222487131755, -0.0, "AUTO_CLAMPED"], [0.018239933997392654, 216.66666666666669, "BEZIER", "AUTO", 144.44443384806317, 0.018239933997392654, "AUTO_CLAMPED", 238.88888359069824, 0.018239933997392654, "AUTO_CLAMPED"], [-0.003715081140398979, 66.66666666666663, "BEZIER", "AUTO", 261.11111640930176, -0.003715081140398979, "AUTO_CLAMPED", 316.66666666666663, -0.003715081140398979, "AUTO_CLAMPED"], [0.003378540277481079, 100.0, "BEZIER", "AUTO", 350.0, 0.0009166612289845943, "AUTO_CLAMPED", 444.44443384806317, 0.007891984656453133, "AUTO_CLAMPED"], [0.06673367321491241, 183.33333333333331, "BEZIER", "AUTO", 505.5555661519369, 0.0051122792065143585, "AUTO_CLAMPED", 594.444465637207, 0.09474340081214905, "AUTO_CLAMPED"], [0.13605912029743195, 83.33333333333337, "BEZIER", "AUTO", 622.2222010294596, 0.13605912029743195, "AUTO_CLAMPED", 683.3333333333334, 0.13605912029743195, "AUTO_CLAMPED"], [0.11836071312427521, 100.0, "BEZIER", "AUTO", 716.6666666666666, 0.11836071312427521, "AUTO_CLAMPED", 766.6666666666666, 0.11836071312427521, "AUTO_CLAMPED"], [0.13753235340118408, 50.0, "BEZIER", "AUTO", 783.3333333333334, 0.12769433856010437, "AUTO_CLAMPED", 872.2222010294596, 0.18016371130943298, "AUTO_CLAMPED"], [0.2322661280632019, 216.66666666666663, "BEZIER", "AUTO", 944.4444656372069, 0.2322661280632019, "AUTO_CLAMPED", 1138.888931274414, 0.2322661280632019, "AUTO_CLAMPED"], [0.20868675410747528, 366.66666666666663, "BEZIER", "AUTO", 1261.111068725586, 0.2322661280632019, "AUTO_CLAMPED", 1411.111068725586, 0.20332780480384827, "AUTO_CLAMPED"], [0.15863937139511108, 83.33333333333326, "BEZIER", "AUTO", 1438.888931274414, 0.15863937139511108, "AUTO_CLAMPED", 1500.0, 0.15863937139511108, "AUTO_CLAMPED"], [0.2003980427980423, 100.00000000000023, "BEZIER", "AUTO", 1533.3333333333333, 0.2003980427980423, "AUTO_CLAMPED", 1594.4444020589192, 0.2003980427980423, "AUTO_CLAMPED"], [0.09448619186878204, 83.33333333333326, "BEZIER", "AUTO", 1622.2222646077473, 0.1338554322719574, "AUTO_CLAMPED", 1716.6666666666665, -0.0, "AUTO_CLAMPED"], [-0.0, 199.99999999999977, "BEZIER", "AUTO", 1783.3333333333333, -0.0, "AUTO_CLAMPED", 1916.6666666666667, -0.0, "AUTO_CLAMPED"]], "y": [[0.0, 0.0, "BEZIER", "AUTO", 72.22222487131755, 0.0, "AUTO_CLAMPED"], [0.04348362237215042, 216.66666666666669, "BEZIER", "AUTO", 144.44443384806317, 0.04348362237215042, "AUTO_CLAMPED", 238.88888359069824, 0.04348362237215042, "AUTO_CLAMPED"], [0.04043026641011238, 66.66666666666663, "BEZIER", "AUTO", 261.11111640930176, 0.04043026641011238, "AUTO_CLAMPED", 316.66666666666663, 0.04043026641011238, "AUTO_CLAMPED"], [0.0498494915664196, 100.0, "BEZIER", "AUTO", 350.0, 0.04043026641011238, "AUTO_CLAMPED", 444.44443384806317, 0.0671180710196495, "AUTO_CLAMPED"], [0.21255171298980713, 183.33333333333331, "BEZIER", "AUTO", 505.5555661519369, 0.21255171298980713, "AUTO_CLAMPED", 594.444465637207, 0.21255171298980713, "AUTO_CLAMPED"], [0.027551360428333282, 83.33333333333337, "BEZIER", "AUTO", 622.2222010294596, 0.027551360428333282, "AUTO_CLAMPED", 683.3333333333334, 0.027551360428333282, "AUTO_CLAMPED"], [0.09703753143548965, 100.0, "BEZIER", "AUTO", 716.6666666666666, 0.09703753143548965, "AUTO_CLAMPED", 766.6666666666666, 0.09703753143548965, "AUTO_CLAMPED"], [0.024584002792835236, 50.0, "BEZIER", "AUTO", 783.3333333333334, 0.06167126074433327, "AUTO_CLAMPED", 872.2222010294596, -0.13612744212150574, "AUTO_CLAMPED"], [-0.3309659957885742, 216.66666666666663, "BEZIER", "AUTO", 944.4444656372069, -0.3291552662849426, "AUTO_CLAMPED", 1138.888931274414, -0.3340303301811218, "AUTO_CLAMPED"], [-0.3340303301811218, 366.66666666666663, "BEZIER", "AUTO", 1261.111068725586, -0.3340303301811218, "AUTO_CLAMPED", 1411.111068725586, -0.3340303301811218, "AUTO_CLAMPED"], [-0.1700890064239502, 83.33333333333326, "BEZIER", "AUTO", 1438.888931274414, -0.2501014769077301, "AUTO_CLAMPED", 1500.0, -0.07407404482364655, "AUTO_CLAMPED"], [0.016301512718200684, 100.00000000000023, "BEZIER", "AUTO", 1533.3333333333333, 0.016301512718200684, "AUTO_CLAMPED", 1594.4444020589192, 0.016301512718200684, "AUTO_CLAMPED"], [-0.015913818031549454, 83.33333333333326, "BEZIER", "AUTO", 1622.2222646077473, -0.015913818031549454, "AUTO_CLAMPED", 1716.6666666666665, -0.015913818031549454, "AUTO_CLAMPED"], [0.0, 199.99999999999977, "BEZIER", "AUTO", 1783.3333333333333, 0.0, "AUTO_CLAMPED", 1916.6666666666667, 0.0, "AUTO_CLAMPED"]]}, "rotation_euler": {"x": [[0.0, 0.0, "BEZIER", "AUTO", 50.0, 0.0, "AUTO_CLAMPED"], [3.3686347844983024, 150.0, "BEZIER", "AUTO", 100.0, 3.3686347844983024, "AUTO_CLAMPED", 205.5555502573649, 3.3686347844983024, "AUTO_CLAMPED"], [0.02222707974050119, 166.66666666666663, "BEZIER", "AUTO", 261.11111640930176, 0.02222707974050119, "AUTO_CLAMPED", 350.0, 0.02222707974050119, "AUTO_CLAMPED"], [4.537149524119608, 100.00000000000006, "BEZIER", "AUTO", 383.3333333333333, 0.022227143106513993, "AUTO_CLAMPED", 494.4444338480631, 15.07196841315016, "AUTO_CLAMPED"], [61.414745582626026, 233.33333333333331, "BEZIER", "AUTO", 572.2222010294596, 61.414745582626026, "AUTO_CLAMPED", 694.444465637207, 61.414745582626026, "AUTO_CLAMPED"], [52.280518454609116, 133.33333333333337, "BEZIER", "AUTO", 738.8888676961262, 61.414745582626026, "AUTO_CLAMPED", 850.0, 38.57917605503646, "AUTO_CLAMPED"], [-71.68136001842309, 199.9999999999999, "BEZIER", "AUTO", 916.6666666666666, -71.68136001842309, "AUTO_CLAMPED", 1105.5555979410808, -71.68136001842309, "AUTO_CLAMPED"], [-67.29034068404862, 366.66666666666674, "BEZIER", "AUTO", 1227.7777353922525, -67.82028823156074, "AUTO_CLAMPED", 1388.888931274414, -67.12171697381935, "AUTO_CLAMPED"], [-53.072130549224426, 116.66666666666652, "BEZIER", "AUTO", 1427.7777353922525, -67.29034068404862, "AUTO_CLAMPED", 1500.0, -40.88509231506237, "AUTO_CLAMPED"], [-7.130840436898373, 100.00000000000023, "BEZIER", "AUTO", 1533.3333333333333, -12.328117499015958, "AUTO_CLAMPED", 1594.4444020589192, -2.7997765030582666, "AUTO_CLAMPED"], [-2.7997762896148553, 83.33333333333326, "BEZIER", "AUTO", 1622.2222646077473, -2.971331431658535, "AUTO_CLAMPED", 1716.6666666666665, -2.388044162153436, "AUTO_CLAMPED"], [0.0, 199.99999999999977, "BEZIER", "AUTO", 1783.3333333333333, 0.0, "AUTO_CLAMPED", 1916.6666666666667, 0.0, "AUTO_CLAMPED"]], "z": [[0.0, 0.0, "BEZIER", "AUTO", 50.0, 0.0, "AUTO_CLAMPED"], [-17.712562234959403, 150.0, "BEZIER", "AUTO", 100.0, -17.712562234959403, "AUTO_CLAMPED", 205.5555502573649, -17.712562234959403, "AUTO_CLAMPED"], [13.30397138517142, 166.66666666666663, "BEZIER", "AUTO", 261.11111640930176, 13.30397138517142, "AUTO_CLAMPED", 350.0, 13.30397138517142, "AUTO_CLAMPED"], [5.758366003376731, 100.00000000000006, "BEZIER", "AUTO", 383.3333333333333, 5.82466195389499, "AUTO_CLAMPED", 494.4444338480631, 5.603675025280636, "AUTO_CLAMPED"], [5.603675025280636, 233.33333333333331, "BEZIER", "AUTO", 572.2222010294596, 5.603675025280636, "AUTO_CLAMPED", 694.444465637207, 5.603675025280636, "AUTO_CLAMPED"], [6.040763589705493, 133.33333333333337, "BEZIER", "AUTO", 738.8888676961262, 6.040763589705493, "AUTO_CLAMPED", 850.0, 6.040763589705493, "AUTO_CLAMPED"], [-1.4811513876747122, 199.9999999999999, "BEZIER", "AUTO", 916.6666666666666, -1.4811513876747122, "AUTO_CLAMPED", 1105.5555979410808, -1.4811513876747122, "AUTO_CLAMPED"], [-0.9937320130296772, 366.66666666666674, "BEZIER", "AUTO", 1227.7777353922525, -1.4811513876747122, "AUTO_CLAMPED", 1388.888931274414, -0.8386440301880752, "AUTO_CLAMPED"], [5.75973417564485, 116.66666666666652, "BEZIER", "AUTO", 1427.7777353922525, 5.75973417564485, "AUTO_CLAMPED", 1500.0, 5.75973417564485, "AUTO_CLAMPED"], [-7.87355264592462, 100.00000000000023, "BEZIER", "AUTO", 1533.3333333333333, -7.87355264592462, "AUTO_CLAMPED", 1594.4444020589192, -7.87355264592462, "AUTO_CLAMPED"], [-5.935155631645579, 83.33333333333326, "BEZIER", "AUTO", 1622.2222646077473, -6.982968975801712, "AUTO_CLAMPED", 1716.6666666666665, -3.4204037764255912, "AUTO_CLAMPED"], [-0.0, 199.99999999999977, "BEZIER", "AUTO", 1783.3333333333333, -0.0, "AUTO_CLAMPED", 1916.6666666666667, -0.0, "AUTO_CLAMPED"]], "y": [[0.0, 0.0, "BEZIER", "AUTO", 50.0, 0.0, "AUTO_CLAMPED"], [-3.362418245136533, 150.0, "BEZIER", "AUTO", 100.0, -3.362418245136533, "AUTO_CLAMPED", 205.5555502573649, -3.362418245136533, "AUTO_CLAMPED"], [5.488280686800564, 166.66666666666663, "BEZIER", "AUTO", 261.11111640930176, 5.488280686800564, "AUTO_CLAMPED", 350.0, 5.488280686800564, "AUTO_CLAMPED"], [2.9251945710321565, 100.00000000000006, "BEZIER", "AUTO", 383.3333333333333, 4.216823897329765, "AUTO_CLAMPED", 494.4444338480631, -0.08860740377234073, "AUTO_CLAMPED"], [-3.2122371128833507, 233.33333333333331, "BEZIER", "AUTO", 572.2222010294596, -3.2122371128833507, "AUTO_CLAMPED", 694.444465637207, -3.2122371128833507, "AUTO_CLAMPED"], [-2.2836878362589266, 133.33333333333337, "BEZIER", "AUTO", 738.8888676961262, -3.2122371128833507, "AUTO_CLAMPED", 850.0, -0.8908639213222903, "AUTO_CLAMPED"], [6.285038902068653, 199.9999999999999, "BEZIER", "AUTO", 916.6666666666666, 6.233289120048405, "AUTO_CLAMPED", 1105.5555979410808, 6.379913644734715, "AUTO_CLAMPED"], [6.379913644734715, 366.66666666666674, "BEZIER", "AUTO", 1227.7777353922525, 6.285038902068653, "AUTO_CLAMPED", 1388.888931274414, 6.410100946432055, "AUTO_CLAMPED"], [24.273973215848397, 116.66666666666652, "BEZIER", "AUTO", 1427.7777353922525, 24.273973215848397, "AUTO_CLAMPED", 1500.0, 24.273973215848397, "AUTO_CLAMPED"], [-30.381999654726528, 100.00000000000023, "BEZIER", "AUTO", 1533.3333333333333, -30.381999654726528, "AUTO_CLAMPED", 1594.4444020589192, -30.381999654726528, "AUTO_CLAMPED"], [-9.056688259237983, 83.33333333333326, "BEZIER", "AUTO", 1622.2222646077473, -12.830308011514791, "AUTO_CLAMPED", 1716.6666666666665, 0.0, "AUTO_CLAMPED"], [0.0, 199.99999999999977, "BEZIER", "AUTO", 1783.3333333333333, 0.0, "AUTO_CLAMPED", 1916.6666666666667, 0.0, "AUTO_CLAMPED"]]}}, "Cylinder": {"location": {"x": [[-0.0010489225387573242, 0.0, "LINEAR", "AUTO"], [-0.0010489225387573242, 283.3333333333333, "LINEAR", "AUTO"], [-0.07956840097904205, 83.33333333333331, "LINEAR", "AUTO"], [-0.07956840097904205, 1200.0, "LINEAR", "AUTO"], [-0.0010489225387573242, 83.33333333333326, "LINEAR", "AUTO"]], "z": [[0.07426249980926514, 0.0, "LINEAR", "AUTO"], [0.07426249980926514, 283.3333333333333, "LINEAR", "AUTO"], [0.07129553705453873, 83.33333333333331, "LINEAR", "AUTO"], [0.07129553705453873, 1200.0, "LINEAR", "AUTO"], [0.07426249980926514, 83.33333333333326, "LINEAR", "AUTO"]], "y": [[0.10388392210006714, 0.0, "LINEAR", "AUTO"], [0.10388392210006714, 283.3333333333333, "LINEAR", "AUTO"], [0.07195358723402023, 83.33333333333331, "LINEAR", "AUTO"], [0.07195358723402023, 1200.0, "LINEAR", "AUTO"], [0.10388392210006714, 83.33333333333326, "LINEAR", "AUTO"]]}}}}, "offset": {"Cylinder": [-0.0010489225387573242, 0.10388392210006714, 0.07426249980926514], "Grip": [0.0, -1.8214237229585706e-08, -0.0], "Hammer": [0.00012800097465515137, 0.1151699647307396, 0.1478099822998047]}} \ No newline at end of file diff --git a/src/main/resources/assets/hbm/models/weapons/carbine.obj b/src/main/resources/assets/hbm/models/weapons/carbine.obj index 5a5caf913..6b8176493 100644 --- a/src/main/resources/assets/hbm/models/weapons/carbine.obj +++ b/src/main/resources/assets/hbm/models/weapons/carbine.obj @@ -1,6 +1,847 @@ # Blender v2.79 (sub 0) OBJ File: 'carbine.blend' # www.blender.org -o Cylinder +o Bullet +v 0.000000 1.000000 0.187500 +v -0.062500 0.983253 0.187500 +v -0.108253 0.937500 0.187500 +v -0.125000 0.875000 0.187500 +v -0.108253 0.812500 0.187500 +v -0.062500 0.766747 0.187500 +v 0.000000 0.750000 0.187500 +v 0.062500 0.766747 0.187500 +v 0.108253 0.812500 0.187500 +v 0.125000 0.875000 0.187500 +v 0.108253 0.937500 0.187500 +v 0.062500 0.983253 0.187500 +v 0.000000 1.000000 0.812500 +v -0.062500 0.983253 0.812500 +v -0.108253 0.937500 0.812500 +v -0.125000 0.875000 0.812500 +v -0.108253 0.812500 0.812500 +v -0.062500 0.766747 0.812500 +v 0.000000 0.750000 0.812500 +v 0.062500 0.766747 0.812500 +v 0.108253 0.812500 0.812500 +v 0.125000 0.875000 0.812500 +v 0.108253 0.937500 0.812500 +v 0.062500 0.983253 0.812500 +v 0.000000 0.968750 1.000000 +v -0.046875 0.956190 1.000000 +v -0.081190 0.921875 1.000000 +v -0.093750 0.875000 1.000000 +v -0.081190 0.828125 1.000000 +v -0.046875 0.793810 1.000000 +v 0.000000 0.781250 1.000000 +v 0.046875 0.793810 1.000000 +v 0.081190 0.828125 1.000000 +v 0.093750 0.875000 1.000000 +v 0.081190 0.921875 1.000000 +v 0.046875 0.956190 1.000000 +v 0.000000 0.906250 1.062500 +v -0.015625 0.902063 1.062500 +v -0.027063 0.890625 1.062500 +v -0.031250 0.875000 1.062500 +v -0.027063 0.859375 1.062500 +v -0.015625 0.847937 1.062500 +v 0.000000 0.843750 1.062500 +v 0.015625 0.847937 1.062500 +v 0.027063 0.859375 1.062500 +v 0.031250 0.875000 1.062500 +v 0.027063 0.890625 1.062500 +v 0.015625 0.902063 1.062500 +vt 0.107288 0.837093 +vt 0.113553 0.826359 +vt 0.119818 0.858560 +vt 0.117170 0.866417 +vt 0.107288 0.858560 +vt 0.113553 0.869293 +vt 0.109936 0.866417 +vt 0.106319 0.847826 +vt 0.109936 0.829235 +vt 0.117170 0.829235 +vt 0.119818 0.837092 +vt 0.120788 0.847826 +vt 0.106227 0.836957 +vt 0.069597 0.826087 +vt 0.106227 0.826087 +vt 0.106227 0.934783 +vt 0.069597 0.923913 +vt 0.106227 0.923913 +vt 0.106227 0.880435 +vt 0.069597 0.869565 +vt 0.106227 0.869565 +vt 0.106227 0.902174 +vt 0.069597 0.891304 +vt 0.106227 0.891304 +vt 0.106227 0.847826 +vt 0.069597 0.836957 +vt 0.106227 0.945652 +vt 0.069597 0.934783 +vt 0.069597 0.880435 +vt 0.106227 0.913043 +vt 0.069597 0.902174 +vt 0.106227 0.858696 +vt 0.069597 0.847826 +vt 0.106227 0.956522 +vt 0.069597 0.945652 +vt 0.069597 0.913043 +vt 0.069597 0.858696 +vt 0.058608 0.945652 +vt 0.058608 0.934783 +vt 0.058608 0.891304 +vt 0.058608 0.880435 +vt 0.058608 0.913043 +vt 0.058608 0.902174 +vt 0.058608 0.858696 +vt 0.058608 0.847826 +vt 0.069597 0.956522 +vt 0.058608 0.923913 +vt 0.058608 0.836957 +vt 0.058608 0.826087 +vt 0.058608 0.869565 +vt 0.054945 0.945652 +vt 0.054945 0.934783 +vt 0.054945 0.891304 +vt 0.054945 0.880435 +vt 0.054945 0.913043 +vt 0.054945 0.902174 +vt 0.054945 0.847826 +vt 0.058608 0.956522 +vt 0.054945 0.869565 +vt 0.054945 0.858696 +vt 0.054945 0.836957 +vt 0.054945 0.826087 +vt 0.054945 0.923913 +vt 0.053164 0.826561 +vt 0.054593 0.829009 +vt 0.053164 0.836354 +vt 0.054945 0.956522 +vt 0.052339 0.835698 +vt 0.051735 0.829009 +vt 0.051735 0.833906 +vt 0.051514 0.831457 +vt 0.052339 0.827217 +vt 0.053989 0.827217 +vt 0.054814 0.831457 +vt 0.054593 0.833906 +vt 0.053989 0.835698 +vn 0.0000 0.0000 -1.0000 +vn 0.5000 -0.8660 0.0000 +vn -0.0000 -0.9967 0.0814 +vn 0.0000 -1.0000 0.0000 +vn -0.8660 -0.5000 0.0000 +vn -0.9967 0.0000 0.0814 +vn -1.0000 -0.0000 0.0000 +vn 0.5000 0.8660 0.0000 +vn 0.8632 0.4983 0.0814 +vn 0.8660 0.5000 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.0000 0.9967 0.0814 +vn -0.0000 1.0000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn 0.4983 -0.8632 0.0814 +vn -0.5000 -0.8660 0.0000 +vn -0.8632 -0.4983 0.0814 +vn 0.4983 0.8632 0.0814 +vn -0.8660 0.5000 0.0000 +vn -0.4983 0.8632 0.0814 +vn 1.0000 -0.0000 0.0000 +vn 0.8632 -0.4983 0.0814 +vn -0.4983 -0.8632 0.0814 +vn -0.8632 0.4983 0.0814 +vn 0.9967 -0.0000 0.0814 +vn -0.4494 -0.7784 0.4382 +vn -0.7784 -0.4494 0.4382 +vn 0.0000 0.8989 0.4382 +vn 0.4494 0.7784 0.4382 +vn -0.7784 0.4494 0.4382 +vn -0.4494 0.7784 0.4382 +vn 0.8989 -0.0000 0.4382 +vn 0.7784 -0.4494 0.4382 +vn -0.8989 0.0000 0.4382 +vn 0.4494 -0.7784 0.4382 +vn 0.0000 -0.8989 0.4382 +vn 0.7784 0.4494 0.4382 +vn -0.2172 -0.3762 0.9007 +vn -0.3762 -0.2172 0.9007 +vn 0.0000 0.4344 0.9007 +vn 0.2172 0.3762 0.9007 +vn -0.3762 0.2172 0.9007 +vn -0.2172 0.3762 0.9007 +vn 0.3762 -0.2172 0.9007 +vn 0.3762 0.2172 0.9007 +vn 0.4344 0.0000 0.9007 +vn 0.2172 -0.3762 0.9007 +vn 0.0000 -0.4344 0.9007 +vn -0.4344 0.0000 0.9007 +s off +f 9/1/1 7/2/1 3/3/1 +f 3/3/1 2/4/1 11/5/1 +f 2/4/1 1/6/1 11/5/1 +f 1/6/1 12/7/1 11/5/1 +f 11/5/1 10/8/1 9/1/1 +f 9/1/1 8/9/1 7/2/1 +f 7/2/1 6/10/1 5/11/1 +f 5/11/1 4/12/1 7/2/1 +f 4/12/1 3/3/1 7/2/1 +f 11/5/1 9/1/1 3/3/1 +s 1 +f 8/13/2 19/14/3 7/15/4 +f 5/16/5 16/17/6 4/18/7 +f 12/19/8 23/20/9 11/21/10 +f 2/22/11 13/23/12 1/24/13 +f 9/25/14 20/26/15 8/13/2 +f 6/27/16 17/28/17 5/16/5 +f 1/24/13 24/29/18 12/19/8 +f 3/30/19 14/31/20 2/22/11 +f 10/32/21 21/33/22 9/25/14 +f 7/34/4 18/35/23 6/27/16 +f 4/18/7 15/36/24 3/30/19 +f 11/21/10 22/37/25 10/32/21 +f 17/28/17 30/38/26 29/39/27 +f 24/29/18 25/40/28 36/41/29 +f 14/31/20 27/42/30 26/43/31 +f 21/33/22 34/44/32 33/45/33 +f 19/46/3 30/38/26 18/35/23 +f 15/36/24 28/47/34 27/42/30 +f 23/20/9 34/44/32 22/37/25 +f 19/14/3 32/48/35 31/49/36 +f 17/28/17 28/47/34 16/17/6 +f 24/29/18 35/50/37 23/20/9 +f 14/31/20 25/40/28 13/23/12 +f 21/33/22 32/48/35 20/26/15 +f 29/39/27 42/51/38 41/52/39 +f 36/41/29 37/53/40 48/54/41 +f 26/43/31 39/55/42 38/56/43 +f 34/44/32 45/57/44 33/45/33 +f 31/58/36 42/51/38 30/38/26 +f 28/47/34 39/55/42 27/42/30 +f 34/44/32 47/59/45 46/60/46 +f 31/49/36 44/61/47 43/62/48 +f 28/47/34 41/52/39 40/63/49 +f 36/41/29 47/59/45 35/50/37 +f 26/43/31 37/53/40 25/40/28 +f 33/45/33 44/61/47 32/48/35 +f 43/64/48 45/65/44 37/66/40 +f 8/13/2 20/26/15 19/14/3 +f 5/16/5 17/28/17 16/17/6 +f 12/19/8 24/29/18 23/20/9 +f 2/22/11 14/31/20 13/23/12 +f 9/25/14 21/33/22 20/26/15 +f 6/27/16 18/35/23 17/28/17 +f 1/24/13 13/23/12 24/29/18 +f 3/30/19 15/36/24 14/31/20 +f 10/32/21 22/37/25 21/33/22 +f 7/34/4 19/46/3 18/35/23 +f 4/18/7 16/17/6 15/36/24 +f 11/21/10 23/20/9 22/37/25 +f 17/28/17 18/35/23 30/38/26 +f 24/29/18 13/23/12 25/40/28 +f 14/31/20 15/36/24 27/42/30 +f 21/33/22 22/37/25 34/44/32 +f 19/46/3 31/58/36 30/38/26 +f 15/36/24 16/17/6 28/47/34 +f 23/20/9 35/50/37 34/44/32 +f 19/14/3 20/26/15 32/48/35 +f 17/28/17 29/39/27 28/47/34 +f 24/29/18 36/41/29 35/50/37 +f 14/31/20 26/43/31 25/40/28 +f 21/33/22 33/45/33 32/48/35 +f 29/39/27 30/38/26 42/51/38 +f 36/41/29 25/40/28 37/53/40 +f 26/43/31 27/42/30 39/55/42 +f 34/44/32 46/60/46 45/57/44 +f 31/58/36 43/67/48 42/51/38 +f 28/47/34 40/63/49 39/55/42 +f 34/44/32 35/50/37 47/59/45 +f 31/49/36 32/48/35 44/61/47 +f 28/47/34 29/39/27 41/52/39 +f 36/41/29 48/54/41 47/59/45 +f 26/43/31 38/56/43 37/53/40 +f 33/45/33 45/57/44 44/61/47 +f 37/66/40 38/68/43 41/69/39 +f 38/68/43 39/70/42 41/69/39 +f 39/70/42 40/71/49 41/69/39 +f 41/69/39 42/72/38 43/64/48 +f 43/64/48 44/73/47 45/65/44 +f 45/65/44 46/74/46 47/75/45 +f 47/75/45 48/76/41 45/65/44 +f 48/76/41 37/66/40 45/65/44 +f 41/69/39 43/64/48 37/66/40 +o Magazine +v 0.187500 0.875000 1.125000 +v -0.187500 0.875000 1.125000 +v 0.187500 0.875000 0.125000 +v -0.187500 0.875000 0.125000 +v -0.187500 -1.375000 1.125000 +v 0.187500 -1.375000 1.125000 +v -0.187500 -1.375000 0.125000 +v 0.187500 -1.375000 0.125000 +v -0.125000 0.875000 1.125000 +v -0.062500 0.750000 1.125000 +v 0.062500 0.750000 1.125000 +v 0.125000 0.875000 1.125000 +v -0.125000 0.875000 0.125000 +v -0.062500 0.750000 0.125000 +v 0.062500 0.750000 0.125000 +v 0.125000 0.875000 0.125000 +vt 0.450549 0.989130 +vt 0.391941 1.000000 +vt 0.391941 0.989130 +vt 0.391941 0.456522 +vt 0.450549 0.521739 +vt 0.391941 0.521739 +vt 0.391941 0.913043 +vt 0.450549 0.913043 +vt 0.384615 0.891304 +vt 0.377289 0.891304 +vt 0.472527 0.913043 +vt 0.531136 0.521739 +vt 0.531136 0.913043 +vt 0.472527 0.521739 +vt 0.465201 0.891304 +vt 0.457875 0.891304 +vt 0.391941 0.923913 +vt 0.450549 0.923913 +vt 0.391941 0.945652 +vt 0.450549 0.967391 +vt 0.391941 0.967391 +vt 0.450549 0.945652 +vt 0.450549 1.000000 +vt 0.450549 0.456522 +vt 0.388278 0.913043 +vt 0.369963 0.913043 +vt 0.369963 0.521739 +vt 0.373626 0.913043 +vt 0.468864 0.913043 +vt 0.454212 0.913043 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +vn -0.8944 0.4472 0.0000 +vn 0.8944 0.4472 0.0000 +s off +f 61/77/50 50/78/50 57/79/50 +f 53/80/51 56/81/51 54/82/51 +f 49/83/52 56/81/52 51/84/52 +f 54/82/53 59/85/53 58/86/53 +f 52/87/54 53/88/54 50/89/54 +f 55/90/55 62/91/55 63/92/55 +f 51/84/50 60/93/50 49/83/50 +f 64/94/56 59/95/56 60/93/56 +f 62/96/57 57/79/57 58/97/57 +f 63/98/50 58/97/50 59/95/50 +f 61/77/50 52/99/50 50/78/50 +f 53/80/51 55/100/51 56/81/51 +f 49/83/52 54/82/52 56/81/52 +f 54/82/53 49/83/53 59/85/53 +f 49/83/53 60/101/53 59/85/53 +f 50/102/53 53/103/53 58/86/53 +f 53/103/53 54/82/53 58/86/53 +f 58/86/53 57/104/53 50/102/53 +f 52/87/54 55/90/54 53/88/54 +f 55/90/55 52/87/55 62/91/55 +f 52/87/55 61/105/55 62/91/55 +f 51/84/55 56/81/55 63/92/55 +f 56/81/55 55/90/55 63/92/55 +f 63/92/55 64/106/55 51/84/55 +f 51/84/50 64/94/50 60/93/50 +f 64/94/56 63/98/56 59/95/56 +f 62/96/57 61/77/57 57/79/57 +f 63/98/50 62/96/50 58/97/50 +o Slide +v -0.093750 1.162380 1.125000 +v -0.162380 1.093750 1.125000 +v -0.187500 1.000000 1.125000 +v 0.187500 1.000000 1.125000 +v 0.162380 1.093750 1.125000 +v 0.093750 1.162380 1.125000 +v 0.000000 1.187500 1.125000 +v -0.093750 1.162380 0.125000 +v -0.162380 1.093750 0.125000 +v -0.187500 1.000000 0.125000 +v 0.187500 1.000000 0.125000 +v 0.162380 1.093750 0.125000 +v 0.093750 1.162380 0.125000 +v 0.000000 1.187500 0.125000 +v 0.093750 0.837620 1.375000 +v 0.000000 0.812500 1.375000 +v -0.093750 0.837620 1.375000 +v -0.162380 0.906250 1.375000 +v -0.187500 1.000000 1.375000 +v 0.162380 0.906250 1.375000 +v 0.187500 1.000000 1.375000 +v 0.000000 1.312500 1.375000 +v -0.156250 1.270633 1.375000 +v -0.270633 1.156250 1.375000 +v -0.312500 1.000000 1.375000 +v -0.093750 0.837620 1.125000 +v 0.000000 0.812500 1.125000 +v 0.093750 0.837620 1.125000 +v 0.162380 0.906250 1.125000 +v 0.187500 1.000000 1.125000 +v 0.312500 1.000000 1.375000 +v 0.270633 1.156250 1.375000 +v 0.156250 1.270633 1.375000 +v -0.162380 0.906250 1.125000 +v -0.187500 1.000000 1.125000 +v -0.156250 1.270633 1.125000 +v 0.000000 1.312500 1.125000 +v -0.270633 1.156250 1.125000 +v -0.312500 1.000000 1.125000 +v 0.312500 1.000000 1.125000 +v 0.270633 1.156250 1.125000 +v 0.156250 1.270633 1.125000 +v -0.093750 1.162380 1.437500 +v -0.162380 1.093750 1.437500 +v -0.187500 1.000000 1.437500 +v -0.162380 0.906250 1.437500 +v -0.093750 0.837620 1.437500 +v 0.000000 0.812500 1.437500 +v 0.093750 0.837620 1.437500 +v 0.162380 0.906250 1.437500 +v 0.187500 1.000000 1.437500 +v 0.162380 1.093750 1.437500 +v 0.093750 1.162380 1.437500 +v 0.000000 1.187500 1.437500 +v -0.093750 1.162380 1.375000 +v -0.162380 1.093750 1.375000 +v -0.187500 1.000000 1.375000 +v -0.162380 0.906250 1.375000 +v -0.093750 0.837620 1.375000 +v 0.000000 0.812500 1.375000 +v 0.093750 0.837620 1.375000 +v 0.162380 0.906250 1.375000 +v 0.187500 1.000000 1.375000 +v 0.162380 1.093750 1.375000 +v 0.093750 1.162380 1.375000 +v 0.000000 1.187500 1.375000 +v 0.125000 1.000000 1.125000 +v 0.500000 1.000000 1.125000 +v 0.125000 1.000000 1.000000 +v 0.500000 1.000000 1.000000 +v 0.125000 1.062500 1.125000 +v 0.500000 1.062500 1.125000 +v 0.125000 1.062500 1.000000 +v 0.500000 1.062500 1.000000 +v 0.500000 0.906250 1.125000 +v 0.500000 1.156250 1.125000 +v 0.500000 0.906250 1.000000 +v 0.500000 1.156250 1.000000 +v 0.750000 0.968750 1.125000 +v 0.750000 1.093750 1.125000 +v 0.750000 0.968750 1.000000 +v 0.750000 1.093750 1.000000 +v 0.625000 0.906250 1.000000 +v 0.625000 1.156250 1.000000 +v 0.625000 0.906250 1.125000 +v 0.625000 1.156250 1.125000 +v 0.250000 1.000000 3.500000 +v -0.250000 1.000000 3.500000 +v 0.250000 1.125000 3.500000 +v -0.250000 1.125000 3.500000 +v -0.187500 1.125000 3.500000 +v -0.187500 1.000000 3.500000 +v 0.187500 1.125000 3.500000 +v 0.187500 1.000000 3.500000 +v 0.250000 1.000000 1.375000 +v 0.250000 1.125000 1.375000 +v -0.250000 1.125000 1.375000 +v -0.250000 1.000000 1.375000 +v -0.187500 1.125000 1.375000 +v -0.187500 1.000000 1.375000 +v 0.187500 1.000000 1.375000 +v 0.187500 1.125000 1.375000 +v -0.125000 1.000000 1.125000 +v -0.500000 1.000000 1.125000 +v -0.125000 1.000000 1.000000 +v -0.500000 1.000000 1.000000 +v -0.125000 1.062500 1.125000 +v -0.500000 1.062500 1.125000 +v -0.125000 1.062500 1.000000 +v -0.500000 1.062500 1.000000 +v -0.500000 0.906250 1.125000 +v -0.500000 1.156250 1.125000 +v -0.500000 0.906250 1.000000 +v -0.500000 1.156250 1.000000 +v -0.750000 0.968750 1.125000 +v -0.750000 1.093750 1.125000 +v -0.750000 0.968750 1.000000 +v -0.750000 1.093750 1.000000 +v -0.625000 0.906250 1.000000 +v -0.625000 1.156250 1.000000 +v -0.625000 0.906250 1.125000 +v -0.625000 1.156250 1.125000 +vt 0.022092 0.858808 +vt 0.043842 0.858808 +vt 0.032967 0.912594 +vt 0.043736 0.945870 +vt 0.032967 0.999130 +vt 0.022198 0.945870 +vt 0.690786 0.755520 +vt 0.690786 0.787959 +vt 0.681319 0.804179 +vt 0.886447 0.673913 +vt 0.864469 0.695652 +vt 0.864469 0.673913 +vt 0.864469 0.706522 +vt 0.886447 0.728261 +vt 0.864469 0.728261 +vt 0.886447 0.706522 +vt 0.930403 0.750000 +vt 0.923077 0.706522 +vt 0.930403 0.706522 +vt 0.864469 0.739130 +vt 0.886447 0.739130 +vt 0.908425 0.739130 +vt 0.908425 0.717391 +vt 0.915751 0.706522 +vt 0.886447 0.750000 +vt 0.886447 0.706522 +vt 0.893773 0.706522 +vt 0.000000 0.815217 +vt 0.003663 0.793478 +vt 0.003663 0.815217 +vt 0.000000 0.728261 +vt 0.003663 0.706522 +vt 0.003663 0.728261 +vt 0.128205 0.728261 +vt 0.003663 0.695652 +vt 0.128205 0.706522 +vt 0.003663 0.739130 +vt 0.128205 0.760870 +vt 0.003663 0.760870 +vt 0.128205 0.826087 +vt 0.003663 0.826087 +vt 0.128205 0.815217 +vt 0.128205 0.739130 +vt 0.003663 0.782609 +vt 0.128205 0.793478 +vt 0.003663 0.760870 +vt 0.128205 0.782609 +vt 0.864469 0.695652 +vt 0.886447 0.673913 +vt 0.864469 0.673913 +vt 0.886447 0.728261 +vt 0.864469 0.706522 +vt 0.864469 0.728261 +vt 0.886447 0.706522 +vt 0.886447 0.695652 +vt 0.923077 0.706522 +vt 0.930403 0.750000 +vt 0.930403 0.706522 +vt 0.864469 0.739130 +vt 0.886447 0.739130 +vt 0.915751 0.750000 +vt 0.923077 0.750000 +vt 0.915751 0.706522 +vt 0.893773 0.750000 +vt 0.901099 0.739130 +vt 0.893773 0.706522 +vt 0.038405 0.830860 +vt 0.042385 0.842672 +vt 0.051093 0.858808 +vt 0.048664 0.885701 +vt 0.042030 0.905388 +vt 0.023904 0.905388 +vt 0.017270 0.885701 +vt 0.014841 0.858808 +vt 0.023549 0.842672 +vt 0.027529 0.830860 +vt 0.032967 0.826536 +vt 0.023641 0.929891 +vt 0.027582 0.918194 +vt 0.032967 0.913913 +vt 0.038352 0.918194 +vt 0.042293 0.929891 +vt 0.050916 0.945870 +vt 0.048511 0.972500 +vt 0.041941 0.991995 +vt 0.023993 0.991995 +vt 0.017423 0.972500 +vt 0.015018 0.945870 +vt 0.675853 0.799833 +vt 0.671852 0.787959 +vt 0.670387 0.771739 +vt 0.671852 0.755520 +vt 0.675853 0.743646 +vt 0.681319 0.739300 +vt 0.686785 0.743646 +vt 0.692251 0.771739 +vt 0.686785 0.799833 +vt 0.886447 0.695652 +vt 0.923077 0.750000 +vt 0.915751 0.750000 +vt 0.901099 0.717391 +vt 0.901099 0.739130 +vt 0.893773 0.750000 +vt -0.000000 0.793478 +vt 0.000000 0.706522 +vt 0.128205 0.695652 +vt 0.128205 0.760870 +vt 0.908425 0.717391 +vt 0.908425 0.739130 +vt 0.901099 0.717391 +vt 0.886447 0.706522 +vt 0.886447 0.750000 +vt 0.263736 0.804348 +vt 0.205128 0.826087 +vt 0.205128 0.804348 +vt 0.263736 0.695652 +vt 0.205128 0.717391 +vt 0.205128 0.695652 +vt 0.263736 0.717391 +vt 0.205128 0.739130 +vt 0.263736 0.760870 +vt 0.205128 0.782609 +vt 0.205128 0.760870 +vt 0.263736 0.739130 +vt 0.263736 0.782609 +vt -0.000000 0.913043 +vt 0.014652 0.934783 +vt -0.000000 0.934783 +vt -0.000000 0.826087 +vt 0.014652 0.847826 +vt -0.000000 0.847826 +vt 0.014652 0.956522 +vt -0.000000 0.956522 +vt 0.014652 0.869565 +vt -0.000000 0.869565 +vt 0.014652 0.891304 +vt -0.000000 0.891304 +vt 0.014652 0.913043 +vt 0.670330 0.934783 +vt 0.666667 0.956522 +vt 0.666667 0.934783 +vt 0.670330 0.826087 +vt 0.666667 0.847826 +vt 0.666667 0.826087 +vt 0.670330 0.869565 +vt 0.666667 0.891304 +vt 0.666667 0.869565 +vt 0.670330 0.760870 +vt 0.666667 0.782609 +vt 0.666667 0.760870 +vt 0.670330 0.956522 +vt 0.666667 0.978261 +vt 0.670330 0.847826 +vt 0.670330 0.891304 +vt 0.666667 0.913043 +vt 0.670330 0.782609 +vt 0.666667 0.804348 +vt 0.670330 0.978261 +vt 0.666667 1.000000 +vt 0.670330 0.913043 +vt 0.670330 0.804348 +vt 0.670330 0.739130 +vt 0.666667 0.739130 +vt 0.901099 0.695652 +vt 0.908425 0.695652 +vt 0.908425 0.782609 +vt 0.901099 0.760870 +vt 0.908425 0.760870 +vt 0.901099 0.673913 +vt 0.908425 0.673913 +vt 0.901099 0.695652 +vt 0.908425 0.695652 +vt 0.901099 0.760870 +vt 0.908425 0.782609 +vt 0.908425 0.760870 +vt 0.901099 0.673913 +vt 0.908425 0.673913 +vt 0.263736 0.826087 +vt 0.014652 0.826087 +vt 0.670330 1.000000 +vt 0.901099 0.782609 +vt 0.901099 0.782609 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn -0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn -0.8660 0.5000 0.0000 +vn -0.9659 0.2588 0.0000 +vn 0.9659 0.2588 0.0000 +vn 0.8660 0.5000 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5000 0.8660 0.0000 +vn -0.8660 -0.5000 0.0000 +vn 0.5000 -0.8660 0.0000 +vn 0.8660 -0.5000 0.0000 +vn -0.5000 -0.8660 0.0000 +vn 0.8507 0.5257 0.0000 +vn 0.8507 -0.5257 0.0000 +vn 0.2298 -0.9732 0.0000 +vn 0.2298 0.9732 0.0000 +vn -0.8507 -0.5257 0.0000 +vn -0.8507 0.5257 0.0000 +vn -0.2298 -0.9732 0.0000 +vn -0.2298 0.9732 0.0000 +s off +f 83/107/58 85/108/58 86/109/58 +f 99/110/59 101/111/59 94/112/59 +f 114/113/58 116/114/58 118/115/58 +f 131/116/60 134/117/60 132/118/60 +f 138/119/61 135/120/61 136/121/61 +f 134/117/59 137/122/59 138/119/59 +f 140/123/62 141/124/62 139/125/62 +f 132/126/58 135/120/58 131/127/58 +f 146/128/59 145/129/59 147/130/59 +f 140/131/58 139/132/58 149/133/58 +f 156/134/58 154/135/58 152/136/58 +f 157/137/58 151/138/58 153/139/58 +f 151/138/63 160/140/63 153/139/63 +f 158/141/60 159/142/60 151/138/60 +f 157/143/62 165/144/62 158/145/62 +f 152/136/60 164/146/60 156/147/60 +f 154/135/62 162/148/62 152/136/62 +f 153/139/61 166/149/61 157/143/61 +f 155/150/61 161/151/61 154/135/61 +f 156/152/63 163/153/63 155/150/63 +f 170/154/60 167/155/60 168/156/60 +f 171/157/61 174/158/61 172/159/61 +f 170/154/59 173/160/59 169/161/59 +f 177/162/63 176/163/63 175/164/63 +f 171/157/58 168/165/58 167/166/58 +f 184/167/59 178/168/59 183/169/59 +f 186/170/58 180/171/58 185/172/58 +f 79/173/58 84/174/58 85/108/58 +f 85/108/58 95/175/58 96/176/58 +f 96/176/58 97/177/58 85/108/58 +f 97/177/58 86/109/58 85/108/58 +f 86/109/58 87/178/58 83/107/58 +f 87/178/58 88/179/58 83/107/58 +f 88/179/58 89/180/58 83/107/58 +f 83/107/58 82/181/58 81/182/58 +f 81/182/58 80/183/58 79/173/58 +f 79/173/58 85/108/58 81/182/58 +f 81/182/58 85/108/58 83/107/58 +f 94/112/59 93/184/59 92/185/59 +f 92/185/59 91/186/59 94/112/59 +f 91/186/59 90/187/59 94/112/59 +f 90/187/59 98/188/59 99/110/59 +f 99/110/59 103/189/59 102/190/59 +f 102/190/59 100/191/59 99/110/59 +f 100/191/59 101/111/59 99/110/59 +f 101/111/59 106/192/59 94/112/59 +f 106/192/59 105/193/59 94/112/59 +f 105/193/59 104/194/59 94/112/59 +f 90/187/59 99/110/59 94/112/59 +f 118/115/58 107/195/58 108/196/58 +f 108/196/58 109/197/58 110/198/58 +f 110/198/58 111/199/58 112/200/58 +f 112/200/58 113/201/58 110/198/58 +f 113/201/58 114/113/58 110/198/58 +f 114/113/58 115/202/58 116/114/58 +f 116/114/58 117/203/58 118/115/58 +f 118/115/58 108/196/58 114/113/58 +f 108/196/58 110/198/58 114/113/58 +f 131/116/60 133/204/60 134/117/60 +f 138/119/61 137/122/61 135/120/61 +f 134/117/59 133/204/59 137/122/59 +f 140/123/62 142/205/62 141/124/62 +f 132/126/58 136/121/58 135/120/58 +f 147/130/59 141/124/59 142/205/59 +f 142/205/59 148/206/59 147/130/59 +f 148/206/59 146/128/59 147/130/59 +f 149/133/58 143/207/58 144/208/58 +f 144/208/58 150/209/58 149/133/58 +f 150/209/58 140/131/58 149/133/58 +f 156/134/58 155/210/58 154/135/58 +f 157/137/58 158/211/58 151/138/58 +f 151/138/63 159/142/63 160/140/63 +f 158/141/60 165/212/60 159/142/60 +f 157/143/62 166/149/62 165/144/62 +f 152/136/60 162/148/60 164/146/60 +f 154/135/62 161/151/62 162/148/62 +f 153/139/61 160/140/61 166/149/61 +f 155/150/61 163/153/61 161/151/61 +f 156/152/63 164/213/63 163/153/63 +f 170/154/60 169/161/60 167/155/60 +f 171/157/61 173/160/61 174/158/61 +f 170/154/59 174/158/59 173/160/59 +f 177/162/63 178/168/63 176/163/63 +f 171/157/58 172/159/58 168/165/58 +f 178/168/59 177/162/59 183/169/59 +f 183/169/59 181/214/59 182/215/59 +f 182/215/59 184/167/59 183/169/59 +f 180/171/58 179/216/58 185/172/58 +f 185/172/58 175/217/58 176/218/58 +f 176/218/58 186/170/58 185/172/58 +s 1 +f 73/219/64 67/220/65 66/221/64 +f 75/222/66 69/223/67 68/224/66 +f 76/225/67 70/226/68 69/223/67 +f 78/227/61 65/228/69 71/229/61 +f 77/230/68 71/229/61 70/226/68 +f 72/231/69 66/221/64 65/228/69 +f 87/232/69 102/233/64 88/234/64 +f 95/235/66 105/236/67 96/237/67 +f 88/234/64 103/238/65 89/239/65 +f 96/237/67 106/240/68 97/241/68 +f 97/241/68 101/242/61 86/243/61 +f 86/243/61 100/244/69 87/232/69 +f 121/245/62 110/246/70 109/247/62 +f 128/248/67 117/249/68 116/250/67 +f 130/251/61 107/252/69 118/253/61 +f 125/254/71 114/255/72 113/256/71 +f 122/257/70 111/258/73 110/246/70 +f 129/259/68 118/253/61 117/249/68 +f 119/260/69 108/261/64 107/252/69 +f 126/262/72 115/263/63 114/255/72 +f 123/264/73 112/265/60 111/258/73 +f 120/266/64 109/247/62 108/261/64 +f 127/267/63 116/250/67 115/263/63 +f 124/268/60 113/256/71 112/269/60 +f 146/128/74 143/207/75 145/129/75 +f 145/129/75 149/270/76 147/271/76 +f 142/272/61 150/273/77 148/274/77 +f 148/274/77 144/208/74 146/128/74 +f 147/271/76 139/275/60 141/276/60 +f 179/216/78 182/215/79 181/214/78 +f 185/277/80 181/214/78 183/278/80 +f 186/279/81 178/280/61 184/281/81 +f 180/171/79 184/281/81 182/215/79 +f 175/282/60 183/278/80 177/283/60 +f 73/219/64 74/284/65 67/220/65 +f 75/222/66 76/225/67 69/223/67 +f 76/225/67 77/230/68 70/226/68 +f 78/227/61 72/231/69 65/228/69 +f 77/230/68 78/227/61 71/229/61 +f 72/231/69 73/219/64 66/221/64 +f 87/232/69 100/244/69 102/233/64 +f 95/235/66 104/285/66 105/236/67 +f 88/234/64 102/233/64 103/238/65 +f 96/237/67 105/236/67 106/240/68 +f 97/241/68 106/240/68 101/242/61 +f 86/243/61 101/242/61 100/244/69 +f 121/245/62 122/257/70 110/246/70 +f 128/248/67 129/259/68 117/249/68 +f 130/251/61 119/260/69 107/252/69 +f 125/254/71 126/262/72 114/255/72 +f 122/257/70 123/264/73 111/258/73 +f 129/259/68 130/251/61 118/253/61 +f 119/260/69 120/266/64 108/261/64 +f 126/262/72 127/267/63 115/263/63 +f 123/264/73 124/286/60 112/265/60 +f 120/266/64 121/245/62 109/247/62 +f 127/267/63 128/248/67 116/250/67 +f 124/268/60 125/254/71 113/256/71 +f 146/128/74 144/208/74 143/207/75 +f 145/129/75 143/207/75 149/270/76 +f 142/272/61 140/287/61 150/273/77 +f 148/274/77 150/273/77 144/208/74 +f 147/271/76 149/270/76 139/275/60 +f 179/216/78 180/171/79 182/215/79 +f 185/277/80 179/216/78 181/214/78 +f 186/279/81 176/288/61 178/280/61 +f 180/171/79 186/279/81 184/281/81 +f 175/282/60 185/277/80 183/278/80 +o Gun v 0.000000 1.187500 4.375000 v 0.000000 1.187500 8.000000 v 0.093750 1.162380 4.375000 @@ -213,20 +1054,6 @@ v -0.250000 0.875000 1.625000 v -0.250000 1.000000 1.625000 v 0.125000 0.312500 1.375000 v -0.125000 0.312500 1.375000 -v -0.093750 1.162380 1.125000 -v -0.162380 1.093750 1.125000 -v -0.187500 1.000000 1.125000 -v 0.187500 1.000000 1.125000 -v 0.162380 1.093750 1.125000 -v 0.093750 1.162380 1.125000 -v 0.000000 1.187500 1.125000 -v -0.093750 1.162380 0.125000 -v -0.162380 1.093750 0.125000 -v -0.187500 1.000000 0.125000 -v 0.187500 1.000000 0.125000 -v 0.162380 1.093750 0.125000 -v 0.093750 1.162380 0.125000 -v 0.000000 1.187500 0.125000 v 0.187500 1.000000 1.625000 v -0.187500 1.000000 1.625000 v 0.187500 1.000000 0.125000 @@ -247,61 +1074,9 @@ v -0.125000 1.216506 -0.125000 v 0.000000 1.250000 -0.125000 v -0.216506 1.125000 -0.125000 v -0.250000 1.000000 -0.125000 -v 0.093750 0.837620 1.375000 -v 0.000000 0.812500 1.375000 -v -0.093750 0.837620 1.375000 -v -0.162380 0.906250 1.375000 -v -0.187500 1.000000 1.375000 v 0.250000 1.000000 -0.125000 v 0.216506 1.125000 -0.125000 v 0.125000 1.216506 -0.125000 -v 0.162380 0.906250 1.375000 -v 0.187500 1.000000 1.375000 -v 0.000000 1.312500 1.375000 -v -0.156250 1.270633 1.375000 -v -0.270633 1.156250 1.375000 -v -0.312500 1.000000 1.375000 -v -0.093750 0.837620 1.125000 -v 0.000000 0.812500 1.125000 -v 0.093750 0.837620 1.125000 -v 0.162380 0.906250 1.125000 -v 0.187500 1.000000 1.125000 -v 0.312500 1.000000 1.375000 -v 0.270633 1.156250 1.375000 -v 0.156250 1.270633 1.375000 -v -0.162380 0.906250 1.125000 -v -0.187500 1.000000 1.125000 -v -0.156250 1.270633 1.125000 -v 0.000000 1.312500 1.125000 -v -0.270633 1.156250 1.125000 -v -0.312500 1.000000 1.125000 -v 0.312500 1.000000 1.125000 -v 0.270633 1.156250 1.125000 -v 0.156250 1.270633 1.125000 -v -0.093750 1.162380 1.437500 -v -0.162380 1.093750 1.437500 -v -0.187500 1.000000 1.437500 -v -0.162380 0.906250 1.437500 -v -0.093750 0.837620 1.437500 -v 0.000000 0.812500 1.437500 -v 0.093750 0.837620 1.437500 -v 0.162380 0.906250 1.437500 -v 0.187500 1.000000 1.437500 -v 0.162380 1.093750 1.437500 -v 0.093750 1.162380 1.437500 -v 0.000000 1.187500 1.437500 -v -0.093750 1.162380 1.375000 -v -0.162380 1.093750 1.375000 -v -0.187500 1.000000 1.375000 -v -0.162380 0.906250 1.375000 -v -0.093750 0.837620 1.375000 -v 0.000000 0.812500 1.375000 -v 0.093750 0.837620 1.375000 -v 0.162380 0.906250 1.375000 -v 0.187500 1.000000 1.375000 -v 0.162380 1.093750 1.375000 -v 0.093750 1.162380 1.375000 -v 0.000000 1.187500 1.375000 v -0.187500 1.000000 1.437500 v -0.162380 0.906250 1.437500 v -0.093750 0.837620 1.437500 @@ -496,14 +1271,6 @@ v 0.250000 0.156350 4.656250 v 0.250000 0.218850 4.656250 v 0.250000 0.156350 4.593750 v 0.250000 0.218850 4.593750 -v 0.125000 1.000000 1.125000 -v 0.500000 1.000000 1.125000 -v 0.125000 1.000000 1.000000 -v 0.500000 1.000000 1.000000 -v 0.125000 1.062500 1.125000 -v 0.500000 1.062500 1.125000 -v 0.125000 1.062500 1.000000 -v 0.500000 1.062500 1.000000 v 0.312500 1.000000 1.250000 v 0.312500 0.875000 1.250000 v 0.312500 1.000000 -0.875000 @@ -512,18 +1279,6 @@ v 0.437500 0.875000 1.250000 v 0.437500 1.000000 1.250000 v 0.437500 0.875000 0.000000 v 0.437500 1.000000 0.000000 -v 0.500000 0.906250 1.125000 -v 0.500000 1.156250 1.125000 -v 0.500000 0.906250 1.000000 -v 0.500000 1.156250 1.000000 -v 0.750000 0.968750 1.125000 -v 0.750000 1.093750 1.125000 -v 0.750000 0.968750 1.000000 -v 0.750000 1.093750 1.000000 -v 0.625000 0.906250 1.000000 -v 0.625000 1.156250 1.000000 -v 0.625000 0.906250 1.125000 -v 0.625000 1.156250 1.125000 v 0.687500 0.875000 0.000000 v 0.687500 1.000000 0.000000 v 0.562500 0.875000 -0.500000 @@ -602,22 +1357,6 @@ v -0.250000 0.562500 -8.000000 v -0.125000 0.562500 -8.125000 v 0.312500 0.875000 -1.000000 v -0.312500 0.875000 -1.000000 -v 0.250000 1.000000 3.500000 -v -0.250000 1.000000 3.500000 -v 0.250000 1.125000 3.500000 -v -0.250000 1.125000 3.500000 -v -0.187500 1.125000 3.500000 -v -0.187500 1.000000 3.500000 -v 0.187500 1.125000 3.500000 -v 0.187500 1.000000 3.500000 -v 0.250000 1.000000 1.375000 -v 0.250000 1.125000 1.375000 -v -0.250000 1.125000 1.375000 -v -0.250000 1.000000 1.375000 -v -0.187500 1.125000 1.375000 -v -0.187500 1.000000 1.375000 -v 0.187500 1.000000 1.375000 -v 0.187500 1.125000 1.375000 v 0.312500 1.000000 -1.000000 v -0.312500 1.000000 -1.000000 v 0.312500 1.000000 -0.125000 @@ -716,70 +1455,6 @@ v -0.250000 1.437500 -0.625000 v -0.250000 1.525888 -0.588388 v -0.250000 1.562500 -0.500000 v -0.250000 1.525888 -0.411612 -v 0.187500 0.875000 1.125000 -v -0.187500 0.875000 1.125000 -v 0.187500 0.875000 0.125000 -v -0.187500 0.875000 0.125000 -v -0.187500 -1.375000 1.125000 -v 0.187500 -1.375000 1.125000 -v -0.187500 -1.375000 0.125000 -v 0.187500 -1.375000 0.125000 -v 0.000000 1.000000 0.187500 -v -0.062500 0.983253 0.187500 -v -0.108253 0.937500 0.187500 -v -0.125000 0.875000 0.187500 -v -0.108253 0.812500 0.187500 -v -0.062500 0.766747 0.187500 -v 0.000000 0.750000 0.187500 -v 0.062500 0.766747 0.187500 -v 0.108253 0.812500 0.187500 -v 0.125000 0.875000 0.187500 -v 0.108253 0.937500 0.187500 -v 0.062500 0.983253 0.187500 -v 0.000000 1.000000 0.812500 -v -0.062500 0.983253 0.812500 -v -0.108253 0.937500 0.812500 -v -0.125000 0.875000 0.812500 -v -0.108253 0.812500 0.812500 -v -0.062500 0.766747 0.812500 -v 0.000000 0.750000 0.812500 -v 0.062500 0.766747 0.812500 -v 0.108253 0.812500 0.812500 -v 0.125000 0.875000 0.812500 -v 0.108253 0.937500 0.812500 -v 0.062500 0.983253 0.812500 -v 0.000000 0.968750 1.000000 -v -0.046875 0.956190 1.000000 -v -0.081190 0.921875 1.000000 -v -0.093750 0.875000 1.000000 -v -0.081190 0.828125 1.000000 -v -0.046875 0.793810 1.000000 -v 0.000000 0.781250 1.000000 -v 0.046875 0.793810 1.000000 -v 0.081190 0.828125 1.000000 -v 0.093750 0.875000 1.000000 -v 0.081190 0.921875 1.000000 -v 0.046875 0.956190 1.000000 -v 0.000000 0.906250 1.062500 -v -0.015625 0.902063 1.062500 -v -0.027063 0.890625 1.062500 -v -0.031250 0.875000 1.062500 -v -0.027063 0.859375 1.062500 -v -0.015625 0.847937 1.062500 -v 0.000000 0.843750 1.062500 -v 0.015625 0.847937 1.062500 -v 0.027063 0.859375 1.062500 -v 0.031250 0.875000 1.062500 -v 0.027063 0.890625 1.062500 -v 0.015625 0.902063 1.062500 -v -0.125000 0.875000 1.125000 -v -0.062500 0.750000 1.125000 -v 0.062500 0.750000 1.125000 -v 0.125000 0.875000 1.125000 -v -0.125000 0.875000 0.125000 -v -0.062500 0.750000 0.125000 -v 0.062500 0.750000 0.125000 -v 0.125000 0.875000 0.125000 v -0.125000 0.250000 0.000000 v 0.125000 0.250000 0.000000 v -0.125000 0.250000 -0.750000 @@ -924,26 +1599,6 @@ v -0.687500 0.875000 0.000000 v -0.687500 1.000000 0.000000 v -0.562500 0.875000 -0.500000 v -0.562500 1.000000 -0.500000 -v -0.125000 1.000000 1.125000 -v -0.500000 1.000000 1.125000 -v -0.125000 1.000000 1.000000 -v -0.500000 1.000000 1.000000 -v -0.125000 1.062500 1.125000 -v -0.500000 1.062500 1.125000 -v -0.125000 1.062500 1.000000 -v -0.500000 1.062500 1.000000 -v -0.500000 0.906250 1.125000 -v -0.500000 1.156250 1.125000 -v -0.500000 0.906250 1.000000 -v -0.500000 1.156250 1.000000 -v -0.750000 0.968750 1.125000 -v -0.750000 1.093750 1.125000 -v -0.750000 0.968750 1.000000 -v -0.750000 1.093750 1.000000 -v -0.625000 0.906250 1.000000 -v -0.625000 1.156250 1.000000 -v -0.625000 0.906250 1.125000 -v -0.625000 1.156250 1.125000 vt 0.062271 0.065217 vt 0.058608 0.043478 vt 0.062271 0.043478 @@ -1139,15 +1794,6 @@ vt 0.131868 0.543478 vt 0.723636 0.674017 vt 0.748892 0.674017 vt 0.736264 0.738921 -vt 0.022092 0.858808 -vt 0.043842 0.858808 -vt 0.032967 0.912594 -vt 0.043736 0.945870 -vt 0.032967 0.999130 -vt 0.022198 0.945870 -vt 0.690786 0.755520 -vt 0.690786 0.787959 -vt 0.681319 0.804179 vt 0.886447 0.858696 vt 0.879121 0.869565 vt 0.879121 0.858696 @@ -1231,7 +1877,7 @@ vt 0.267399 0.880435 vt 0.267399 0.847826 vt 0.285714 0.913043 vt 0.285714 0.902174 -vt 0.293040 0.902174 +vt 0.289377 0.902174 vt 0.271062 0.902174 vt 0.311355 0.880435 vt 0.300366 0.902174 @@ -1353,18 +1999,6 @@ vt 0.307692 0.815217 vt 0.278388 0.847826 vt 0.307692 0.826087 vt 0.197802 0.434783 -vt 0.886447 0.673913 -vt 0.864469 0.695652 -vt 0.864469 0.673913 -vt 0.864469 0.706522 -vt 0.886447 0.728261 -vt 0.864469 0.728261 -vt 0.886447 0.706522 -vt 0.930403 0.750000 -vt 0.923077 0.706522 -vt 0.930403 0.706522 -vt 0.864469 0.739130 -vt 0.886447 0.739130 vt 0.842491 0.630435 vt 0.915751 0.652174 vt 0.842491 0.652174 @@ -1377,12 +2011,6 @@ vt 0.842491 0.652174 vt 0.901099 0.586957 vt 0.915751 0.608696 vt 0.901099 0.608696 -vt 0.908425 0.739130 -vt 0.908425 0.717391 -vt 0.915751 0.706522 -vt 0.886447 0.750000 -vt 0.886447 0.706522 -vt 0.893773 0.706522 vt 0.945055 0.630435 vt 0.967033 0.673913 vt 0.945055 0.630435 @@ -1410,26 +2038,6 @@ vt 0.864469 0.673913 vt 0.864469 0.684783 vt 0.864469 0.695652 vt 0.183150 0.630435 -vt 0.000000 0.815217 -vt 0.003663 0.793478 -vt 0.003663 0.815217 -vt 0.000000 0.728261 -vt 0.003663 0.706522 -vt 0.003663 0.728261 -vt 0.128205 0.728261 -vt 0.003663 0.695652 -vt 0.128205 0.706522 -vt 0.003663 0.739130 -vt 0.128205 0.760870 -vt 0.003663 0.760870 -vt 0.128205 0.826087 -vt 0.003663 0.826087 -vt 0.128205 0.815217 -vt 0.128205 0.739130 -vt 0.003663 0.782609 -vt 0.128205 0.793478 -vt 0.003663 0.760870 -vt 0.128205 0.782609 vt 0.216117 0.282609 vt 0.260073 0.304348 vt 0.216117 0.304348 @@ -1520,31 +2128,6 @@ vt 0.832911 0.593645 vt 0.832911 0.637123 vt 0.832911 0.667225 vt 0.822767 0.667225 -vt 0.450549 0.989130 -vt 0.391941 1.000000 -vt 0.391941 0.989130 -vt 0.391941 0.456522 -vt 0.450549 0.521739 -vt 0.391941 0.521739 -vt 0.391941 0.913043 -vt 0.450549 0.913043 -vt 0.369963 0.913043 -vt 0.369963 0.913043 -vt 0.472527 0.913043 -vt 0.531136 0.521739 -vt 0.531136 0.913043 -vt 0.472527 0.521739 -vt 0.450549 0.913043 -vt 0.450549 0.913043 -vt 0.107288 0.837093 -vt 0.113553 0.826359 -vt 0.119818 0.858560 -vt 0.391941 0.923913 -vt 0.450549 0.923913 -vt 0.391941 0.945652 -vt 0.450549 0.967391 -vt 0.391941 0.967391 -vt 0.450549 0.945652 vt 0.670330 0.652174 vt 0.626374 0.695652 vt 0.626374 0.652174 @@ -1686,25 +2269,6 @@ vt 0.901099 0.586957 vt 0.901099 0.608696 vt 0.945055 0.630435 vt 0.945055 0.630435 -vt 0.864469 0.695652 -vt 0.886447 0.673913 -vt 0.864469 0.673913 -vt 0.886447 0.728261 -vt 0.864469 0.706522 -vt 0.864469 0.728261 -vt 0.886447 0.706522 -vt 0.886447 0.695652 -vt 0.923077 0.706522 -vt 0.930403 0.750000 -vt 0.930403 0.706522 -vt 0.864469 0.739130 -vt 0.886447 0.739130 -vt 0.915751 0.750000 -vt 0.923077 0.750000 -vt 0.915751 0.706522 -vt 0.893773 0.750000 -vt 0.901099 0.739130 -vt 0.893773 0.706522 vt 0.058608 0.054348 vt 0.058608 0.097826 vt 0.058608 0.141304 @@ -1758,37 +2322,6 @@ vt 0.743554 0.658180 vt 0.750845 0.695652 vt 0.748892 0.717287 vt 0.743554 0.733124 -vt 0.038405 0.830860 -vt 0.042385 0.842672 -vt 0.051093 0.858808 -vt 0.048664 0.885701 -vt 0.042030 0.905388 -vt 0.023904 0.905388 -vt 0.017270 0.885701 -vt 0.014841 0.858808 -vt 0.023549 0.842672 -vt 0.027529 0.830860 -vt 0.032967 0.826536 -vt 0.023641 0.929891 -vt 0.027582 0.918194 -vt 0.032967 0.913913 -vt 0.038352 0.918194 -vt 0.042293 0.929891 -vt 0.050916 0.945870 -vt 0.048511 0.972500 -vt 0.041941 0.991995 -vt 0.023993 0.991995 -vt 0.017423 0.972500 -vt 0.015018 0.945870 -vt 0.675853 0.799833 -vt 0.671852 0.787959 -vt 0.670387 0.771739 -vt 0.671852 0.755520 -vt 0.675853 0.743646 -vt 0.681319 0.739300 -vt 0.686785 0.743646 -vt 0.692251 0.771739 -vt 0.686785 0.799833 vt 0.923077 0.858696 vt 0.901099 0.782609 vt 0.267399 0.934783 @@ -1799,7 +2332,7 @@ vt 0.930403 0.771739 vt 0.996337 0.858696 vt 0.945055 0.880435 vt 0.278388 0.913043 -vt 0.296703 0.902174 +vt 0.293040 0.902174 vt 0.274725 0.902174 vt 0.307692 0.902174 vt 0.608059 0.826087 @@ -1822,24 +2355,14 @@ vt 0.307692 0.728261 vt 0.274725 0.815217 vt 0.307692 0.847826 vt 0.043956 0.434783 -vt 0.886447 0.695652 -vt 0.923077 0.750000 vt 0.915751 0.630435 vt 0.835165 0.652174 vt 0.915751 0.586957 -vt 0.915751 0.750000 -vt 0.901099 0.717391 -vt 0.901099 0.739130 -vt 0.893773 0.750000 vt 0.915751 0.608696 vt 0.842491 0.695652 vt 0.043956 0.586957 vt 0.197802 0.586957 vt 0.043956 0.543478 -vt -0.000000 0.793478 -vt 0.000000 0.706522 -vt 0.128205 0.695652 -vt 0.128205 0.760870 vt 0.208791 0.282609 vt 0.208791 0.391304 vt 0.772894 0.771739 @@ -1877,23 +2400,6 @@ vt 0.822767 0.637123 vt 0.827839 0.630889 vt 0.835012 0.652174 vt 0.827839 0.673459 -vt 0.450549 1.000000 -vt 0.450549 0.456522 -vt 0.369963 0.913043 -vt 0.369963 0.913043 -vt 0.369963 0.521739 -vt 0.369963 0.913043 -vt 0.450549 0.913043 -vt 0.450549 0.913043 -vt 0.117170 0.866417 -vt 0.107288 0.858560 -vt 0.113553 0.869293 -vt 0.109936 0.866417 -vt 0.106319 0.847826 -vt 0.109936 0.829235 -vt 0.117170 0.829235 -vt 0.119818 0.837092 -vt 0.120788 0.847826 vt 0.772894 0.586957 vt 0.750916 0.630435 vt 0.728938 0.586957 @@ -1922,11 +2428,6 @@ vt 0.835165 0.652174 vt 0.842491 0.652174 vt 0.915751 0.586957 vt 0.915751 0.608696 -vt 0.908425 0.717391 -vt 0.908425 0.739130 -vt 0.901099 0.717391 -vt 0.886447 0.706522 -vt 0.886447 0.750000 vt 0.274725 0.108696 vt 0.274725 0.130435 vt 0.274725 0.086957 @@ -1998,19 +2499,6 @@ vt 0.611722 0.782609 vt 0.611722 0.978261 vt 0.611722 0.913043 vt 0.611722 0.804348 -vt 0.263736 0.804348 -vt 0.205128 0.826087 -vt 0.205128 0.804348 -vt 0.263736 0.695652 -vt 0.205128 0.717391 -vt 0.205128 0.695652 -vt 0.263736 0.717391 -vt 0.205128 0.739130 -vt 0.263736 0.760870 -vt 0.205128 0.782609 -vt 0.205128 0.760870 -vt 0.263736 0.739130 -vt 0.263736 0.782609 vt 0.706960 0.760870 vt 0.721612 0.782609 vt 0.706960 0.782609 @@ -2024,44 +2512,6 @@ vt 0.721612 0.739130 vt 0.706960 0.739130 vt 0.721612 0.717391 vt 0.721612 0.760870 -vt -0.000000 0.913043 -vt 0.014652 0.934783 -vt -0.000000 0.934783 -vt -0.000000 0.826087 -vt 0.014652 0.847826 -vt -0.000000 0.847826 -vt 0.014652 0.956522 -vt -0.000000 0.956522 -vt 0.014652 0.869565 -vt -0.000000 0.869565 -vt 0.014652 0.891304 -vt -0.000000 0.891304 -vt 0.014652 0.913043 -vt 0.670330 0.934783 -vt 0.666667 0.956522 -vt 0.666667 0.934783 -vt 0.670330 0.826087 -vt 0.666667 0.847826 -vt 0.666667 0.826087 -vt 0.670330 0.869565 -vt 0.666667 0.891304 -vt 0.666667 0.869565 -vt 0.670330 0.760870 -vt 0.666667 0.782609 -vt 0.666667 0.760870 -vt 0.670330 0.956522 -vt 0.666667 0.978261 -vt 0.670330 0.847826 -vt 0.670330 0.891304 -vt 0.666667 0.913043 -vt 0.670330 0.782609 -vt 0.666667 0.804348 -vt 0.670330 0.978261 -vt 0.666667 1.000000 -vt 0.670330 0.913043 -vt 0.670330 0.804348 -vt 0.670330 0.739130 -vt 0.666667 0.739130 vt 0.128205 0.739130 vt 0.205128 0.760870 vt 0.128205 0.760870 @@ -2090,13 +2540,6 @@ vt 0.608059 0.804348 vt 0.611722 0.782609 vt 0.611722 0.804348 vt 0.611722 0.673913 -vt 0.901099 0.695652 -vt 0.908425 0.695652 -vt 0.908425 0.782609 -vt 0.901099 0.760870 -vt 0.908425 0.760870 -vt 0.901099 0.673913 -vt 0.908425 0.673913 vt 0.945055 0.608696 vt 0.945055 0.586957 vt 0.967033 0.608696 @@ -2247,60 +2690,6 @@ vt 0.820513 0.760870 vt 0.816850 0.739130 vt 0.820513 0.739130 vt 0.816850 0.717391 -vt 0.106227 0.836957 -vt 0.069597 0.826087 -vt 0.106227 0.826087 -vt 0.106227 0.934783 -vt 0.069597 0.923913 -vt 0.106227 0.923913 -vt 0.106227 0.880435 -vt 0.069597 0.869565 -vt 0.106227 0.869565 -vt 0.106227 0.902174 -vt 0.069597 0.891304 -vt 0.106227 0.891304 -vt 0.106227 0.847826 -vt 0.069597 0.836957 -vt 0.106227 0.945652 -vt 0.069597 0.934783 -vt 0.069597 0.880435 -vt 0.106227 0.913043 -vt 0.069597 0.902174 -vt 0.106227 0.858696 -vt 0.069597 0.847826 -vt 0.106227 0.956522 -vt 0.069597 0.945652 -vt 0.069597 0.913043 -vt 0.069597 0.858696 -vt 0.058608 0.945652 -vt 0.058608 0.934783 -vt 0.058608 0.891304 -vt 0.058608 0.880435 -vt 0.058608 0.913043 -vt 0.058608 0.902174 -vt 0.058608 0.858696 -vt 0.058608 0.847826 -vt 0.069597 0.956522 -vt 0.058608 0.923913 -vt 0.058608 0.836957 -vt 0.058608 0.826087 -vt 0.058608 0.869565 -vt 0.054945 0.945652 -vt 0.054945 0.934783 -vt 0.054945 0.891304 -vt 0.054945 0.880435 -vt 0.054945 0.913043 -vt 0.054945 0.902174 -vt 0.054945 0.847826 -vt 0.058608 0.956522 -vt 0.054945 0.869565 -vt 0.054945 0.858696 -vt 0.054945 0.836957 -vt 0.054945 0.826087 -vt 0.054945 0.923913 -vt 0.053164 0.826561 -vt 0.054593 0.829009 -vt 0.053164 0.836354 vt 0.750916 0.652174 vt 0.692308 0.652174 vt 0.688645 0.652174 @@ -2367,13 +2756,6 @@ vt 0.318681 0.358696 vt 0.945055 0.608696 vt 0.967033 0.608696 vt 0.945055 0.586957 -vt 0.901099 0.695652 -vt 0.908425 0.695652 -vt 0.901099 0.760870 -vt 0.908425 0.782609 -vt 0.908425 0.760870 -vt 0.901099 0.673913 -vt 0.908425 0.673913 vt -0.000000 0.206522 vt 0.000000 0.097826 vt -0.000000 0.141304 @@ -2402,13 +2784,9 @@ vt 0.652015 0.869565 vt 0.652015 0.760870 vt 0.652015 0.956522 vt 0.611722 1.000000 -vt 0.263736 0.826087 vt 0.706960 0.652174 -vt 0.014652 0.826087 -vt 0.670330 1.000000 vt 0.205128 0.695652 vt 0.608059 0.782609 -vt 0.901099 0.782609 vt 0.967033 0.586957 vt 0.663004 0.521739 vt 0.663004 0.500000 @@ -2420,16 +2798,6 @@ vt 0.963370 0.086957 vt 0.824176 0.673913 vt 0.816850 0.760870 vt 0.816850 0.760870 -vt 0.054945 0.956522 -vt 0.052339 0.835698 -vt 0.051735 0.829009 -vt 0.051735 0.833906 -vt 0.051514 0.831457 -vt 0.052339 0.827217 -vt 0.053989 0.827217 -vt 0.054814 0.831457 -vt 0.054593 0.833906 -vt 0.053989 0.835698 vt 0.772894 0.652174 vt 0.728938 0.652174 vt 0.677656 0.652174 @@ -2443,7 +2811,6 @@ vt 0.523810 0.358696 vt 0.531136 0.423913 vt 0.531136 0.456522 vt 0.967033 0.586957 -vt 0.901099 0.782609 vn 0.0000 0.0000 1.0000 vn 0.0000 0.0000 -1.0000 vn -1.0000 0.0000 0.0000 @@ -2526,10 +2893,6 @@ vn 0.3535 -0.6124 -0.7071 vn -0.3057 -0.7078 -0.6369 vn -0.0407 -0.7592 -0.6496 vn 0.7768 0.6297 0.0000 -vn 0.8507 0.5257 0.0000 -vn 0.8507 -0.5257 0.0000 -vn 0.2298 -0.9732 0.0000 -vn 0.2298 0.9732 0.0000 vn 0.9701 0.0000 -0.2425 vn 0.9145 0.0000 -0.4046 vn 0.8321 0.0000 -0.5547 @@ -2595,42 +2958,6 @@ vn -0.8727 0.2257 -0.4330 vn -0.9808 0.1951 0.0000 vn 0.9808 0.1951 0.0000 vn 0.0000 0.7071 0.7071 -vn -0.0000 -0.9967 0.0814 -vn -0.9967 0.0000 0.0814 -vn 0.8632 0.4983 0.0814 -vn 0.0000 0.9967 0.0814 -vn 0.4983 -0.8632 0.0814 -vn -0.8632 -0.4983 0.0814 -vn 0.4983 0.8632 0.0814 -vn -0.4983 0.8632 0.0814 -vn 0.8632 -0.4983 0.0814 -vn -0.4983 -0.8632 0.0814 -vn -0.8632 0.4983 0.0814 -vn 0.9967 -0.0000 0.0814 -vn -0.4494 -0.7784 0.4382 -vn -0.7784 -0.4494 0.4382 -vn 0.0000 0.8989 0.4382 -vn 0.4494 0.7784 0.4382 -vn -0.7784 0.4494 0.4382 -vn -0.4494 0.7784 0.4382 -vn 0.8989 -0.0000 0.4382 -vn 0.7784 -0.4494 0.4382 -vn -0.8989 0.0000 0.4382 -vn 0.4494 -0.7784 0.4382 -vn 0.0000 -0.8989 0.4382 -vn 0.7784 0.4494 0.4382 -vn -0.2172 -0.3762 0.9007 -vn -0.3762 -0.2172 0.9007 -vn 0.0000 0.4344 0.9007 -vn 0.2172 0.3762 0.9007 -vn -0.3762 0.2172 0.9007 -vn -0.2172 0.3762 0.9007 -vn 0.3762 -0.2172 0.9007 -vn 0.3762 0.2172 0.9007 -vn 0.4344 0.0000 0.9007 -vn 0.2172 -0.3762 0.9007 -vn 0.0000 -0.4344 0.9007 -vn -0.4344 0.0000 0.9007 vn 0.0000 -0.3827 -0.9239 vn 0.0000 -0.9239 -0.3827 vn 0.0000 -0.9239 0.3827 @@ -2661,1489 +2988,1207 @@ vn -0.9761 -0.2175 0.0000 vn -0.9145 0.0000 -0.4046 vn -0.9701 0.0000 -0.2425 vn -0.8321 0.0000 -0.5547 -vn -0.8507 -0.5257 0.0000 -vn -0.8507 0.5257 0.0000 -vn -0.2298 -0.9732 0.0000 -vn -0.2298 0.9732 0.0000 vn -0.3536 -0.6124 -0.7071 vn -0.4000 -0.6928 -0.6000 vn -0.8727 -0.4330 -0.2257 vn 0.9732 0.2298 0.0000 s off -f 8/1/1 33/2/1 10/3/1 -f 8/1/1 35/4/1 34/5/1 -f 4/6/1 35/7/1 6/8/1 -f 4/6/1 25/9/1 36/10/1 -f 24/11/1 25/12/1 2/13/1 -f 24/11/1 27/14/1 26/15/1 -f 22/16/1 28/17/1 27/18/1 -f 20/19/1 29/20/1 28/21/1 -f 18/22/1 30/23/1 29/24/1 -f 14/25/1 30/26/1 16/27/1 -f 14/28/1 32/29/1 31/30/1 -f 10/3/1 32/31/1 12/32/1 -f 43/33/1 45/34/1 38/35/1 -f 60/36/1 55/37/1 181/38/1 -f 53/39/1 72/40/1 184/41/1 -f 52/42/1 55/43/1 50/44/1 -f 79/45/2 69/46/2 78/47/2 -f 51/48/2 81/49/2 70/50/2 -f 56/51/2 58/52/2 77/53/2 -f 104/54/2 92/55/2 95/56/2 -f 49/57/2 54/58/2 51/48/2 -f 183/59/1 71/60/1 68/61/1 -f 83/62/1 65/63/1 67/64/1 -f 61/65/2 74/66/2 73/67/2 -f 183/68/1 66/69/1 82/70/1 -f 58/52/2 76/71/2 77/72/2 -f 57/73/2 75/74/2 76/71/2 -f 184/75/1 71/60/1 182/76/1 -f 83/77/1 59/78/1 84/79/1 -f 62/80/2 79/81/2 74/66/2 -f 181/82/1 59/78/1 60/36/1 -f 85/83/1 102/84/1 87/85/1 -f 91/86/1 108/87/1 93/88/1 -f 86/89/1 107/90/1 91/86/1 -f 112/91/2 99/92/2 100/93/2 -f 98/94/2 112/91/2 100/93/2 -f 90/95/1 108/87/1 106/96/1 -f 111/97/2 94/98/2 99/92/2 -f 115/99/2 97/100/2 96/101/2 -f 89/102/1 113/103/1 88/104/1 -f 116/105/2 98/106/2 97/100/2 -f 90/107/1 114/108/1 89/102/1 -f 94/109/2 104/54/2 95/56/2 -f 86/110/1 102/84/1 105/111/1 -f 884/112/1 881/113/1 886/114/1 -f 143/115/2 155/116/2 154/117/2 -f 133/118/2 155/116/2 144/119/2 -f 133/120/2 145/121/2 156/122/2 -f 135/123/2 145/121/2 134/124/2 -f 136/125/2 146/126/2 135/127/2 -f 137/128/2 147/129/2 136/130/2 -f 138/131/2 148/132/2 137/133/2 -f 138/134/2 150/135/2 149/136/2 -f 140/137/2 150/138/2 139/139/2 -f 140/140/2 152/141/2 151/142/2 -f 141/143/2 153/144/2 152/141/2 -f 143/145/2 153/144/2 142/146/2 -f 69/46/2 81/147/2 78/47/2 -f 82/70/1 65/63/1 80/148/1 -f 75/149/2 61/65/2 73/67/2 -f 167/150/2 163/151/2 159/152/2 -f 193/153/3 201/154/3 192/155/3 -f 191/156/4 199/157/4 190/158/4 -f 189/159/5 197/160/5 188/161/5 -f 192/155/6 200/162/6 191/163/6 -f 190/158/7 198/164/7 189/159/7 -f 202/165/2 197/166/2 199/167/2 -f 197/166/8 601/168/8 600/169/8 -f 600/169/2 196/170/2 186/171/2 -f 188/172/1 206/173/1 189/174/1 -f 187/175/9 205/176/9 188/172/9 -f 185/177/1 204/178/1 187/175/1 -f 194/179/1 210/180/1 195/181/1 -f 193/182/9 209/183/9 194/179/9 -f 193/182/1 207/184/1 208/185/1 -f 190/186/1 212/187/1 191/188/1 -f 212/187/1 192/189/1 191/188/1 -f 189/174/1 211/190/1 190/186/1 -f 185/177/10 186/171/10 229/191/10 -f 186/171/10 230/192/10 229/191/10 -f 235/193/1 239/194/1 231/195/1 -f 251/196/1 256/197/1 257/198/1 -f 270/199/2 272/200/2 265/201/2 -f 285/202/1 287/203/1 289/204/1 -f 340/205/2 360/206/2 341/207/2 -f 339/208/2 361/209/2 340/205/2 -f 338/210/2 362/211/2 339/208/2 -f 338/210/2 364/212/2 363/213/2 -f 337/214/2 365/215/2 364/212/2 -f 336/216/2 366/217/2 365/215/2 -f 317/218/1 359/219/1 316/220/1 -f 318/221/1 358/222/1 317/218/1 -f 319/223/1 357/224/1 318/221/1 -f 355/225/1 319/223/1 320/226/1 -f 354/227/1 320/226/1 321/228/1 -f 353/229/1 321/228/1 322/230/1 -f 353/229/1 349/231/1 347/232/1 -f 347/233/11 378/234/11 346/235/11 -f 350/236/2 360/206/2 346/237/2 -f 351/238/12 374/239/12 352/240/12 -f 366/217/2 352/240/2 345/241/2 -f 351/238/1 359/219/1 348/242/1 -f 391/243/1 382/244/1 389/245/1 -f 377/246/10 375/247/10 376/248/10 -f 379/249/10 373/250/10 380/251/10 -f 350/236/2 378/252/2 377/246/2 -f 348/253/13 379/249/13 380/251/13 -f 350/236/14 376/248/14 349/231/14 -f 351/238/15 380/254/15 373/250/15 -f 352/240/16 379/255/16 345/241/16 -f 349/231/1 375/256/1 347/232/1 -f 389/257/3 384/258/3 390/259/3 -f 392/260/10 389/245/10 390/261/10 -f 389/262/1 382/263/1 353/229/1 -f 384/258/10 347/233/10 346/235/10 -f 390/264/2 384/265/2 346/237/2 -f 387/266/2 390/261/2 381/267/2 -f 391/268/1 385/269/1 348/242/1 -f 391/270/5 388/271/5 385/272/5 -f 392/273/2 387/274/2 366/217/2 -f 385/272/10 345/275/10 348/253/10 -f 397/276/17 404/277/17 400/278/17 -f 395/279/3 398/280/3 396/281/3 -f 394/282/5 400/278/5 393/283/5 -f 396/281/2 397/276/2 394/282/2 -f 393/283/1 399/284/1 395/285/1 -f 402/286/10 404/277/10 401/287/10 -f 398/280/18 401/288/18 397/276/18 -f 400/278/19 403/289/19 399/284/19 -f 399/290/20 402/291/20 398/280/20 -f 369/292/2 411/293/2 410/294/2 -f 368/295/2 410/294/2 409/296/2 -f 368/297/2 408/298/2 367/299/2 -f 367/299/2 407/300/2 344/301/2 -f 333/302/1 417/303/1 332/304/1 -f 415/305/1 333/302/1 334/306/1 -f 414/307/1 334/306/1 323/308/1 -f 324/309/1 414/307/1 323/308/1 -f 325/310/1 425/311/1 324/309/1 -f 326/312/1 424/313/1 325/310/1 -f 327/314/1 423/315/1 326/312/1 -f 328/316/1 422/317/1 327/314/1 -f 329/318/1 421/319/1 328/316/1 -f 419/320/1 329/321/1 330/322/1 -f 418/323/1 330/322/1 331/324/1 -f 417/303/1 331/324/1 332/304/1 -f 428/325/2 431/326/2 427/327/2 -f 427/327/2 432/328/2 426/329/2 -f 430/330/2 432/328/2 434/331/2 -f 429/332/2 434/331/2 435/333/2 -f 372/334/21 435/335/21 413/336/21 -f 405/337/22 428/325/22 342/338/22 -f 441/339/2 446/340/2 445/341/2 -f 441/339/2 444/342/2 442/343/2 -f 442/343/2 443/344/2 436/345/2 -f 437/346/2 443/344/2 449/347/2 -f 438/348/2 449/347/2 448/349/2 -f 439/350/2 448/349/2 447/351/2 -f 455/352/1 460/353/1 454/354/1 -f 457/355/1 455/352/1 456/356/1 -f 458/357/1 456/356/1 451/358/1 -f 450/359/1 458/357/1 451/358/1 -f 452/360/1 463/361/1 450/359/1 -f 453/362/1 462/363/1 452/360/1 -f 482/364/23 484/365/23 480/366/23 -f 470/367/23 472/368/23 468/369/23 -f 467/370/2 469/371/2 471/372/2 -f 464/373/5 469/371/5 465/374/5 -f 466/375/1 468/369/1 464/373/1 -f 467/370/3 470/376/3 466/377/3 -f 472/378/4 475/379/4 473/380/4 -f 471/372/3 474/381/3 470/376/3 -f 469/371/24 475/382/24 471/372/24 -f 468/369/5 473/380/5 469/371/5 -f 477/383/2 483/384/2 479/385/2 -f 476/386/5 481/387/5 477/383/5 -f 476/388/1 482/364/1 480/366/1 -f 479/385/3 482/364/3 478/389/3 -f 484/390/4 487/391/4 485/392/4 -f 483/384/3 486/393/3 482/364/3 -f 481/387/24 487/394/24 483/384/24 -f 480/395/5 485/396/5 481/387/5 -f 489/397/3 490/398/3 488/399/3 -f 491/400/2 494/401/2 490/402/2 -f 495/403/5 492/404/5 494/405/5 -f 493/406/1 488/399/1 492/404/1 -f 494/401/4 488/407/4 490/402/4 -f 491/400/10 493/406/10 495/408/10 -f 197/160/5 600/409/5 186/171/5 -f 496/410/4 499/411/4 497/412/4 -f 503/413/10 500/414/10 501/415/10 -f 499/411/2 502/416/2 503/413/2 -f 513/417/3 514/418/3 512/419/3 -f 497/420/1 500/414/1 496/421/1 -f 508/422/5 511/423/5 509/424/5 -f 504/425/10 511/423/10 506/426/10 -f 505/427/1 509/424/1 504/425/1 -f 505/428/4 510/429/4 508/430/4 -f 510/431/1 525/432/1 511/433/1 -f 519/434/2 518/435/2 520/436/2 -f 513/437/1 512/438/1 522/439/1 -f 526/440/4 510/429/4 507/441/4 -f 511/423/10 527/442/10 506/426/10 -f 528/443/1 531/444/1 529/445/1 -f 535/446/2 532/447/2 533/448/2 -f 531/444/3 533/449/3 529/450/3 -f 528/451/25 534/452/25 530/453/25 -f 531/444/10 534/452/10 535/446/10 -f 539/454/1 536/455/1 537/456/1 -f 540/457/2 543/458/2 541/459/2 -f 541/460/5 539/454/5 537/461/5 -f 542/462/26 536/463/26 538/464/26 -f 539/454/10 542/462/10 538/465/10 -f 193/153/3 196/170/3 202/466/3 -f 210/180/10 230/192/10 195/181/10 -f 607/467/1 605/468/1 603/469/1 -f 608/470/1 602/471/1 604/472/1 -f 602/471/5 611/473/5 604/472/5 -f 609/474/4 610/475/4 602/471/4 -f 608/476/3 616/477/3 609/478/3 -f 603/469/4 615/479/4 607/480/4 -f 605/468/3 613/481/3 603/469/3 -f 604/472/10 617/482/10 608/476/10 -f 606/483/10 612/484/10 605/468/10 -f 607/485/5 614/486/5 606/483/5 -f 624/487/27 626/488/27 628/489/27 -f 618/490/5 624/487/5 620/491/5 -f 633/492/4 630/493/4 631/494/4 -f 621/495/3 623/496/3 619/497/3 -f 619/498/2 622/499/2 618/500/2 -f 629/501/10 626/488/10 627/502/10 -f 625/503/28 627/502/28 623/496/28 -f 623/496/29 626/488/29 622/499/29 -f 621/504/1 620/505/1 628/489/1 -f 636/506/10 639/507/10 637/508/10 -f 632/509/5 634/510/5 630/493/5 -f 639/511/2 640/512/2 632/509/2 -f 636/506/1 635/513/1 631/494/1 -f 632/509/2 637/514/2 639/511/2 -f 635/515/3 633/492/3 631/494/3 -f 636/516/30 641/517/30 635/518/30 -f 637/508/5 642/519/5 636/506/5 -f 634/520/30 643/521/30 638/522/30 -f 639/507/3 638/523/3 643/524/3 -f 641/517/2 637/514/2 633/492/2 -f 649/525/1 658/526/1 657/527/1 -f 644/528/1 652/529/1 651/530/1 -f 644/531/1 658/526/1 650/532/1 -f 660/533/1 656/534/1 648/535/1 -f 659/536/1 654/537/1 646/538/1 -f 646/538/1 652/529/1 645/539/1 -f 671/540/2 664/541/2 675/542/2 -f 663/543/2 668/544/2 669/545/2 -f 673/546/2 664/541/2 672/547/2 -f 673/546/2 661/548/2 665/549/2 -f 661/550/2 667/551/2 662/552/2 -f 667/551/2 663/543/2 662/552/2 -f 689/553/3 684/554/3 686/555/3 -f 699/556/5 695/557/5 693/558/5 -f 683/559/31 677/560/31 681/561/31 -f 682/562/32 676/563/32 678/564/32 -f 682/565/33 679/566/33 683/567/33 -f 681/568/19 676/569/19 680/570/19 -f 700/571/5 704/572/5 706/573/5 -f 710/574/3 715/575/3 713/576/3 -f 776/577/10 717/578/10 772/579/10 -f 720/580/4 723/581/4 721/582/4 -f 716/583/5 723/581/5 718/584/5 -f 721/582/1 774/585/1 773/586/1 -f 719/587/3 720/588/3 717/589/3 -f 722/590/2 777/591/2 778/592/2 -f 732/593/2 730/594/2 726/595/2 -f 718/584/10 775/596/10 716/583/10 -f 779/597/31 774/598/31 775/596/31 -f 777/599/32 772/579/32 773/600/32 -f 778/601/10 773/600/10 774/598/10 -f 784/602/4 786/603/4 785/604/4 -f 781/605/5 787/606/5 783/607/5 -f 782/608/3 785/604/3 780/609/3 -f 783/610/2 784/602/2 782/611/2 -f 780/612/1 786/603/1 781/613/1 -f 802/614/3 788/615/3 790/616/3 -f 801/617/5 791/618/5 789/619/5 -f 806/620/3 792/621/3 794/622/3 -f 805/623/5 795/624/5 793/625/5 -f 804/626/3 790/616/3 792/621/3 -f 791/618/5 805/627/5 793/625/5 -f 810/628/3 796/629/3 798/630/3 -f 797/631/5 811/632/5 799/633/5 -f 808/634/3 794/622/3 796/629/3 -f 795/624/5 809/635/5 797/631/5 -f 819/636/5 813/637/5 815/638/5 -f 816/639/3 814/640/3 812/641/3 -f 820/642/3 818/643/3 816/639/3 -f 823/644/5 817/645/5 819/636/5 -f 821/646/5 823/644/5 825/647/5 -f 822/648/3 820/642/3 824/649/3 -f 827/650/1 844/651/1 826/652/1 -f 844/651/1 845/653/1 858/654/1 -f 865/655/2 847/656/2 849/657/2 -f 841/658/10 863/659/10 853/660/10 -f 863/659/3 857/661/3 860/662/3 -f 851/663/2 862/664/2 841/665/2 -f 848/666/4 857/661/4 851/667/4 -f 864/668/5 867/669/5 865/670/5 -f 850/671/4 865/670/4 849/672/4 -f 852/673/10 866/674/10 840/675/10 -f 840/676/2 864/668/2 850/677/2 -f 860/678/2 846/679/2 861/680/2 -f 865/655/2 868/681/2 869/682/2 -f 860/678/2 871/683/2 863/684/2 -f 870/685/2 861/680/2 859/686/2 -f 887/687/2 882/688/2 885/689/2 -f 883/690/1 101/691/1 85/692/1 -f 885/689/2 92/693/2 103/694/2 -f 886/695/1 88/696/1 113/103/1 -f 880/697/2 115/99/2 96/698/2 -f 893/699/10 888/700/10 890/701/10 -f 894/702/10 891/703/10 889/704/10 -f 906/705/1 900/706/1 902/707/1 -f 905/708/2 903/709/2 901/710/2 -f 910/711/2 893/699/2 890/712/2 -f 892/713/1 908/714/1 888/715/1 -f 895/716/2 911/717/2 891/718/2 -f 909/719/1 894/702/1 889/720/1 -f 903/709/2 911/721/2 899/722/2 -f 909/723/1 902/707/1 898/724/1 -f 910/725/2 901/710/2 897/726/2 -f 900/706/1 908/727/1 896/728/1 -f 919/729/3 916/730/3 917/731/3 -f 919/729/10 912/732/10 914/733/10 -f 917/731/1 913/734/1 912/732/1 -f 913/735/4 918/736/4 915/737/4 -f 921/738/1 918/739/1 919/740/1 -f 918/736/4 922/741/4 915/737/4 -f 919/729/10 923/742/10 921/738/10 -f 927/743/4 924/744/4 925/745/4 -f 928/746/10 931/747/10 929/748/10 -f 927/743/2 930/749/2 926/750/2 -f 934/751/5 933/752/5 932/753/5 -f 928/746/1 925/754/1 924/755/1 -f 941/756/2 935/757/2 940/758/2 -f 943/759/1 937/760/1 942/761/1 -f 8/1/1 34/762/1 33/2/1 -f 8/1/1 6/8/1 35/4/1 -f 4/6/1 36/763/1 35/7/1 -f 4/6/1 2/13/1 25/9/1 -f 24/11/1 26/764/1 25/12/1 -f 24/11/1 22/16/1 27/14/1 -f 22/16/1 20/19/1 28/17/1 -f 20/19/1 18/22/1 29/20/1 -f 18/22/1 16/27/1 30/23/1 -f 14/25/1 31/765/1 30/26/1 -f 14/28/1 12/32/1 32/29/1 -f 10/3/1 33/766/1 32/31/1 -f 38/35/1 37/767/1 41/768/1 -f 37/767/1 39/769/1 41/768/1 -f 39/769/1 40/770/1 41/768/1 -f 41/768/1 42/771/1 43/33/1 -f 43/33/1 44/772/1 45/34/1 -f 45/34/1 46/773/1 47/774/1 -f 47/774/1 48/775/1 45/34/1 -f 48/775/1 38/35/1 45/34/1 -f 41/768/1 43/33/1 38/35/1 -f 60/36/1 50/776/1 55/37/1 -f 53/39/1 52/42/1 72/40/1 -f 52/42/1 53/777/1 55/43/1 -f 79/45/2 64/778/2 69/46/2 -f 51/48/2 54/779/2 81/49/2 -f 56/51/2 49/780/2 58/52/2 -f 104/54/2 103/694/2 92/55/2 -f 49/57/2 56/781/2 54/58/2 -f 183/59/1 182/76/1 71/60/1 -f 83/62/1 80/148/1 65/63/1 -f 61/65/2 62/80/2 74/66/2 -f 183/68/1 68/61/1 66/69/1 -f 58/52/2 57/73/2 76/71/2 -f 57/73/2 63/782/2 75/74/2 -f 184/75/1 72/40/1 71/60/1 -f 83/77/1 67/64/1 59/78/1 -f 62/80/2 64/778/2 79/81/2 -f 181/82/1 84/79/1 59/78/1 -f 85/83/1 101/691/1 102/84/1 -f 91/86/1 107/90/1 108/87/1 -f 86/89/1 105/111/1 107/90/1 -f 112/91/2 111/97/2 99/92/2 -f 98/94/2 110/783/2 112/91/2 -f 90/95/1 93/88/1 108/87/1 -f 111/97/2 109/784/2 94/98/2 -f 115/99/2 116/105/2 97/100/2 -f 89/102/1 114/108/1 113/103/1 -f 116/105/2 110/783/2 98/106/2 -f 90/107/1 106/96/1 114/108/1 -f 94/109/2 109/784/2 104/54/2 -f 86/110/1 87/85/1 102/84/1 -f 884/112/1 883/785/1 881/113/1 -f 143/115/2 144/786/2 155/116/2 -f 133/118/2 156/122/2 155/116/2 -f 133/120/2 134/787/2 145/121/2 -f 135/123/2 146/126/2 145/121/2 -f 136/125/2 147/129/2 146/126/2 -f 137/128/2 148/132/2 147/129/2 -f 138/131/2 149/136/2 148/132/2 -f 138/134/2 139/788/2 150/135/2 -f 140/137/2 151/142/2 150/138/2 -f 140/140/2 141/789/2 152/141/2 -f 141/143/2 142/790/2 153/144/2 -f 143/145/2 154/117/2 153/144/2 -f 69/46/2 70/50/2 81/147/2 -f 82/70/1 66/69/1 65/63/1 -f 75/149/2 63/782/2 61/65/2 -f 159/152/2 158/791/2 157/792/2 -f 157/792/2 168/793/2 159/152/2 -f 168/793/2 167/150/2 159/152/2 -f 167/150/2 166/794/2 163/151/2 -f 166/794/2 165/795/2 163/151/2 -f 165/795/2 164/796/2 163/151/2 -f 163/151/2 162/797/2 161/798/2 -f 161/798/2 160/799/2 163/151/2 -f 160/799/2 159/152/2 163/151/2 -f 193/153/3 202/466/3 201/154/3 -f 191/156/4 200/800/4 199/157/4 -f 189/159/5 198/164/5 197/160/5 -f 192/155/6 201/154/6 200/162/6 -f 190/158/7 199/157/7 198/164/7 -f 197/166/2 198/801/2 199/167/2 -f 199/167/2 200/802/2 202/165/2 -f 200/802/2 201/803/2 202/165/2 -f 197/166/8 202/165/8 601/168/8 -f 600/169/2 601/168/2 196/170/2 -f 188/172/1 205/176/1 206/173/1 -f 187/175/9 204/178/9 205/176/9 -f 185/177/1 203/804/1 204/178/1 -f 194/179/1 209/183/1 210/180/1 -f 193/182/9 208/185/9 209/183/9 -f 193/182/1 192/189/1 207/184/1 -f 190/186/1 211/190/1 212/187/1 -f 212/187/1 207/184/1 192/189/1 -f 189/174/1 206/173/1 211/190/1 -f 227/805/10 203/804/10 229/191/10 -f 203/804/10 185/177/10 229/191/10 -f 186/171/10 196/170/10 230/192/10 -f 231/195/1 232/806/1 235/193/1 -f 232/806/1 233/807/1 235/193/1 -f 233/807/1 234/808/1 235/193/1 -f 235/193/1 236/809/1 237/810/1 -f 237/810/1 238/811/1 239/194/1 -f 239/194/1 240/812/1 241/813/1 -f 241/813/1 242/814/1 239/194/1 -f 242/814/1 231/195/1 239/194/1 -f 235/193/1 237/810/1 239/194/1 -f 247/815/1 255/816/1 256/197/1 -f 256/197/1 266/817/1 267/818/1 -f 267/818/1 268/819/1 256/197/1 -f 268/819/1 257/198/1 256/197/1 -f 257/198/1 258/820/1 251/196/1 -f 258/820/1 259/821/1 251/196/1 -f 259/821/1 260/822/1 251/196/1 -f 251/196/1 250/823/1 249/824/1 -f 249/824/1 248/825/1 247/815/1 -f 247/815/1 256/197/1 249/824/1 -f 249/824/1 256/197/1 251/196/1 -f 265/201/2 264/826/2 263/827/2 -f 263/827/2 262/828/2 265/201/2 -f 262/828/2 261/829/2 265/201/2 -f 261/829/2 269/830/2 270/199/2 -f 270/199/2 274/831/2 273/832/2 -f 273/832/2 271/833/2 270/199/2 -f 271/833/2 272/200/2 270/199/2 -f 272/200/2 277/834/2 265/201/2 -f 277/834/2 276/835/2 265/201/2 -f 276/835/2 275/836/2 265/201/2 -f 261/829/2 270/199/2 265/201/2 -f 289/204/1 278/837/1 279/838/1 -f 279/838/1 280/839/1 281/840/1 -f 281/840/1 282/841/1 283/842/1 -f 283/842/1 284/843/1 281/840/1 -f 284/843/1 285/202/1 281/840/1 -f 285/202/1 286/844/1 287/203/1 -f 287/203/1 288/845/1 289/204/1 -f 289/204/1 279/838/1 285/202/1 -f 279/838/1 281/840/1 285/202/1 -f 340/205/2 361/209/2 360/206/2 -f 339/208/2 362/211/2 361/209/2 -f 338/210/2 363/213/2 362/211/2 -f 338/210/2 337/214/2 364/212/2 -f 337/214/2 336/216/2 365/215/2 -f 336/216/2 335/846/2 366/217/2 -f 317/218/1 358/222/1 359/219/1 -f 318/221/1 357/224/1 358/222/1 -f 319/223/1 356/847/1 357/224/1 -f 355/225/1 356/847/1 319/223/1 -f 354/227/1 355/225/1 320/226/1 -f 353/229/1 354/227/1 321/228/1 -f 353/229/1 322/230/1 349/231/1 -f 347/233/11 375/247/11 378/234/11 -f 350/236/2 341/207/2 360/206/2 -f 351/238/12 373/250/12 374/239/12 -f 366/217/2 335/846/2 352/240/2 -f 351/238/1 316/220/1 359/219/1 -f 391/243/1 386/848/1 382/244/1 -f 377/246/10 378/234/10 375/247/10 -f 379/249/10 374/239/10 373/250/10 -f 350/236/2 346/237/2 378/252/2 -f 348/253/13 345/275/13 379/249/13 -f 350/236/14 377/246/14 376/248/14 -f 351/238/15 348/242/15 380/254/15 -f 352/240/16 374/239/16 379/255/16 -f 349/231/1 376/248/1 375/256/1 -f 389/257/3 383/849/3 384/258/3 -f 392/260/10 391/243/10 389/245/10 -f 353/229/1 347/232/1 389/262/1 -f 347/232/1 383/850/1 389/262/1 -f 384/258/10 383/849/10 347/233/10 -f 346/237/2 360/206/2 390/264/2 -f 360/206/2 381/851/2 390/264/2 -f 387/266/2 392/260/2 390/261/2 -f 348/242/1 359/219/1 391/268/1 -f 359/219/1 386/852/1 391/268/1 -f 391/270/5 392/853/5 388/271/5 -f 366/217/2 345/241/2 392/273/2 -f 345/241/2 388/854/2 392/273/2 -f 385/272/10 388/271/10 345/275/10 -f 397/276/17 401/287/17 404/277/17 -f 395/279/3 399/290/3 398/280/3 -f 394/282/5 397/276/5 400/278/5 -f 396/281/2 398/280/2 397/276/2 -f 393/283/1 400/278/1 399/284/1 -f 402/286/10 403/855/10 404/277/10 -f 398/280/18 402/856/18 401/288/18 -f 400/278/19 404/857/19 403/289/19 -f 399/290/20 403/858/20 402/291/20 -f 369/292/2 370/859/2 411/293/2 -f 368/295/2 369/292/2 410/294/2 -f 368/297/2 409/860/2 408/298/2 -f 367/299/2 408/298/2 407/300/2 -f 333/302/1 416/861/1 417/303/1 -f 415/305/1 416/861/1 333/302/1 -f 414/307/1 415/305/1 334/306/1 -f 324/309/1 425/311/1 414/307/1 -f 325/310/1 424/313/1 425/311/1 -f 326/312/1 423/315/1 424/313/1 -f 327/314/1 422/317/1 423/315/1 -f 328/316/1 421/319/1 422/317/1 -f 329/318/1 420/862/1 421/319/1 -f 419/320/1 420/863/1 329/321/1 -f 418/323/1 419/320/1 330/322/1 -f 417/303/1 418/323/1 331/324/1 -f 428/325/2 433/864/2 431/326/2 -f 427/327/2 431/326/2 432/328/2 -f 430/330/2 426/329/2 432/328/2 -f 429/332/2 430/330/2 434/331/2 -f 372/334/21 429/332/21 435/335/21 -f 405/337/22 433/865/22 428/325/22 -f 441/339/2 440/866/2 446/340/2 -f 441/339/2 445/341/2 444/342/2 -f 442/343/2 444/342/2 443/344/2 -f 437/346/2 436/345/2 443/344/2 -f 438/348/2 437/346/2 449/347/2 -f 439/350/2 438/348/2 448/349/2 -f 455/352/1 459/867/1 460/353/1 -f 457/355/1 459/867/1 455/352/1 -f 458/357/1 457/355/1 456/356/1 -f 450/359/1 463/361/1 458/357/1 -f 452/360/1 462/363/1 463/361/1 -f 453/362/1 461/868/1 462/363/1 -f 482/364/23 486/869/23 484/365/23 -f 470/367/23 474/870/23 472/368/23 -f 467/370/2 465/374/2 469/371/2 -f 464/373/5 468/369/5 469/371/5 -f 466/375/1 470/367/1 468/369/1 -f 467/370/3 471/372/3 470/376/3 -f 472/378/4 474/871/4 475/379/4 -f 471/372/3 475/872/3 474/381/3 -f 469/371/24 473/873/24 475/382/24 -f 468/369/5 472/378/5 473/380/5 -f 477/383/2 481/387/2 483/384/2 -f 476/386/5 480/395/5 481/387/5 -f 476/388/1 478/389/1 482/364/1 -f 479/385/3 483/384/3 482/364/3 -f 484/390/4 486/393/4 487/391/4 -f 483/384/3 487/391/3 486/393/3 -f 481/387/24 485/874/24 487/394/24 -f 480/395/5 484/875/5 485/396/5 -f 489/397/3 491/876/3 490/398/3 -f 491/400/2 495/408/2 494/401/2 -f 495/403/5 493/406/5 492/404/5 -f 493/406/1 489/397/1 488/399/1 -f 494/401/4 492/877/4 488/407/4 -f 491/400/10 489/397/10 493/406/10 -f 186/171/5 185/177/5 197/160/5 -f 185/177/5 187/878/5 188/161/5 -f 197/160/5 185/177/5 188/161/5 -f 496/410/4 498/879/4 499/411/4 -f 503/413/10 502/416/10 500/414/10 -f 499/411/2 498/879/2 502/416/2 -f 513/417/3 515/880/3 514/418/3 -f 497/420/1 501/415/1 500/414/1 -f 508/422/5 510/881/5 511/423/5 -f 504/425/10 509/424/10 511/423/10 -f 505/427/1 508/882/1 509/424/1 -f 505/428/4 507/441/4 510/429/4 -f 510/431/1 524/883/1 525/432/1 -f 520/436/2 514/418/2 515/880/2 -f 515/880/2 521/884/2 520/436/2 -f 521/884/2 519/434/2 520/436/2 -f 522/439/1 516/885/1 517/886/1 -f 517/886/1 523/887/1 522/439/1 -f 523/887/1 513/437/1 522/439/1 -f 526/440/4 524/888/4 510/429/4 -f 511/423/10 525/432/10 527/442/10 -f 528/443/1 530/889/1 531/444/1 -f 535/446/2 534/452/2 532/447/2 -f 531/444/3 535/446/3 533/449/3 -f 528/451/25 532/447/25 534/452/25 -f 531/444/10 530/889/10 534/452/10 -f 539/454/1 538/465/1 536/455/1 -f 540/457/2 542/462/2 543/458/2 -f 541/460/5 543/458/5 539/454/5 -f 542/462/26 540/457/26 536/463/26 -f 539/454/10 543/458/10 542/462/10 -f 193/153/3 194/890/3 195/181/3 -f 195/181/3 196/170/3 193/153/3 -f 196/170/3 601/891/3 202/466/3 -f 228/892/10 230/192/10 210/180/10 -f 230/192/10 196/170/10 195/181/10 -f 607/467/1 606/893/1 605/468/1 -f 608/470/1 609/894/1 602/471/1 -f 602/471/5 610/475/5 611/473/5 -f 609/474/4 616/895/4 610/475/4 -f 608/476/3 617/482/3 616/477/3 -f 603/469/4 613/481/4 615/479/4 -f 605/468/3 612/484/3 613/481/3 -f 604/472/10 611/473/10 617/482/10 -f 606/483/10 614/486/10 612/484/10 -f 607/485/5 615/896/5 614/486/5 -f 624/487/27 622/499/27 626/488/27 -f 618/490/5 622/499/5 624/487/5 -f 633/492/4 632/509/4 630/493/4 -f 621/495/3 625/503/3 623/496/3 -f 619/498/2 623/496/2 622/499/2 -f 629/501/10 628/489/10 626/488/10 -f 625/503/28 629/501/28 627/502/28 -f 623/496/29 627/502/29 626/488/29 -f 620/505/1 624/897/1 628/489/1 -f 628/489/1 629/501/1 621/504/1 -f 629/501/1 625/898/1 621/504/1 -f 636/506/10 638/523/10 639/507/10 -f 632/509/5 640/899/5 634/510/5 -f 639/511/2 643/521/2 640/512/2 -f 631/494/1 630/493/1 638/523/1 -f 630/493/1 634/900/1 638/523/1 -f 638/523/1 636/506/1 631/494/1 -f 632/509/2 633/492/2 637/514/2 -f 635/515/3 641/901/3 633/492/3 -f 636/516/30 642/902/30 641/517/30 -f 634/520/30 640/512/30 643/521/30 -f 641/517/2 642/902/2 637/514/2 -f 649/525/1 650/532/1 658/526/1 -f 644/528/1 645/539/1 652/529/1 -f 644/531/1 651/903/1 658/526/1 -f 660/533/1 649/525/1 656/534/1 -f 649/525/1 657/527/1 656/534/1 -f 656/534/1 655/904/1 648/535/1 -f 659/536/1 648/535/1 654/537/1 -f 648/535/1 655/904/1 654/537/1 -f 654/537/1 653/905/1 646/538/1 -f 646/538/1 653/905/1 652/529/1 -f 647/906/2 670/907/2 671/540/2 -f 671/540/2 672/547/2 664/541/2 -f 675/542/2 647/906/2 671/540/2 -f 670/907/2 647/906/2 669/545/2 -f 647/906/2 674/908/2 669/545/2 -f 674/908/2 663/543/2 669/545/2 -f 673/546/2 665/549/2 664/541/2 -f 673/546/2 666/909/2 661/548/2 -f 661/550/2 666/910/2 667/551/2 -f 667/551/2 668/544/2 663/543/2 -f 686/555/3 687/911/3 691/912/3 -f 691/912/3 690/913/3 689/553/3 -f 689/553/3 688/914/3 684/554/3 -f 684/554/3 685/915/3 686/555/3 -f 686/555/3 691/912/3 689/553/3 -f 693/558/5 692/916/5 698/917/5 -f 698/917/5 697/918/5 699/556/5 -f 699/556/5 696/919/5 695/557/5 -f 695/557/5 694/920/5 693/558/5 -f 693/558/5 698/917/5 699/556/5 -f 683/559/31 679/921/31 677/560/31 -f 682/562/32 680/922/32 676/563/32 -f 682/565/33 678/923/33 679/566/33 -f 681/568/19 677/560/19 676/569/19 -f 706/573/5 707/924/5 701/925/5 -f 701/925/5 702/926/5 700/571/5 -f 700/571/5 703/927/5 704/572/5 -f 704/572/5 705/928/5 706/573/5 -f 706/573/5 701/925/5 700/571/5 -f 713/576/3 712/929/3 708/930/3 -f 708/930/3 709/931/3 710/574/3 -f 710/574/3 711/932/3 715/575/3 -f 715/575/3 714/933/3 713/576/3 -f 713/576/3 708/930/3 710/574/3 -f 776/577/10 719/934/10 717/578/10 -f 720/580/4 722/935/4 723/581/4 -f 716/583/5 721/582/5 723/581/5 -f 721/582/1 716/583/1 774/585/1 -f 716/583/1 775/936/1 774/585/1 -f 717/937/1 720/938/1 773/586/1 -f 720/938/1 721/582/1 773/586/1 -f 773/586/1 772/939/1 717/937/1 -f 719/587/3 722/590/3 720/588/3 -f 722/590/2 719/587/2 777/591/2 -f 719/587/2 776/940/2 777/591/2 -f 718/584/2 723/581/2 778/592/2 -f 723/581/2 722/590/2 778/592/2 -f 778/592/2 779/941/2 718/584/2 -f 726/595/2 725/942/2 734/943/2 -f 725/942/2 724/944/2 734/943/2 -f 724/944/2 735/945/2 734/943/2 -f 734/943/2 733/946/2 732/593/2 -f 732/593/2 731/947/2 730/594/2 -f 730/594/2 729/948/2 728/949/2 -f 728/949/2 727/950/2 730/594/2 -f 727/950/2 726/595/2 730/594/2 -f 734/943/2 732/593/2 726/595/2 -f 718/584/10 779/597/10 775/596/10 -f 779/597/31 778/601/31 774/598/31 -f 777/599/32 776/577/32 772/579/32 -f 778/601/10 777/599/10 773/600/10 -f 784/602/4 787/606/4 786/603/4 -f 781/605/5 786/603/5 787/606/5 -f 782/608/3 784/602/3 785/604/3 -f 783/610/2 787/606/2 784/602/2 -f 780/612/1 785/604/1 786/603/1 -f 802/614/3 800/951/3 788/615/3 -f 801/617/5 803/952/5 791/618/5 -f 806/620/3 804/953/3 792/621/3 -f 805/623/5 807/954/5 795/624/5 -f 804/626/3 802/955/3 790/616/3 -f 791/618/5 803/956/5 805/627/5 -f 810/628/3 808/634/3 796/629/3 -f 797/631/5 809/635/5 811/632/5 -f 808/634/3 806/957/3 794/622/3 -f 795/624/5 807/958/5 809/635/5 -f 819/636/5 817/645/5 813/637/5 -f 816/639/3 818/643/3 814/640/3 -f 820/642/3 822/648/3 818/643/3 -f 823/644/5 821/646/5 817/645/5 -f 827/650/1 845/653/1 844/651/1 -f 845/653/1 829/959/1 856/960/1 -f 858/654/1 828/961/1 844/651/1 -f 845/653/1 856/960/1 858/654/1 -f 865/655/2 859/686/2 847/656/2 -f 841/658/10 862/664/10 863/659/10 -f 863/659/3 862/664/3 857/661/3 -f 851/663/2 857/661/2 862/664/2 -f 848/666/4 860/662/4 857/661/4 -f 864/668/5 866/674/5 867/669/5 -f 850/671/4 864/668/4 865/670/4 -f 852/673/10 867/669/10 866/674/10 -f 840/676/2 866/674/2 864/668/2 -f 860/678/2 848/962/2 846/679/2 -f 865/655/2 867/963/2 868/681/2 -f 860/678/2 870/685/2 871/683/2 -f 859/686/2 865/655/2 869/682/2 -f 870/685/2 860/678/2 861/680/2 -f 859/686/2 869/682/2 870/685/2 -f 887/687/2 880/964/2 882/688/2 -f 883/690/1 884/112/1 101/691/1 -f 885/689/2 882/965/2 92/693/2 -f 886/695/1 881/966/1 88/696/1 -f 880/697/2 887/967/2 115/99/2 -f 893/699/10 892/713/10 888/700/10 -f 894/702/10 895/716/10 891/703/10 -f 906/705/1 904/968/1 900/706/1 -f 905/708/2 907/969/2 903/709/2 -f 910/711/2 897/726/2 893/699/2 -f 892/713/1 896/728/1 908/714/1 -f 895/716/2 899/722/2 911/717/2 -f 909/719/1 898/724/1 894/702/1 -f 903/709/2 907/970/2 911/721/2 -f 909/723/1 906/971/1 902/707/1 -f 910/725/2 905/972/2 901/710/2 -f 900/706/1 904/973/1 908/727/1 -f 919/729/3 918/974/3 916/730/3 -f 919/729/10 917/731/10 912/732/10 -f 917/731/1 916/975/1 913/734/1 -f 913/735/4 916/976/4 918/736/4 -f 921/738/1 920/977/1 918/739/1 -f 918/736/4 920/978/4 922/741/4 -f 919/729/10 914/733/10 923/742/10 -f 927/743/4 926/750/4 924/744/4 -f 928/746/10 930/749/10 931/747/10 -f 927/743/2 931/747/2 930/749/2 -f 934/751/5 935/757/5 933/752/5 -f 928/746/1 929/748/1 925/754/1 -f 935/757/2 934/751/2 940/758/2 -f 940/758/2 938/979/2 939/980/2 -f 939/980/2 941/756/2 940/758/2 -f 937/760/1 936/981/1 942/761/1 -f 942/761/1 932/982/1 933/983/1 -f 933/983/1 943/759/1 942/761/1 +f 194/289/82 219/290/82 196/291/82 +f 194/289/82 221/292/82 220/293/82 +f 190/294/82 221/295/82 192/296/82 +f 190/294/82 211/297/82 222/298/82 +f 210/299/82 211/300/82 188/301/82 +f 210/299/82 213/302/82 212/303/82 +f 208/304/82 214/305/82 213/306/82 +f 206/307/82 215/308/82 214/309/82 +f 204/310/82 216/311/82 215/312/82 +f 200/313/82 216/314/82 202/315/82 +f 200/316/82 218/317/82 217/318/82 +f 196/291/82 218/319/82 198/320/82 +f 229/321/82 231/322/82 224/323/82 +f 246/324/82 241/325/82 367/326/82 +f 239/327/82 258/328/82 370/329/82 +f 238/330/82 241/331/82 236/332/82 +f 265/333/83 255/334/83 264/335/83 +f 237/336/83 267/337/83 256/338/83 +f 242/339/83 244/340/83 263/341/83 +f 290/342/83 278/343/83 281/344/83 +f 235/345/83 240/346/83 237/336/83 +f 369/347/82 257/348/82 254/349/82 +f 269/350/82 251/351/82 253/352/82 +f 247/353/83 260/354/83 259/355/83 +f 369/356/82 252/357/82 268/358/82 +f 244/340/83 262/359/83 263/360/83 +f 243/361/83 261/362/83 262/359/83 +f 370/363/82 257/348/82 368/364/82 +f 269/365/82 245/366/82 270/367/82 +f 248/368/83 265/369/83 260/354/83 +f 367/370/82 245/366/82 246/324/82 +f 271/371/82 288/372/82 273/373/82 +f 277/374/82 294/375/82 279/376/82 +f 272/377/82 293/378/82 277/374/82 +f 298/379/83 285/380/83 286/381/83 +f 284/382/83 298/379/83 286/381/83 +f 276/383/82 294/375/82 292/384/82 +f 297/385/83 280/386/83 285/380/83 +f 301/387/83 283/388/83 282/389/83 +f 275/390/82 299/391/82 274/392/82 +f 302/393/83 284/394/83 283/388/83 +f 276/395/82 300/396/82 275/390/82 +f 280/397/83 290/342/83 281/344/83 +f 272/398/82 288/372/82 291/399/82 +f 904/400/82 901/401/82 906/402/82 +f 329/403/83 341/404/83 340/405/83 +f 319/406/83 341/404/83 330/407/83 +f 319/408/83 331/409/83 342/410/83 +f 321/411/83 331/409/83 320/412/83 +f 322/413/83 332/414/83 321/415/83 +f 323/416/83 333/417/83 322/418/83 +f 324/419/83 334/420/83 323/421/83 +f 324/422/83 336/423/83 335/424/83 +f 326/425/83 336/426/83 325/427/83 +f 326/428/83 338/429/83 337/430/83 +f 327/431/83 339/432/83 338/429/83 +f 329/433/83 339/432/83 328/434/83 +f 255/334/83 267/435/83 264/335/83 +f 268/358/82 251/351/82 266/436/82 +f 261/437/83 247/353/83 259/355/83 +f 353/438/83 349/439/83 345/440/83 +f 379/441/84 387/442/84 378/443/84 +f 377/444/85 385/445/85 376/446/85 +f 375/447/86 383/448/86 374/449/86 +f 378/443/87 386/450/87 377/451/87 +f 376/446/88 384/452/88 375/447/88 +f 388/453/83 383/454/83 385/455/83 +f 383/454/89 701/456/89 700/457/89 +f 700/457/83 382/458/83 372/459/83 +f 374/460/82 392/461/82 375/462/82 +f 373/463/90 391/464/90 374/460/90 +f 371/465/82 390/466/82 373/463/82 +f 380/467/82 396/468/82 381/469/82 +f 379/470/90 395/471/90 380/467/90 +f 379/470/82 393/472/82 394/473/82 +f 376/474/82 398/475/82 377/476/82 +f 398/475/82 378/477/82 377/476/82 +f 375/462/82 397/478/82 376/474/82 +f 371/465/91 372/459/91 401/479/91 +f 372/459/91 402/480/91 401/479/91 +f 407/481/82 411/482/82 403/483/82 +f 460/484/83 480/485/83 461/486/83 +f 459/487/83 481/488/83 460/484/83 +f 458/489/83 482/490/83 459/487/83 +f 458/489/83 484/491/83 483/492/83 +f 457/493/83 485/494/83 484/491/83 +f 456/495/83 486/496/83 485/494/83 +f 437/497/82 479/498/82 436/499/82 +f 438/500/82 478/501/82 437/497/82 +f 439/502/82 477/503/82 438/500/82 +f 475/504/82 439/502/82 440/505/82 +f 474/506/82 440/505/82 441/507/82 +f 473/508/82 441/507/82 442/509/82 +f 473/508/82 469/510/82 467/511/82 +f 467/512/92 498/513/92 466/514/92 +f 470/515/83 480/485/83 466/516/83 +f 471/517/93 494/518/93 472/519/93 +f 486/496/83 472/519/83 465/520/83 +f 471/517/82 479/498/82 468/521/82 +f 511/522/82 502/523/82 509/524/82 +f 497/525/91 495/526/91 496/527/91 +f 499/528/91 493/529/91 500/530/91 +f 470/515/83 498/531/83 497/525/83 +f 468/532/94 499/528/94 500/530/94 +f 470/515/95 496/527/95 469/510/95 +f 471/517/96 500/533/96 493/529/96 +f 472/519/97 499/534/97 465/520/97 +f 469/510/82 495/535/82 467/511/82 +f 509/536/84 504/537/84 510/538/84 +f 512/539/91 509/524/91 510/540/91 +f 509/541/82 502/542/82 473/508/82 +f 504/537/91 467/512/91 466/514/91 +f 510/543/83 504/544/83 466/516/83 +f 507/545/83 510/540/83 501/546/83 +f 511/547/82 505/548/82 468/521/82 +f 511/549/86 508/550/86 505/551/86 +f 512/552/83 507/553/83 486/496/83 +f 505/551/91 465/554/91 468/532/91 +f 517/555/98 524/556/98 520/557/98 +f 515/558/84 518/559/84 516/560/84 +f 514/561/86 520/557/86 513/562/86 +f 516/560/83 517/555/83 514/561/83 +f 513/562/82 519/563/82 515/564/82 +f 522/565/91 524/556/91 521/566/91 +f 518/559/99 521/567/99 517/555/99 +f 520/557/100 523/568/100 519/563/100 +f 519/569/101 522/570/101 518/559/101 +f 489/571/83 531/572/83 530/573/83 +f 488/574/83 530/573/83 529/575/83 +f 488/576/83 528/577/83 487/578/83 +f 487/578/83 527/579/83 464/580/83 +f 453/581/82 537/582/82 452/583/82 +f 535/584/82 453/581/82 454/585/82 +f 534/586/82 454/585/82 443/587/82 +f 444/588/82 534/586/82 443/587/82 +f 445/589/82 545/590/82 444/588/82 +f 446/591/82 544/592/82 445/589/82 +f 447/593/82 543/594/82 446/591/82 +f 448/595/82 542/596/82 447/593/82 +f 449/597/82 541/598/82 448/595/82 +f 539/599/82 449/600/82 450/601/82 +f 538/602/82 450/601/82 451/603/82 +f 537/582/82 451/603/82 452/583/82 +f 548/604/83 551/605/83 547/606/83 +f 547/606/83 552/607/83 546/608/83 +f 550/609/83 552/607/83 554/610/83 +f 549/611/83 554/610/83 555/612/83 +f 492/613/102 555/614/102 533/615/102 +f 525/616/103 548/604/103 462/617/103 +f 561/618/83 566/619/83 565/620/83 +f 561/618/83 564/621/83 562/622/83 +f 562/622/83 563/623/83 556/624/83 +f 557/625/83 563/623/83 569/626/83 +f 558/627/83 569/626/83 568/628/83 +f 559/629/83 568/628/83 567/630/83 +f 575/631/82 580/632/82 574/633/82 +f 577/634/82 575/631/82 576/635/82 +f 578/636/82 576/635/82 571/637/82 +f 570/638/82 578/636/82 571/637/82 +f 572/639/82 583/640/82 570/638/82 +f 573/641/82 582/642/82 572/639/82 +f 602/643/104 604/644/104 600/645/104 +f 590/646/104 592/647/104 588/648/104 +f 587/649/83 589/650/83 591/651/83 +f 584/652/86 589/650/86 585/653/86 +f 586/654/82 588/648/82 584/652/82 +f 587/649/84 590/655/84 586/656/84 +f 592/657/85 595/658/85 593/659/85 +f 591/651/84 594/660/84 590/655/84 +f 589/650/105 595/661/105 591/651/105 +f 588/648/86 593/659/86 589/650/86 +f 597/662/83 603/663/83 599/664/83 +f 596/665/86 601/666/86 597/662/86 +f 596/667/82 602/643/82 600/645/82 +f 599/664/84 602/643/84 598/668/84 +f 604/669/85 607/670/85 605/671/85 +f 603/663/84 606/672/84 602/643/84 +f 601/666/105 607/673/105 603/663/105 +f 600/674/86 605/675/86 601/666/86 +f 609/676/84 610/677/84 608/678/84 +f 611/679/83 614/680/83 610/681/83 +f 615/682/86 612/683/86 614/684/86 +f 613/685/82 608/678/82 612/683/82 +f 614/680/85 608/686/85 610/681/85 +f 611/679/91 613/685/91 615/687/91 +f 383/448/86 700/688/86 372/459/86 +f 620/689/86 623/690/86 621/691/86 +f 616/692/91 623/690/91 618/693/91 +f 617/694/82 621/691/82 616/692/82 +f 617/695/85 622/696/85 620/697/85 +f 622/698/82 625/699/82 623/700/82 +f 626/701/85 622/696/85 619/702/85 +f 623/690/91 627/703/91 618/693/91 +f 628/704/82 631/705/82 629/706/82 +f 635/707/83 632/708/83 633/709/83 +f 631/705/84 633/710/84 629/711/84 +f 628/712/106 634/713/106 630/714/106 +f 631/705/91 634/713/91 635/707/91 +f 639/715/82 636/716/82 637/717/82 +f 640/718/83 643/719/83 641/720/83 +f 641/721/86 639/715/86 637/722/86 +f 642/723/107 636/724/107 638/725/107 +f 639/715/91 642/723/91 638/726/91 +f 379/441/84 382/458/84 388/727/84 +f 396/468/91 402/480/91 381/469/91 +f 708/728/108 710/729/108 712/730/108 +f 702/731/86 708/728/86 704/732/86 +f 717/733/85 714/734/85 715/735/85 +f 705/736/84 707/737/84 703/738/84 +f 703/739/83 706/740/83 702/741/83 +f 713/742/91 710/729/91 711/743/91 +f 709/744/109 711/743/109 707/737/109 +f 707/737/110 710/729/110 706/740/110 +f 705/745/82 704/746/82 712/730/82 +f 720/747/91 723/748/91 721/749/91 +f 716/750/86 718/751/86 714/734/86 +f 723/752/83 724/753/83 716/750/83 +f 720/747/82 719/754/82 715/735/82 +f 716/750/83 721/755/83 723/752/83 +f 719/756/84 717/733/84 715/735/84 +f 720/757/111 725/758/111 719/759/111 +f 721/749/86 726/760/86 720/747/86 +f 718/761/111 727/762/111 722/763/111 +f 723/748/84 722/764/84 727/765/84 +f 725/758/83 721/755/83 717/733/83 +f 733/766/82 742/767/82 741/768/82 +f 728/769/82 736/770/82 735/771/82 +f 728/772/82 742/767/82 734/773/82 +f 744/774/82 740/775/82 732/776/82 +f 743/777/82 738/778/82 730/779/82 +f 730/779/82 736/770/82 729/780/82 +f 755/781/83 748/782/83 759/783/83 +f 747/784/83 752/785/83 753/786/83 +f 757/787/83 748/782/83 756/788/83 +f 757/787/83 745/789/83 749/790/83 +f 745/791/83 751/792/83 746/793/83 +f 751/792/83 747/784/83 746/793/83 +f 773/794/84 768/795/84 770/796/84 +f 783/797/86 779/798/86 777/799/86 +f 767/800/112 761/801/112 765/802/112 +f 766/803/113 760/804/113 762/805/113 +f 766/806/114 763/807/114 767/808/114 +f 765/809/100 760/810/100 764/811/100 +f 784/812/86 788/813/86 790/814/86 +f 794/815/84 799/816/84 797/817/84 +f 804/818/85 806/819/85 805/820/85 +f 801/821/86 807/822/86 803/823/86 +f 802/824/84 805/820/84 800/825/84 +f 803/826/83 804/818/83 802/827/83 +f 800/828/82 806/819/82 801/829/82 +f 822/830/84 808/831/84 810/832/84 +f 821/833/86 811/834/86 809/835/86 +f 826/836/84 812/837/84 814/838/84 +f 825/839/86 815/840/86 813/841/86 +f 824/842/84 810/832/84 812/837/84 +f 811/834/86 825/843/86 813/841/86 +f 830/844/84 816/845/84 818/846/84 +f 817/847/86 831/848/86 819/849/86 +f 828/850/84 814/838/84 816/845/84 +f 815/840/86 829/851/86 817/847/86 +f 839/852/86 833/853/86 835/854/86 +f 836/855/84 834/856/84 832/857/84 +f 840/858/84 838/859/84 836/855/84 +f 843/860/86 837/861/86 839/852/86 +f 841/862/86 843/860/86 845/863/86 +f 842/864/84 840/858/84 844/865/84 +f 847/866/82 864/867/82 846/868/82 +f 864/867/82 865/869/82 878/870/82 +f 885/871/83 867/872/83 869/873/83 +f 861/874/91 883/875/91 873/876/91 +f 883/875/84 877/877/84 880/878/84 +f 871/879/83 882/880/83 861/881/83 +f 868/882/85 877/877/85 871/883/85 +f 884/884/86 887/885/86 885/886/86 +f 870/887/85 885/886/85 869/888/85 +f 872/889/91 886/890/91 860/891/91 +f 860/892/83 884/884/83 870/893/83 +f 880/894/83 866/895/83 881/896/83 +f 885/871/83 888/897/83 889/898/83 +f 880/894/83 891/899/83 883/900/83 +f 890/901/83 881/896/83 879/902/83 +f 907/903/83 902/904/83 905/905/83 +f 903/906/82 287/907/82 271/908/82 +f 905/905/83 278/909/83 289/910/83 +f 906/911/82 274/912/82 299/391/82 +f 900/913/83 301/387/83 282/914/83 +f 913/915/91 908/916/91 910/917/91 +f 914/918/91 911/919/91 909/920/91 +f 926/921/82 920/922/82 922/923/82 +f 925/924/83 923/925/83 921/926/83 +f 930/927/83 913/915/83 910/928/83 +f 912/929/82 928/930/82 908/931/82 +f 915/932/83 931/933/83 911/934/83 +f 929/935/82 914/918/82 909/936/82 +f 923/925/83 931/937/83 919/938/83 +f 929/939/82 922/923/82 918/940/82 +f 930/941/83 921/926/83 917/942/83 +f 920/922/82 928/943/82 916/944/82 +f 939/945/84 936/946/84 937/947/84 +f 939/945/91 932/948/91 934/949/91 +f 937/947/82 933/950/82 932/948/82 +f 933/951/85 938/952/85 935/953/85 +f 941/954/82 938/955/82 939/956/82 +f 938/952/85 942/957/85 935/953/85 +f 939/945/91 943/958/91 941/954/91 +f 194/289/82 220/959/82 219/290/82 +f 194/289/82 192/296/82 221/292/82 +f 190/294/82 222/960/82 221/295/82 +f 190/294/82 188/301/82 211/297/82 +f 210/299/82 212/961/82 211/300/82 +f 210/299/82 208/304/82 213/302/82 +f 208/304/82 206/307/82 214/305/82 +f 206/307/82 204/310/82 215/308/82 +f 204/310/82 202/315/82 216/311/82 +f 200/313/82 217/962/82 216/314/82 +f 200/316/82 198/320/82 218/317/82 +f 196/291/82 219/963/82 218/319/82 +f 224/323/82 223/964/82 227/965/82 +f 223/964/82 225/966/82 227/965/82 +f 225/966/82 226/967/82 227/965/82 +f 227/965/82 228/968/82 229/321/82 +f 229/321/82 230/969/82 231/322/82 +f 231/322/82 232/970/82 233/971/82 +f 233/971/82 234/972/82 231/322/82 +f 234/972/82 224/323/82 231/322/82 +f 227/965/82 229/321/82 224/323/82 +f 246/324/82 236/973/82 241/325/82 +f 239/327/82 238/330/82 258/328/82 +f 238/330/82 239/974/82 241/331/82 +f 265/333/83 250/975/83 255/334/83 +f 237/336/83 240/976/83 267/337/83 +f 242/339/83 235/977/83 244/340/83 +f 290/342/83 289/910/83 278/343/83 +f 235/345/83 242/978/83 240/346/83 +f 369/347/82 368/364/82 257/348/82 +f 269/350/82 266/436/82 251/351/82 +f 247/353/83 248/368/83 260/354/83 +f 369/356/82 254/349/82 252/357/82 +f 244/340/83 243/361/83 262/359/83 +f 243/361/83 249/979/83 261/362/83 +f 370/363/82 258/328/82 257/348/82 +f 269/365/82 253/352/82 245/366/82 +f 248/368/83 250/975/83 265/369/83 +f 367/370/82 270/367/82 245/366/82 +f 271/371/82 287/907/82 288/372/82 +f 277/374/82 293/378/82 294/375/82 +f 272/377/82 291/399/82 293/378/82 +f 298/379/83 297/385/83 285/380/83 +f 284/382/83 296/980/83 298/379/83 +f 276/383/82 279/376/82 294/375/82 +f 297/385/83 295/981/83 280/386/83 +f 301/387/83 302/393/83 283/388/83 +f 275/390/82 300/396/82 299/391/82 +f 302/393/83 296/980/83 284/394/83 +f 276/395/82 292/384/82 300/396/82 +f 280/397/83 295/981/83 290/342/83 +f 272/398/82 273/373/82 288/372/82 +f 904/400/82 903/982/82 901/401/82 +f 329/403/83 330/983/83 341/404/83 +f 319/406/83 342/410/83 341/404/83 +f 319/408/83 320/984/83 331/409/83 +f 321/411/83 332/414/83 331/409/83 +f 322/413/83 333/417/83 332/414/83 +f 323/416/83 334/420/83 333/417/83 +f 324/419/83 335/424/83 334/420/83 +f 324/422/83 325/985/83 336/423/83 +f 326/425/83 337/430/83 336/426/83 +f 326/428/83 327/986/83 338/429/83 +f 327/431/83 328/987/83 339/432/83 +f 329/433/83 340/405/83 339/432/83 +f 255/334/83 256/338/83 267/435/83 +f 268/358/82 252/357/82 251/351/82 +f 261/437/83 249/979/83 247/353/83 +f 345/440/83 344/988/83 343/989/83 +f 343/989/83 354/990/83 345/440/83 +f 354/990/83 353/438/83 345/440/83 +f 353/438/83 352/991/83 349/439/83 +f 352/991/83 351/992/83 349/439/83 +f 351/992/83 350/993/83 349/439/83 +f 349/439/83 348/994/83 347/995/83 +f 347/995/83 346/996/83 349/439/83 +f 346/996/83 345/440/83 349/439/83 +f 379/441/84 388/727/84 387/442/84 +f 377/444/85 386/997/85 385/445/85 +f 375/447/86 384/452/86 383/448/86 +f 378/443/87 387/442/87 386/450/87 +f 376/446/88 385/445/88 384/452/88 +f 383/454/83 384/998/83 385/455/83 +f 385/455/83 386/999/83 388/453/83 +f 386/999/83 387/1000/83 388/453/83 +f 383/454/89 388/453/89 701/456/89 +f 700/457/83 701/456/83 382/458/83 +f 374/460/82 391/464/82 392/461/82 +f 373/463/90 390/466/90 391/464/90 +f 371/465/82 389/1001/82 390/466/82 +f 380/467/82 395/471/82 396/468/82 +f 379/470/90 394/473/90 395/471/90 +f 379/470/82 378/477/82 393/472/82 +f 376/474/82 397/478/82 398/475/82 +f 398/475/82 393/472/82 378/477/82 +f 375/462/82 392/461/82 397/478/82 +f 399/1002/91 389/1001/91 401/479/91 +f 389/1001/91 371/465/91 401/479/91 +f 372/459/91 382/458/91 402/480/91 +f 403/483/82 404/1003/82 407/481/82 +f 404/1003/82 405/1004/82 407/481/82 +f 405/1004/82 406/1005/82 407/481/82 +f 407/481/82 408/1006/82 409/1007/82 +f 409/1007/82 410/1008/82 411/482/82 +f 411/482/82 412/1009/82 413/1010/82 +f 413/1010/82 414/1011/82 411/482/82 +f 414/1011/82 403/483/82 411/482/82 +f 407/481/82 409/1007/82 411/482/82 +f 460/484/83 481/488/83 480/485/83 +f 459/487/83 482/490/83 481/488/83 +f 458/489/83 483/492/83 482/490/83 +f 458/489/83 457/493/83 484/491/83 +f 457/493/83 456/495/83 485/494/83 +f 456/495/83 455/1012/83 486/496/83 +f 437/497/82 478/501/82 479/498/82 +f 438/500/82 477/503/82 478/501/82 +f 439/502/82 476/1013/82 477/503/82 +f 475/504/82 476/1013/82 439/502/82 +f 474/506/82 475/504/82 440/505/82 +f 473/508/82 474/506/82 441/507/82 +f 473/508/82 442/509/82 469/510/82 +f 467/512/92 495/526/92 498/513/92 +f 470/515/83 461/486/83 480/485/83 +f 471/517/93 493/529/93 494/518/93 +f 486/496/83 455/1012/83 472/519/83 +f 471/517/82 436/499/82 479/498/82 +f 511/522/82 506/1014/82 502/523/82 +f 497/525/91 498/513/91 495/526/91 +f 499/528/91 494/518/91 493/529/91 +f 470/515/83 466/516/83 498/531/83 +f 468/532/94 465/554/94 499/528/94 +f 470/515/95 497/525/95 496/527/95 +f 471/517/96 468/521/96 500/533/96 +f 472/519/97 494/518/97 499/534/97 +f 469/510/82 496/527/82 495/535/82 +f 509/536/84 503/1015/84 504/537/84 +f 512/539/91 511/522/91 509/524/91 +f 473/508/82 467/511/82 509/541/82 +f 467/511/82 503/1016/82 509/541/82 +f 504/537/91 503/1015/91 467/512/91 +f 466/516/83 480/485/83 510/543/83 +f 480/485/83 501/1017/83 510/543/83 +f 507/545/83 512/539/83 510/540/83 +f 468/521/82 479/498/82 511/547/82 +f 479/498/82 506/1018/82 511/547/82 +f 511/549/86 512/1019/86 508/550/86 +f 486/496/83 465/520/83 512/552/83 +f 465/520/83 508/1020/83 512/552/83 +f 505/551/91 508/550/91 465/554/91 +f 517/555/98 521/566/98 524/556/98 +f 515/558/84 519/569/84 518/559/84 +f 514/561/86 517/555/86 520/557/86 +f 516/560/83 518/559/83 517/555/83 +f 513/562/82 520/557/82 519/563/82 +f 522/565/91 523/1021/91 524/556/91 +f 518/559/99 522/1022/99 521/567/99 +f 520/557/100 524/1023/100 523/568/100 +f 519/569/101 523/1024/101 522/570/101 +f 489/571/83 490/1025/83 531/572/83 +f 488/574/83 489/571/83 530/573/83 +f 488/576/83 529/1026/83 528/577/83 +f 487/578/83 528/577/83 527/579/83 +f 453/581/82 536/1027/82 537/582/82 +f 535/584/82 536/1027/82 453/581/82 +f 534/586/82 535/584/82 454/585/82 +f 444/588/82 545/590/82 534/586/82 +f 445/589/82 544/592/82 545/590/82 +f 446/591/82 543/594/82 544/592/82 +f 447/593/82 542/596/82 543/594/82 +f 448/595/82 541/598/82 542/596/82 +f 449/597/82 540/1028/82 541/598/82 +f 539/599/82 540/1029/82 449/600/82 +f 538/602/82 539/599/82 450/601/82 +f 537/582/82 538/602/82 451/603/82 +f 548/604/83 553/1030/83 551/605/83 +f 547/606/83 551/605/83 552/607/83 +f 550/609/83 546/608/83 552/607/83 +f 549/611/83 550/609/83 554/610/83 +f 492/613/102 549/611/102 555/614/102 +f 525/616/103 553/1031/103 548/604/103 +f 561/618/83 560/1032/83 566/619/83 +f 561/618/83 565/620/83 564/621/83 +f 562/622/83 564/621/83 563/623/83 +f 557/625/83 556/624/83 563/623/83 +f 558/627/83 557/625/83 569/626/83 +f 559/629/83 558/627/83 568/628/83 +f 575/631/82 579/1033/82 580/632/82 +f 577/634/82 579/1033/82 575/631/82 +f 578/636/82 577/634/82 576/635/82 +f 570/638/82 583/640/82 578/636/82 +f 572/639/82 582/642/82 583/640/82 +f 573/641/82 581/1034/82 582/642/82 +f 602/643/104 606/1035/104 604/644/104 +f 590/646/104 594/1036/104 592/647/104 +f 587/649/83 585/653/83 589/650/83 +f 584/652/86 588/648/86 589/650/86 +f 586/654/82 590/646/82 588/648/82 +f 587/649/84 591/651/84 590/655/84 +f 592/657/85 594/1037/85 595/658/85 +f 591/651/84 595/1038/84 594/660/84 +f 589/650/105 593/1039/105 595/661/105 +f 588/648/86 592/657/86 593/659/86 +f 597/662/83 601/666/83 603/663/83 +f 596/665/86 600/674/86 601/666/86 +f 596/667/82 598/668/82 602/643/82 +f 599/664/84 603/663/84 602/643/84 +f 604/669/85 606/672/85 607/670/85 +f 603/663/84 607/670/84 606/672/84 +f 601/666/105 605/1040/105 607/673/105 +f 600/674/86 604/1041/86 605/675/86 +f 609/676/84 611/1042/84 610/677/84 +f 611/679/83 615/687/83 614/680/83 +f 615/682/86 613/685/86 612/683/86 +f 613/685/82 609/676/82 608/678/82 +f 614/680/85 612/1043/85 608/686/85 +f 611/679/91 609/676/91 613/685/91 +f 372/459/86 371/465/86 383/448/86 +f 371/465/86 373/1044/86 374/449/86 +f 383/448/86 371/465/86 374/449/86 +f 620/689/86 622/1045/86 623/690/86 +f 616/692/91 621/691/91 623/690/91 +f 617/694/82 620/1046/82 621/691/82 +f 617/695/85 619/702/85 622/696/85 +f 622/698/82 624/1047/82 625/699/82 +f 626/701/85 624/1048/85 622/696/85 +f 623/690/91 625/699/91 627/703/91 +f 628/704/82 630/1049/82 631/705/82 +f 635/707/83 634/713/83 632/708/83 +f 631/705/84 635/707/84 633/710/84 +f 628/712/106 632/708/106 634/713/106 +f 631/705/91 630/1049/91 634/713/91 +f 639/715/82 638/726/82 636/716/82 +f 640/718/83 642/723/83 643/719/83 +f 641/721/86 643/719/86 639/715/86 +f 642/723/107 640/718/107 636/724/107 +f 639/715/91 643/719/91 642/723/91 +f 379/441/84 380/1050/84 381/469/84 +f 381/469/84 382/458/84 379/441/84 +f 382/458/84 701/1051/84 388/727/84 +f 400/1052/91 402/480/91 396/468/91 +f 402/480/91 382/458/91 381/469/91 +f 708/728/108 706/740/108 710/729/108 +f 702/731/86 706/740/86 708/728/86 +f 717/733/85 716/750/85 714/734/85 +f 705/736/84 709/744/84 707/737/84 +f 703/739/83 707/737/83 706/740/83 +f 713/742/91 712/730/91 710/729/91 +f 709/744/109 713/742/109 711/743/109 +f 707/737/110 711/743/110 710/729/110 +f 704/746/82 708/1053/82 712/730/82 +f 712/730/82 713/742/82 705/745/82 +f 713/742/82 709/1054/82 705/745/82 +f 720/747/91 722/764/91 723/748/91 +f 716/750/86 724/1055/86 718/751/86 +f 723/752/83 727/762/83 724/753/83 +f 715/735/82 714/734/82 722/764/82 +f 714/734/82 718/1056/82 722/764/82 +f 722/764/82 720/747/82 715/735/82 +f 716/750/83 717/733/83 721/755/83 +f 719/756/84 725/1057/84 717/733/84 +f 720/757/111 726/1058/111 725/758/111 +f 718/761/111 724/753/111 727/762/111 +f 725/758/83 726/1058/83 721/755/83 +f 733/766/82 734/773/82 742/767/82 +f 728/769/82 729/780/82 736/770/82 +f 728/772/82 735/1059/82 742/767/82 +f 744/774/82 733/766/82 740/775/82 +f 733/766/82 741/768/82 740/775/82 +f 740/775/82 739/1060/82 732/776/82 +f 743/777/82 732/776/82 738/778/82 +f 732/776/82 739/1060/82 738/778/82 +f 738/778/82 737/1061/82 730/779/82 +f 730/779/82 737/1061/82 736/770/82 +f 731/1062/83 754/1063/83 755/781/83 +f 755/781/83 756/788/83 748/782/83 +f 759/783/83 731/1062/83 755/781/83 +f 754/1063/83 731/1062/83 753/786/83 +f 731/1062/83 758/1064/83 753/786/83 +f 758/1064/83 747/784/83 753/786/83 +f 757/787/83 749/790/83 748/782/83 +f 757/787/83 750/1065/83 745/789/83 +f 745/791/83 750/1066/83 751/792/83 +f 751/792/83 752/785/83 747/784/83 +f 770/796/84 771/1067/84 775/1068/84 +f 775/1068/84 774/1069/84 773/794/84 +f 773/794/84 772/1070/84 768/795/84 +f 768/795/84 769/1071/84 770/796/84 +f 770/796/84 775/1068/84 773/794/84 +f 777/799/86 776/1072/86 782/1073/86 +f 782/1073/86 781/1074/86 783/797/86 +f 783/797/86 780/1075/86 779/798/86 +f 779/798/86 778/1076/86 777/799/86 +f 777/799/86 782/1073/86 783/797/86 +f 767/800/112 763/1077/112 761/801/112 +f 766/803/113 764/1078/113 760/804/113 +f 766/806/114 762/1079/114 763/807/114 +f 765/809/100 761/801/100 760/810/100 +f 790/814/86 791/1080/86 785/1081/86 +f 785/1081/86 786/1082/86 784/812/86 +f 784/812/86 787/1083/86 788/813/86 +f 788/813/86 789/1084/86 790/814/86 +f 790/814/86 785/1081/86 784/812/86 +f 797/817/84 796/1085/84 792/1086/84 +f 792/1086/84 793/1087/84 794/815/84 +f 794/815/84 795/1088/84 799/816/84 +f 799/816/84 798/1089/84 797/817/84 +f 797/817/84 792/1086/84 794/815/84 +f 804/818/85 807/822/85 806/819/85 +f 801/821/86 806/819/86 807/822/86 +f 802/824/84 804/818/84 805/820/84 +f 803/826/83 807/822/83 804/818/83 +f 800/828/82 805/820/82 806/819/82 +f 822/830/84 820/1090/84 808/831/84 +f 821/833/86 823/1091/86 811/834/86 +f 826/836/84 824/1092/84 812/837/84 +f 825/839/86 827/1093/86 815/840/86 +f 824/842/84 822/1094/84 810/832/84 +f 811/834/86 823/1095/86 825/843/86 +f 830/844/84 828/850/84 816/845/84 +f 817/847/86 829/851/86 831/848/86 +f 828/850/84 826/1096/84 814/838/84 +f 815/840/86 827/1097/86 829/851/86 +f 839/852/86 837/861/86 833/853/86 +f 836/855/84 838/859/84 834/856/84 +f 840/858/84 842/864/84 838/859/84 +f 843/860/86 841/862/86 837/861/86 +f 847/866/82 865/869/82 864/867/82 +f 865/869/82 849/1098/82 876/1099/82 +f 878/870/82 848/1100/82 864/867/82 +f 865/869/82 876/1099/82 878/870/82 +f 885/871/83 879/902/83 867/872/83 +f 861/874/91 882/880/91 883/875/91 +f 883/875/84 882/880/84 877/877/84 +f 871/879/83 877/877/83 882/880/83 +f 868/882/85 880/878/85 877/877/85 +f 884/884/86 886/890/86 887/885/86 +f 870/887/85 884/884/85 885/886/85 +f 872/889/91 887/885/91 886/890/91 +f 860/892/83 886/890/83 884/884/83 +f 880/894/83 868/1101/83 866/895/83 +f 885/871/83 887/1102/83 888/897/83 +f 880/894/83 890/901/83 891/899/83 +f 879/902/83 885/871/83 889/898/83 +f 890/901/83 880/894/83 881/896/83 +f 879/902/83 889/898/83 890/901/83 +f 907/903/83 900/1103/83 902/904/83 +f 903/906/82 904/400/82 287/907/82 +f 905/905/83 902/1104/83 278/909/83 +f 906/911/82 901/1105/82 274/912/82 +f 900/913/83 907/1106/83 301/387/83 +f 913/915/91 912/929/91 908/916/91 +f 914/918/91 915/932/91 911/919/91 +f 926/921/82 924/1107/82 920/922/82 +f 925/924/83 927/1108/83 923/925/83 +f 930/927/83 917/942/83 913/915/83 +f 912/929/82 916/944/82 928/930/82 +f 915/932/83 919/938/83 931/933/83 +f 929/935/82 918/940/82 914/918/82 +f 923/925/83 927/1109/83 931/937/83 +f 929/939/82 926/1110/82 922/923/82 +f 930/941/83 925/1111/83 921/926/83 +f 920/922/82 924/1112/82 928/943/82 +f 939/945/84 938/1113/84 936/946/84 +f 939/945/91 937/947/91 932/948/91 +f 937/947/82 936/1114/82 933/950/82 +f 933/951/85 936/1115/85 938/952/85 +f 941/954/82 940/1116/82 938/955/82 +f 938/952/85 940/1117/85 942/957/85 +f 939/945/91 934/949/91 943/958/91 s 1 -f 2/13/10 3/984/34 1/985/10 -f 4/6/34 5/986/35 3/984/34 -f 8/1/5 9/987/36 7/988/5 -f 10/3/36 11/989/22 9/987/36 -f 12/32/22 13/990/4 11/989/22 -f 14/25/4 15/991/21 13/992/4 -f 16/27/21 17/993/37 15/991/21 -f 18/22/37 19/994/3 17/993/37 -f 20/19/3 21/995/38 19/994/3 -f 22/16/38 23/996/39 21/995/38 -f 24/11/39 1/985/10 23/996/39 -f 29/20/35 40/997/5 28/21/5 -f 36/763/21 47/998/37 35/7/37 -f 26/764/22 38/999/4 25/12/4 -f 33/766/38 44/1000/39 32/31/39 -f 30/23/34 41/1001/35 29/24/35 -f 25/9/4 48/1002/21 36/10/21 -f 27/14/36 37/1003/22 26/15/22 -f 34/762/3 45/1004/38 33/2/38 -f 31/765/10 42/1005/34 30/26/34 -f 28/17/5 39/1006/36 27/18/36 -f 35/4/37 46/1007/3 34/5/3 -f 32/29/39 43/1008/10 31/30/10 -f 49/780/40 60/36/41 58/52/41 -f 59/78/42 58/52/41 60/36/41 -f 59/78/42 63/782/43 57/73/42 -f 65/63/44 63/782/27 67/64/27 -f 68/61/28 62/80/45 66/69/45 -f 72/40/46 69/46/47 71/60/47 -f 66/69/45 61/65/44 65/63/44 -f 52/42/48 49/57/40 51/48/48 -f 72/40/46 51/48/48 70/50/46 -f 854/1009/9 835/1010/9 855/1011/9 -f 101/691/46 104/54/47 102/84/47 -f 105/111/49 104/54/47 109/784/49 -f 105/111/28 111/97/45 107/90/45 -f 107/90/45 112/91/44 108/87/44 -f 108/87/44 110/783/27 106/96/27 -f 114/108/42 110/783/43 116/105/42 -f 114/108/42 115/99/41 113/103/41 -f 884/112/48 887/687/40 885/689/48 -f 122/1012/50 126/1013/51 117/1014/52 -f 124/1015/44 130/1016/53 121/1017/45 -f 123/1018/54 127/1019/55 132/1020/56 -f 126/1013/51 551/1021/57 548/1022/58 -f 128/1023/59 120/1024/60 119/1025/48 -f 124/1015/44 132/1020/56 131/1026/61 -f 126/1027/51 118/1028/40 117/1029/52 -f 130/1016/53 122/1030/50 121/1017/45 -f 118/1028/40 128/1023/59 119/1025/48 -f 68/61/49 69/46/47 64/778/49 -f 144/119/21 157/1031/4 133/118/4 -f 134/124/22 159/1032/36 135/123/36 -f 141/143/38 166/1033/3 142/790/3 -f 138/134/34 163/1034/10 139/788/10 -f 135/127/36 160/1035/5 136/125/5 -f 142/146/3 167/1036/37 143/145/37 -f 139/139/10 164/1037/39 140/137/39 -f 136/130/5 161/1038/35 137/128/35 -f 143/115/37 168/1039/21 144/786/21 -f 133/120/4 158/1040/22 134/787/22 -f 140/140/39 165/1041/38 141/789/38 -f 137/133/35 162/1042/34 138/131/34 -f 151/142/22 174/1043/4 150/138/4 -f 148/132/37 171/1044/3 147/129/3 -f 155/116/34 178/1045/35 154/117/35 -f 145/121/39 180/1046/10 156/122/10 -f 152/141/36 175/1047/22 151/142/22 -f 149/136/21 172/1048/37 148/132/37 -f 156/122/10 179/1049/34 155/116/34 -f 146/126/38 169/1050/39 145/121/39 -f 153/144/5 176/1051/36 152/141/36 -f 150/135/4 173/1052/21 149/136/21 -f 147/129/3 170/1053/38 146/126/38 -f 154/117/35 177/1054/5 153/144/5 -f 221/1055/38 215/1056/62 214/1057/38 -f 223/1058/63 217/1059/35 216/1060/63 -f 224/1061/35 218/1062/34 217/1059/35 -f 226/1063/10 213/1064/39 219/1065/10 -f 225/1066/34 219/1065/10 218/1062/34 -f 220/1067/39 214/1057/38 213/1064/39 -f 233/1068/38 246/1069/62 234/1070/62 -f 241/1071/35 252/1072/63 253/1073/35 -f 242/1074/34 253/1073/35 254/1075/34 -f 231/1076/10 243/1077/39 232/1078/39 -f 242/1074/34 244/1079/10 231/1076/10 -f 232/1078/39 245/1080/38 233/1068/38 -f 258/1081/39 273/1082/38 259/1083/38 -f 266/1084/63 276/1085/35 267/1086/35 -f 259/1083/38 274/1087/62 260/1088/62 -f 267/1086/35 277/1089/34 268/1090/34 -f 268/1090/34 272/1091/10 257/1092/10 -f 257/1092/10 271/1093/39 258/1081/39 -f 292/1094/3 281/1095/37 280/1096/3 -f 299/1097/35 288/1098/34 287/1099/35 -f 301/1100/10 278/1101/39 289/1102/10 -f 296/1103/22 285/1104/36 284/1105/22 -f 293/1106/37 282/1107/21 281/1095/37 -f 300/1108/34 289/1102/10 288/1098/34 -f 290/1109/39 279/1110/38 278/1101/39 -f 297/1111/36 286/1112/5 285/1104/36 -f 294/1113/21 283/1114/4 282/1107/21 -f 291/1115/38 280/1096/3 279/1110/38 -f 298/1116/5 287/1099/35 286/1112/5 -f 295/1117/4 284/1105/22 283/1118/4 -f 306/1119/39 312/1120/10 305/1121/10 -f 304/1122/34 310/1123/35 303/1124/35 -f 307/1125/38 313/1126/39 306/1119/39 -f 305/1121/10 311/1127/34 304/1122/34 -f 303/1124/35 309/1128/63 302/1129/63 -f 308/1130/62 314/1131/38 307/1125/38 -f 338/210/4 320/226/22 319/223/4 -f 339/208/22 321/228/36 320/226/22 -f 340/205/36 322/230/64 321/228/36 -f 335/846/65 317/218/37 316/220/65 -f 336/216/37 318/221/21 317/218/37 -f 337/214/21 319/223/4 318/221/21 -f 341/207/64 349/231/66 322/230/64 -f 368/1132/4 328/316/21 369/1133/21 -f 371/1134/67 325/310/38 372/334/68 -f 343/1135/69 333/302/35 332/304/5 -f 367/1136/22 329/321/4 368/1137/4 -f 370/1138/70 326/312/3 371/1134/67 -f 344/1139/71 330/322/22 367/1136/22 -f 369/1133/21 327/314/37 370/1138/70 -f 372/334/68 325/310/38 324/309/39 -f 426/329/10 324/309/39 323/308/10 -f 344/1139/71 332/304/5 331/324/36 -f 335/846/65 351/238/72 352/240/72 -f 343/1140/73 405/1141/74 342/1142/75 -f 371/1143/76 413/1144/77 412/1145/78 -f 371/1143/76 411/293/74 370/859/79 -f 344/301/80 406/1146/81 343/1140/73 -f 427/327/34 323/308/10 334/306/34 -f 437/346/39 451/358/10 436/345/10 -f 438/348/38 450/359/39 437/346/39 -f 441/339/35 454/354/63 440/866/63 -f 439/350/62 452/360/38 438/348/38 -f 442/343/34 455/352/35 441/339/35 -f 436/345/10 456/356/34 442/343/34 -f 334/306/34 333/302/35 342/338/82 -f 519/434/83 516/885/84 518/435/84 -f 518/435/84 522/1147/85 520/1148/85 -f 515/1149/10 523/1150/86 521/1151/86 -f 521/1151/86 517/886/83 519/434/83 -f 520/1148/85 512/1152/4 514/1153/4 -f 524/883/87 527/1154/88 525/432/87 -f 526/1155/88 506/1156/89 527/1154/88 -f 551/1157/57 558/1158/90 559/1159/91 -f 125/1160/92 548/1161/58 549/1162/93 -f 125/1160/92 544/1163/94 128/1023/59 -f 132/1020/56 547/1164/95 131/1026/61 -f 128/1023/59 545/1165/96 127/1166/55 -f 127/1019/55 546/1167/97 132/1020/56 -f 129/1168/98 550/1169/99 551/1157/57 -f 131/1026/61 550/1169/99 130/1016/53 -f 555/1170/100 562/1171/101 558/1172/102 -f 546/1173/97 555/1174/103 547/1164/95 -f 545/1175/96 554/1176/104 546/1167/97 -f 549/1162/93 552/1177/105 544/1163/94 -f 549/1162/93 556/1178/106 557/1179/107 -f 544/1163/94 553/1180/108 545/1165/96 -f 547/1164/95 558/1158/90 550/1169/99 -f 548/1022/58 559/1181/91 556/1182/106 -f 558/1172/102 563/1183/109 559/1184/91 -f 555/1170/100 560/1185/110 561/1186/111 -f 561/1186/111 566/1187/112 562/1171/101 -f 562/1171/101 567/1188/113 563/1183/109 -f 561/1186/111 564/1189/114 565/1190/115 -f 565/1190/115 570/1191/116 566/1187/112 -f 566/1187/112 571/1192/117 567/1188/113 -f 564/1189/114 569/1193/118 565/1190/115 -f 557/1179/107 572/1194/119 552/1177/105 -f 557/1179/107 574/1195/120 575/1196/121 -f 552/1177/105 573/1197/122 553/1180/108 -f 575/1198/123 576/1199/124 572/1200/125 -f 574/1201/120 579/1202/126 575/1198/123 -f 573/1203/122 576/1199/124 577/1204/127 -f 579/1202/126 580/1205/128 576/1199/124 -f 579/1202/126 582/1206/129 583/1207/130 -f 576/1199/124 581/1208/131 577/1204/127 -f 583/1207/130 584/1209/132 580/1205/128 -f 583/1207/130 586/1210/133 587/1211/134 -f 580/1205/128 585/1212/135 581/1208/131 -f 587/1211/134 588/1213/136 584/1209/132 -f 586/1210/133 591/1214/137 587/1211/134 -f 584/1209/132 589/1215/138 585/1212/135 -f 591/1216/137 592/1217/139 588/1218/136 -f 591/1216/137 594/1219/140 595/1220/141 -f 588/1218/136 593/1221/142 589/1222/138 -f 595/1220/141 596/1223/143 592/1217/139 -f 594/1224/140 599/1225/144 595/1220/141 -f 592/1217/139 597/1226/145 593/1227/142 -f 563/1228/109 578/1229/146 559/1181/91 -f 573/1230/122 554/1176/104 553/1231/108 -f 597/1232/145 569/1233/118 568/1234/147 -f 570/1235/116 598/1236/148 571/1237/117 -f 596/1223/143 570/1235/116 569/1233/118 -f 564/1189/114 593/1227/142 568/1238/147 -f 577/1239/127 560/1240/110 554/1176/104 -f 581/1241/131 585/1212/135 593/1227/142 -f 568/1238/147 593/1227/142 597/1226/145 -f 594/1242/140 571/1243/117 598/1244/148 -f 594/1242/140 567/1245/113 571/1243/117 -f 582/1246/129 594/1242/140 586/1247/133 -f 574/1248/120 559/1181/91 578/1229/146 -f 645/539/28 663/543/149 646/538/149 -f 653/1249/5 667/1250/7 652/1251/7 -f 646/538/149 674/908/3 659/536/3 -f 654/1252/27 668/1253/5 653/1249/5 -f 660/1254/5 664/541/150 649/1255/150 -f 655/1256/10 669/1257/27 654/1252/27 -f 656/1258/28 670/1259/10 655/1256/10 -f 657/1260/3 671/1261/28 656/1258/28 -f 649/1255/150 665/549/27 650/1262/27 -f 658/1263/6 672/1264/3 657/1260/3 -f 650/1262/27 661/548/10 644/1265/10 -f 644/528/10 662/552/28 645/539/28 -f 651/1266/4 673/1267/6 658/1263/6 -f 652/1251/7 666/1268/4 651/1269/4 -f 689/1270/9 696/1271/1 688/1272/1 -f 690/1273/4 695/1274/9 689/1270/9 -f 685/1275/10 698/1276/29 686/1277/29 -f 686/1277/29 692/1278/2 687/1279/2 -f 691/1280/8 694/1281/4 690/1282/4 -f 687/1279/2 693/1283/8 691/1280/8 -f 684/1284/151 697/1285/10 685/1275/10 -f 688/1272/1 699/1286/151 684/1284/151 -f 711/1287/1 700/1288/151 715/1289/151 -f 715/1289/151 702/1290/10 714/1291/10 -f 712/1292/2 706/1293/8 708/1294/8 -f 708/1294/8 705/1295/4 709/1296/4 -f 713/1297/29 707/1298/2 712/1292/2 -f 714/1291/10 701/1299/29 713/1297/29 -f 709/1300/4 704/1301/9 710/1302/9 -f 710/1302/9 703/1303/1 711/1287/1 -f 731/1304/22 742/1305/152 730/1306/4 -f 728/1307/37 739/1308/153 727/1309/3 -f 735/1310/34 746/1311/154 734/1312/35 -f 725/1313/39 736/1314/155 724/1315/10 -f 732/1316/36 743/1317/156 731/1304/22 -f 729/1318/21 740/1319/157 728/1307/37 -f 724/1315/10 747/1320/158 735/1310/34 -f 726/1321/38 737/1322/159 725/1313/39 -f 733/1323/5 744/1324/160 732/1316/36 -f 730/1325/4 741/1326/161 729/1318/21 -f 727/1309/3 738/1327/162 726/1321/38 -f 734/1312/35 745/1328/163 733/1323/5 -f 740/1319/157 753/1329/164 752/1330/165 -f 747/1320/158 748/1331/166 759/1332/167 -f 737/1322/159 750/1333/168 749/1334/169 -f 744/1324/160 757/1335/170 756/1336/171 -f 742/1337/152 753/1329/164 741/1326/161 -f 738/1327/162 751/1338/172 750/1333/168 -f 746/1311/154 757/1335/170 745/1328/163 -f 742/1305/152 755/1339/173 754/1340/174 -f 740/1319/157 751/1338/172 739/1308/153 -f 747/1320/158 758/1341/175 746/1311/154 -f 737/1322/159 748/1331/166 736/1314/155 -f 744/1324/160 755/1339/173 743/1317/156 -f 752/1330/165 765/1342/176 764/1343/177 -f 759/1332/167 760/1344/178 771/1345/179 -f 749/1334/169 762/1346/180 761/1347/181 -f 757/1335/170 768/1348/182 756/1336/171 -f 754/1349/174 765/1342/176 753/1329/164 -f 751/1338/172 762/1346/180 750/1333/168 -f 757/1335/170 770/1350/183 769/1351/184 -f 754/1340/174 767/1352/185 766/1353/186 -f 751/1338/172 764/1343/177 763/1354/187 -f 759/1332/167 770/1350/183 758/1341/175 -f 749/1334/169 760/1344/178 748/1331/166 -f 756/1336/171 767/1352/185 755/1339/173 -f 766/1355/186 768/1356/182 760/1357/178 -f 791/618/188 788/615/2 789/619/2 -f 793/625/189 790/616/188 791/618/188 -f 795/624/190 792/621/189 793/625/189 -f 797/631/191 794/622/190 795/624/190 -f 799/633/23 796/629/191 797/631/191 -f 801/617/1 802/1358/192 803/952/192 -f 805/623/193 806/1359/194 807/954/194 -f 806/1360/194 809/635/195 807/958/194 -f 809/635/195 810/1361/18 811/632/18 -f 804/1362/193 803/956/192 802/1363/192 -f 818/1364/196 815/1365/23 814/640/23 -f 813/637/24 816/1366/197 812/1367/24 -f 817/1368/197 820/1369/188 816/1366/197 -f 822/1370/198 819/1371/196 818/1364/196 -f 825/1372/199 822/1370/198 824/1373/199 -f 825/1374/199 820/1369/188 821/1375/188 -f 826/652/10 831/1376/193 827/650/10 -f 830/1377/193 833/1378/1 831/1376/193 -f 843/1379/48 875/1380/200 839/1381/201 -f 834/1382/202 837/1383/203 835/1384/204 -f 836/1385/205 839/1381/201 837/1383/203 -f 829/1386/28 859/1387/45 856/1388/45 -f 838/1389/206 843/1379/48 839/1381/201 -f 850/1390/207 849/1391/32 847/1392/32 -f 846/1393/31 848/1394/31 851/1395/208 -f 850/1390/207 827/1396/5 840/1397/5 -f 844/1398/209 841/1399/3 826/1400/3 -f 834/1382/202 872/1401/210 836/1385/205 -f 837/1383/203 875/1380/200 873/1402/211 -f 858/1403/44 846/1393/27 828/1404/27 -f 856/1388/45 861/1405/44 858/1403/44 -f 838/1389/206 876/1406/41 842/1407/40 -f 836/1385/205 874/1408/212 838/1389/206 -f 835/1384/204 873/1402/211 855/1409/213 -f 852/1410/5 840/1397/5 875/1380/200 -f 874/1411/212 872/1412/210 841/1399/3 -f 831/1413/5 833/1414/5 827/1396/5 -f 832/1415/1 855/1011/9 833/1378/1 -f 854/1416/214 826/1400/3 872/1412/210 -f 101/691/46 885/689/48 103/694/46 -f 887/967/40 113/103/41 115/99/41 -f 827/1396/5 855/1417/213 873/1418/211 -f 826/1400/3 832/1419/3 830/1420/3 -f 902/707/48 899/722/46 898/724/46 -f 898/724/46 895/716/5 894/702/5 -f 897/726/41 892/713/3 893/699/3 -f 901/710/40 896/728/41 897/726/41 -f 902/707/48 901/710/40 903/709/48 -f 6/8/35 7/988/5 5/986/35 -f 923/1421/215 920/977/216 921/738/216 -f 914/1422/217 922/1423/215 923/1421/215 -f 936/981/218 939/980/219 938/979/218 -f 942/1424/220 938/979/218 940/1425/220 -f 943/1426/221 935/1427/10 941/1428/221 -f 937/760/219 941/1428/221 939/980/219 -f 932/1429/4 940/1425/220 934/1430/4 -f 2/13/10 4/6/34 3/984/34 -f 4/6/34 6/8/35 5/986/35 -f 8/1/5 10/3/36 9/987/36 -f 10/3/36 12/32/22 11/989/22 -f 12/32/22 14/28/4 13/990/4 -f 14/25/4 16/27/21 15/991/21 -f 16/27/21 18/22/37 17/993/37 -f 18/22/37 20/19/3 19/994/3 -f 20/19/3 22/16/38 21/995/38 -f 22/16/38 24/11/39 23/996/39 -f 24/11/39 2/13/10 1/985/10 -f 29/20/35 41/1431/35 40/997/5 -f 36/763/21 48/1432/21 47/998/37 -f 26/764/22 37/1433/22 38/999/4 -f 33/766/38 45/1434/38 44/1000/39 -f 30/23/34 42/1435/34 41/1001/35 -f 25/9/4 38/1436/4 48/1002/21 -f 27/14/36 39/1437/36 37/1003/22 -f 34/762/3 46/1438/3 45/1004/38 -f 31/765/10 43/1439/10 42/1005/34 -f 28/17/5 40/1440/5 39/1006/36 -f 35/4/37 47/1441/37 46/1007/3 -f 32/29/39 44/1442/39 43/1008/10 -f 49/780/40 50/776/40 60/36/41 -f 59/78/42 57/73/42 58/52/41 -f 59/78/42 67/64/43 63/782/43 -f 65/63/44 61/65/44 63/782/27 -f 68/61/28 64/778/28 62/80/45 -f 72/40/46 70/50/46 69/46/47 -f 66/69/45 62/80/45 61/65/44 -f 52/42/48 50/44/40 49/57/40 -f 72/40/46 52/42/48 51/48/48 -f 854/1009/9 834/1443/9 835/1010/9 -f 101/691/46 103/694/46 104/54/47 -f 105/111/49 102/84/47 104/54/47 -f 105/111/28 109/784/28 111/97/45 -f 107/90/45 111/97/45 112/91/44 -f 108/87/44 112/91/44 110/783/27 -f 114/108/42 106/96/43 110/783/43 -f 114/108/42 116/105/42 115/99/41 -f 884/112/48 886/114/40 887/687/40 -f 122/1012/50 129/1444/98 126/1013/51 -f 124/1015/44 131/1026/61 130/1016/53 -f 123/1018/54 120/1445/60 127/1019/55 -f 126/1013/51 129/1444/98 551/1021/57 -f 128/1023/59 127/1166/55 120/1024/60 -f 124/1015/44 123/1018/54 132/1020/56 -f 126/1027/51 125/1160/92 118/1028/40 -f 130/1016/53 129/1168/98 122/1030/50 -f 118/1028/40 125/1160/92 128/1023/59 -f 68/61/49 71/60/47 69/46/47 -f 144/119/21 168/1446/21 157/1031/4 -f 134/124/22 158/1447/22 159/1032/36 -f 141/143/38 165/1448/38 166/1033/3 -f 138/134/34 162/1449/34 163/1034/10 -f 135/127/36 159/1450/36 160/1035/5 -f 142/146/3 166/1451/3 167/1036/37 -f 139/139/10 163/1452/10 164/1037/39 -f 136/130/5 160/1453/5 161/1038/35 -f 143/115/37 167/1454/37 168/1039/21 -f 133/120/4 157/1455/4 158/1040/22 -f 140/140/39 164/1456/39 165/1041/38 -f 137/133/35 161/1457/35 162/1042/34 -f 151/142/22 175/1047/22 174/1043/4 -f 148/132/37 172/1048/37 171/1044/3 -f 155/116/34 179/1049/34 178/1045/35 -f 145/121/39 169/1050/39 180/1046/10 -f 152/141/36 176/1051/36 175/1047/22 -f 149/136/21 173/1052/21 172/1048/37 -f 156/122/10 180/1046/10 179/1049/34 -f 146/126/38 170/1053/38 169/1050/39 -f 153/144/5 177/1054/5 176/1051/36 -f 150/135/4 174/1458/4 173/1052/21 -f 147/129/3 171/1044/3 170/1053/38 -f 154/117/35 178/1045/35 177/1054/5 -f 221/1055/38 222/1459/62 215/1056/62 -f 223/1058/63 224/1061/35 217/1059/35 -f 224/1061/35 225/1066/34 218/1062/34 -f 226/1063/10 220/1067/39 213/1064/39 -f 225/1066/34 226/1063/10 219/1065/10 -f 220/1067/39 221/1055/38 214/1057/38 -f 233/1068/38 245/1080/38 246/1069/62 -f 241/1071/35 240/1460/63 252/1072/63 -f 242/1074/34 241/1071/35 253/1073/35 -f 231/1076/10 244/1079/10 243/1077/39 -f 242/1074/34 254/1075/34 244/1079/10 -f 232/1078/39 243/1077/39 245/1080/38 -f 258/1081/39 271/1093/39 273/1082/38 -f 266/1084/63 275/1461/63 276/1085/35 -f 259/1083/38 273/1082/38 274/1087/62 -f 267/1086/35 276/1085/35 277/1089/34 -f 268/1090/34 277/1089/34 272/1091/10 -f 257/1092/10 272/1091/10 271/1093/39 -f 292/1094/3 293/1106/37 281/1095/37 -f 299/1097/35 300/1108/34 288/1098/34 -f 301/1100/10 290/1109/39 278/1101/39 -f 296/1103/22 297/1111/36 285/1104/36 -f 293/1106/37 294/1113/21 282/1107/21 -f 300/1108/34 301/1100/10 289/1102/10 -f 290/1109/39 291/1115/38 279/1110/38 -f 297/1111/36 298/1116/5 286/1112/5 -f 294/1113/21 295/1462/4 283/1114/4 -f 291/1115/38 292/1094/3 280/1096/3 -f 298/1116/5 299/1097/35 287/1099/35 -f 295/1117/4 296/1103/22 284/1105/22 -f 306/1119/39 313/1126/39 312/1120/10 -f 304/1122/34 311/1127/34 310/1123/35 -f 307/1125/38 314/1131/38 313/1126/39 -f 305/1121/10 312/1120/10 311/1127/34 -f 303/1124/35 310/1123/35 309/1128/63 -f 308/1130/62 315/1463/62 314/1131/38 -f 338/210/4 339/208/22 320/226/22 -f 339/208/22 340/205/36 321/228/36 -f 340/205/36 341/207/64 322/230/64 -f 335/846/65 336/216/37 317/218/37 -f 336/216/37 337/214/21 318/221/21 -f 337/214/21 338/210/4 319/223/4 -f 341/207/64 350/236/66 349/231/66 -f 368/1132/4 329/318/4 328/316/21 -f 371/1134/67 326/312/3 325/310/38 -f 343/1135/69 342/338/82 333/302/35 -f 367/1136/22 330/322/22 329/321/4 -f 370/1138/70 327/314/37 326/312/3 -f 344/1139/71 331/324/36 330/322/22 -f 369/1133/21 328/316/21 327/314/37 -f 324/309/39 430/330/39 372/334/68 -f 430/330/39 429/332/28 372/334/68 -f 426/329/10 430/330/39 324/309/39 -f 344/1139/71 343/1135/69 332/304/5 -f 335/846/65 316/220/65 351/238/72 -f 343/1140/73 406/1146/81 405/1141/74 -f 371/1143/76 372/1464/222 413/1144/77 -f 371/1143/76 412/1145/78 411/293/74 -f 344/301/80 407/300/223 406/1146/81 -f 427/327/34 426/329/10 323/308/10 -f 437/346/39 450/359/39 451/358/10 -f 438/348/38 452/360/38 450/359/39 -f 441/339/35 455/352/35 454/354/63 -f 439/350/62 453/362/62 452/360/38 -f 442/343/34 456/356/34 455/352/35 -f 436/345/10 451/358/10 456/356/34 -f 428/325/27 427/327/34 342/338/82 -f 427/327/34 334/306/34 342/338/82 -f 519/434/83 517/886/83 516/885/84 -f 518/435/84 516/885/84 522/1147/85 -f 515/1149/10 513/1465/10 523/1150/86 -f 521/1151/86 523/1150/86 517/886/83 -f 520/1148/85 522/1147/85 512/1152/4 -f 524/883/87 526/1155/88 527/1154/88 -f 526/1155/88 507/1466/89 506/1156/89 -f 551/1157/57 550/1169/99 558/1158/90 -f 125/1160/92 126/1027/51 548/1161/58 -f 125/1160/92 549/1162/93 544/1163/94 -f 132/1020/56 546/1173/97 547/1164/95 -f 128/1023/59 544/1163/94 545/1165/96 -f 127/1019/55 545/1175/96 546/1167/97 -f 129/1168/98 130/1016/53 550/1169/99 -f 131/1026/61 547/1164/95 550/1169/99 -f 555/1170/100 561/1186/111 562/1171/101 -f 546/1173/97 554/1467/104 555/1174/103 -f 545/1175/96 553/1231/108 554/1176/104 -f 549/1162/93 557/1179/107 552/1177/105 -f 549/1162/93 548/1161/58 556/1178/106 -f 544/1163/94 552/1177/105 553/1180/108 -f 547/1164/95 555/1174/103 558/1158/90 -f 548/1022/58 551/1021/57 559/1181/91 -f 558/1172/102 562/1171/101 563/1183/109 -f 555/1170/100 554/1468/104 560/1185/110 -f 561/1186/111 565/1190/115 566/1187/112 -f 562/1171/101 566/1187/112 567/1188/113 -f 561/1186/111 560/1185/110 564/1189/114 -f 565/1190/115 569/1193/118 570/1191/116 -f 566/1187/112 570/1191/116 571/1192/117 -f 564/1189/114 568/1238/147 569/1193/118 -f 557/1179/107 575/1196/121 572/1194/119 -f 557/1179/107 556/1178/106 574/1195/120 -f 552/1177/105 572/1194/119 573/1197/122 -f 575/1198/123 579/1202/126 576/1199/124 -f 574/1201/120 578/1469/146 579/1202/126 -f 573/1203/122 572/1200/125 576/1199/124 -f 579/1202/126 583/1207/130 580/1205/128 -f 579/1202/126 578/1469/146 582/1206/129 -f 576/1199/124 580/1205/128 581/1208/131 -f 583/1207/130 587/1211/134 584/1209/132 -f 583/1207/130 582/1206/129 586/1210/133 -f 580/1205/128 584/1209/132 585/1212/135 -f 587/1211/134 591/1214/137 588/1213/136 -f 586/1210/133 590/1470/224 591/1214/137 -f 584/1209/132 588/1213/136 589/1215/138 -f 591/1216/137 595/1220/141 592/1217/139 -f 591/1216/137 590/1471/224 594/1219/140 -f 588/1218/136 592/1217/139 593/1221/142 -f 595/1220/141 599/1225/144 596/1223/143 -f 594/1224/140 598/1472/148 599/1225/144 -f 592/1217/139 596/1223/143 597/1226/145 -f 563/1228/109 567/1245/113 578/1229/146 -f 573/1230/122 577/1239/127 554/1176/104 -f 597/1232/145 596/1223/143 569/1233/118 -f 570/1235/116 599/1225/144 598/1236/148 -f 596/1223/143 599/1225/144 570/1235/116 -f 577/1239/127 564/1189/114 560/1240/110 -f 589/1215/138 593/1227/142 585/1212/135 -f 593/1227/142 564/1189/114 581/1241/131 -f 564/1189/114 577/1239/127 581/1241/131 -f 582/1246/129 578/1229/146 567/1245/113 -f 567/1245/113 594/1242/140 582/1246/129 -f 594/1242/140 590/1473/224 586/1247/133 -f 574/1248/120 556/1182/106 559/1181/91 -f 645/539/28 662/552/28 663/543/149 -f 653/1249/5 668/1253/5 667/1250/7 -f 646/538/149 663/543/149 674/908/3 -f 654/1252/27 669/1257/27 668/1253/5 -f 660/1254/5 675/542/5 664/541/150 -f 655/1256/10 670/1259/10 669/1257/27 -f 656/1258/28 671/1261/28 670/1259/10 -f 657/1260/3 672/1264/3 671/1261/28 -f 649/1255/150 664/541/150 665/549/27 -f 658/1263/6 673/1267/6 672/1264/3 -f 650/1262/27 665/549/27 661/548/10 -f 644/528/10 661/550/10 662/552/28 -f 651/1266/4 666/1474/4 673/1267/6 -f 652/1251/7 667/1250/7 666/1268/4 -f 689/1270/9 695/1274/9 696/1271/1 -f 690/1273/4 694/1475/4 695/1274/9 -f 685/1275/10 697/1285/10 698/1276/29 -f 686/1277/29 698/1276/29 692/1278/2 -f 691/1280/8 693/1283/8 694/1281/4 -f 687/1279/2 692/1278/2 693/1283/8 -f 684/1284/151 699/1286/151 697/1285/10 -f 688/1272/1 696/1271/1 699/1286/151 -f 711/1287/1 703/1303/1 700/1288/151 -f 715/1289/151 700/1288/151 702/1290/10 -f 712/1292/2 707/1298/2 706/1293/8 -f 708/1294/8 706/1293/8 705/1295/4 -f 713/1297/29 701/1299/29 707/1298/2 -f 714/1291/10 702/1290/10 701/1299/29 -f 709/1300/4 705/1476/4 704/1301/9 -f 710/1302/9 704/1301/9 703/1303/1 -f 731/1304/22 743/1317/156 742/1305/152 -f 728/1307/37 740/1319/157 739/1308/153 -f 735/1310/34 747/1320/158 746/1311/154 -f 725/1313/39 737/1322/159 736/1314/155 -f 732/1316/36 744/1324/160 743/1317/156 -f 729/1318/21 741/1326/161 740/1319/157 -f 724/1315/10 736/1314/155 747/1320/158 -f 726/1321/38 738/1327/162 737/1322/159 -f 733/1323/5 745/1328/163 744/1324/160 -f 730/1325/4 742/1337/152 741/1326/161 -f 727/1309/3 739/1308/153 738/1327/162 -f 734/1312/35 746/1311/154 745/1328/163 -f 740/1319/157 741/1326/161 753/1329/164 -f 747/1320/158 736/1314/155 748/1331/166 -f 737/1322/159 738/1327/162 750/1333/168 -f 744/1324/160 745/1328/163 757/1335/170 -f 742/1337/152 754/1349/174 753/1329/164 -f 738/1327/162 739/1308/153 751/1338/172 -f 746/1311/154 758/1341/175 757/1335/170 -f 742/1305/152 743/1317/156 755/1339/173 -f 740/1319/157 752/1330/165 751/1338/172 -f 747/1320/158 759/1332/167 758/1341/175 -f 737/1322/159 749/1334/169 748/1331/166 -f 744/1324/160 756/1336/171 755/1339/173 -f 752/1330/165 753/1329/164 765/1342/176 -f 759/1332/167 748/1331/166 760/1344/178 -f 749/1334/169 750/1333/168 762/1346/180 -f 757/1335/170 769/1351/184 768/1348/182 -f 754/1349/174 766/1477/186 765/1342/176 -f 751/1338/172 763/1354/187 762/1346/180 -f 757/1335/170 758/1341/175 770/1350/183 -f 754/1340/174 755/1339/173 767/1352/185 -f 751/1338/172 752/1330/165 764/1343/177 -f 759/1332/167 771/1345/179 770/1350/183 -f 749/1334/169 761/1347/181 760/1344/178 -f 756/1336/171 768/1348/182 767/1352/185 -f 760/1357/178 761/1478/181 764/1479/177 -f 761/1478/181 762/1480/180 764/1479/177 -f 762/1480/180 763/1481/187 764/1479/177 -f 764/1479/177 765/1482/176 766/1355/186 -f 766/1355/186 767/1483/185 768/1356/182 -f 768/1356/182 769/1484/184 770/1485/183 -f 770/1485/183 771/1486/179 768/1356/182 -f 771/1486/179 760/1357/178 768/1356/182 -f 764/1479/177 766/1355/186 760/1357/178 -f 791/618/188 790/616/188 788/615/2 -f 793/625/189 792/621/189 790/616/188 -f 795/624/190 794/622/190 792/621/189 -f 797/631/191 796/629/191 794/622/190 -f 799/633/23 798/630/23 796/629/191 -f 801/617/1 800/1487/1 802/1358/192 -f 805/623/193 804/1488/193 806/1359/194 -f 806/1360/194 808/1489/195 809/635/195 -f 809/635/195 808/1489/195 810/1361/18 -f 804/1362/193 805/627/193 803/956/192 -f 818/1364/196 819/1371/196 815/1365/23 -f 813/637/24 817/1368/197 816/1366/197 -f 817/1368/197 821/1375/188 820/1369/188 -f 822/1370/198 823/1490/198 819/1371/196 -f 825/1372/199 823/1490/198 822/1370/198 -f 825/1374/199 824/1491/199 820/1369/188 -f 826/652/10 830/1377/193 831/1376/193 -f 830/1377/193 832/1415/1 833/1378/1 -f 843/1379/48 877/1492/46 875/1380/200 -f 834/1382/202 836/1385/205 837/1383/203 -f 836/1385/205 838/1389/206 839/1381/201 -f 829/1386/28 847/1392/28 859/1387/45 -f 838/1389/206 842/1407/40 843/1379/48 -f 847/1392/32 829/1386/32 850/1390/207 -f 829/1386/32 845/1493/225 850/1390/207 -f 851/1395/208 844/1398/209 828/1404/31 -f 828/1404/31 846/1393/31 851/1395/208 -f 850/1390/207 845/1493/225 827/1396/5 -f 844/1398/209 851/1395/208 841/1399/3 -f 834/1382/202 854/1494/214 872/1401/210 -f 837/1383/203 839/1381/201 875/1380/200 -f 858/1403/44 861/1405/44 846/1393/27 -f 856/1388/45 859/1387/45 861/1405/44 -f 838/1389/206 874/1408/212 876/1406/41 -f 836/1385/205 872/1401/210 874/1408/212 -f 835/1384/204 837/1383/203 873/1402/211 -f 840/1397/5 827/1396/5 873/1418/211 -f 873/1418/211 875/1380/200 840/1397/5 -f 875/1380/200 877/1492/46 852/1410/5 -f 877/1492/46 879/1495/5 852/1410/5 -f 872/1412/210 826/1400/3 841/1399/3 -f 841/1399/3 853/1496/3 874/1411/212 -f 853/1496/3 878/1497/3 876/1498/41 -f 874/1411/212 853/1496/3 876/1498/41 -f 832/1415/1 854/1009/9 855/1011/9 -f 854/1416/214 832/1419/3 826/1400/3 -f 101/691/46 884/112/48 885/689/48 -f 887/967/40 886/695/40 113/103/41 -f 827/1396/5 833/1414/5 855/1417/213 -f 902/707/48 903/709/48 899/722/46 -f 898/724/46 899/722/46 895/716/5 -f 897/726/41 896/728/41 892/713/3 -f 901/710/40 900/706/40 896/728/41 -f 902/707/48 900/706/40 901/710/40 -f 6/8/35 8/1/5 7/988/5 -f 923/1421/215 922/1423/215 920/977/216 -f 914/1422/217 915/1499/217 922/1423/215 -f 936/981/218 937/760/219 939/980/219 -f 942/1424/220 936/981/218 938/979/218 -f 943/1426/221 933/1500/10 935/1427/10 -f 937/760/219 943/1426/221 941/1428/221 -f 932/1429/4 942/1424/220 940/1425/220 +f 188/301/91 189/1118/115 187/1119/91 +f 190/294/115 191/1120/116 189/1118/115 +f 194/289/86 195/1121/117 193/1122/86 +f 196/291/117 197/1123/103 195/1121/117 +f 198/320/103 199/1124/85 197/1123/103 +f 200/313/85 201/1125/102 199/1126/85 +f 202/315/102 203/1127/118 201/1125/102 +f 204/310/118 205/1128/84 203/1127/118 +f 206/307/84 207/1129/119 205/1128/84 +f 208/304/119 209/1130/120 207/1129/119 +f 210/299/120 187/1119/91 209/1130/120 +f 215/308/116 226/1131/86 214/309/86 +f 222/960/102 233/1132/118 221/295/118 +f 212/961/103 224/1133/85 211/300/85 +f 219/963/119 230/1134/120 218/319/120 +f 216/311/115 227/1135/116 215/312/116 +f 211/297/85 234/1136/102 222/298/102 +f 213/302/117 223/1137/103 212/303/103 +f 220/959/84 231/1138/119 219/290/119 +f 217/962/91 228/1139/115 216/314/115 +f 214/305/86 225/1140/117 213/306/117 +f 221/292/118 232/1141/84 220/293/84 +f 218/317/120 229/1142/91 217/318/91 +f 235/977/121 246/324/122 244/340/122 +f 245/366/123 244/340/122 246/324/122 +f 245/366/123 249/979/124 243/361/123 +f 251/351/125 249/979/108 253/352/108 +f 254/349/109 248/368/126 252/357/126 +f 258/328/127 255/334/128 257/348/128 +f 252/357/126 247/353/125 251/351/125 +f 238/330/129 235/345/121 237/336/129 +f 258/328/127 237/336/129 256/338/127 +f 874/1143/90 855/1144/90 875/1145/90 +f 287/907/127 290/342/128 288/372/128 +f 291/399/130 290/342/128 295/981/130 +f 291/399/109 297/385/126 293/378/126 +f 293/378/126 298/379/125 294/375/125 +f 294/375/125 296/980/108 292/384/108 +f 300/396/123 296/980/124 302/393/123 +f 300/396/123 301/387/122 299/391/122 +f 904/400/129 907/903/121 905/905/129 +f 308/1146/131 312/1147/132 303/1148/133 +f 310/1149/125 316/1150/134 307/1151/126 +f 309/1152/135 313/1153/136 318/1154/137 +f 312/1147/132 651/1155/138 648/1156/139 +f 314/1157/140 306/1158/141 305/1159/129 +f 310/1149/125 318/1154/137 317/1160/142 +f 312/1161/132 304/1162/121 303/1163/133 +f 316/1150/134 308/1164/131 307/1151/126 +f 304/1162/121 314/1157/140 305/1159/129 +f 254/349/130 255/334/128 250/975/130 +f 330/407/102 343/1165/85 319/406/85 +f 320/412/103 345/1166/117 321/411/117 +f 327/431/119 352/1167/84 328/987/84 +f 324/422/115 349/1168/91 325/985/91 +f 321/415/117 346/1169/86 322/413/86 +f 328/434/84 353/1170/118 329/433/118 +f 325/427/91 350/1171/120 326/425/120 +f 322/418/86 347/1172/116 323/416/116 +f 329/403/118 354/1173/102 330/983/102 +f 319/408/85 344/1174/103 320/984/103 +f 326/428/120 351/1175/119 327/986/119 +f 323/421/116 348/1176/115 324/419/115 +f 337/430/103 360/1177/85 336/426/85 +f 334/420/118 357/1178/84 333/417/84 +f 341/404/115 364/1179/116 340/405/116 +f 331/409/120 366/1180/91 342/410/91 +f 338/429/117 361/1181/103 337/430/103 +f 335/424/102 358/1182/118 334/420/118 +f 342/410/91 365/1183/115 341/404/115 +f 332/414/119 355/1184/120 331/409/120 +f 339/432/86 362/1185/117 338/429/117 +f 336/423/85 359/1186/102 335/424/102 +f 333/417/84 356/1187/119 332/414/119 +f 340/405/116 363/1188/86 339/432/86 +f 405/1189/119 418/1190/143 406/1191/143 +f 413/1192/116 419/1193/144 420/1194/116 +f 414/1195/115 420/1194/116 421/1196/115 +f 403/1197/91 415/1198/120 404/1199/120 +f 414/1195/115 416/1200/91 403/1197/91 +f 404/1199/120 417/1201/119 405/1189/119 +f 426/1202/120 432/1203/91 425/1204/91 +f 424/1205/115 430/1206/116 423/1207/116 +f 427/1208/119 433/1209/120 426/1202/120 +f 425/1204/91 431/1210/115 424/1205/115 +f 423/1207/116 429/1211/144 422/1212/144 +f 428/1213/143 434/1214/119 427/1208/119 +f 458/489/85 440/505/103 439/502/85 +f 459/487/103 441/507/117 440/505/103 +f 460/484/117 442/509/145 441/507/117 +f 455/1012/146 437/497/118 436/499/146 +f 456/495/118 438/500/102 437/497/118 +f 457/493/102 439/502/85 438/500/102 +f 461/486/145 469/510/147 442/509/145 +f 488/1215/85 448/595/102 489/1216/102 +f 491/1217/148 445/589/119 492/613/149 +f 463/1218/150 453/581/116 452/583/86 +f 487/1219/103 449/600/85 488/1220/85 +f 490/1221/151 446/591/84 491/1217/148 +f 464/1222/152 450/601/103 487/1219/103 +f 489/1216/102 447/593/118 490/1221/151 +f 492/613/149 445/589/119 444/588/120 +f 546/608/91 444/588/120 443/587/91 +f 464/1222/152 452/583/86 451/603/117 +f 455/1012/146 471/517/153 472/519/153 +f 463/1223/154 525/1224/155 462/1225/156 +f 491/1226/157 533/1227/158 532/1228/159 +f 491/1226/157 531/572/155 490/1025/160 +f 464/580/161 526/1229/162 463/1223/154 +f 547/606/115 443/587/91 454/585/115 +f 557/625/120 571/637/91 556/624/91 +f 558/627/119 570/638/120 557/625/120 +f 561/618/116 574/633/144 560/1032/144 +f 559/629/143 572/639/119 558/627/119 +f 562/622/115 575/631/116 561/618/116 +f 556/624/91 576/635/115 562/622/115 +f 454/585/115 453/581/116 462/617/163 +f 624/1047/164 627/1230/165 625/699/164 +f 626/1231/165 618/1232/166 627/1230/165 +f 651/1233/138 658/1234/167 659/1235/168 +f 311/1236/169 648/1237/139 649/1238/170 +f 311/1236/169 644/1239/171 314/1157/140 +f 318/1154/137 647/1240/172 317/1160/142 +f 314/1157/140 645/1241/173 313/1242/136 +f 313/1153/136 646/1243/174 318/1154/137 +f 315/1244/175 650/1245/176 651/1233/138 +f 317/1160/142 650/1245/176 316/1150/134 +f 655/1246/177 662/1247/178 658/1248/179 +f 646/1249/174 655/1250/180 647/1240/172 +f 645/1251/173 654/1252/181 646/1243/174 +f 649/1238/170 652/1253/182 644/1239/171 +f 649/1238/170 656/1254/183 657/1255/184 +f 644/1239/171 653/1256/185 645/1241/173 +f 647/1240/172 658/1234/167 650/1245/176 +f 648/1156/139 659/1257/168 656/1258/183 +f 658/1248/179 663/1259/186 659/1260/168 +f 655/1246/177 660/1261/187 661/1262/188 +f 661/1262/188 666/1263/189 662/1247/178 +f 662/1247/178 667/1264/190 663/1259/186 +f 661/1262/188 664/1265/191 665/1266/192 +f 665/1266/192 670/1267/193 666/1263/189 +f 666/1263/189 671/1268/194 667/1264/190 +f 664/1265/191 669/1269/195 665/1266/192 +f 657/1255/184 672/1270/196 652/1253/182 +f 657/1255/184 674/1271/197 675/1272/198 +f 652/1253/182 673/1273/199 653/1256/185 +f 675/1274/200 676/1275/201 672/1276/202 +f 674/1277/197 679/1278/203 675/1274/200 +f 673/1279/199 676/1275/201 677/1280/204 +f 679/1278/203 680/1281/205 676/1275/201 +f 679/1278/203 682/1282/206 683/1283/207 +f 676/1275/201 681/1284/208 677/1280/204 +f 683/1283/207 684/1285/209 680/1281/205 +f 683/1283/207 686/1286/210 687/1287/211 +f 680/1281/205 685/1288/212 681/1284/208 +f 687/1287/211 688/1289/213 684/1285/209 +f 686/1286/210 691/1290/214 687/1287/211 +f 684/1285/209 689/1291/215 685/1288/212 +f 691/1292/214 692/1293/216 688/1294/213 +f 691/1292/214 694/1295/217 695/1296/218 +f 688/1294/213 693/1297/219 689/1298/215 +f 695/1296/218 696/1299/220 692/1293/216 +f 694/1300/217 699/1301/221 695/1296/218 +f 692/1293/216 697/1302/222 693/1303/219 +f 663/1304/186 678/1305/223 659/1257/168 +f 673/1306/199 654/1252/181 653/1307/185 +f 697/1308/222 669/1309/195 668/1310/224 +f 670/1311/193 698/1312/225 671/1313/194 +f 696/1299/220 670/1311/193 669/1309/195 +f 664/1265/191 693/1303/219 668/1314/224 +f 677/1315/204 660/1316/187 654/1252/181 +f 681/1317/208 685/1288/212 693/1303/219 +f 668/1314/224 693/1303/219 697/1302/222 +f 694/1318/217 671/1319/194 698/1320/225 +f 694/1318/217 667/1321/190 671/1319/194 +f 682/1322/206 694/1318/217 686/1323/210 +f 674/1324/197 659/1257/168 678/1305/223 +f 729/780/109 747/784/226 730/779/226 +f 737/1325/86 751/1326/88 736/1327/88 +f 730/779/226 758/1064/84 743/777/84 +f 738/1328/108 752/1329/86 737/1325/86 +f 744/1330/86 748/782/227 733/1331/227 +f 739/1332/91 753/1333/108 738/1328/108 +f 740/1334/109 754/1335/91 739/1332/91 +f 741/1336/84 755/1337/109 740/1334/109 +f 733/1331/227 749/790/108 734/1338/108 +f 742/1339/87 756/1340/84 741/1336/84 +f 734/1338/108 745/789/91 728/1341/91 +f 728/769/91 746/793/109 729/780/109 +f 735/1342/85 757/1343/87 742/1339/87 +f 736/1327/88 750/1344/85 735/1345/85 +f 773/1346/90 780/1347/82 772/1348/82 +f 774/1349/85 779/1350/90 773/1346/90 +f 769/1351/91 782/1352/110 770/1353/110 +f 770/1353/110 776/1354/83 771/1355/83 +f 775/1356/89 778/1357/85 774/1358/85 +f 771/1355/83 777/1359/89 775/1356/89 +f 768/1360/228 781/1361/91 769/1351/91 +f 772/1348/82 783/1362/228 768/1360/228 +f 795/1363/82 784/1364/228 799/1365/228 +f 799/1365/228 786/1366/91 798/1367/91 +f 796/1368/83 790/1369/89 792/1370/89 +f 792/1370/89 789/1371/85 793/1372/85 +f 797/1373/110 791/1374/83 796/1368/83 +f 798/1367/91 785/1375/110 797/1373/110 +f 793/1376/85 788/1377/90 794/1378/90 +f 794/1378/90 787/1379/82 795/1363/82 +f 811/834/229 808/831/83 809/835/83 +f 813/841/230 810/832/229 811/834/229 +f 815/840/231 812/837/230 813/841/230 +f 817/847/232 814/838/231 815/840/231 +f 819/849/104 816/845/232 817/847/232 +f 821/833/82 822/1380/233 823/1091/233 +f 825/839/234 826/1381/235 827/1093/235 +f 826/1382/235 829/851/236 827/1097/235 +f 829/851/236 830/1383/99 831/848/99 +f 824/1384/234 823/1095/233 822/1385/233 +f 838/1386/237 835/1387/104 834/856/104 +f 833/853/105 836/1388/238 832/1389/105 +f 837/1390/238 840/1391/229 836/1388/238 +f 842/1392/239 839/1393/237 838/1386/237 +f 845/1394/240 842/1392/239 844/1395/240 +f 845/1396/240 840/1391/229 841/1397/229 +f 846/868/91 851/1398/234 847/866/91 +f 850/1399/234 853/1400/82 851/1398/234 +f 863/1401/129 895/1402/241 859/1403/242 +f 854/1404/243 857/1405/244 855/1406/245 +f 856/1407/246 859/1403/242 857/1405/244 +f 849/1408/109 879/1409/126 876/1410/126 +f 858/1411/247 863/1401/129 859/1403/242 +f 870/1412/248 869/1413/113 867/1414/113 +f 866/1415/112 868/1416/112 871/1417/249 +f 870/1412/248 847/1418/86 860/1419/86 +f 864/1420/250 861/1421/84 846/1422/84 +f 854/1404/243 892/1423/251 856/1407/246 +f 857/1405/244 895/1402/241 893/1424/252 +f 878/1425/125 866/1415/108 848/1426/108 +f 876/1410/126 881/1427/125 878/1425/125 +f 858/1411/247 896/1428/122 862/1429/121 +f 856/1407/246 894/1430/253 858/1411/247 +f 855/1406/245 893/1424/252 875/1431/254 +f 872/1432/86 860/1419/86 895/1402/241 +f 894/1433/253 892/1434/251 861/1421/84 +f 851/1435/86 853/1436/86 847/1418/86 +f 852/1437/82 875/1145/90 853/1400/82 +f 874/1438/255 846/1422/84 892/1434/251 +f 287/907/127 905/905/129 289/910/127 +f 907/1106/121 299/391/122 301/387/122 +f 847/1418/86 875/1439/254 893/1440/252 +f 846/1422/84 852/1441/84 850/1442/84 +f 922/923/129 919/938/127 918/940/127 +f 918/940/127 915/932/86 914/918/86 +f 917/942/122 912/929/84 913/915/84 +f 921/926/121 916/944/122 917/942/122 +f 922/923/129 921/926/121 923/925/129 +f 192/296/116 193/1122/86 191/1120/116 +f 943/1443/256 940/1116/257 941/954/257 +f 934/1444/258 942/1445/256 943/1443/256 +f 188/301/91 190/294/115 189/1118/115 +f 190/294/115 192/296/116 191/1120/116 +f 194/289/86 196/291/117 195/1121/117 +f 196/291/117 198/320/103 197/1123/103 +f 198/320/103 200/316/85 199/1124/85 +f 200/313/85 202/315/102 201/1125/102 +f 202/315/102 204/310/118 203/1127/118 +f 204/310/118 206/307/84 205/1128/84 +f 206/307/84 208/304/119 207/1129/119 +f 208/304/119 210/299/120 209/1130/120 +f 210/299/120 188/301/91 187/1119/91 +f 215/308/116 227/1446/116 226/1131/86 +f 222/960/102 234/1447/102 233/1132/118 +f 212/961/103 223/1448/103 224/1133/85 +f 219/963/119 231/1449/119 230/1134/120 +f 216/311/115 228/1450/115 227/1135/116 +f 211/297/85 224/1451/85 234/1136/102 +f 213/302/117 225/1452/117 223/1137/103 +f 220/959/84 232/1453/84 231/1138/119 +f 217/962/91 229/1454/91 228/1139/115 +f 214/305/86 226/1455/86 225/1140/117 +f 221/292/118 233/1456/118 232/1141/84 +f 218/317/120 230/1457/120 229/1142/91 +f 235/977/121 236/973/121 246/324/122 +f 245/366/123 243/361/123 244/340/122 +f 245/366/123 253/352/124 249/979/124 +f 251/351/125 247/353/125 249/979/108 +f 254/349/109 250/975/109 248/368/126 +f 258/328/127 256/338/127 255/334/128 +f 252/357/126 248/368/126 247/353/125 +f 238/330/129 236/332/121 235/345/121 +f 258/328/127 238/330/129 237/336/129 +f 874/1143/90 854/1458/90 855/1144/90 +f 287/907/127 289/910/127 290/342/128 +f 291/399/130 288/372/128 290/342/128 +f 291/399/109 295/981/109 297/385/126 +f 293/378/126 297/385/126 298/379/125 +f 294/375/125 298/379/125 296/980/108 +f 300/396/123 292/384/124 296/980/124 +f 300/396/123 302/393/123 301/387/122 +f 904/400/129 906/402/121 907/903/121 +f 308/1146/131 315/1459/175 312/1147/132 +f 310/1149/125 317/1160/142 316/1150/134 +f 309/1152/135 306/1460/141 313/1153/136 +f 312/1147/132 315/1459/175 651/1155/138 +f 314/1157/140 313/1242/136 306/1158/141 +f 310/1149/125 309/1152/135 318/1154/137 +f 312/1161/132 311/1236/169 304/1162/121 +f 316/1150/134 315/1244/175 308/1164/131 +f 304/1162/121 311/1236/169 314/1157/140 +f 254/349/130 257/348/128 255/334/128 +f 330/407/102 354/1461/102 343/1165/85 +f 320/412/103 344/1462/103 345/1166/117 +f 327/431/119 351/1463/119 352/1167/84 +f 324/422/115 348/1464/115 349/1168/91 +f 321/415/117 345/1465/117 346/1169/86 +f 328/434/84 352/1466/84 353/1170/118 +f 325/427/91 349/1467/91 350/1171/120 +f 322/418/86 346/1468/86 347/1172/116 +f 329/403/118 353/1469/118 354/1173/102 +f 319/408/85 343/1470/85 344/1174/103 +f 326/428/120 350/1471/120 351/1175/119 +f 323/421/116 347/1472/116 348/1176/115 +f 337/430/103 361/1181/103 360/1177/85 +f 334/420/118 358/1182/118 357/1178/84 +f 341/404/115 365/1183/115 364/1179/116 +f 331/409/120 355/1184/120 366/1180/91 +f 338/429/117 362/1185/117 361/1181/103 +f 335/424/102 359/1186/102 358/1182/118 +f 342/410/91 366/1180/91 365/1183/115 +f 332/414/119 356/1187/119 355/1184/120 +f 339/432/86 363/1188/86 362/1185/117 +f 336/423/85 360/1473/85 359/1186/102 +f 333/417/84 357/1178/84 356/1187/119 +f 340/405/116 364/1179/116 363/1188/86 +f 405/1189/119 417/1201/119 418/1190/143 +f 413/1192/116 412/1474/144 419/1193/144 +f 414/1195/115 413/1192/116 420/1194/116 +f 403/1197/91 416/1200/91 415/1198/120 +f 414/1195/115 421/1196/115 416/1200/91 +f 404/1199/120 415/1198/120 417/1201/119 +f 426/1202/120 433/1209/120 432/1203/91 +f 424/1205/115 431/1210/115 430/1206/116 +f 427/1208/119 434/1214/119 433/1209/120 +f 425/1204/91 432/1203/91 431/1210/115 +f 423/1207/116 430/1206/116 429/1211/144 +f 428/1213/143 435/1475/143 434/1214/119 +f 458/489/85 459/487/103 440/505/103 +f 459/487/103 460/484/117 441/507/117 +f 460/484/117 461/486/145 442/509/145 +f 455/1012/146 456/495/118 437/497/118 +f 456/495/118 457/493/102 438/500/102 +f 457/493/102 458/489/85 439/502/85 +f 461/486/145 470/515/147 469/510/147 +f 488/1215/85 449/597/85 448/595/102 +f 491/1217/148 446/591/84 445/589/119 +f 463/1218/150 462/617/163 453/581/116 +f 487/1219/103 450/601/103 449/600/85 +f 490/1221/151 447/593/118 446/591/84 +f 464/1222/152 451/603/117 450/601/103 +f 489/1216/102 448/595/102 447/593/118 +f 444/588/120 550/609/120 492/613/149 +f 550/609/120 549/611/109 492/613/149 +f 546/608/91 550/609/120 444/588/120 +f 464/1222/152 463/1218/150 452/583/86 +f 455/1012/146 436/499/146 471/517/153 +f 463/1223/154 526/1229/162 525/1224/155 +f 491/1226/157 492/1476/259 533/1227/158 +f 491/1226/157 532/1228/159 531/572/155 +f 464/580/161 527/579/260 526/1229/162 +f 547/606/115 546/608/91 443/587/91 +f 557/625/120 570/638/120 571/637/91 +f 558/627/119 572/639/119 570/638/120 +f 561/618/116 575/631/116 574/633/144 +f 559/629/143 573/641/143 572/639/119 +f 562/622/115 576/635/115 575/631/116 +f 556/624/91 571/637/91 576/635/115 +f 548/604/108 547/606/115 462/617/163 +f 547/606/115 454/585/115 462/617/163 +f 624/1047/164 626/1231/165 627/1230/165 +f 626/1231/165 619/1477/166 618/1232/166 +f 651/1233/138 650/1245/176 658/1234/167 +f 311/1236/169 312/1161/132 648/1237/139 +f 311/1236/169 649/1238/170 644/1239/171 +f 318/1154/137 646/1249/174 647/1240/172 +f 314/1157/140 644/1239/171 645/1241/173 +f 313/1153/136 645/1251/173 646/1243/174 +f 315/1244/175 316/1150/134 650/1245/176 +f 317/1160/142 647/1240/172 650/1245/176 +f 655/1246/177 661/1262/188 662/1247/178 +f 646/1249/174 654/1478/181 655/1250/180 +f 645/1251/173 653/1307/185 654/1252/181 +f 649/1238/170 657/1255/184 652/1253/182 +f 649/1238/170 648/1237/139 656/1254/183 +f 644/1239/171 652/1253/182 653/1256/185 +f 647/1240/172 655/1250/180 658/1234/167 +f 648/1156/139 651/1155/138 659/1257/168 +f 658/1248/179 662/1247/178 663/1259/186 +f 655/1246/177 654/1479/181 660/1261/187 +f 661/1262/188 665/1266/192 666/1263/189 +f 662/1247/178 666/1263/189 667/1264/190 +f 661/1262/188 660/1261/187 664/1265/191 +f 665/1266/192 669/1269/195 670/1267/193 +f 666/1263/189 670/1267/193 671/1268/194 +f 664/1265/191 668/1314/224 669/1269/195 +f 657/1255/184 675/1272/198 672/1270/196 +f 657/1255/184 656/1254/183 674/1271/197 +f 652/1253/182 672/1270/196 673/1273/199 +f 675/1274/200 679/1278/203 676/1275/201 +f 674/1277/197 678/1480/223 679/1278/203 +f 673/1279/199 672/1276/202 676/1275/201 +f 679/1278/203 683/1283/207 680/1281/205 +f 679/1278/203 678/1480/223 682/1282/206 +f 676/1275/201 680/1281/205 681/1284/208 +f 683/1283/207 687/1287/211 684/1285/209 +f 683/1283/207 682/1282/206 686/1286/210 +f 680/1281/205 684/1285/209 685/1288/212 +f 687/1287/211 691/1290/214 688/1289/213 +f 686/1286/210 690/1481/261 691/1290/214 +f 684/1285/209 688/1289/213 689/1291/215 +f 691/1292/214 695/1296/218 692/1293/216 +f 691/1292/214 690/1482/261 694/1295/217 +f 688/1294/213 692/1293/216 693/1297/219 +f 695/1296/218 699/1301/221 696/1299/220 +f 694/1300/217 698/1483/225 699/1301/221 +f 692/1293/216 696/1299/220 697/1302/222 +f 663/1304/186 667/1321/190 678/1305/223 +f 673/1306/199 677/1315/204 654/1252/181 +f 697/1308/222 696/1299/220 669/1309/195 +f 670/1311/193 699/1301/221 698/1312/225 +f 696/1299/220 699/1301/221 670/1311/193 +f 677/1315/204 664/1265/191 660/1316/187 +f 689/1291/215 693/1303/219 685/1288/212 +f 693/1303/219 664/1265/191 681/1317/208 +f 664/1265/191 677/1315/204 681/1317/208 +f 682/1322/206 678/1305/223 667/1321/190 +f 667/1321/190 694/1318/217 682/1322/206 +f 694/1318/217 690/1484/261 686/1323/210 +f 674/1324/197 656/1258/183 659/1257/168 +f 729/780/109 746/793/109 747/784/226 +f 737/1325/86 752/1329/86 751/1326/88 +f 730/779/226 747/784/226 758/1064/84 +f 738/1328/108 753/1333/108 752/1329/86 +f 744/1330/86 759/783/86 748/782/227 +f 739/1332/91 754/1335/91 753/1333/108 +f 740/1334/109 755/1337/109 754/1335/91 +f 741/1336/84 756/1340/84 755/1337/109 +f 733/1331/227 748/782/227 749/790/108 +f 742/1339/87 757/1343/87 756/1340/84 +f 734/1338/108 749/790/108 745/789/91 +f 728/769/91 745/791/91 746/793/109 +f 735/1342/85 750/1485/85 757/1343/87 +f 736/1327/88 751/1326/88 750/1344/85 +f 773/1346/90 779/1350/90 780/1347/82 +f 774/1349/85 778/1486/85 779/1350/90 +f 769/1351/91 781/1361/91 782/1352/110 +f 770/1353/110 782/1352/110 776/1354/83 +f 775/1356/89 777/1359/89 778/1357/85 +f 771/1355/83 776/1354/83 777/1359/89 +f 768/1360/228 783/1362/228 781/1361/91 +f 772/1348/82 780/1347/82 783/1362/228 +f 795/1363/82 787/1379/82 784/1364/228 +f 799/1365/228 784/1364/228 786/1366/91 +f 796/1368/83 791/1374/83 790/1369/89 +f 792/1370/89 790/1369/89 789/1371/85 +f 797/1373/110 785/1375/110 791/1374/83 +f 798/1367/91 786/1366/91 785/1375/110 +f 793/1376/85 789/1487/85 788/1377/90 +f 794/1378/90 788/1377/90 787/1379/82 +f 811/834/229 810/832/229 808/831/83 +f 813/841/230 812/837/230 810/832/229 +f 815/840/231 814/838/231 812/837/230 +f 817/847/232 816/845/232 814/838/231 +f 819/849/104 818/846/104 816/845/232 +f 821/833/82 820/1488/82 822/1380/233 +f 825/839/234 824/1489/234 826/1381/235 +f 826/1382/235 828/1490/236 829/851/236 +f 829/851/236 828/1490/236 830/1383/99 +f 824/1384/234 825/843/234 823/1095/233 +f 838/1386/237 839/1393/237 835/1387/104 +f 833/853/105 837/1390/238 836/1388/238 +f 837/1390/238 841/1397/229 840/1391/229 +f 842/1392/239 843/1491/239 839/1393/237 +f 845/1394/240 843/1491/239 842/1392/239 +f 845/1396/240 844/1492/240 840/1391/229 +f 846/868/91 850/1399/234 851/1398/234 +f 850/1399/234 852/1437/82 853/1400/82 +f 863/1401/129 897/1493/127 895/1402/241 +f 854/1404/243 856/1407/246 857/1405/244 +f 856/1407/246 858/1411/247 859/1403/242 +f 849/1408/109 867/1414/109 879/1409/126 +f 858/1411/247 862/1429/121 863/1401/129 +f 867/1414/113 849/1408/113 870/1412/248 +f 849/1408/113 865/1494/262 870/1412/248 +f 871/1417/249 864/1420/250 848/1426/112 +f 848/1426/112 866/1415/112 871/1417/249 +f 870/1412/248 865/1494/262 847/1418/86 +f 864/1420/250 871/1417/249 861/1421/84 +f 854/1404/243 874/1495/255 892/1423/251 +f 857/1405/244 859/1403/242 895/1402/241 +f 878/1425/125 881/1427/125 866/1415/108 +f 876/1410/126 879/1409/126 881/1427/125 +f 858/1411/247 894/1430/253 896/1428/122 +f 856/1407/246 892/1423/251 894/1430/253 +f 855/1406/245 857/1405/244 893/1424/252 +f 860/1419/86 847/1418/86 893/1440/252 +f 893/1440/252 895/1402/241 860/1419/86 +f 895/1402/241 897/1493/127 872/1432/86 +f 897/1493/127 899/1496/86 872/1432/86 +f 892/1434/251 846/1422/84 861/1421/84 +f 861/1421/84 873/1497/84 894/1433/253 +f 873/1497/84 898/1498/84 896/1499/122 +f 894/1433/253 873/1497/84 896/1499/122 +f 852/1437/82 874/1143/90 875/1145/90 +f 874/1438/255 852/1441/84 846/1422/84 +f 287/907/127 904/400/129 905/905/129 +f 907/1106/121 906/911/121 299/391/122 +f 847/1418/86 853/1436/86 875/1439/254 +f 922/923/129 923/925/129 919/938/127 +f 918/940/127 919/938/127 915/932/86 +f 917/942/122 916/944/122 912/929/84 +f 921/926/121 920/922/121 916/944/122 +f 922/923/129 920/922/121 921/926/121 +f 192/296/116 194/289/86 193/1122/86 +f 943/1443/256 942/1445/256 940/1116/257 +f 934/1444/258 935/1500/258 942/1445/256 diff --git a/src/main/resources/assets/hbm/models/weapons/congolake.obj b/src/main/resources/assets/hbm/models/weapons/congolake.obj index 4a34fe6d0..77e57c3d1 100644 --- a/src/main/resources/assets/hbm/models/weapons/congolake.obj +++ b/src/main/resources/assets/hbm/models/weapons/congolake.obj @@ -486,6 +486,10 @@ v 0.213723 1.586004 0.965536 v -0.173216 1.890425 0.967058 v -0.217260 1.720861 0.967058 v -0.217260 1.599823 0.967058 +v -0.262079 1.644726 0.500033 +v -0.262079 1.095427 0.500033 +v -0.262079 1.095427 -0.049266 +v -0.262079 1.644726 -0.049266 vn 0.4257 0.9049 -0.0048 vn 0.9414 0.3371 -0.0136 vn 1.0000 -0.0021 -0.0092 @@ -1081,876 +1085,880 @@ vn -1.0000 0.0069 -0.0048 vn 0.9998 0.0169 0.0048 vn 1.0000 0.0064 0.0018 vn 1.0000 0.0059 -0.0044 -vt 0.314366 0.961863 -vt 0.294812 0.975635 -vt 0.294657 0.961939 -vt 0.273456 0.975731 -vt 0.273229 0.961965 -vt 0.262381 0.975737 -vt 0.256051 0.961941 -vt 0.125608 0.749505 -vt 0.097336 0.727764 -vt 0.125610 0.725602 -vt 0.168440 0.696871 -vt 0.168440 0.716405 -vt 0.109231 0.716275 -vt 0.127314 0.962819 -vt 0.110436 0.977071 -vt 0.110100 0.963138 -vt 0.056961 0.977985 -vt 0.034809 0.964084 -vt 0.057052 0.963821 -vt 0.034870 0.978067 -vt 0.014902 0.964099 -vt 0.199446 0.727764 -vt 0.171174 0.749505 -vt 0.171172 0.725602 -vt 0.035307 0.807355 -vt 0.010838 0.597288 -vt 0.017874 0.618909 -vt 0.015372 0.630834 -vt 0.013899 0.556050 -vt 0.009136 0.552343 -vt 0.015271 0.870213 -vt 0.091632 0.963445 -vt 0.055268 0.806356 -vt 0.088357 0.802601 -vt 0.013764 0.139760 -vt 0.049854 0.124762 -vt 0.048730 0.157936 -vt 0.271875 0.803748 -vt 0.255984 0.868690 -vt 0.239398 0.800845 -vt 0.221112 0.961929 -vt 0.221070 0.800394 -vt 0.043269 0.233050 -vt 0.010790 0.189172 -vt 0.008714 0.234441 -vt 0.040214 0.045310 -vt 0.041285 0.072586 -vt 0.016409 0.072577 -vt 0.106773 0.801728 -vt 0.188797 0.799828 -vt 0.189454 0.860441 -vt 0.168859 0.799931 -vt 0.203932 0.961982 -vt 0.190529 0.959560 -vt 0.139611 0.860982 -vt 0.140686 0.960100 -vt 0.179637 0.960676 -vt 0.191879 0.973114 -vt 0.221110 0.975759 -vt 0.239478 0.975750 -vt 0.239470 0.961920 -vt 0.091859 0.977480 -vt 0.068629 0.977845 -vt 0.151599 0.960980 -vt 0.139629 0.973680 -vt 0.295488 0.867180 -vt 0.309465 0.800651 -vt 0.314455 0.865726 -vt 0.099265 0.557700 -vt 0.088674 0.528893 -vt 0.091711 0.518805 -vt 0.273373 0.868342 -vt 0.291054 0.804240 -vt 0.017282 0.517402 -vt 0.096715 0.601134 -vt 0.094272 0.561212 -vt 0.090072 0.620005 -vt 0.092216 0.630834 -vt 0.019880 0.528535 -vt 0.093170 0.596621 -vt 0.048521 0.157264 -vt 0.099086 0.151375 -vt 0.101118 0.125172 -vt 0.100614 0.125701 -vt 0.096976 0.181286 -vt 0.045608 0.196565 -vt 0.014112 0.138899 -vt 0.044187 0.260468 -vt 0.009380 0.268657 -vt 0.010839 0.235095 -vt 0.047070 0.260910 -vt 0.012396 0.269226 -vt 0.011742 0.189926 -vt 0.045438 0.233562 -vt 0.050505 0.124018 -vt 0.015811 0.109271 -vt 0.046833 0.197155 -vt 0.129115 0.163540 -vt 0.092797 0.074820 -vt 0.123836 0.051890 -vt 0.125752 0.076448 -vt 0.099258 0.151849 -vt 0.129673 0.163858 -vt 0.097922 0.181697 -vt 0.098488 0.207838 -vt 0.102467 0.099218 -vt 0.100128 0.208179 -vt 0.086379 0.050726 -vt 0.161380 0.154835 -vt 0.130349 0.120529 -vt 0.161569 0.110452 -vt 0.161572 0.193930 -vt 0.129818 0.193381 -vt 0.101290 0.099804 -vt 0.131373 0.074271 -vt 0.130916 0.120113 -vt 0.133141 0.073753 -vt 0.128491 0.193132 -vt 0.134570 0.037458 -vt 0.163321 0.074493 -vt 0.324006 0.068216 -vt 0.325470 0.009804 -vt 0.159015 0.221209 -vt 0.319147 0.219954 -vt 0.160154 0.193815 -vt 0.162323 0.110144 -vt 0.321290 0.154865 -vt 0.153411 0.072905 -vt 0.160980 0.154628 -vt 0.161642 0.074882 -vt 0.136981 0.357463 -vt 0.167260 0.372515 -vt 0.136981 0.373289 -vt 0.088568 0.357595 -vt 0.068186 0.373289 -vt 0.068186 0.357463 -vt 0.189977 0.371792 -vt 0.167260 0.356690 -vt 0.189978 0.355966 -vt 0.321611 0.219338 -vt 0.161143 0.221263 -vt 0.322066 0.154397 -vt 0.321076 0.041804 -vt 0.323456 0.071128 -vt 0.322534 0.067945 -vt 0.250154 0.792851 -vt 0.273221 0.795467 -vt 0.091316 0.794644 -vt 0.293066 0.797695 -vt 0.016873 0.804883 -vt 0.033786 0.801329 -vt 0.077381 0.795722 -vt 0.155566 0.788575 -vt 0.138639 0.778486 -vt 0.158066 0.772764 -vt 0.054011 0.798812 -vt 0.236326 0.792079 -vt 0.202051 0.371732 -vt 0.202051 0.355906 -vt 0.116599 0.357595 -vt 0.116599 0.373421 -vt 0.015190 0.355966 -vt 0.003116 0.371732 -vt 0.003116 0.355906 -vt 0.037907 0.372515 -vt 0.037907 0.356690 -vt 0.015190 0.371792 -vt 0.105668 0.357644 -vt 0.105668 0.373470 -vt 0.099489 0.357644 -vt 0.088568 0.373421 -vt 0.099489 0.373470 -vt 0.188632 0.777943 -vt 0.167878 0.772654 -vt 0.181394 0.762326 -vt 0.294067 0.647961 -vt 0.303167 0.614199 -vt 0.303167 0.647961 -vt 0.153583 0.091790 -vt 0.321316 0.117408 -vt 0.153648 0.123361 -vt 0.323510 0.088039 -vt 0.124127 0.112592 -vt 0.125603 0.089619 -vt 0.041308 0.093532 -vt 0.086689 0.119252 -vt 0.039823 0.120997 -vt 0.273195 0.559127 -vt 0.289603 0.553152 -vt 0.290452 0.556695 -vt 0.091482 0.092156 -vt 0.016236 0.091777 -vt 0.281554 0.625218 -vt 0.271561 0.618402 -vt 0.294030 0.616776 -vt 0.170751 0.788410 -vt 0.157783 0.800051 -vt 0.152072 0.860847 -vt 0.193727 0.919817 -vt 0.180297 0.708701 -vt 0.193725 0.708701 -vt 0.265671 0.609576 -vt 0.271448 0.609440 -vt 0.294067 0.614199 -vt 0.303167 0.605510 -vt 0.293952 0.607827 -vt 0.236000 0.625228 -vt 0.245972 0.618420 -vt 0.245995 0.625548 -vt 0.223524 0.616863 -vt 0.246072 0.609463 -vt 0.254076 0.629043 -vt 0.263451 0.625557 -vt 0.263443 0.629089 -vt 0.265727 0.618518 -vt 0.263353 0.618566 -vt 0.265808 0.625494 -vt 0.258767 0.637676 -vt 0.254047 0.637653 -vt 0.251845 0.609578 -vt 0.251796 0.618515 -vt 0.251734 0.625465 -vt 0.138954 0.800369 -vt 0.254084 0.625511 -vt 0.254163 0.618559 -vt 0.263310 0.609597 -vt 0.254206 0.609594 -vt 0.294067 0.605510 -vt 0.303167 0.565131 -vt 0.251853 0.569232 -vt 0.253156 0.562875 -vt 0.254213 0.569233 -vt 0.263295 0.569233 -vt 0.265655 0.569230 -vt 0.266567 0.564085 -vt 0.267638 0.557134 -vt 0.268986 0.560040 -vt 0.294067 0.565131 -vt 0.303167 0.559802 -vt 0.264350 0.562875 -vt 0.263295 0.562688 -vt 0.248520 0.560043 -vt 0.244268 0.555593 -vt 0.249867 0.557136 -vt 0.254213 0.562688 -vt 0.263295 0.555128 -vt 0.250939 0.564087 -vt 0.294067 0.559802 -vt 0.303167 0.554364 -vt 0.294067 0.554364 -vt 0.303167 0.547980 -vt 0.273237 0.555588 -vt 0.254213 0.555128 -vt 0.263295 0.546600 -vt 0.263141 0.521961 -vt 0.254213 0.546600 -vt 0.254367 0.521961 -vt 0.303021 0.521961 -vt 0.294067 0.547980 -vt 0.294213 0.521961 -vt 0.227901 0.553165 -vt 0.244311 0.559132 -vt 0.227053 0.556709 -vt 0.322830 0.524494 -vt 0.328472 0.528894 -vt 0.323984 0.531427 -vt 0.330014 0.547183 -vt 0.325218 0.552440 -vt 0.325218 0.547183 -vt 0.328472 0.540213 -vt 0.322830 0.544613 -vt 0.323984 0.537680 -vt 0.329035 0.552477 -vt 0.324239 0.557734 -vt 0.324239 0.552477 -vt 0.321255 0.547183 -vt 0.320214 0.557734 -vt 0.315026 0.552477 -vt 0.320214 0.552477 -vt 0.319165 0.526989 -vt 0.319165 0.542118 -vt 0.320185 0.535986 -vt 0.314282 0.539490 -vt 0.310555 0.534572 -vt 0.315100 0.534572 -vt 0.321255 0.552440 -vt 0.316083 0.547183 -vt 0.320185 0.533121 -vt 0.314282 0.529617 -vt 0.309808 0.539058 -vt 0.304377 0.538124 -vt 0.310555 0.534535 -vt 0.309808 0.530049 -vt 0.315026 0.557734 -vt 0.310543 0.552477 -vt 0.316083 0.552440 -vt 0.311538 0.547183 -vt 0.305983 0.556964 -vt 0.304350 0.554128 -vt 0.305983 0.553247 -vt 0.304377 0.530983 -vt 0.305407 0.528102 -vt 0.311538 0.552440 -vt 0.304942 0.547953 -vt 0.303203 0.554128 -vt 0.304350 0.556083 -vt 0.303203 0.556083 -vt 0.303203 0.550789 -vt 0.303203 0.548833 -vt 0.305407 0.541005 -vt 0.303203 0.540240 -vt 0.303203 0.528867 -vt 0.303745 0.527351 -vt 0.009347 0.553762 -vt 0.097357 0.642576 -vt 0.009348 0.642577 -vt 0.107587 0.829304 -vt 0.189150 0.799526 -vt 0.189194 0.829363 -vt 0.107632 0.799414 -vt 0.189109 0.771635 -vt 0.107673 0.771635 -vt 0.097357 0.553762 -vt 0.117762 0.642576 -vt 0.093110 0.647104 -vt 0.013595 0.647105 -vt 0.013557 0.518373 -vt 0.013557 0.549711 -vt 0.009348 0.683002 -vt 0.097358 0.771695 -vt 0.009348 0.771696 -vt 0.144454 0.771725 -vt 0.117763 0.683001 -vt 0.144712 0.682911 -vt 0.097357 0.513726 -vt 0.117762 0.553762 -vt 0.097357 0.683001 -vt 0.117763 0.771695 -vt 0.280600 0.402906 -vt 0.283604 0.483938 -vt 0.280600 0.483938 -vt 0.013595 0.678474 -vt 0.093110 0.678473 -vt 0.300859 0.402771 -vt 0.303774 0.483879 -vt 0.300859 0.483879 -vt 0.093147 0.549711 -vt 0.093147 0.518373 -vt 0.009347 0.513726 -vt 0.317967 0.402771 -vt 0.303774 0.402771 -vt 0.303778 0.398399 -vt 0.320881 0.483879 -vt 0.320881 0.402771 -vt 0.303778 0.488250 -vt 0.317967 0.483879 -vt 0.317971 0.488250 -vt 0.297812 0.402906 -vt 0.283604 0.402906 -vt 0.297808 0.488445 -vt 0.297812 0.483938 -vt 0.300817 0.483938 -vt 0.300817 0.402906 -vt 0.297808 0.398399 -vt 0.283600 0.398399 -vt 0.080480 0.350713 -vt 0.103363 0.346034 -vt 0.103172 0.373989 -vt 0.333333 -0.000000 +vt 0.314366 0.974575 +vt 0.294812 0.983757 +vt 0.294657 0.974626 +vt 0.273456 0.983821 +vt 0.273229 0.974643 +vt 0.262381 0.983825 +vt 0.256051 0.974627 +vt 0.125608 0.833003 +vt 0.097336 0.818509 +vt 0.125610 0.817068 +vt 0.168440 0.797914 +vt 0.168440 0.810937 +vt 0.109231 0.810850 +vt 0.127314 0.975213 +vt 0.110436 0.984714 +vt 0.110100 0.975425 +vt 0.056961 0.985323 +vt 0.034809 0.976056 +vt 0.057052 0.975881 +vt 0.034870 0.985378 +vt 0.014902 0.976066 +vt 0.199446 0.818509 +vt 0.171174 0.833003 +vt 0.171172 0.817068 +vt 0.035307 0.871570 +vt 0.010838 0.731525 +vt 0.017874 0.745939 +vt 0.015372 0.753889 +vt 0.013899 0.704033 +vt 0.009136 0.701562 +vt 0.015271 0.913475 +vt 0.091632 0.975630 +vt 0.055268 0.870904 +vt 0.088357 0.868401 +vt 0.013764 0.426507 +vt 0.049854 0.416508 +vt 0.048730 0.438624 +vt 0.271875 0.869165 +vt 0.255984 0.912460 +vt 0.239398 0.867230 +vt 0.221112 0.974619 +vt 0.221070 0.866929 +vt 0.043269 0.488700 +vt 0.010790 0.459448 +vt 0.008714 0.489627 +vt 0.040214 0.363540 +vt 0.041285 0.381724 +vt 0.016409 0.381718 +vt 0.106773 0.867819 +vt 0.188797 0.866552 +vt 0.189454 0.906961 +vt 0.168859 0.866621 +vt 0.203932 0.974655 +vt 0.190529 0.973040 +vt 0.139611 0.907321 +vt 0.140686 0.973400 +vt 0.179637 0.973784 +vt 0.191879 0.982076 +vt 0.221110 0.983839 +vt 0.239478 0.983833 +vt 0.239470 0.974613 +vt 0.091859 0.984987 +vt 0.068629 0.985230 +vt 0.151599 0.973987 +vt 0.139629 0.982453 +vt 0.295488 0.911453 +vt 0.309465 0.867101 +vt 0.314455 0.910484 +vt 0.099265 0.705133 +vt 0.088674 0.685929 +vt 0.091711 0.679203 +vt 0.273373 0.912228 +vt 0.291054 0.869493 +vt 0.017282 0.678268 +vt 0.096715 0.734089 +vt 0.094272 0.707475 +vt 0.090072 0.746670 +vt 0.092216 0.753889 +vt 0.019880 0.685690 +vt 0.093170 0.731081 +vt 0.048521 0.438176 +vt 0.099086 0.434250 +vt 0.101118 0.416781 +vt 0.100614 0.417134 +vt 0.096976 0.454191 +vt 0.045608 0.464377 +vt 0.014112 0.425933 +vt 0.044187 0.506979 +vt 0.009380 0.512438 +vt 0.010839 0.490063 +vt 0.047070 0.507273 +vt 0.012396 0.512817 +vt 0.011742 0.459951 +vt 0.045438 0.489041 +vt 0.050505 0.416012 +vt 0.015811 0.406181 +vt 0.046833 0.464770 +vt 0.129115 0.442360 +vt 0.092797 0.383213 +vt 0.123836 0.367927 +vt 0.125752 0.384299 +vt 0.099258 0.434566 +vt 0.129673 0.442572 +vt 0.097922 0.454465 +vt 0.098488 0.471892 +vt 0.102467 0.399479 +vt 0.100128 0.472119 +vt 0.086379 0.367151 +vt 0.161380 0.436557 +vt 0.130349 0.413686 +vt 0.161569 0.406968 +vt 0.161572 0.462620 +vt 0.129818 0.462254 +vt 0.101290 0.399869 +vt 0.131373 0.382847 +vt 0.130916 0.413409 +vt 0.133141 0.382502 +vt 0.128491 0.462088 +vt 0.134570 0.358305 +vt 0.163321 0.382995 +vt 0.324006 0.378811 +vt 0.325470 0.339869 +vt 0.159015 0.480806 +vt 0.319147 0.479969 +vt 0.160154 0.462543 +vt 0.162323 0.406763 +vt 0.321290 0.436577 +vt 0.153411 0.381937 +vt 0.160980 0.436419 +vt 0.161642 0.383255 +vt 0.136981 0.571642 +vt 0.167260 0.581677 +vt 0.136981 0.582193 +vt 0.088568 0.571730 +vt 0.068186 0.582193 +vt 0.068186 0.571642 +vt 0.189977 0.581195 +vt 0.167260 0.571127 +vt 0.189978 0.570644 +vt 0.321611 0.479559 +vt 0.161143 0.480842 +vt 0.322066 0.436265 +vt 0.321076 0.361203 +vt 0.323456 0.380752 +vt 0.322534 0.378630 +vt 0.250154 0.861901 +vt 0.273221 0.863645 +vt 0.091316 0.863096 +vt 0.293066 0.865130 +vt 0.016873 0.869922 +vt 0.033786 0.867553 +vt 0.077381 0.863815 +vt 0.155566 0.859050 +vt 0.138639 0.852324 +vt 0.158066 0.848509 +vt 0.054011 0.865875 +vt 0.236326 0.861386 +vt 0.202051 0.581155 +vt 0.202051 0.570604 +vt 0.116599 0.571730 +vt 0.116599 0.582281 +vt 0.015190 0.570644 +vt 0.003116 0.581155 +vt 0.003116 0.570604 +vt 0.037907 0.581677 +vt 0.037907 0.571127 +vt 0.015190 0.581195 +vt 0.105668 0.571763 +vt 0.105668 0.582313 +vt 0.099489 0.571763 +vt 0.088568 0.582281 +vt 0.099489 0.582313 +vt 0.188632 0.851962 +vt 0.167878 0.848436 +vt 0.181394 0.841551 +vt 0.294067 0.765307 +vt 0.303167 0.742799 +vt 0.303167 0.765307 +vt 0.153583 0.394527 +vt 0.321316 0.411605 +vt 0.153648 0.415574 +vt 0.323510 0.392026 +vt 0.124127 0.408395 +vt 0.125603 0.393079 +vt 0.041308 0.395688 +vt 0.086689 0.412835 +vt 0.039823 0.413998 +vt 0.273195 0.706085 +vt 0.289603 0.702101 +vt 0.290452 0.704463 +vt 0.091482 0.394771 +vt 0.016236 0.394518 +vt 0.281554 0.750145 +vt 0.271561 0.745601 +vt 0.294030 0.744517 +vt 0.170751 0.858940 +vt 0.157783 0.866701 +vt 0.152072 0.907231 +vt 0.193727 0.946545 +vt 0.180297 0.805801 +vt 0.193725 0.805801 +vt 0.265671 0.739717 +vt 0.271448 0.739627 +vt 0.294067 0.742799 +vt 0.303167 0.737007 +vt 0.293952 0.738551 +vt 0.236000 0.750152 +vt 0.245972 0.745613 +vt 0.245995 0.750365 +vt 0.223524 0.744575 +vt 0.246072 0.739642 +vt 0.254076 0.752695 +vt 0.263451 0.750371 +vt 0.263443 0.752726 +vt 0.265727 0.745679 +vt 0.263353 0.745711 +vt 0.265808 0.750329 +vt 0.258767 0.758451 +vt 0.254047 0.758435 +vt 0.251845 0.739719 +vt 0.251796 0.745677 +vt 0.251734 0.750310 +vt 0.138954 0.866913 +vt 0.254084 0.750341 +vt 0.254163 0.745706 +vt 0.263310 0.739731 +vt 0.254206 0.739729 +vt 0.294067 0.737007 +vt 0.303167 0.710087 +vt 0.251853 0.712821 +vt 0.253156 0.708583 +vt 0.254213 0.712822 +vt 0.263295 0.712822 +vt 0.265655 0.712820 +vt 0.266567 0.709390 +vt 0.267638 0.704756 +vt 0.268986 0.706693 +vt 0.294067 0.710087 +vt 0.303167 0.706535 +vt 0.264350 0.708583 +vt 0.263295 0.708459 +vt 0.248520 0.706695 +vt 0.244268 0.703729 +vt 0.249867 0.704757 +vt 0.254213 0.708459 +vt 0.263295 0.703419 +vt 0.250939 0.709391 +vt 0.294067 0.706535 +vt 0.303167 0.702909 +vt 0.294067 0.702909 +vt 0.303167 0.698653 +vt 0.273237 0.703725 +vt 0.254213 0.703419 +vt 0.263295 0.697733 +vt 0.263141 0.681307 +vt 0.254213 0.697733 +vt 0.254367 0.681307 +vt 0.303021 0.681307 +vt 0.294067 0.698653 +vt 0.294213 0.681307 +vt 0.227901 0.702110 +vt 0.244311 0.706088 +vt 0.227053 0.704473 +vt 0.322830 0.682996 +vt 0.328472 0.685929 +vt 0.323984 0.687618 +vt 0.330014 0.698122 +vt 0.325218 0.701627 +vt 0.325218 0.698122 +vt 0.328472 0.693475 +vt 0.322830 0.696409 +vt 0.323984 0.691787 +vt 0.329035 0.701651 +vt 0.324239 0.705156 +vt 0.324239 0.701651 +vt 0.321255 0.698122 +vt 0.320214 0.705156 +vt 0.315026 0.701651 +vt 0.320214 0.701651 +vt 0.319165 0.684659 +vt 0.319165 0.694745 +vt 0.320185 0.690657 +vt 0.314282 0.692993 +vt 0.310555 0.689715 +vt 0.315100 0.689715 +vt 0.321255 0.701627 +vt 0.316083 0.698122 +vt 0.320185 0.688747 +vt 0.314282 0.686411 +vt 0.309808 0.692705 +vt 0.304377 0.692083 +vt 0.310555 0.689690 +vt 0.309808 0.686699 +vt 0.315026 0.705156 +vt 0.310543 0.701651 +vt 0.316083 0.701627 +vt 0.311538 0.698122 +vt 0.305983 0.704643 +vt 0.304350 0.702752 +vt 0.305983 0.702165 +vt 0.304377 0.687322 +vt 0.305407 0.685401 +vt 0.311538 0.701627 +vt 0.304942 0.698635 +vt 0.303203 0.702752 +vt 0.304350 0.704055 +vt 0.303203 0.704055 +vt 0.303203 0.700526 +vt 0.303203 0.699222 +vt 0.305407 0.694003 +vt 0.303203 0.693493 +vt 0.303203 0.685911 +vt 0.303745 0.684901 +vt 0.009347 0.702508 +vt 0.097357 0.761717 +vt 0.009348 0.761718 +vt 0.107587 0.886203 +vt 0.189150 0.866351 +vt 0.189194 0.886242 +vt 0.107632 0.866276 +vt 0.189109 0.847757 +vt 0.107673 0.847757 +vt 0.097357 0.702508 +vt 0.117762 0.761717 +vt 0.093110 0.764736 +vt 0.013595 0.764737 +vt 0.013557 0.678915 +vt 0.013557 0.699807 +vt 0.009348 0.788668 +vt 0.097358 0.847797 +vt 0.009348 0.847797 +vt 0.144454 0.847817 +vt 0.117763 0.788667 +vt 0.144712 0.788607 +vt 0.097357 0.675817 +vt 0.117762 0.702508 +vt 0.097357 0.788667 +vt 0.117763 0.847797 +vt 0.280600 0.601937 +vt 0.283604 0.655959 +vt 0.280600 0.655959 +vt 0.013595 0.785649 +vt 0.093110 0.785649 +vt 0.300859 0.601847 +vt 0.303774 0.655919 +vt 0.300859 0.655919 +vt 0.093147 0.699807 +vt 0.093147 0.678915 +vt 0.009347 0.675817 +vt 0.317967 0.601847 +vt 0.303774 0.601847 +vt 0.303778 0.598933 +vt 0.320881 0.655919 +vt 0.320881 0.601847 +vt 0.303778 0.658833 +vt 0.317967 0.655919 +vt 0.317971 0.658833 +vt 0.297812 0.601937 +vt 0.283604 0.601937 +vt 0.297808 0.658963 +vt 0.297812 0.655959 +vt 0.300817 0.655959 +vt 0.300817 0.601937 +vt 0.297808 0.598933 +vt 0.283600 0.598933 +vt 0.080480 0.567142 +vt 0.103363 0.564023 +vt 0.103172 0.582659 +vt 0.333333 0.333333 vt 1.000000 1.000000 vt 0.333333 1.000000 -vt 0.195007 0.381137 -vt 0.201745 0.431502 -vt 0.195007 0.431502 -vt 0.201745 0.381137 -vt 0.208482 0.431502 -vt 0.154582 0.381137 -vt 0.161320 0.431502 -vt 0.154582 0.431502 -vt 0.161319 0.381137 -vt 0.168057 0.431502 -vt 0.168057 0.381137 -vt 0.174795 0.431502 -vt 0.174795 0.381137 -vt 0.181532 0.431502 -vt 0.231060 0.416867 -vt 0.226296 0.424014 -vt 0.219558 0.399615 -vt 0.181532 0.381137 -vt 0.188270 0.431502 -vt 0.188270 0.381137 -vt 0.126584 0.919818 -vt 0.140012 0.708701 -vt 0.140013 0.919817 -vt 0.207154 0.708701 -vt 0.207155 0.919817 -vt 0.166870 0.919817 -vt 0.153440 0.708701 -vt 0.166869 0.708701 -vt 0.180298 0.919817 -vt 0.153441 0.919817 -vt 0.234135 0.875411 -vt 0.220697 0.919762 -vt 0.220707 0.875404 -vt 0.220583 0.919816 -vt 0.220582 0.708701 -vt 0.113155 0.708702 -vt 0.126584 0.708702 -vt 0.314568 0.891555 -vt 0.309497 0.867473 -vt 0.313761 0.869278 -vt 0.301277 0.875445 -vt 0.287839 0.919797 -vt 0.287849 0.875438 -vt 0.260992 0.875425 -vt 0.247553 0.919776 -vt 0.247564 0.875418 -vt 0.328134 0.875459 -vt 0.314695 0.919811 -vt 0.314706 0.875452 -vt 0.274410 0.919790 -vt 0.274420 0.875431 -vt 0.260982 0.919783 -vt 0.234125 0.919769 -vt 0.301267 0.919804 -vt 0.308531 0.948048 -vt 0.297558 0.919947 -vt 0.309626 0.921049 -vt 0.314647 0.896518 -vt 0.310460 0.894042 -vt 0.311777 0.973256 -vt 0.312696 0.950617 -vt 0.320287 0.797781 -vt 0.307573 0.814336 -vt 0.317673 0.792250 -vt 0.313606 0.864986 -vt 0.308535 0.840905 -vt 0.312799 0.842709 -vt 0.312873 0.946256 -vt 0.313792 0.923617 -vt 0.320287 0.992004 -vt 0.307435 0.975048 -vt 0.312643 0.838418 -vt 0.311836 0.816141 -vt 0.296659 0.841873 -vt 0.293357 0.866637 -vt 0.292551 0.844359 -vt 0.295697 0.815304 -vt 0.297621 0.868441 -vt 0.298902 0.894148 -vt 0.296462 0.946946 -vt 0.260683 0.910703 -vt 0.247255 0.985157 -vt 0.247255 0.910703 -vt 0.293215 0.921738 -vt 0.295366 0.973946 -vt 0.281238 0.988439 -vt 0.291201 0.971377 -vt 0.292395 0.840068 -vt 0.291588 0.817791 -vt 0.270381 0.881699 -vt 0.294350 0.864763 -vt 0.269266 0.880790 -vt 0.292119 0.948738 -vt 0.281862 0.800912 -vt 0.284016 0.795041 -vt 0.300968 0.985157 -vt 0.288372 0.988169 -vt 0.287540 0.985157 -vt 0.287540 0.910703 -vt 0.274112 0.985157 -vt 0.274112 0.910703 -vt 0.206969 0.910703 -vt 0.193541 0.985157 -vt 0.193541 0.910703 -vt 0.233826 0.910703 -vt 0.220398 0.985157 -vt 0.220398 0.910703 -vt 0.260683 0.985157 -vt 0.300968 0.910703 -vt 0.206969 0.985157 -vt 0.233826 0.985157 -vt 0.000000 0.406250 -vt 0.052083 0.421875 -vt 0.000000 0.421875 -vt 0.207801 0.988169 -vt 0.234658 0.988169 -vt 0.259851 0.988169 -vt 0.248086 0.988169 -vt 0.286708 0.988169 -vt 0.274943 0.988169 -vt 0.206138 0.988169 -vt 0.194373 0.988169 -vt 0.232995 0.988169 -vt 0.221230 0.988169 -vt 0.261515 0.988169 -vt 0.048732 0.447842 -vt 0.045556 0.447842 -vt 0.048732 0.436341 -vt 0.000000 0.375000 -vt 0.052083 0.390625 -vt 0.000000 0.390625 -vt 0.000000 0.468750 -vt 0.052083 0.484375 -vt 0.000000 0.484375 -vt 0.000000 0.437500 -vt 0.052083 0.453125 -vt 0.000000 0.453125 -vt 0.052083 0.437500 -vt 0.052083 0.406250 -vt 0.052083 0.500000 -vt 0.000000 0.500000 -vt 0.052083 0.468750 -vt 0.077693 0.682531 -vt 0.085752 0.702806 -vt 0.072784 0.686569 -vt 0.099335 0.548750 -vt 0.085924 0.828424 -vt 0.085920 0.548750 -vt 0.194542 0.682531 -vt 0.186482 0.702806 -vt 0.184647 0.695445 -vt 0.154742 0.695445 -vt 0.169694 0.702806 -vt 0.152906 0.702806 -vt 0.137953 0.695445 -vt 0.136117 0.702806 -vt 0.171530 0.695445 -vt 0.117493 0.695445 -vt 0.102541 0.702806 -vt 0.104376 0.695445 -vt 0.134281 0.695445 -vt 0.119329 0.702806 -vt 0.121165 0.695445 -vt 0.072504 0.548751 -vt 0.072521 0.828425 -vt 0.059088 0.548753 -vt 0.045714 0.828432 -vt 0.045673 0.548757 -vt 0.126166 0.548755 -vt 0.112729 0.828426 -vt 0.112751 0.548752 -vt 0.059117 0.828428 -vt 0.032312 0.828437 -vt 0.032257 0.548762 -vt 0.099327 0.828424 -vt 0.100705 0.695445 -vt 0.087588 0.695445 -vt 0.018909 0.828443 -vt 0.018841 0.548769 -vt 0.102541 0.720660 -vt 0.085752 0.720660 -vt 0.136117 0.720660 -vt 0.169694 0.720660 -vt 0.119329 0.720660 -vt 0.152906 0.720660 -vt 0.151119 0.727549 -vt 0.137904 0.727549 -vt 0.186482 0.720660 -vt 0.171480 0.727549 -vt 0.100754 0.727549 -vt 0.087538 0.727549 -vt 0.104327 0.727549 -vt 0.121115 0.727549 -vt 0.077795 0.740943 -vt 0.073051 0.737368 -vt 0.194439 0.740943 -vt 0.184696 0.727549 -vt 0.167908 0.727549 -vt 0.154692 0.727549 -vt 0.274714 0.919931 -vt 0.261210 0.982393 -vt 0.261210 0.919931 -vt 0.288333 0.987837 -vt 0.271580 0.973788 -vt 0.289932 0.985191 -vt 0.247705 0.919931 -vt 0.234201 0.982393 -vt 0.234201 0.919931 -vt 0.220697 0.982393 -vt 0.220697 0.919931 -vt 0.247705 0.982393 -vt 0.301723 0.919931 -vt 0.288219 0.982393 -vt 0.288219 0.919931 -vt 0.315227 0.919931 -vt 0.301723 0.982393 -vt 0.328732 0.919931 -vt 0.315227 0.982393 -vt 0.274714 0.982393 -vt 0.293124 0.985191 -vt 0.309933 0.968199 -vt 0.311477 0.973788 -vt 0.266945 0.970578 -vt 0.261721 0.942874 -vt 0.269323 0.970403 -vt 0.316112 0.970578 -vt 0.321335 0.942874 -vt 0.323100 0.945273 -vt 0.316112 0.910382 -vt 0.321335 0.938086 -vt 0.313734 0.910558 -vt 0.288333 0.893123 -vt 0.271580 0.907172 -vt 0.271463 0.903605 -vt 0.266945 0.910383 -vt 0.261721 0.938086 -vt 0.259957 0.935688 -vt 0.294723 0.893123 -vt 0.311476 0.907172 -vt 0.293124 0.895769 -vt 0.294723 0.987837 -vt 0.311593 0.977356 -vt 0.273123 0.912761 -vt 0.291528 0.906976 -vt 0.275734 0.916790 -vt 0.291476 0.979602 -vt 0.273049 0.968088 -vt 0.313734 0.970403 -vt 0.317609 0.940559 -vt 0.310007 0.912873 -vt 0.289932 0.895769 -vt 0.269323 0.910558 -vt 0.265447 0.940401 -vt 0.291581 0.901359 -vt 0.291528 0.973984 -vt 0.269192 0.940480 -vt 0.309933 0.912761 -vt 0.307322 0.964171 -vt 0.273123 0.968199 -vt 0.265447 0.940559 -vt 0.275734 0.964171 -vt 0.313864 0.940480 -vt 0.317609 0.940401 -vt 0.307322 0.916789 -vt 0.282700 0.682531 -vt 0.271598 0.702003 -vt 0.270797 0.682531 -vt 0.263862 0.653767 -vt 0.276843 0.637114 -vt 0.276843 0.652877 -vt 0.272434 0.675600 -vt 0.263862 0.635913 -vt 0.272669 0.614289 -vt 0.256381 0.695742 -vt 0.297255 0.695389 -vt 0.282107 0.702003 -vt 0.269648 0.894065 -vt 0.269215 0.907339 -vt 0.267789 0.894057 -vt 0.270334 0.906440 -vt 0.294268 0.923602 -vt 0.237869 0.893926 -vt 0.237791 0.911563 -vt 0.289962 0.934035 -vt 0.303659 0.931128 -vt 0.304214 0.934035 -vt 0.261457 0.934035 -vt 0.247760 0.931128 -vt 0.260902 0.931128 -vt 0.232711 0.934065 -vt 0.222295 0.920924 -vt 0.233498 0.931227 -vt 0.318708 0.934065 -vt 0.329124 0.920924 -vt 0.330769 0.923036 -vt 0.275710 0.934035 -vt 0.289407 0.931128 -vt 0.247205 0.934035 -vt 0.246640 0.931132 -vt 0.317921 0.931228 -vt 0.262012 0.931128 -vt 0.275154 0.931128 -vt 0.262012 0.953205 -vt 0.275709 0.950376 -vt 0.275154 0.953205 -vt 0.261457 0.950376 -vt 0.317931 0.952980 -vt 0.304214 0.950376 -vt 0.318708 0.949777 -vt 0.233488 0.952980 -vt 0.247205 0.950376 -vt 0.246629 0.953196 -vt 0.232711 0.949777 -vt 0.289407 0.953206 -vt 0.289962 0.950376 -vt 0.329533 0.962240 -vt 0.331194 0.959687 -vt 0.221886 0.962240 -vt 0.247760 0.953205 -vt 0.260902 0.953205 -vt 0.290517 0.953206 -vt 0.303659 0.953205 -vt 0.286548 0.925737 -vt 0.274178 0.941902 -vt 0.276506 0.922891 -vt 0.263857 0.931768 -vt 0.253669 0.941716 -vt 0.241589 0.925551 -vt 0.251491 0.922891 -vt 0.302318 0.955878 -vt 0.296095 0.940846 -vt 0.309892 0.941203 -vt 0.284417 0.944018 -vt 0.263815 0.960025 -vt 0.274027 0.944968 -vt 0.273860 0.960272 -vt 0.284163 0.946906 -vt 0.263891 0.944699 -vt 0.253734 0.959924 -vt 0.253781 0.944730 -vt 0.263905 0.941721 -vt 0.243789 0.946439 -vt 0.243564 0.943592 -vt 0.208616 0.698065 -vt 0.199561 0.713051 -vt 0.199561 0.698065 -vt 0.223046 0.714223 -vt 0.228088 0.714255 -vt 0.228001 0.723082 -vt 0.247216 0.713051 -vt 0.256270 0.698065 -vt 0.256270 0.713051 -vt 0.232635 0.696906 -vt 0.228128 0.696870 -vt 0.228192 0.688045 -vt 0.236144 0.714777 -vt 0.232647 0.713361 -vt 0.236489 0.710792 -vt 0.219824 0.696340 -vt 0.223052 0.697748 -vt 0.219448 0.700309 -vt 0.211461 0.713051 -vt 0.208616 0.713051 -vt 0.244371 0.698065 -vt 0.247216 0.698065 -vt 0.223330 0.710079 -vt 0.217127 0.701037 -vt 0.223330 0.701037 -vt 0.232384 0.710079 -vt 0.238657 0.701037 -vt 0.238657 0.710079 -vt 0.215001 0.700359 -vt 0.211461 0.698065 -vt 0.240830 0.700359 -vt 0.244370 0.713051 -vt 0.240830 0.710757 -vt 0.215001 0.710756 -vt 0.212477 0.718880 -vt 0.232384 0.701037 -vt 0.217127 0.710079 -vt 0.243247 0.691947 -vt 0.223051 0.713206 -vt 0.232650 0.697917 -vt 0.236090 0.696640 -vt 0.236348 0.700497 -vt 0.219875 0.714484 -vt 0.219585 0.710645 -vt 0.243247 0.719169 -vt 0.212477 0.692235 -vt 0.223082 0.696719 -vt 0.220294 0.682531 -vt 0.232619 0.714384 -vt 0.235699 0.728531 -vt 0.144323 0.762715 -vt 0.314455 0.975508 -vt 0.097131 0.750157 -vt 0.159735 0.751740 -vt 0.138787 0.766338 -vt 0.117867 0.751648 -vt 0.109270 0.696289 -vt 0.127627 0.976678 -vt 0.014857 0.978001 -vt 0.199651 0.750157 -vt 0.014710 0.592571 -vt 0.014697 0.110197 -vt 0.010653 0.072850 -vt 0.010554 0.041223 -vt 0.199186 0.800615 -vt 0.128645 0.801487 -vt 0.203942 0.975766 -vt 0.131861 0.038058 -vt 0.318354 0.254488 -vt 0.153393 0.041207 -vt 0.321715 0.253791 -vt 0.322483 0.009668 -vt 0.308636 0.795153 -vt 0.018435 0.799670 -vt 0.009876 0.122906 -vt 0.010440 0.091074 -vt 0.271559 0.625547 -vt 0.223589 0.607923 -vt 0.327319 0.521961 -vt 0.330014 0.552440 -vt 0.327319 0.547146 -vt 0.329035 0.557734 -vt 0.315100 0.534535 -vt 0.310543 0.557734 -vt 0.304942 0.551670 -vt 0.303745 0.541756 -vt 0.117762 0.513726 -vt 0.317971 0.398399 -vt 0.283600 0.488445 -vt 0.141926 0.346559 -vt 0.168187 0.351749 -vt 0.141640 0.374054 -vt 0.180275 0.360697 -vt 0.167479 0.368991 -vt 0.081648 0.369717 -vt 0.075115 0.362544 -vt 0.074695 0.357469 -vt 1.000000 -0.000000 -vt 0.208482 0.381137 -vt 0.219558 0.424014 -vt 0.214794 0.416868 -vt 0.214794 0.406761 -vt 0.226296 0.399615 -vt 0.231060 0.406761 -vt 0.113156 0.919818 -vt 0.328124 0.919818 -vt 0.313949 0.919163 -vt 0.317605 0.997602 -vt 0.292296 0.944377 -vt 0.283402 0.994429 -vt 0.300137 0.988169 -vt 0.219566 0.988169 -vt 0.246423 0.988169 -vt 0.273280 0.988169 -vt 0.043310 0.444474 -vt 0.043310 0.439710 -vt 0.045556 0.436341 -vt 0.050978 0.439710 -vt 0.050978 0.444474 -vt 0.052083 0.375000 -vt 0.199450 0.686569 -vt 0.167858 0.695445 -vt 0.151070 0.695445 -vt 0.126132 0.828429 -vt 0.117543 0.727549 -vt 0.134331 0.727549 -vt 0.199184 0.737368 -vt 0.271463 0.977356 -vt 0.328732 0.982393 -vt 0.291581 0.979602 -vt 0.259957 0.945273 -vt 0.323100 0.935687 -vt 0.311593 0.903605 -vt 0.291476 0.901359 -vt 0.310007 0.968087 -vt 0.273049 0.912873 -vt 0.237860 0.876290 -vt 0.290517 0.931128 -vt 0.220707 0.923131 -vt 0.276265 0.931128 -vt 0.304779 0.931132 -vt 0.304790 0.953196 -vt 0.276265 0.953205 -vt 0.220287 0.959600 -vt 0.293315 0.949913 -vt 0.220063 0.728189 -vt 0.235926 0.682997 -vt 0.216897 0.712351 -vt 0.238896 0.698725 -vt 0.238896 0.712391 -vt 0.216897 0.698764 -vt 0.176993 0.860576 -vt 0.163321 0.799991 -vt 0.048042 0.441712 -vt 0.048083 0.435555 -vt 0.263488 0.637699 +vt 0.195007 0.587425 +vt 0.201745 0.621001 +vt 0.195007 0.621001 +vt 0.201745 0.587425 +vt 0.208482 0.621001 +vt 0.154582 0.587425 +vt 0.161320 0.621001 +vt 0.154582 0.621001 +vt 0.161319 0.587425 +vt 0.168057 0.621001 +vt 0.168057 0.587425 +vt 0.174795 0.621001 +vt 0.174795 0.587425 +vt 0.181532 0.621001 +vt 0.231060 0.611245 +vt 0.226296 0.616009 +vt 0.219558 0.599743 +vt 0.181532 0.587425 +vt 0.188270 0.621001 +vt 0.188270 0.587425 +vt 0.126584 0.946545 +vt 0.140012 0.805801 +vt 0.140013 0.946545 +vt 0.207154 0.805801 +vt 0.207155 0.946545 +vt 0.166870 0.946545 +vt 0.153440 0.805801 +vt 0.166869 0.805801 +vt 0.180298 0.946545 +vt 0.153441 0.946545 +vt 0.234135 0.916941 +vt 0.220697 0.946508 +vt 0.220707 0.916936 +vt 0.220583 0.946544 +vt 0.220582 0.805801 +vt 0.113155 0.805801 +vt 0.126584 0.805801 +vt 0.314568 0.927703 +vt 0.309497 0.911649 +vt 0.313761 0.912852 +vt 0.301277 0.916963 +vt 0.287839 0.946531 +vt 0.287849 0.916959 +vt 0.260992 0.916950 +vt 0.247553 0.946517 +vt 0.247564 0.916945 +vt 0.328134 0.916973 +vt 0.314695 0.946541 +vt 0.314706 0.916968 +vt 0.274410 0.946527 +vt 0.274420 0.916954 +vt 0.260982 0.946522 +vt 0.234125 0.946513 +vt 0.301267 0.946536 +vt 0.308531 0.965365 +vt 0.297558 0.946631 +vt 0.309626 0.947366 +vt 0.314647 0.931012 +vt 0.310460 0.929361 +vt 0.311777 0.982171 +vt 0.312696 0.967078 +vt 0.320287 0.865187 +vt 0.307573 0.876224 +vt 0.317673 0.861500 +vt 0.313606 0.909991 +vt 0.308535 0.893937 +vt 0.312799 0.895139 +vt 0.312873 0.964171 +vt 0.313792 0.949078 +vt 0.320287 0.994669 +vt 0.307435 0.983365 +vt 0.312643 0.892279 +vt 0.311836 0.877427 +vt 0.296659 0.894582 +vt 0.293357 0.911091 +vt 0.292551 0.896239 +vt 0.295697 0.876869 +vt 0.297621 0.912294 +vt 0.298902 0.929432 +vt 0.296462 0.964631 +vt 0.260683 0.940469 +vt 0.247255 0.990105 +vt 0.247255 0.940469 +vt 0.293215 0.947825 +vt 0.295366 0.982631 +vt 0.281238 0.992293 +vt 0.291201 0.980918 +vt 0.292395 0.893379 +vt 0.291588 0.878527 +vt 0.270381 0.921133 +vt 0.294350 0.909842 +vt 0.269266 0.920527 +vt 0.292119 0.965825 +vt 0.281862 0.867275 +vt 0.284016 0.863361 +vt 0.300968 0.990105 +vt 0.288372 0.992113 +vt 0.287540 0.990105 +vt 0.287540 0.940469 +vt 0.274112 0.990105 +vt 0.274112 0.940469 +vt 0.206969 0.940469 +vt 0.193541 0.990105 +vt 0.193541 0.940469 +vt 0.233826 0.940469 +vt 0.220398 0.990105 +vt 0.220398 0.940469 +vt 0.260683 0.990105 +vt 0.300968 0.940469 +vt 0.206969 0.990105 +vt 0.233826 0.990105 +vt 0.000000 0.604167 +vt 0.052083 0.614583 +vt 0.000000 0.614583 +vt 0.207801 0.992113 +vt 0.234658 0.992113 +vt 0.259851 0.992113 +vt 0.248086 0.992113 +vt 0.286708 0.992113 +vt 0.274943 0.992113 +vt 0.206138 0.992113 +vt 0.194373 0.992113 +vt 0.232995 0.992113 +vt 0.221230 0.992113 +vt 0.261515 0.992113 +vt 0.048732 0.631895 +vt 0.045556 0.631895 +vt 0.048732 0.624227 +vt 0.000000 0.583333 +vt 0.052083 0.593750 +vt 0.000000 0.593750 +vt 0.000000 0.645833 +vt 0.052083 0.656250 +vt 0.000000 0.656250 +vt 0.000000 0.625000 +vt 0.052083 0.635417 +vt 0.000000 0.635417 +vt 0.052083 0.625000 +vt 0.052083 0.604167 +vt 0.052083 0.666667 +vt 0.000000 0.666667 +vt 0.052083 0.645833 +vt 0.077693 0.788354 +vt 0.085752 0.801871 +vt 0.072784 0.791046 +vt 0.099335 0.699167 +vt 0.085924 0.885616 +vt 0.085920 0.699167 +vt 0.194542 0.788354 +vt 0.186482 0.801871 +vt 0.184647 0.796963 +vt 0.154742 0.796963 +vt 0.169694 0.801871 +vt 0.152906 0.801871 +vt 0.137953 0.796963 +vt 0.136117 0.801871 +vt 0.171530 0.796963 +vt 0.117493 0.796963 +vt 0.102541 0.801871 +vt 0.104376 0.796963 +vt 0.134281 0.796963 +vt 0.119329 0.801871 +vt 0.121165 0.796963 +vt 0.072504 0.699167 +vt 0.072521 0.885617 +vt 0.059088 0.699169 +vt 0.045714 0.885621 +vt 0.045673 0.699171 +vt 0.126166 0.699170 +vt 0.112729 0.885617 +vt 0.112751 0.699168 +vt 0.059117 0.885619 +vt 0.032312 0.885625 +vt 0.032257 0.699175 +vt 0.099327 0.885616 +vt 0.100705 0.796963 +vt 0.087588 0.796963 +vt 0.018909 0.885629 +vt 0.018841 0.699179 +vt 0.102541 0.813773 +vt 0.085752 0.813773 +vt 0.136117 0.813773 +vt 0.169694 0.813773 +vt 0.119329 0.813773 +vt 0.152906 0.813773 +vt 0.151119 0.818366 +vt 0.137904 0.818366 +vt 0.186482 0.813773 +vt 0.171480 0.818366 +vt 0.100754 0.818366 +vt 0.087538 0.818366 +vt 0.104327 0.818366 +vt 0.121115 0.818366 +vt 0.077795 0.827295 +vt 0.073051 0.824912 +vt 0.194439 0.827295 +vt 0.184696 0.818366 +vt 0.167908 0.818366 +vt 0.154692 0.818366 +vt 0.274714 0.946621 +vt 0.261210 0.988262 +vt 0.261210 0.946621 +vt 0.288333 0.991891 +vt 0.271580 0.982525 +vt 0.289932 0.990127 +vt 0.247705 0.946621 +vt 0.234201 0.988262 +vt 0.234201 0.946621 +vt 0.220697 0.988262 +vt 0.220697 0.946621 +vt 0.247705 0.988262 +vt 0.301723 0.946621 +vt 0.288219 0.988262 +vt 0.288219 0.946621 +vt 0.315227 0.946621 +vt 0.301723 0.988262 +vt 0.328732 0.946621 +vt 0.315227 0.988262 +vt 0.274714 0.988262 +vt 0.293124 0.990127 +vt 0.309933 0.978799 +vt 0.311477 0.982525 +vt 0.266945 0.980385 +vt 0.261721 0.961916 +vt 0.269323 0.980269 +vt 0.316112 0.980385 +vt 0.321335 0.961916 +vt 0.323100 0.963515 +vt 0.316112 0.940255 +vt 0.321335 0.958724 +vt 0.313734 0.940372 +vt 0.288333 0.928749 +vt 0.271580 0.938115 +vt 0.271463 0.935737 +vt 0.266945 0.940255 +vt 0.261721 0.958724 +vt 0.259957 0.957125 +vt 0.294723 0.928749 +vt 0.311476 0.938115 +vt 0.293124 0.930513 +vt 0.294723 0.991891 +vt 0.311593 0.984904 +vt 0.273123 0.941841 +vt 0.291528 0.937984 +vt 0.275734 0.944527 +vt 0.291476 0.986401 +vt 0.273049 0.978725 +vt 0.313734 0.980269 +vt 0.317609 0.960373 +vt 0.310007 0.941915 +vt 0.289932 0.930513 +vt 0.269323 0.940372 +vt 0.265447 0.960267 +vt 0.291581 0.934239 +vt 0.291528 0.982656 +vt 0.269192 0.960320 +vt 0.309933 0.941841 +vt 0.307322 0.976114 +vt 0.273123 0.978799 +vt 0.265447 0.960373 +vt 0.275734 0.976114 +vt 0.313864 0.960320 +vt 0.317609 0.960267 +vt 0.307322 0.944526 +vt 0.282700 0.788354 +vt 0.271598 0.801335 +vt 0.270797 0.788354 +vt 0.263862 0.769178 +vt 0.276843 0.758076 +vt 0.276843 0.768585 +vt 0.272434 0.783733 +vt 0.263862 0.757275 +vt 0.272669 0.742859 +vt 0.256381 0.797161 +vt 0.297255 0.796926 +vt 0.282107 0.801335 +vt 0.269648 0.929377 +vt 0.269215 0.938226 +vt 0.267789 0.929371 +vt 0.270334 0.937627 +vt 0.294268 0.949068 +vt 0.237869 0.929284 +vt 0.237791 0.941042 +vt 0.289962 0.956023 +vt 0.303659 0.954085 +vt 0.304214 0.956023 +vt 0.261457 0.956023 +vt 0.247760 0.954085 +vt 0.260902 0.954085 +vt 0.232711 0.956043 +vt 0.222295 0.947283 +vt 0.233498 0.954151 +vt 0.318708 0.956043 +vt 0.329124 0.947283 +vt 0.330769 0.948691 +vt 0.275710 0.956023 +vt 0.289407 0.954085 +vt 0.247205 0.956023 +vt 0.246640 0.954088 +vt 0.317921 0.954152 +vt 0.262012 0.954085 +vt 0.275154 0.954085 +vt 0.262012 0.968803 +vt 0.275709 0.966917 +vt 0.275154 0.968803 +vt 0.261457 0.966917 +vt 0.317931 0.968653 +vt 0.304214 0.966917 +vt 0.318708 0.966518 +vt 0.233488 0.968653 +vt 0.247205 0.966917 +vt 0.246629 0.968797 +vt 0.232711 0.966518 +vt 0.289407 0.968804 +vt 0.289962 0.966917 +vt 0.329533 0.974827 +vt 0.331194 0.973125 +vt 0.221886 0.974827 +vt 0.247760 0.968803 +vt 0.260902 0.968803 +vt 0.290517 0.968804 +vt 0.303659 0.968803 +vt 0.286548 0.950491 +vt 0.274178 0.961268 +vt 0.276506 0.948594 +vt 0.263857 0.954512 +vt 0.253669 0.961144 +vt 0.241589 0.950367 +vt 0.251491 0.948594 +vt 0.302318 0.970585 +vt 0.296095 0.960564 +vt 0.309892 0.960802 +vt 0.284417 0.962679 +vt 0.263815 0.973350 +vt 0.274027 0.963312 +vt 0.273860 0.973515 +vt 0.284163 0.964604 +vt 0.263891 0.963133 +vt 0.253734 0.973283 +vt 0.253781 0.963153 +vt 0.263905 0.961147 +vt 0.243789 0.964293 +vt 0.243564 0.962395 +vt 0.208616 0.798710 +vt 0.199561 0.808701 +vt 0.199561 0.798710 +vt 0.223046 0.809482 +vt 0.228088 0.809503 +vt 0.228001 0.815388 +vt 0.247216 0.808701 +vt 0.256270 0.798710 +vt 0.256270 0.808701 +vt 0.232635 0.797937 +vt 0.228128 0.797913 +vt 0.228192 0.792030 +vt 0.236144 0.809851 +vt 0.232647 0.808907 +vt 0.236489 0.807195 +vt 0.219824 0.797560 +vt 0.223052 0.798499 +vt 0.219448 0.800206 +vt 0.211461 0.808701 +vt 0.208616 0.808701 +vt 0.244371 0.798710 +vt 0.247216 0.798710 +vt 0.223330 0.806719 +vt 0.217127 0.800691 +vt 0.223330 0.800691 +vt 0.232384 0.806719 +vt 0.238657 0.800691 +vt 0.238657 0.806719 +vt 0.215001 0.800239 +vt 0.211461 0.798710 +vt 0.240830 0.800239 +vt 0.244370 0.808701 +vt 0.240830 0.807171 +vt 0.215001 0.807171 +vt 0.212477 0.812587 +vt 0.232384 0.800691 +vt 0.217127 0.806719 +vt 0.243247 0.794631 +vt 0.223051 0.808804 +vt 0.232650 0.798611 +vt 0.236090 0.797760 +vt 0.236348 0.800331 +vt 0.219875 0.809656 +vt 0.219585 0.807097 +vt 0.243247 0.812779 +vt 0.212477 0.794823 +vt 0.223082 0.797813 +vt 0.220294 0.788354 +vt 0.232619 0.809589 +vt 0.235699 0.819021 +vt 0.144323 0.841810 +vt 0.314455 0.983672 +vt 0.097131 0.833438 +vt 0.159735 0.834493 +vt 0.138787 0.844225 +vt 0.117867 0.834432 +vt 0.109270 0.797526 +vt 0.127627 0.984452 +vt 0.014857 0.985334 +vt 0.199651 0.833438 +vt 0.014710 0.728381 +vt 0.014697 0.406798 +vt 0.010653 0.381900 +vt 0.010554 0.360815 +vt 0.199186 0.867077 +vt 0.128645 0.867658 +vt 0.203942 0.983844 +vt 0.131861 0.358705 +vt 0.318354 0.502992 +vt 0.153393 0.360805 +vt 0.321715 0.502527 +vt 0.322483 0.339779 +vt 0.308636 0.863435 +vt 0.018435 0.866447 +vt 0.009876 0.415271 +vt 0.010440 0.394049 +vt 0.271559 0.750365 +vt 0.223589 0.738615 +vt 0.327319 0.681307 +vt 0.330014 0.701627 +vt 0.327319 0.698097 +vt 0.329035 0.705156 +vt 0.315100 0.689690 +vt 0.310543 0.705156 +vt 0.304942 0.701113 +vt 0.303745 0.694504 +vt 0.117762 0.675817 +vt 0.317971 0.598933 +vt 0.283600 0.658963 +vt 0.141926 0.564373 +vt 0.168187 0.567833 +vt 0.141640 0.582703 +vt 0.180275 0.573798 +vt 0.167479 0.579327 +vt 0.081648 0.579811 +vt 0.075115 0.575029 +vt 0.074695 0.571646 +vt 1.000000 0.333333 +vt 0.208482 0.587425 +vt 0.219558 0.616009 +vt 0.214794 0.611245 +vt 0.214794 0.604507 +vt 0.226296 0.599743 +vt 0.231060 0.604507 +vt 0.113156 0.946545 +vt 0.328124 0.946545 +vt 0.313949 0.946109 +vt 0.317605 0.998401 +vt 0.292296 0.962918 +vt 0.283402 0.996286 +vt 0.300137 0.992113 +vt 0.219566 0.992113 +vt 0.246423 0.992113 +vt 0.273280 0.992113 +vt 0.043310 0.629649 +vt 0.043310 0.626473 +vt 0.045556 0.624227 +vt 0.050978 0.626473 +vt 0.050978 0.629649 +vt 0.052083 0.583333 +vt 0.199450 0.791046 +vt 0.167858 0.796963 +vt 0.151070 0.796963 +vt 0.126132 0.885619 +vt 0.117543 0.818366 +vt 0.134331 0.818366 +vt 0.199184 0.824912 +vt 0.271463 0.984904 +vt 0.328732 0.988262 +vt 0.291581 0.986401 +vt 0.259957 0.963515 +vt 0.323100 0.957125 +vt 0.311593 0.935737 +vt 0.291476 0.934239 +vt 0.310007 0.978725 +vt 0.273049 0.941915 +vt 0.237860 0.917527 +vt 0.290517 0.954085 +vt 0.220707 0.948754 +vt 0.276265 0.954085 +vt 0.304779 0.954088 +vt 0.304790 0.968797 +vt 0.276265 0.968803 +vt 0.220287 0.973067 +vt 0.293315 0.966609 +vt 0.220063 0.818793 +vt 0.235926 0.788665 +vt 0.216897 0.808234 +vt 0.238896 0.799150 +vt 0.238896 0.808261 +vt 0.216897 0.799176 +vt 0.176993 0.907051 +vt 0.163321 0.866661 +vt 0.048042 0.627808 +vt 0.048083 0.623703 +vt 0.000000 0.327174 +vt 0.000000 0.063451 +vt 0.263723 0.063451 +vt 0.263723 0.327174 +vt 0.263488 0.758466 s 0 f 1/1/1 3/2/1 4/3/1 f 4/3/2 5/4/2 6/5/2 @@ -2843,7 +2851,9 @@ f 67/70/567 480/76/567 476/70/567 f 23/24/568 481/10/568 469/24/568 f 321/868/132 323/868/132 325/868/132 f 246/869/132 248/869/132 250/869/132 -f 147/214/153 60/870/153 479/218/153 +f 487/870/66 486/871/66 489/872/66 +f 487/870/66 489/872/66 488/873/66 +f 147/214/153 60/874/153 479/218/153 f 421/859/6 420/701/6 426/713/6 f 423/705/6 422/707/6 416/704/6 f 421/859/6 426/713/6 423/705/6 @@ -3014,275 +3024,275 @@ vn 0.4012 0.9160 -0.0000 vn 1.0000 -0.0023 -0.0000 vn 0.3982 0.9173 0.0006 vn 1.0000 -0.0038 -0.0002 -vt 0.270772 0.021748 -vt 0.259071 0.044520 -vt 0.258022 0.040873 -vt 0.124225 0.297698 -vt 0.000380 0.290063 -vt 0.124223 0.290059 -vt 0.000378 0.282428 -vt 0.124220 0.282425 -vt 0.124223 0.335878 -vt 0.000382 0.328240 -vt 0.124225 0.328243 -vt 0.124227 0.305336 -vt 0.000387 0.312974 -vt 0.000384 0.305339 -vt 0.124221 0.343509 -vt 0.000380 0.335874 -vt 0.000384 0.320605 -vt 0.124227 0.320609 -vt 0.000382 0.297701 -vt 0.124229 0.312974 -vt 0.301296 0.107856 -vt 0.311550 0.080842 -vt 0.315428 0.086659 -vt 0.319568 0.052066 -vt 0.317107 0.080578 -vt 0.317107 0.050600 -vt 0.254931 0.052066 -vt 0.257392 0.080578 -vt 0.254911 0.079099 -vt 0.303748 0.109442 -vt 0.316485 0.090335 -vt 0.316477 0.040872 -vt 0.301296 0.023322 -vt 0.303727 0.021748 -vt 0.278234 0.017112 -vt 0.297242 0.020803 -vt 0.277257 0.020803 -vt 0.270772 0.109430 -vt 0.259071 0.086659 -vt 0.273203 0.107856 -vt 0.278234 0.114066 -vt 0.297242 0.110375 -vt 0.296257 0.114096 -vt 0.297242 0.029029 -vt 0.278257 0.033023 -vt 0.277257 0.029029 -vt 0.311623 0.050600 -vt 0.257392 0.050600 -vt 0.262876 0.080578 -vt 0.315428 0.044519 -vt 0.297418 0.029138 -vt 0.277081 0.102040 -vt 0.277257 0.110375 -vt 0.297242 0.102149 -vt 0.273203 0.023322 -vt 0.262949 0.050336 -vt 0.308960 0.079078 -vt 0.278257 0.098155 -vt 0.265539 0.052100 -vt 0.277257 0.102149 -vt 0.296243 0.098155 -vt 0.311623 0.080578 -vt 0.308960 0.052100 -vt 0.262876 0.050600 -vt 0.265539 0.079078 -vt 0.296242 0.033023 -vt 0.189118 0.066082 -vt 0.194118 0.093837 -vt 0.187203 0.068873 -vt 0.246869 0.062649 -vt 0.244287 0.031805 -vt 0.251935 0.059501 -vt 0.246935 0.093837 -vt 0.251935 0.066083 -vt 0.253850 0.068873 -vt 0.196766 0.031805 -vt 0.187203 0.056711 -vt 0.194097 0.031747 -vt 0.246956 0.031747 -vt 0.253850 0.056711 -vt 0.222720 0.109905 -vt 0.241223 0.102404 -vt 0.224565 0.112754 -vt 0.199830 0.102404 -vt 0.218332 0.109905 -vt 0.216488 0.112754 -vt 0.216488 0.012829 -vt 0.199869 0.027151 -vt 0.199830 0.023147 -vt 0.241184 0.027151 -vt 0.224565 0.012829 -vt 0.241223 0.023147 -vt 0.203910 0.087717 -vt 0.220431 0.102305 -vt 0.201967 0.090833 -vt 0.239221 0.090631 -vt 0.244287 0.093779 -vt 0.201832 0.034953 -vt 0.189118 0.059501 -vt 0.220622 0.102305 -vt 0.241184 0.098433 -vt 0.220431 0.023279 -vt 0.218333 0.015679 -vt 0.199868 0.098433 -vt 0.239086 0.034751 -vt 0.222720 0.015679 -vt 0.194184 0.062935 -vt 0.196766 0.093779 -vt 0.197027 0.062792 -vt 0.220527 0.027543 -vt 0.244026 0.062792 -vt 0.237143 0.037867 -vt 0.220622 0.023278 -vt 0.201832 0.090631 -vt 0.239221 0.034953 -vt 0.237143 0.087717 -vt 0.246869 0.062935 -vt 0.203910 0.037867 -vt 0.194184 0.062649 -vt 0.239086 0.090833 -vt 0.201967 0.034750 -vt 0.000378 0.343505 -vt 0.297419 0.102040 -vt 0.319588 0.079099 -vt 0.296265 0.017112 -vt 0.258014 0.090336 -vt 0.311550 0.050336 -vt 0.262949 0.080842 -vt 0.277081 0.029138 -vt 0.220526 0.098041 -vt 0.137874 0.461278 -vt 0.058604 0.420707 -vt 0.138976 0.425869 -vt 0.064584 0.393192 -vt 0.133379 0.393550 -vt 0.134776 0.484662 -vt 0.059414 0.457228 -vt 0.062578 0.483566 +vt 0.270772 0.347832 +vt 0.259071 0.363013 +vt 0.258022 0.360582 +vt 0.124225 0.531799 +vt 0.000380 0.526709 +vt 0.124223 0.526706 +vt 0.000378 0.521619 +vt 0.124220 0.521617 +vt 0.124223 0.557252 +vt 0.000382 0.552160 +vt 0.124225 0.552162 +vt 0.124227 0.536891 +vt 0.000387 0.541983 +vt 0.000384 0.536893 +vt 0.124221 0.562339 +vt 0.000380 0.557249 +vt 0.000384 0.547070 +vt 0.124227 0.547073 +vt 0.000382 0.531801 +vt 0.124229 0.541983 +vt 0.301296 0.405237 +vt 0.311550 0.387228 +vt 0.315428 0.391106 +vt 0.319568 0.368044 +vt 0.317107 0.387052 +vt 0.317107 0.367067 +vt 0.254931 0.368044 +vt 0.257392 0.387052 +vt 0.254911 0.386066 +vt 0.303748 0.406295 +vt 0.316485 0.393557 +vt 0.316477 0.360581 +vt 0.301296 0.348881 +vt 0.303727 0.347832 +vt 0.278234 0.344741 +vt 0.297242 0.347202 +vt 0.277257 0.347202 +vt 0.270772 0.406287 +vt 0.259071 0.391106 +vt 0.273203 0.405237 +vt 0.278234 0.409377 +vt 0.297242 0.406917 +vt 0.296257 0.409397 +vt 0.297242 0.352686 +vt 0.278257 0.355349 +vt 0.277257 0.352686 +vt 0.311623 0.367067 +vt 0.257392 0.367067 +vt 0.262876 0.387052 +vt 0.315428 0.363013 +vt 0.297418 0.352759 +vt 0.277081 0.401360 +vt 0.277257 0.406917 +vt 0.297242 0.401433 +vt 0.273203 0.348881 +vt 0.262949 0.366891 +vt 0.308960 0.386052 +vt 0.278257 0.398770 +vt 0.265539 0.368067 +vt 0.277257 0.401433 +vt 0.296243 0.398770 +vt 0.311623 0.387052 +vt 0.308960 0.368067 +vt 0.262876 0.367067 +vt 0.265539 0.386052 +vt 0.296242 0.355349 +vt 0.189118 0.377388 +vt 0.194118 0.395891 +vt 0.187203 0.379249 +vt 0.246869 0.375099 +vt 0.244287 0.354537 +vt 0.251935 0.373001 +vt 0.246935 0.395891 +vt 0.251935 0.377389 +vt 0.253850 0.379249 +vt 0.196766 0.354537 +vt 0.187203 0.371141 +vt 0.194097 0.354498 +vt 0.246956 0.354498 +vt 0.253850 0.371141 +vt 0.222720 0.406603 +vt 0.241223 0.401603 +vt 0.224565 0.408503 +vt 0.199830 0.401603 +vt 0.218332 0.406603 +vt 0.216488 0.408503 +vt 0.216488 0.341886 +vt 0.199869 0.351434 +vt 0.199830 0.348765 +vt 0.241184 0.351434 +vt 0.224565 0.341886 +vt 0.241223 0.348765 +vt 0.203910 0.391811 +vt 0.220431 0.401537 +vt 0.201967 0.393889 +vt 0.239221 0.393754 +vt 0.244287 0.395853 +vt 0.201832 0.356635 +vt 0.189118 0.373001 +vt 0.220622 0.401537 +vt 0.241184 0.398955 +vt 0.220431 0.348853 +vt 0.218333 0.343786 +vt 0.199868 0.398955 +vt 0.239086 0.356501 +vt 0.222720 0.343786 +vt 0.194184 0.375290 +vt 0.196766 0.395853 +vt 0.197027 0.375195 +vt 0.220527 0.351695 +vt 0.244026 0.375195 +vt 0.237143 0.358578 +vt 0.220622 0.348852 +vt 0.201832 0.393754 +vt 0.239221 0.356635 +vt 0.237143 0.391811 +vt 0.246869 0.375290 +vt 0.203910 0.358578 +vt 0.194184 0.375099 +vt 0.239086 0.393889 +vt 0.201967 0.356500 +vt 0.000378 0.562337 +vt 0.297419 0.401360 +vt 0.319588 0.386066 +vt 0.296265 0.344741 +vt 0.258014 0.393557 +vt 0.311550 0.366891 +vt 0.262949 0.387228 +vt 0.277081 0.352759 +vt 0.220526 0.398694 +vt 0.137874 0.640852 +vt 0.058604 0.613805 +vt 0.138976 0.617246 +vt 0.064584 0.595461 +vt 0.133379 0.595700 +vt 0.134776 0.656441 +vt 0.059414 0.638152 +vt 0.062578 0.655711 s 0 -f 487/871/596 489/872/596 486/873/596 -f 491/874/597 493/875/597 490/876/597 -f 490/876/598 495/877/598 494/878/598 -f 497/879/599 499/880/599 496/881/599 -f 487/882/600 500/883/600 501/884/600 -f 494/885/601 498/886/601 497/879/601 -f 496/881/602 503/887/602 502/888/602 -f 487/882/603 492/889/603 491/874/603 -f 502/888/604 500/883/604 486/890/604 -f 505/891/601 507/892/601 504/893/601 -f 490/894/605 504/895/605 508/896/605 -f 486/897/606 509/898/606 502/899/606 -f 497/900/607 504/893/607 494/901/607 -f 490/902/608 510/903/608 491/904/608 -f 487/905/609 510/906/609 488/907/609 -f 496/908/610 509/909/610 511/910/610 -f 496/911/611 505/912/611 497/913/611 -f 513/914/612 515/915/612 512/916/612 -f 504/895/613 516/917/613 508/896/613 -f 489/918/614 518/919/614 509/898/614 -f 508/920/597 513/921/597 510/903/597 -f 509/909/615 519/922/615 511/910/615 -f 510/906/603 512/916/603 488/907/603 -f 511/923/616 506/924/616 505/912/616 -f 488/925/617 517/926/617 489/872/617 -f 521/927/618 523/928/618 525/929/618 -f 519/930/619 522/931/619 506/924/619 -f 517/926/620 515/915/620 525/929/620 -f 507/892/621 522/931/621 521/927/621 -f 507/932/622 520/933/622 516/917/622 -f 517/934/623 524/935/623 518/919/623 -f 513/921/624 520/933/624 514/936/624 -f 519/922/625 524/935/625 523/928/625 -f 526/937/626 501/938/626 500/939/626 -f 529/940/601 531/941/601 528/942/601 -f 493/943/627 528/944/627 495/945/627 -f 533/946/628 500/947/628 503/948/628 -f 528/942/629 498/949/629 495/950/629 -f 534/951/630 493/952/630 492/953/630 -f 501/954/631 534/955/631 492/956/631 -f 499/957/632 533/958/632 503/959/632 -f 531/960/633 499/961/633 498/962/633 -f 537/963/634 539/964/634 536/965/634 -f 540/966/613 528/944/613 532/967/613 -f 541/968/614 526/969/614 533/946/614 -f 539/970/597 532/971/597 534/951/597 -f 543/972/615 533/958/615 535/973/615 -f 536/965/603 534/955/603 527/974/603 -f 530/975/616 535/976/616 531/960/616 -f 542/977/617 527/978/617 526/937/617 -f 545/979/635 547/980/635 549/981/635 -f 548/982/636 543/983/636 530/975/636 -f 545/979/637 536/984/637 542/977/637 -f 529/940/638 548/982/638 530/985/638 -f 544/986/639 529/987/639 540/966/639 -f 546/988/640 542/989/640 541/968/640 -f 539/970/641 544/986/641 540/990/641 -f 543/972/642 546/988/642 541/991/642 -f 487/871/643 488/925/643 489/872/643 -f 491/874/597 492/889/597 493/875/597 -f 490/876/598 493/875/598 495/877/598 -f 497/879/599 498/886/599 499/880/599 -f 487/882/644 486/890/644 500/883/644 -f 494/885/601 495/992/601 498/886/601 -f 496/881/602 499/880/602 503/887/602 -f 487/882/603 501/884/603 492/889/603 -f 502/888/614 503/887/614 500/883/614 -f 505/891/601 506/993/601 507/892/601 -f 490/894/645 494/994/645 504/895/645 -f 486/897/646 489/918/646 509/898/646 -f 497/900/607 505/891/607 504/893/607 -f 490/902/608 508/920/608 510/903/608 -f 487/905/609 491/995/609 510/906/609 -f 496/908/647 502/996/647 509/909/647 -f 496/911/648 511/923/648 505/912/648 -f 513/914/612 514/936/612 515/915/612 -f 504/895/613 507/932/613 516/917/613 -f 489/918/614 517/934/614 518/919/614 -f 508/920/597 516/997/597 513/921/597 -f 509/909/615 518/998/615 519/922/615 -f 510/906/603 513/914/603 512/916/603 -f 511/923/616 519/930/616 506/924/616 -f 488/925/617 512/999/617 517/926/617 -f 514/936/618 520/933/618 521/927/618 -f 521/927/618 522/931/618 523/928/618 -f 523/928/618 524/935/618 525/929/618 -f 525/929/618 515/915/618 514/936/618 -f 514/936/618 521/927/618 525/929/618 -f 519/930/619 523/928/619 522/931/619 -f 517/926/620 512/999/620 515/915/620 -f 507/892/621 506/993/621 522/931/621 -f 507/932/622 521/927/622 520/933/622 -f 517/934/623 525/929/623 524/935/623 -f 513/921/624 516/997/624 520/933/624 -f 519/922/625 518/998/625 524/935/625 -f 526/937/649 527/978/649 501/938/649 -f 529/940/601 530/985/601 531/941/601 -f 493/943/650 532/967/650 528/944/650 -f 533/946/628 526/969/628 500/947/628 -f 528/942/629 531/941/629 498/949/629 -f 534/951/630 532/971/630 493/952/630 -f 501/954/631 527/974/631 534/955/631 -f 499/957/651 535/973/651 533/958/651 -f 531/960/652 535/976/652 499/961/652 -f 537/963/634 538/1000/634 539/964/634 -f 540/966/613 529/987/613 528/944/613 -f 541/968/614 542/989/614 526/969/614 -f 539/970/597 540/990/597 532/971/597 -f 543/972/615 541/991/615 533/958/615 -f 536/965/603 539/964/603 534/955/603 -f 530/975/616 543/983/616 535/976/616 -f 542/977/617 536/984/617 527/978/617 -f 549/981/635 544/986/635 538/1000/635 -f 538/1000/635 537/963/635 545/979/635 -f 545/979/635 546/988/635 547/980/635 -f 547/980/635 548/982/635 549/981/635 -f 549/981/635 538/1000/635 545/979/635 -f 548/982/636 547/980/636 543/983/636 -f 545/979/637 537/963/637 536/984/637 -f 529/940/638 549/981/638 548/982/638 -f 544/986/639 549/981/639 529/987/639 -f 546/988/640 545/979/640 542/989/640 -f 539/970/641 538/1000/641 544/986/641 -f 543/972/642 547/980/642 546/988/642 -f 555/1001/653 552/1002/653 554/1003/653 -f 554/1003/654 556/1004/654 553/1005/654 -f 557/1006/655 550/1007/655 555/1001/655 -f 555/1001/653 550/1007/653 552/1002/653 -f 554/1003/656 552/1002/656 556/1004/656 -f 557/1006/657 551/1008/657 550/1007/657 +f 491/875/596 493/876/596 490/877/596 +f 495/878/597 497/879/597 494/880/597 +f 494/880/598 499/881/598 498/882/598 +f 501/883/599 503/884/599 500/885/599 +f 491/886/600 504/887/600 505/888/600 +f 498/889/601 502/890/601 501/883/601 +f 500/885/602 507/891/602 506/892/602 +f 491/886/603 496/893/603 495/878/603 +f 506/892/604 504/887/604 490/894/604 +f 509/895/601 511/896/601 508/897/601 +f 494/898/605 508/899/605 512/900/605 +f 490/901/606 513/902/606 506/903/606 +f 501/904/607 508/897/607 498/905/607 +f 494/906/608 514/907/608 495/908/608 +f 491/909/609 514/910/609 492/911/609 +f 500/912/610 513/913/610 515/914/610 +f 500/915/611 509/916/611 501/917/611 +f 517/918/612 519/919/612 516/920/612 +f 508/899/613 520/921/613 512/900/613 +f 493/922/614 522/923/614 513/902/614 +f 512/924/597 517/925/597 514/907/597 +f 513/913/615 523/926/615 515/914/615 +f 514/910/603 516/920/603 492/911/603 +f 515/927/616 510/928/616 509/916/616 +f 492/929/617 521/930/617 493/876/617 +f 525/931/618 527/932/618 529/933/618 +f 523/934/619 526/935/619 510/928/619 +f 521/930/620 519/919/620 529/933/620 +f 511/896/621 526/935/621 525/931/621 +f 511/936/622 524/937/622 520/921/622 +f 521/938/623 528/939/623 522/923/623 +f 517/925/624 524/937/624 518/940/624 +f 523/926/625 528/939/625 527/932/625 +f 530/941/626 505/942/626 504/943/626 +f 533/944/601 535/945/601 532/946/601 +f 497/947/627 532/948/627 499/949/627 +f 537/950/628 504/951/628 507/952/628 +f 532/946/629 502/953/629 499/954/629 +f 538/955/630 497/956/630 496/957/630 +f 505/958/631 538/959/631 496/960/631 +f 503/961/632 537/962/632 507/963/632 +f 535/964/633 503/965/633 502/966/633 +f 541/967/634 543/968/634 540/969/634 +f 544/970/613 532/948/613 536/971/613 +f 545/972/614 530/973/614 537/950/614 +f 543/974/597 536/975/597 538/955/597 +f 547/976/615 537/962/615 539/977/615 +f 540/969/603 538/959/603 531/978/603 +f 534/979/616 539/980/616 535/964/616 +f 546/981/617 531/982/617 530/941/617 +f 549/983/635 551/984/635 553/985/635 +f 552/986/636 547/987/636 534/979/636 +f 549/983/637 540/988/637 546/981/637 +f 533/944/638 552/986/638 534/989/638 +f 548/990/639 533/991/639 544/970/639 +f 550/992/640 546/993/640 545/972/640 +f 543/974/641 548/990/641 544/994/641 +f 547/976/642 550/992/642 545/995/642 +f 491/875/643 492/929/643 493/876/643 +f 495/878/597 496/893/597 497/879/597 +f 494/880/598 497/879/598 499/881/598 +f 501/883/599 502/890/599 503/884/599 +f 491/886/644 490/894/644 504/887/644 +f 498/889/601 499/996/601 502/890/601 +f 500/885/602 503/884/602 507/891/602 +f 491/886/603 505/888/603 496/893/603 +f 506/892/614 507/891/614 504/887/614 +f 509/895/601 510/997/601 511/896/601 +f 494/898/645 498/998/645 508/899/645 +f 490/901/646 493/922/646 513/902/646 +f 501/904/607 509/895/607 508/897/607 +f 494/906/608 512/924/608 514/907/608 +f 491/909/609 495/999/609 514/910/609 +f 500/912/647 506/1000/647 513/913/647 +f 500/915/648 515/927/648 509/916/648 +f 517/918/612 518/940/612 519/919/612 +f 508/899/613 511/936/613 520/921/613 +f 493/922/614 521/938/614 522/923/614 +f 512/924/597 520/1001/597 517/925/597 +f 513/913/615 522/1002/615 523/926/615 +f 514/910/603 517/918/603 516/920/603 +f 515/927/616 523/934/616 510/928/616 +f 492/929/617 516/1003/617 521/930/617 +f 518/940/618 524/937/618 525/931/618 +f 525/931/618 526/935/618 527/932/618 +f 527/932/618 528/939/618 529/933/618 +f 529/933/618 519/919/618 518/940/618 +f 518/940/618 525/931/618 529/933/618 +f 523/934/619 527/932/619 526/935/619 +f 521/930/620 516/1003/620 519/919/620 +f 511/896/621 510/997/621 526/935/621 +f 511/936/622 525/931/622 524/937/622 +f 521/938/623 529/933/623 528/939/623 +f 517/925/624 520/1001/624 524/937/624 +f 523/926/625 522/1002/625 528/939/625 +f 530/941/649 531/982/649 505/942/649 +f 533/944/601 534/989/601 535/945/601 +f 497/947/650 536/971/650 532/948/650 +f 537/950/628 530/973/628 504/951/628 +f 532/946/629 535/945/629 502/953/629 +f 538/955/630 536/975/630 497/956/630 +f 505/958/631 531/978/631 538/959/631 +f 503/961/651 539/977/651 537/962/651 +f 535/964/652 539/980/652 503/965/652 +f 541/967/634 542/1004/634 543/968/634 +f 544/970/613 533/991/613 532/948/613 +f 545/972/614 546/993/614 530/973/614 +f 543/974/597 544/994/597 536/975/597 +f 547/976/615 545/995/615 537/962/615 +f 540/969/603 543/968/603 538/959/603 +f 534/979/616 547/987/616 539/980/616 +f 546/981/617 540/988/617 531/982/617 +f 553/985/635 548/990/635 542/1004/635 +f 542/1004/635 541/967/635 549/983/635 +f 549/983/635 550/992/635 551/984/635 +f 551/984/635 552/986/635 553/985/635 +f 553/985/635 542/1004/635 549/983/635 +f 552/986/636 551/984/636 547/987/636 +f 549/983/637 541/967/637 540/988/637 +f 533/944/638 553/985/638 552/986/638 +f 548/990/639 553/985/639 533/991/639 +f 550/992/640 549/983/640 546/993/640 +f 543/974/641 542/1004/641 548/990/641 +f 547/976/642 551/984/642 550/992/642 +f 559/1005/653 556/1006/653 558/1007/653 +f 558/1007/654 560/1008/654 557/1009/654 +f 561/1010/655 554/1011/655 559/1005/655 +f 559/1005/653 554/1011/653 556/1006/653 +f 558/1007/656 556/1006/656 560/1008/656 +f 561/1010/657 555/1012/657 554/1011/657 o Shell v 0.000000 1.558350 0.961217 v 0.132625 1.613285 0.961217 @@ -3389,60 +3399,60 @@ vt 0.416064 0.709256 vt 0.498826 0.763730 vt 0.417116 0.818904 s 0 -f 582/1009/658 559/1010/658 583/1011/658 -f 559/1010/659 584/1012/659 583/1011/659 -f 560/1013/660 585/1014/660 584/1012/660 -f 561/1015/661 586/1016/661 585/1014/661 -f 562/1017/662 587/1018/662 586/1016/662 -f 563/1019/663 588/1020/663 587/1018/663 -f 588/1020/664 565/1021/664 589/1022/664 -f 565/1021/665 582/1023/665 589/1022/665 -f 563/1024/666 572/1025/666 564/1026/666 -f 558/1027/666 566/1028/666 559/1029/666 -f 558/1027/666 573/1030/666 567/1031/666 -f 561/1032/666 568/1033/666 569/1034/666 -f 568/1035/660 577/1036/660 569/1037/660 -f 571/1038/663 580/1039/663 572/1040/663 -f 569/1037/661 578/1041/661 570/1042/661 -f 572/1040/664 581/1043/664 573/1044/664 -f 566/1045/659 576/1046/659 568/1035/659 -f 570/1042/662 579/1047/662 571/1048/662 -f 573/1044/665 575/1049/665 567/1050/665 -f 567/1050/658 574/1051/658 566/1045/658 -f 562/1052/666 569/1034/666 570/1053/666 -f 559/1029/666 568/1033/666 560/1054/666 -f 564/1026/666 573/1030/666 565/1055/666 -f 562/1052/666 571/1056/666 563/1057/666 -f 581/1058/667 579/1059/667 577/1060/667 -f 582/1009/658 558/1061/658 559/1010/658 -f 559/1010/659 560/1013/659 584/1012/659 -f 560/1013/660 561/1015/660 585/1014/660 -f 561/1015/661 562/1017/661 586/1016/661 -f 562/1017/662 563/1019/662 587/1018/662 -f 563/1019/663 564/1062/663 588/1020/663 -f 588/1020/664 564/1062/664 565/1021/664 -f 565/1021/665 558/1063/665 582/1023/665 -f 563/1024/666 571/1064/666 572/1025/666 -f 558/1027/666 567/1031/666 566/1028/666 -f 558/1027/666 565/1055/666 573/1030/666 -f 561/1032/666 560/1054/666 568/1033/666 -f 568/1035/660 576/1046/660 577/1036/660 -f 571/1038/663 579/1065/663 580/1039/663 -f 569/1037/661 577/1036/661 578/1041/661 -f 572/1040/664 580/1039/664 581/1043/664 -f 566/1045/659 574/1051/659 576/1046/659 -f 570/1042/662 578/1041/662 579/1047/662 -f 573/1044/665 581/1043/665 575/1049/665 -f 567/1050/658 575/1049/658 574/1051/658 -f 562/1052/666 561/1032/666 569/1034/666 -f 559/1029/666 566/1028/666 568/1033/666 -f 564/1026/666 572/1025/666 573/1030/666 -f 562/1052/666 570/1053/666 571/1056/666 -f 577/1060/667 576/1066/667 574/1067/667 -f 574/1067/667 575/1068/667 581/1058/667 -f 581/1058/667 580/1069/667 579/1059/667 -f 579/1059/667 578/1070/667 577/1060/667 -f 577/1060/667 574/1067/667 581/1058/667 +f 586/1013/658 563/1014/658 587/1015/658 +f 563/1014/659 588/1016/659 587/1015/659 +f 564/1017/660 589/1018/660 588/1016/660 +f 565/1019/661 590/1020/661 589/1018/661 +f 566/1021/662 591/1022/662 590/1020/662 +f 567/1023/663 592/1024/663 591/1022/663 +f 592/1024/664 569/1025/664 593/1026/664 +f 569/1025/665 586/1027/665 593/1026/665 +f 567/1028/666 576/1029/666 568/1030/666 +f 562/1031/666 570/1032/666 563/1033/666 +f 562/1031/666 577/1034/666 571/1035/666 +f 565/1036/666 572/1037/666 573/1038/666 +f 572/1039/660 581/1040/660 573/1041/660 +f 575/1042/663 584/1043/663 576/1044/663 +f 573/1041/661 582/1045/661 574/1046/661 +f 576/1044/664 585/1047/664 577/1048/664 +f 570/1049/659 580/1050/659 572/1039/659 +f 574/1046/662 583/1051/662 575/1052/662 +f 577/1048/665 579/1053/665 571/1054/665 +f 571/1054/658 578/1055/658 570/1049/658 +f 566/1056/666 573/1038/666 574/1057/666 +f 563/1033/666 572/1037/666 564/1058/666 +f 568/1030/666 577/1034/666 569/1059/666 +f 566/1056/666 575/1060/666 567/1061/666 +f 585/1062/667 583/1063/667 581/1064/667 +f 586/1013/658 562/1065/658 563/1014/658 +f 563/1014/659 564/1017/659 588/1016/659 +f 564/1017/660 565/1019/660 589/1018/660 +f 565/1019/661 566/1021/661 590/1020/661 +f 566/1021/662 567/1023/662 591/1022/662 +f 567/1023/663 568/1066/663 592/1024/663 +f 592/1024/664 568/1066/664 569/1025/664 +f 569/1025/665 562/1067/665 586/1027/665 +f 567/1028/666 575/1068/666 576/1029/666 +f 562/1031/666 571/1035/666 570/1032/666 +f 562/1031/666 569/1059/666 577/1034/666 +f 565/1036/666 564/1058/666 572/1037/666 +f 572/1039/660 580/1050/660 581/1040/660 +f 575/1042/663 583/1069/663 584/1043/663 +f 573/1041/661 581/1040/661 582/1045/661 +f 576/1044/664 584/1043/664 585/1047/664 +f 570/1049/659 578/1055/659 580/1050/659 +f 574/1046/662 582/1045/662 583/1051/662 +f 577/1048/665 585/1047/665 579/1053/665 +f 571/1054/658 579/1053/658 578/1055/658 +f 566/1056/666 565/1036/666 573/1038/666 +f 563/1033/666 570/1032/666 572/1037/666 +f 568/1030/666 576/1029/666 577/1034/666 +f 566/1056/666 574/1057/666 575/1060/666 +f 581/1064/667 580/1070/667 578/1071/667 +f 578/1071/667 579/1072/667 585/1062/667 +f 585/1062/667 584/1073/667 583/1063/667 +f 583/1063/667 582/1074/667 581/1064/667 +f 581/1064/667 578/1071/667 585/1062/667 o Sight v -0.128183 2.091560 2.999992 v 0.128183 2.091560 2.999992 @@ -3479,98 +3489,98 @@ vn 0.0001 -0.9985 -0.0541 vn -0.0001 -0.9985 -0.0541 vn -0.0000 -0.0000 -1.0000 vt 0.276157 1.000043 -vt 0.277845 0.988719 +vt 0.277845 0.992479 vt 0.279031 0.999320 -vt 0.262350 0.883120 -vt 0.272118 0.893652 -vt 0.262350 0.893652 -vt 0.274698 0.990680 -vt 0.275897 0.990665 -vt 0.222326 0.666214 -vt 0.223796 0.675651 -vt 0.221878 0.675521 -vt 0.276984 0.883345 -vt 0.274471 0.883120 -vt 0.209797 0.558857 -vt 0.219735 0.569163 -vt 0.209797 0.569163 -vt 0.225468 0.664276 -vt 0.226612 0.674973 -vt 0.222094 0.558857 -vt 0.223523 0.666167 -vt 0.281111 0.893792 -vt 0.279697 0.988827 -vt 0.228356 0.674554 -vt 0.227211 0.663856 -vt 0.220401 0.664219 -vt 0.217884 0.569235 -vt 0.272118 0.897282 -vt 0.279262 0.893687 -vt 0.219072 0.674722 -vt 0.289130 0.883559 -vt 0.289049 0.893859 -vt 0.272776 0.988740 +vt 0.262350 0.922080 +vt 0.272118 0.929101 +vt 0.262350 0.929101 +vt 0.274698 0.993787 +vt 0.275897 0.993777 +vt 0.222326 0.777476 +vt 0.223796 0.783767 +vt 0.221878 0.783681 +vt 0.276984 0.922230 +vt 0.274471 0.922080 +vt 0.209797 0.705905 +vt 0.219735 0.712775 +vt 0.209797 0.712775 +vt 0.225468 0.776184 +vt 0.226612 0.783315 +vt 0.222094 0.705905 +vt 0.223523 0.777445 +vt 0.281111 0.929195 +vt 0.279697 0.992551 +vt 0.228356 0.783036 +vt 0.227211 0.775904 +vt 0.220401 0.776146 +vt 0.217884 0.712823 +vt 0.272118 0.931521 +vt 0.279262 0.929125 +vt 0.219072 0.783148 +vt 0.289130 0.922373 +vt 0.289049 0.929239 +vt 0.272776 0.992493 vt 0.274236 0.999907 vt 0.271463 0.999118 -vt 0.226877 0.569238 -vt 0.236860 0.558893 -vt 0.236778 0.569413 -vt 0.236749 0.573040 +vt 0.226877 0.712825 +vt 0.236860 0.705929 +vt 0.236778 0.712942 +vt 0.236749 0.715360 vt 0.269746 0.998630 -vt 0.224609 0.558677 -vt 0.218549 0.664294 -vt 0.262350 0.897282 -vt 0.226848 0.572865 -vt 0.271059 0.988251 +vt 0.224609 0.705785 +vt 0.218549 0.776196 +vt 0.262350 0.931521 +vt 0.226848 0.715243 +vt 0.271059 0.992167 s 0 -f 594/1071/668 596/1072/668 593/1073/668 -f 598/1074/669 601/1075/669 600/1076/669 -f 594/1071/670 603/1077/670 595/1078/670 -f 604/1079/670 602/1080/670 594/1081/670 -f 590/1082/671 603/1077/671 597/1083/671 -f 592/1084/668 607/1085/668 606/1086/668 -f 602/1080/669 608/1087/669 609/1088/669 -f 591/1089/672 605/1090/672 604/1079/672 -f 596/1072/672 601/1091/672 611/1092/672 -f 593/1093/673 608/1087/673 612/1094/673 -f 612/1095/671 613/1096/671 607/1085/671 -f 610/1097/674 600/1076/674 601/1075/674 -f 595/1078/675 610/1098/675 596/1072/675 -f 612/1095/668 594/1081/668 593/1099/668 -f 607/1085/676 604/1079/676 612/1095/676 -f 610/1098/668 592/1100/668 606/1101/668 -f 611/1102/669 602/1103/669 609/1104/669 -f 605/1090/669 613/1105/669 608/1087/669 -f 601/1075/669 603/1077/669 611/1102/669 -f 613/1105/669 598/1106/669 600/1107/669 -f 606/1108/674 613/1105/674 600/1107/674 -f 593/1109/673 611/1102/673 609/1104/673 -f 594/1071/668 595/1078/668 596/1072/668 -f 598/1074/669 597/1083/669 601/1075/669 -f 594/1071/670 602/1103/670 603/1077/670 -f 604/1079/670 605/1090/670 602/1080/670 -f 590/1082/671 595/1078/671 603/1077/671 -f 592/1084/668 591/1089/668 607/1085/668 -f 602/1080/669 605/1090/669 608/1087/669 -f 591/1089/672 599/1110/672 605/1090/672 -f 596/1072/672 610/1098/672 601/1091/672 -f 593/1093/673 609/1088/673 608/1087/673 -f 612/1095/671 608/1111/671 613/1096/671 -f 610/1097/674 606/1112/674 600/1076/674 -f 595/1078/676 590/1082/676 610/1098/676 -f 612/1095/668 604/1079/668 594/1081/668 -f 607/1085/675 591/1089/675 604/1079/675 -f 610/1098/668 590/1082/668 592/1100/668 -f 611/1102/669 603/1077/669 602/1103/669 -f 605/1090/669 599/1110/669 613/1105/669 -f 601/1075/669 597/1083/669 603/1077/669 -f 613/1105/669 599/1110/669 598/1106/669 -f 606/1108/674 607/1113/674 613/1105/674 -f 593/1109/673 596/1114/673 611/1102/673 -f 592/1084/677 598/1106/677 591/1089/677 -f 592/1084/677 590/1082/677 597/1083/677 -f 598/1106/677 599/1110/677 591/1089/677 -f 592/1084/677 597/1083/677 598/1106/677 +f 598/1075/668 600/1076/668 597/1077/668 +f 602/1078/669 605/1079/669 604/1080/669 +f 598/1075/670 607/1081/670 599/1082/670 +f 608/1083/670 606/1084/670 598/1085/670 +f 594/1086/671 607/1081/671 601/1087/671 +f 596/1088/668 611/1089/668 610/1090/668 +f 606/1084/669 612/1091/669 613/1092/669 +f 595/1093/672 609/1094/672 608/1083/672 +f 600/1076/672 605/1095/672 615/1096/672 +f 597/1097/673 612/1091/673 616/1098/673 +f 616/1099/671 617/1100/671 611/1089/671 +f 614/1101/674 604/1080/674 605/1079/674 +f 599/1082/675 614/1102/675 600/1076/675 +f 616/1099/668 598/1085/668 597/1103/668 +f 611/1089/676 608/1083/676 616/1099/676 +f 614/1102/668 596/1104/668 610/1105/668 +f 615/1106/669 606/1107/669 613/1108/669 +f 609/1094/669 617/1109/669 612/1091/669 +f 605/1079/669 607/1081/669 615/1106/669 +f 617/1109/669 602/1110/669 604/1111/669 +f 610/1112/674 617/1109/674 604/1111/674 +f 597/1113/673 615/1106/673 613/1108/673 +f 598/1075/668 599/1082/668 600/1076/668 +f 602/1078/669 601/1087/669 605/1079/669 +f 598/1075/670 606/1107/670 607/1081/670 +f 608/1083/670 609/1094/670 606/1084/670 +f 594/1086/671 599/1082/671 607/1081/671 +f 596/1088/668 595/1093/668 611/1089/668 +f 606/1084/669 609/1094/669 612/1091/669 +f 595/1093/672 603/1114/672 609/1094/672 +f 600/1076/672 614/1102/672 605/1095/672 +f 597/1097/673 613/1092/673 612/1091/673 +f 616/1099/671 612/1115/671 617/1100/671 +f 614/1101/674 610/1116/674 604/1080/674 +f 599/1082/676 594/1086/676 614/1102/676 +f 616/1099/668 608/1083/668 598/1085/668 +f 611/1089/675 595/1093/675 608/1083/675 +f 614/1102/668 594/1086/668 596/1104/668 +f 615/1106/669 607/1081/669 606/1107/669 +f 609/1094/669 603/1114/669 617/1109/669 +f 605/1079/669 601/1087/669 607/1081/669 +f 617/1109/669 603/1114/669 602/1110/669 +f 610/1112/674 611/1117/674 617/1109/674 +f 597/1113/673 600/1118/673 615/1106/673 +f 596/1088/677 602/1110/677 595/1093/677 +f 596/1088/677 594/1086/677 601/1087/677 +f 602/1110/677 603/1114/677 595/1093/677 +f 596/1088/677 601/1087/677 602/1110/677 o Loop v 0.406256 1.125653 3.483772 v 0.372781 1.206173 3.302696 @@ -3647,149 +3657,149 @@ vn -0.7060 0.2714 -0.6541 vn -0.7060 0.2715 0.6542 vn -0.4343 -0.3822 0.8157 vn -0.2163 -0.9063 0.3630 -vt 0.187482 0.431554 -vt 0.156855 0.444483 -vt 0.154582 0.431555 -vt 0.181530 0.456662 -vt 0.160534 0.456663 -vt 0.181530 0.470033 -vt 0.160534 0.470034 -vt 0.156855 0.482213 -vt 0.187482 0.495142 -vt 0.154582 0.495142 -vt 0.208478 0.431554 -vt 0.177852 0.444483 -vt 0.175578 0.431554 -vt 0.202527 0.456662 -vt 0.202527 0.470033 -vt 0.177852 0.482213 -vt 0.208479 0.495141 -vt 0.175579 0.495142 -vt 0.229475 0.431554 -vt 0.198848 0.444483 -vt 0.196575 0.431554 -vt 0.227202 0.444483 -vt 0.223523 0.470033 -vt 0.198849 0.482213 -vt 0.229475 0.495141 -vt 0.196575 0.495142 -vt 0.250472 0.431554 -vt 0.219845 0.444483 -vt 0.217572 0.431554 -vt 0.248198 0.444483 -vt 0.223523 0.456662 -vt 0.244520 0.456662 -vt 0.244520 0.470033 -vt 0.219845 0.482212 -vt 0.250472 0.495141 -vt 0.217572 0.495141 -vt 0.238569 0.431554 -vt 0.269195 0.444483 -vt 0.240842 0.444483 -vt 0.265517 0.456662 -vt 0.269195 0.482213 -vt 0.240842 0.482212 -vt 0.238568 0.495141 -vt 0.259565 0.431554 -vt 0.290192 0.444483 -vt 0.261838 0.444483 -vt 0.286513 0.456663 -vt 0.265517 0.470033 -vt 0.290191 0.482213 -vt 0.261838 0.482212 -vt 0.259565 0.495141 -vt 0.280562 0.431554 -vt 0.311188 0.444483 -vt 0.282835 0.444483 -vt 0.307510 0.456663 -vt 0.286513 0.470033 -vt 0.311188 0.482213 -vt 0.282835 0.482213 -vt 0.280561 0.495142 -vt 0.185209 0.444483 -vt 0.185209 0.482213 -vt 0.206205 0.444482 -vt 0.206205 0.482213 -vt 0.227202 0.482212 -vt 0.248198 0.482212 -vt 0.271468 0.431554 -vt 0.271468 0.495142 -vt 0.292465 0.431554 -vt 0.292465 0.495142 -vt 0.313461 0.431555 -vt 0.307510 0.470034 -vt 0.313461 0.495142 +vt 0.187482 0.621036 +vt 0.156855 0.629655 +vt 0.154582 0.621037 +vt 0.181530 0.637775 +vt 0.160534 0.637775 +vt 0.181530 0.646689 +vt 0.160534 0.646689 +vt 0.156855 0.654809 +vt 0.187482 0.663428 +vt 0.154582 0.663428 +vt 0.208478 0.621036 +vt 0.177852 0.629655 +vt 0.175578 0.621036 +vt 0.202527 0.637775 +vt 0.202527 0.646689 +vt 0.177852 0.654809 +vt 0.208479 0.663427 +vt 0.175579 0.663428 +vt 0.229475 0.621036 +vt 0.198848 0.629655 +vt 0.196575 0.621036 +vt 0.227202 0.629655 +vt 0.223523 0.646689 +vt 0.198849 0.654809 +vt 0.229475 0.663427 +vt 0.196575 0.663428 +vt 0.250472 0.621036 +vt 0.219845 0.629655 +vt 0.217572 0.621036 +vt 0.248198 0.629655 +vt 0.223523 0.637775 +vt 0.244520 0.637775 +vt 0.244520 0.646689 +vt 0.219845 0.654808 +vt 0.250472 0.663427 +vt 0.217572 0.663427 +vt 0.238569 0.621036 +vt 0.269195 0.629655 +vt 0.240842 0.629655 +vt 0.265517 0.637775 +vt 0.269195 0.654809 +vt 0.240842 0.654808 +vt 0.238568 0.663427 +vt 0.259565 0.621036 +vt 0.290192 0.629655 +vt 0.261838 0.629655 +vt 0.286513 0.637775 +vt 0.265517 0.646689 +vt 0.290191 0.654809 +vt 0.261838 0.654808 +vt 0.259565 0.663427 +vt 0.280562 0.621036 +vt 0.311188 0.629655 +vt 0.282835 0.629655 +vt 0.307510 0.637775 +vt 0.286513 0.646689 +vt 0.311188 0.654809 +vt 0.282835 0.654809 +vt 0.280561 0.663428 +vt 0.185209 0.629655 +vt 0.185209 0.654809 +vt 0.206205 0.629655 +vt 0.206205 0.654809 +vt 0.227202 0.654808 +vt 0.248198 0.654808 +vt 0.271468 0.621036 +vt 0.271468 0.663428 +vt 0.292465 0.621036 +vt 0.292465 0.663428 +vt 0.313461 0.621037 +vt 0.307510 0.646689 +vt 0.313461 0.663428 s 0 -f 615/1115/678 617/1116/678 614/1117/678 -f 617/1116/679 618/1118/679 619/1119/679 -f 619/1119/680 620/1120/680 621/1121/680 -f 620/1120/681 623/1122/681 621/1121/681 -f 623/1122/682 615/1123/682 614/1124/682 -f 624/1125/683 616/1126/683 615/1127/683 -f 616/1126/684 626/1128/684 618/1118/684 -f 618/1118/685 627/1129/685 620/1120/685 -f 627/1129/686 622/1130/686 620/1120/686 -f 622/1130/687 624/1131/687 615/1132/687 -f 629/1133/688 625/1134/688 624/1135/688 -f 630/1136/689 626/1128/689 625/1134/689 -f 626/1128/690 632/1137/690 627/1129/690 -f 632/1137/691 628/1138/691 627/1129/691 -f 628/1138/692 629/1139/692 624/1140/692 -f 634/1141/693 630/1142/693 629/1143/693 -f 635/1144/694 631/1145/694 630/1142/694 -f 636/1146/695 632/1137/695 631/1145/695 -f 637/1147/696 633/1148/696 632/1137/696 -f 633/1148/697 634/1149/697 629/1150/697 -f 634/1151/698 640/1152/698 635/1153/698 -f 635/1153/699 641/1154/699 636/1146/699 -f 641/1154/700 637/1147/700 636/1146/700 -f 637/1147/701 643/1155/701 638/1156/701 -f 643/1155/702 634/1157/702 638/1156/702 -f 639/1158/703 645/1159/703 640/1160/703 -f 645/1159/704 641/1154/704 640/1160/704 -f 646/1161/705 642/1162/705 641/1154/705 -f 642/1162/706 648/1163/706 643/1164/706 -f 648/1163/707 639/1165/707 643/1164/707 -f 644/1166/708 617/1167/708 645/1168/708 -f 617/1167/709 646/1161/709 645/1168/709 -f 619/1169/710 647/1170/710 646/1161/710 -f 647/1170/711 623/1171/711 648/1172/711 -f 623/1171/712 644/1173/712 648/1172/712 -f 615/1115/678 616/1174/678 617/1116/678 -f 617/1116/679 616/1174/679 618/1118/679 -f 619/1119/680 618/1118/680 620/1120/680 -f 620/1120/681 622/1175/681 623/1122/681 -f 623/1122/682 622/1175/682 615/1123/682 -f 624/1125/683 625/1176/683 616/1126/683 -f 616/1126/684 625/1176/684 626/1128/684 -f 618/1118/685 626/1128/685 627/1129/685 -f 627/1129/686 628/1177/686 622/1130/686 -f 622/1130/687 628/1177/687 624/1131/687 -f 629/1133/688 630/1136/688 625/1134/688 -f 630/1136/689 631/1145/689 626/1128/689 -f 626/1128/713 631/1145/713 632/1137/713 -f 632/1137/691 633/1178/691 628/1138/691 -f 628/1138/714 633/1178/714 629/1139/714 -f 634/1141/693 635/1144/693 630/1142/693 -f 635/1144/694 636/1146/694 631/1145/694 -f 636/1146/695 637/1147/695 632/1137/695 -f 637/1147/696 638/1179/696 633/1148/696 -f 633/1148/697 638/1179/697 634/1149/697 -f 634/1151/698 639/1180/698 640/1152/698 -f 635/1153/699 640/1152/699 641/1154/699 -f 641/1154/700 642/1162/700 637/1147/700 -f 637/1147/701 642/1162/701 643/1155/701 -f 643/1155/715 639/1181/715 634/1157/715 -f 639/1158/703 644/1182/703 645/1159/703 -f 645/1159/704 646/1161/704 641/1154/704 -f 646/1161/705 647/1170/705 642/1162/705 -f 642/1162/706 647/1170/706 648/1163/706 -f 648/1163/716 644/1183/716 639/1165/716 -f 644/1166/708 614/1184/708 617/1167/708 -f 617/1167/709 619/1169/709 646/1161/709 -f 619/1169/710 621/1185/710 647/1170/710 -f 647/1170/711 621/1185/711 623/1171/711 -f 623/1171/717 614/1186/717 644/1173/717 +f 619/1119/678 621/1120/678 618/1121/678 +f 621/1120/679 622/1122/679 623/1123/679 +f 623/1123/680 624/1124/680 625/1125/680 +f 624/1124/681 627/1126/681 625/1125/681 +f 627/1126/682 619/1127/682 618/1128/682 +f 628/1129/683 620/1130/683 619/1131/683 +f 620/1130/684 630/1132/684 622/1122/684 +f 622/1122/685 631/1133/685 624/1124/685 +f 631/1133/686 626/1134/686 624/1124/686 +f 626/1134/687 628/1135/687 619/1136/687 +f 633/1137/688 629/1138/688 628/1139/688 +f 634/1140/689 630/1132/689 629/1138/689 +f 630/1132/690 636/1141/690 631/1133/690 +f 636/1141/691 632/1142/691 631/1133/691 +f 632/1142/692 633/1143/692 628/1144/692 +f 638/1145/693 634/1146/693 633/1147/693 +f 639/1148/694 635/1149/694 634/1146/694 +f 640/1150/695 636/1141/695 635/1149/695 +f 641/1151/696 637/1152/696 636/1141/696 +f 637/1152/697 638/1153/697 633/1154/697 +f 638/1155/698 644/1156/698 639/1157/698 +f 639/1157/699 645/1158/699 640/1150/699 +f 645/1158/700 641/1151/700 640/1150/700 +f 641/1151/701 647/1159/701 642/1160/701 +f 647/1159/702 638/1161/702 642/1160/702 +f 643/1162/703 649/1163/703 644/1164/703 +f 649/1163/704 645/1158/704 644/1164/704 +f 650/1165/705 646/1166/705 645/1158/705 +f 646/1166/706 652/1167/706 647/1168/706 +f 652/1167/707 643/1169/707 647/1168/707 +f 648/1170/708 621/1171/708 649/1172/708 +f 621/1171/709 650/1165/709 649/1172/709 +f 623/1173/710 651/1174/710 650/1165/710 +f 651/1174/711 627/1175/711 652/1176/711 +f 627/1175/712 648/1177/712 652/1176/712 +f 619/1119/678 620/1178/678 621/1120/678 +f 621/1120/679 620/1178/679 622/1122/679 +f 623/1123/680 622/1122/680 624/1124/680 +f 624/1124/681 626/1179/681 627/1126/681 +f 627/1126/682 626/1179/682 619/1127/682 +f 628/1129/683 629/1180/683 620/1130/683 +f 620/1130/684 629/1180/684 630/1132/684 +f 622/1122/685 630/1132/685 631/1133/685 +f 631/1133/686 632/1181/686 626/1134/686 +f 626/1134/687 632/1181/687 628/1135/687 +f 633/1137/688 634/1140/688 629/1138/688 +f 634/1140/689 635/1149/689 630/1132/689 +f 630/1132/713 635/1149/713 636/1141/713 +f 636/1141/691 637/1182/691 632/1142/691 +f 632/1142/714 637/1182/714 633/1143/714 +f 638/1145/693 639/1148/693 634/1146/693 +f 639/1148/694 640/1150/694 635/1149/694 +f 640/1150/695 641/1151/695 636/1141/695 +f 641/1151/696 642/1183/696 637/1152/696 +f 637/1152/697 642/1183/697 638/1153/697 +f 638/1155/698 643/1184/698 644/1156/698 +f 639/1157/699 644/1156/699 645/1158/699 +f 645/1158/700 646/1166/700 641/1151/700 +f 641/1151/701 646/1166/701 647/1159/701 +f 647/1159/715 643/1185/715 638/1161/715 +f 643/1162/703 648/1186/703 649/1163/703 +f 649/1163/704 650/1165/704 645/1158/704 +f 650/1165/705 651/1174/705 646/1166/705 +f 646/1166/706 651/1174/706 652/1167/706 +f 652/1167/716 648/1187/716 643/1169/716 +f 648/1170/708 618/1188/708 621/1171/708 +f 621/1171/709 623/1173/709 650/1165/709 +f 623/1173/710 625/1189/710 651/1174/710 +f 651/1174/711 625/1189/711 627/1175/711 +f 627/1175/717 618/1190/717 648/1177/717 o GuardOuter v -0.171766 0.857316 0.902020 v -0.171766 0.884188 0.902020 @@ -3821,105 +3831,104 @@ vn -0.0000 1.0000 -0.0000 vn -0.0000 -0.0000 1.0000 vn -1.0000 -0.0000 -0.0000 vn 1.0000 -0.0000 -0.0000 -vt 0.107481 0.515568 -vt 0.100711 0.826566 -vt 0.100711 0.515568 -vt 0.200617 0.674832 -vt 0.204562 0.504617 -vt 0.204562 0.674832 -vt 0.189902 0.504617 -vt 0.196672 0.515568 -vt 0.189902 0.515568 -vt 0.196672 0.690063 -vt 0.200617 0.519848 -vt 0.200617 0.690063 -vt 0.025060 0.515568 -vt 0.100711 0.504617 -vt 0.114251 0.515568 -vt 0.002510 0.987540 -vt 0.006455 0.971113 -vt 0.006455 0.987540 -vt 0.006455 0.521044 -vt 0.010401 0.504617 -vt 0.010401 0.521044 -vt 0.107481 0.504617 -vt 0.114251 0.504617 -vt 0.196672 0.705295 -vt 0.018291 0.504617 -vt 0.025060 0.504617 -vt 0.010401 0.971113 -vt 0.014346 0.504617 -vt 0.014346 0.971113 -vt 0.196672 0.519848 -vt 0.200617 0.504617 -vt 0.196672 0.735759 -vt 0.200617 0.720527 -vt 0.200617 0.735759 -vt 0.200617 0.705295 -vt 0.196672 0.720527 -vt 0.002510 0.971113 -vt 0.006455 0.504617 -vt 0.018291 0.826566 -vt 0.018291 0.515568 -vt 0.006455 0.987540 -vt 0.018291 0.504617 -vt 0.014346 0.504617 -vt 0.107481 0.826566 -vt 0.189902 0.826566 -vt 0.200617 0.504617 -vt 0.196672 0.504617 -vt 0.010401 0.504617 -vt 0.002510 0.504617 -vt 0.025060 0.826566 -vt 0.010401 0.987540 -vt 0.018291 0.971113 -vt 0.114251 0.826566 -vt 0.196672 0.826566 +vt 0.107481 0.677045 +vt 0.100711 0.884377 +vt 0.100711 0.677045 +vt 0.200617 0.783221 +vt 0.204562 0.669744 +vt 0.204562 0.783221 +vt 0.189902 0.669744 +vt 0.196672 0.677045 +vt 0.189902 0.677045 +vt 0.196672 0.793376 +vt 0.200617 0.679899 +vt 0.200617 0.793376 +vt 0.025060 0.677045 +vt 0.100711 0.669744 +vt 0.114251 0.677045 +vt 0.002510 0.991693 +vt 0.006455 0.980742 +vt 0.006455 0.991693 +vt 0.006455 0.680696 +vt 0.010401 0.669744 +vt 0.010401 0.680696 +vt 0.107481 0.669744 +vt 0.114251 0.669744 +vt 0.196672 0.803530 +vt 0.018291 0.669744 +vt 0.025060 0.669744 +vt 0.010401 0.980742 +vt 0.014346 0.669744 +vt 0.014346 0.980742 +vt 0.196672 0.679899 +vt 0.200617 0.669744 +vt 0.196672 0.823839 +vt 0.200617 0.813685 +vt 0.200617 0.823839 +vt 0.200617 0.803530 +vt 0.196672 0.813685 +vt 0.002510 0.980742 +vt 0.006455 0.669744 +vt 0.018291 0.884377 +vt 0.018291 0.677045 +vt 0.006455 0.991693 +vt 0.018291 0.669744 +vt 0.107481 0.884377 +vt 0.189902 0.884377 +vt 0.200617 0.669744 +vt 0.196672 0.669744 +vt 0.010401 0.669744 +vt 0.002510 0.669744 +vt 0.025060 0.884377 +vt 0.010401 0.991693 +vt 0.018291 0.980742 +vt 0.114251 0.884377 +vt 0.196672 0.884377 s 0 -f 657/1187/718 666/1188/718 651/1189/718 -f 652/1190/719 655/1191/719 651/1192/719 -f 654/1193/720 661/1194/720 656/1195/720 -f 654/1196/721 649/1197/721 653/1198/721 -f 655/1199/718 649/1200/718 651/1189/718 -f 652/1201/720 654/1193/720 656/1195/720 -f 659/1202/722 657/1203/722 658/1204/722 -f 661/1205/723 663/1206/723 662/1207/723 -f 652/1201/720 659/1208/720 650/1209/720 -f 649/1200/718 657/1187/718 651/1189/718 -f 653/1198/721 664/1210/721 654/1196/721 -f 655/1199/718 663/1211/718 653/1212/718 -f 656/1213/722 668/1214/722 655/1215/722 -f 650/1216/721 658/1217/721 649/1197/721 -f 667/1218/719 672/1219/719 668/1220/719 -f 666/1221/719 669/1222/719 665/1210/719 -f 660/1223/722 670/1224/722 657/1203/722 -f 655/1199/718 672/1225/718 662/1226/718 -f 662/1207/723 671/1227/723 661/1205/723 -f 651/1228/723 665/1215/723 652/1229/723 -f 652/1201/720 669/1230/720 660/1187/720 -f 661/1194/720 667/1231/720 656/1195/720 -f 657/1187/718 670/1230/718 666/1188/718 -f 652/1190/719 656/1232/719 655/1191/719 -f 654/1193/720 664/1233/720 661/1194/720 -f 654/1196/721 650/1216/721 649/1197/721 -f 655/1199/718 653/1212/718 649/1200/718 -f 652/1201/720 650/1209/720 654/1193/720 -f 659/1202/722 660/1223/722 657/1203/722 -f 661/1205/723 664/1224/723 663/1206/723 -f 652/1201/720 660/1187/720 659/1208/720 -f 649/1200/718 658/1208/718 657/1187/718 -f 653/1198/721 663/1221/721 664/1210/721 -f 655/1199/718 662/1226/718 663/1211/718 -f 656/1213/722 667/1234/722 668/1214/722 -f 650/1216/721 659/1233/721 658/1217/721 -f 667/1218/719 671/1222/719 672/1219/719 -f 666/1221/719 670/1219/719 669/1222/719 -f 660/1223/722 669/1235/722 670/1224/722 -f 655/1199/718 668/1236/718 672/1225/718 -f 662/1207/723 672/1237/723 671/1227/723 -f 651/1228/723 666/1238/723 665/1215/723 -f 652/1201/720 665/1239/720 669/1230/720 -f 661/1194/720 671/1240/720 667/1231/720 +f 661/1191/718 670/1192/718 655/1193/718 +f 656/1194/719 659/1195/719 655/1196/719 +f 658/1197/720 665/1198/720 660/1199/720 +f 658/1200/721 653/1201/721 657/1202/721 +f 659/1203/718 653/1204/718 655/1193/718 +f 656/1205/720 658/1197/720 660/1199/720 +f 663/1206/722 661/1207/722 662/1208/722 +f 665/1209/723 667/1210/723 666/1211/723 +f 656/1205/720 663/1212/720 654/1213/720 +f 653/1204/718 661/1191/718 655/1193/718 +f 657/1202/721 668/1214/721 658/1200/721 +f 659/1203/718 667/1215/718 657/1216/718 +f 660/1217/722 672/1218/722 659/1219/722 +f 654/1220/721 662/1221/721 653/1201/721 +f 671/1222/719 676/1223/719 672/1224/719 +f 670/1225/719 673/1226/719 669/1214/719 +f 664/1227/722 674/1228/722 661/1207/722 +f 659/1203/718 676/1229/718 666/1230/718 +f 666/1211/723 675/1231/723 665/1209/723 +f 655/1232/723 669/1219/723 656/1218/723 +f 656/1205/720 673/1233/720 664/1191/720 +f 665/1198/720 671/1234/720 660/1199/720 +f 661/1191/718 674/1233/718 670/1192/718 +f 656/1194/719 660/1235/719 659/1195/719 +f 658/1197/720 668/1236/720 665/1198/720 +f 658/1200/721 654/1220/721 653/1201/721 +f 659/1203/718 657/1216/718 653/1204/718 +f 656/1205/720 654/1213/720 658/1197/720 +f 663/1206/722 664/1227/722 661/1207/722 +f 665/1209/723 668/1228/723 667/1210/723 +f 656/1205/720 664/1191/720 663/1212/720 +f 653/1204/718 662/1212/718 661/1191/718 +f 657/1202/721 667/1225/721 668/1214/721 +f 659/1203/718 666/1230/718 667/1215/718 +f 660/1217/722 671/1237/722 672/1218/722 +f 654/1220/721 663/1236/721 662/1221/721 +f 671/1222/719 675/1226/719 676/1223/719 +f 670/1225/719 674/1223/719 673/1226/719 +f 664/1227/722 673/1238/722 674/1228/722 +f 659/1203/718 672/1239/718 676/1229/718 +f 666/1211/723 676/1240/723 675/1231/723 +f 655/1232/723 670/1241/723 669/1219/723 +f 656/1205/720 669/1242/720 673/1233/720 +f 665/1198/720 675/1243/720 671/1234/720 o GuardInner v 0.161860 0.857316 -0.061518 v 0.161860 0.884188 -0.061518 @@ -3938,8 +3947,8 @@ v -0.057255 0.857316 0.852620 v -0.057255 0.884188 0.852620 v 0.057255 0.884188 0.852620 v 0.161860 0.857316 0.844969 -v -0.161860 0.857316 0.844969 -v -0.161860 0.884188 0.844969 +v -0.161859 0.857316 0.844969 +v -0.161859 0.884188 0.844969 v 0.161860 0.884188 0.844969 vn -0.0000 1.0000 -0.0000 vn 1.0000 -0.0000 -0.0000 @@ -3997,40 +4006,40 @@ vt 0.163307 0.731201 vt 0.176815 0.737326 vt 0.228731 0.981424 s 0 -f 688/1241/724 682/1242/724 687/1243/724 -f 673/1244/725 692/1245/725 689/1246/725 -f 690/1247/726 683/1248/726 686/1249/726 -f 676/1250/727 690/1251/727 691/1252/727 -f 692/1253/724 681/1254/724 688/1241/724 -f 682/1255/728 684/1256/728 683/1257/728 -f 674/1258/729 684/1256/729 681/1259/729 -f 675/1260/730 682/1255/730 683/1257/730 -f 680/1261/724 687/1243/724 679/1262/724 -f 686/1249/726 684/1263/726 685/1264/726 -f 679/1265/727 686/1266/727 678/1267/727 -f 678/1268/726 685/1264/726 677/1269/726 -f 677/1270/725 688/1271/725 680/1272/725 -f 684/1263/726 689/1253/726 685/1264/726 -f 682/1242/724 691/1273/724 687/1243/724 -f 689/1274/731 688/1275/731 685/1260/731 -f 687/1276/732 690/1277/732 686/1278/732 -f 688/1241/724 681/1254/724 682/1242/724 -f 673/1244/725 674/1279/725 692/1245/725 -f 690/1247/726 675/1280/726 683/1248/726 -f 676/1250/727 675/1281/727 690/1251/727 -f 692/1253/724 674/1282/724 681/1254/724 -f 682/1255/728 681/1259/728 684/1256/728 -f 674/1258/729 673/1283/729 684/1256/729 -f 675/1260/730 676/1275/730 682/1255/730 -f 680/1261/724 688/1241/724 687/1243/724 -f 686/1249/726 683/1248/726 684/1263/726 -f 679/1265/727 687/1284/727 686/1266/727 -f 678/1268/726 686/1249/726 685/1264/726 -f 677/1270/725 685/1285/725 688/1271/725 -f 684/1263/726 673/1282/726 689/1253/726 -f 682/1242/724 676/1286/724 691/1273/724 -f 689/1274/731 692/1265/731 688/1275/731 -f 687/1276/732 691/1283/732 690/1277/732 +f 692/1244/724 686/1245/724 691/1246/724 +f 677/1247/725 696/1248/725 693/1249/725 +f 694/1250/726 687/1251/726 690/1252/726 +f 680/1253/727 694/1254/727 695/1255/727 +f 696/1256/724 685/1257/724 692/1244/724 +f 686/1258/728 688/1259/728 687/1260/728 +f 678/1261/729 688/1259/729 685/1262/729 +f 679/1263/730 686/1258/730 687/1260/730 +f 684/1264/724 691/1246/724 683/1265/724 +f 690/1252/726 688/1266/726 689/1267/726 +f 683/1268/727 690/1269/727 682/1270/727 +f 682/1271/726 689/1267/726 681/1272/726 +f 681/1273/725 692/1274/725 684/1275/725 +f 688/1266/726 693/1256/726 689/1267/726 +f 686/1245/724 695/1276/724 691/1246/724 +f 693/1277/731 692/1278/731 689/1263/731 +f 691/1279/732 694/1280/732 690/1281/732 +f 692/1244/724 685/1257/724 686/1245/724 +f 677/1247/725 678/1282/725 696/1248/725 +f 694/1250/726 679/1283/726 687/1251/726 +f 680/1253/727 679/1284/727 694/1254/727 +f 696/1256/724 678/1285/724 685/1257/724 +f 686/1258/728 685/1262/728 688/1259/728 +f 678/1261/729 677/1286/729 688/1259/729 +f 679/1263/730 680/1278/730 686/1258/730 +f 684/1264/724 692/1244/724 691/1246/724 +f 690/1252/726 687/1251/726 688/1266/726 +f 683/1268/727 691/1287/727 690/1269/727 +f 682/1271/726 690/1252/726 689/1267/726 +f 681/1273/725 689/1288/725 692/1274/725 +f 688/1266/726 677/1285/726 693/1256/726 +f 686/1245/724 680/1289/724 695/1276/724 +f 693/1277/731 696/1268/731 692/1278/731 +f 691/1279/732 695/1286/732 694/1280/732 o ShellFore v 0.000000 1.558350 1.603447 v 0.132625 1.613285 1.603447 @@ -4109,43 +4118,43 @@ vt 0.290267 0.902716 vt 0.331685 0.902716 vt 0.000347 0.902716 s 0 -f 697/1287/733 704/1288/733 696/1288/733 -f 717/1289/734 693/1290/734 700/1291/734 -f 699/1292/735 708/1291/735 707/1292/735 -f 695/1293/736 702/1294/736 694/1294/736 -f 698/1295/737 705/1287/737 697/1287/737 -f 700/1291/738 701/1290/738 708/1291/738 -f 694/1294/739 701/1296/739 693/1296/739 -f 696/1288/740 703/1293/740 695/1293/740 -f 698/1295/741 707/1292/741 706/1295/741 -f 701/1297/742 702/1298/742 709/1299/742 -f 702/1298/743 703/1300/743 709/1299/743 -f 703/1300/744 704/1301/744 709/1299/744 -f 704/1301/745 705/1302/745 709/1299/745 -f 705/1302/746 706/1303/746 709/1299/746 -f 706/1303/747 707/1304/747 709/1299/747 -f 707/1304/748 708/1305/748 709/1299/748 -f 708/1305/749 701/1297/749 709/1299/749 -f 716/1306/750 700/1291/750 699/1292/750 -f 715/1307/751 699/1292/751 698/1295/751 -f 714/1308/752 698/1295/752 697/1287/752 -f 713/1309/753 697/1287/753 696/1288/753 -f 712/1310/754 696/1288/754 695/1293/754 -f 711/1311/755 695/1293/755 694/1294/755 -f 710/1312/756 694/1294/756 693/1296/756 -f 697/1287/733 705/1287/733 704/1288/733 -f 717/1289/734 710/1313/734 693/1290/734 -f 699/1292/735 700/1291/735 708/1291/735 -f 695/1293/736 703/1293/736 702/1294/736 -f 698/1295/737 706/1295/737 705/1287/737 -f 700/1291/738 693/1290/738 701/1290/738 -f 694/1294/739 702/1294/739 701/1296/739 -f 696/1288/740 704/1288/740 703/1293/740 -f 698/1295/741 699/1292/741 707/1292/741 -f 716/1306/750 717/1289/750 700/1291/750 -f 715/1307/751 716/1306/751 699/1292/751 -f 714/1308/752 715/1307/752 698/1295/752 -f 713/1309/753 714/1308/753 697/1287/753 -f 712/1310/754 713/1309/754 696/1288/754 -f 711/1311/755 712/1310/755 695/1293/755 -f 710/1312/756 711/1311/756 694/1294/756 +f 701/1290/733 708/1291/733 700/1291/733 +f 721/1292/734 697/1293/734 704/1294/734 +f 703/1295/735 712/1294/735 711/1295/735 +f 699/1296/736 706/1297/736 698/1297/736 +f 702/1298/737 709/1290/737 701/1290/737 +f 704/1294/738 705/1293/738 712/1294/738 +f 698/1297/739 705/1299/739 697/1299/739 +f 700/1291/740 707/1296/740 699/1296/740 +f 702/1298/741 711/1295/741 710/1298/741 +f 705/1300/742 706/1301/742 713/1302/742 +f 706/1301/743 707/1303/743 713/1302/743 +f 707/1303/744 708/1304/744 713/1302/744 +f 708/1304/745 709/1305/745 713/1302/745 +f 709/1305/746 710/1306/746 713/1302/746 +f 710/1306/747 711/1307/747 713/1302/747 +f 711/1307/748 712/1308/748 713/1302/748 +f 712/1308/749 705/1300/749 713/1302/749 +f 720/1309/750 704/1294/750 703/1295/750 +f 719/1310/751 703/1295/751 702/1298/751 +f 718/1311/752 702/1298/752 701/1290/752 +f 717/1312/753 701/1290/753 700/1291/753 +f 716/1313/754 700/1291/754 699/1296/754 +f 715/1314/755 699/1296/755 698/1297/755 +f 714/1315/756 698/1297/756 697/1299/756 +f 701/1290/733 709/1290/733 708/1291/733 +f 721/1292/734 714/1316/734 697/1293/734 +f 703/1295/735 704/1294/735 712/1294/735 +f 699/1296/736 707/1296/736 706/1297/736 +f 702/1298/737 710/1298/737 709/1290/737 +f 704/1294/738 697/1293/738 705/1293/738 +f 698/1297/739 706/1297/739 705/1299/739 +f 700/1291/740 708/1291/740 707/1296/740 +f 702/1298/741 703/1295/741 711/1295/741 +f 720/1309/750 721/1292/750 704/1294/750 +f 719/1310/751 720/1309/751 703/1295/751 +f 718/1311/752 719/1310/752 702/1298/752 +f 717/1312/753 718/1311/753 701/1290/753 +f 716/1313/754 717/1312/754 700/1291/754 +f 715/1314/755 716/1313/755 699/1296/755 +f 714/1315/756 715/1314/756 698/1297/756 diff --git a/src/main/resources/assets/hbm/models/weapons/flaregun.obj b/src/main/resources/assets/hbm/models/weapons/flaregun.obj new file mode 100644 index 000000000..8d080c39a --- /dev/null +++ b/src/main/resources/assets/hbm/models/weapons/flaregun.obj @@ -0,0 +1,2850 @@ +# Blender v2.79 (sub 0) OBJ File: 'flaregun.blend' +# www.blender.org +o Flare +v 0.882965 4.591380 -2.458135 +v 0.509780 4.964565 -2.458135 +v 0.000000 5.101160 -2.458135 +v -0.509780 4.964565 -2.458135 +v -0.882965 4.591380 -2.458135 +v -1.019560 4.081600 -2.458135 +v -0.882965 3.571820 -2.458135 +v -0.509780 3.198636 -2.458135 +v 0.000000 3.062041 -2.458135 +v 0.509780 3.198636 -2.458135 +v 1.019560 4.081600 -2.458135 +v 0.882964 3.571820 -2.458135 +v 0.882965 4.591380 -2.128838 +v 0.509780 4.964565 -2.128838 +v 0.000000 5.101160 -2.128838 +v -0.509780 4.964565 -2.128838 +v -0.882965 4.591380 -2.128838 +v -1.019560 4.081600 -2.128838 +v -0.882965 3.571820 -2.128838 +v -0.509780 3.198636 -2.128838 +v 0.000000 3.062041 -2.128838 +v 0.509780 3.198636 -2.128838 +v 1.019560 4.081600 -2.128838 +v 0.882964 3.571820 -2.128838 +v 0.767825 4.524904 -2.128838 +v 0.443304 4.849426 -2.128838 +v -0.000000 4.968208 -2.128838 +v -0.443304 4.849426 -2.128838 +v -0.767825 4.524904 -2.128838 +v -0.886608 4.081600 -2.128838 +v -0.767825 3.638296 -2.128838 +v -0.443304 3.313776 -2.128838 +v -0.000000 3.194993 -2.128838 +v 0.443304 3.313776 -2.128838 +v 0.886608 4.081600 -2.128838 +v 0.767824 3.638296 -2.128838 +v 0.767825 4.524904 2.191458 +v 0.443304 4.849426 2.191458 +v -0.000000 4.968208 2.191458 +v -0.443304 4.849426 2.191458 +v -0.767825 4.524904 2.191458 +v -0.886608 4.081600 2.191458 +v -0.767825 3.638296 2.191458 +v -0.443304 3.313776 2.191458 +v -0.000000 3.194993 2.191458 +v 0.443304 3.313776 2.191458 +v 0.886608 4.081600 2.191458 +v 0.767824 3.638296 2.191458 +vt 0.112500 0.250000 +vt 0.115000 0.236667 +vt 0.115000 0.250000 +vt 0.115000 0.223333 +vt 0.112500 0.210000 +vt 0.115000 0.210000 +vt 0.115000 0.183333 +vt 0.112500 0.196667 +vt 0.112500 0.183333 +vt 0.112500 0.263333 +vt 0.115000 0.263333 +vt 0.115000 0.196667 +vt 0.112500 0.290000 +vt 0.115000 0.276667 +vt 0.115000 0.290000 +vt 0.112500 0.316667 +vt 0.115000 0.303333 +vt 0.115000 0.316667 +vt 0.112500 0.223333 +vt 0.112500 0.276667 +vt 0.115000 0.170000 +vt 0.112500 0.170000 +vt 0.115000 0.156667 +vt 0.146256 0.253555 +vt 0.119988 0.233333 +vt 0.146256 0.213112 +vt 0.149838 0.160614 +vt 0.149838 0.206053 +vt 0.120324 0.183333 +vt 0.112500 0.236667 +vt 0.112500 0.303333 +vt 0.112500 0.156667 +vt 0.152666 0.221658 +vt 0.155012 0.233333 +vt 0.152666 0.245008 +vt 0.137500 0.256683 +vt 0.128744 0.253555 +vt 0.122334 0.245008 +vt 0.122334 0.221658 +vt 0.128744 0.213112 +vt 0.137500 0.209983 +vt 0.122960 0.170216 +vt 0.130162 0.160614 +vt 0.140000 0.157099 +vt 0.157039 0.170216 +vt 0.159675 0.183333 +vt 0.157039 0.196450 +vt 0.140000 0.209567 +vt 0.130162 0.206053 +vt 0.122960 0.196450 +vt 0.120000 0.290000 +vt 0.120000 0.303333 +vt 0.120000 0.263333 +vt 0.120000 0.276667 +vt 0.120000 0.170000 +vt 0.120000 0.183333 +vt 0.120000 0.156667 +vt 0.120000 0.236667 +vt 0.120000 0.250000 +vt 0.120000 0.210000 +vt 0.120000 0.223333 +vt 0.120000 0.196667 +vt 0.120000 0.316667 +vt 0.025000 0.250000 +vt 0.025000 0.223333 +vt 0.025000 0.183333 +vt 0.025000 0.263333 +vt 0.025000 0.196667 +vt 0.025000 0.290000 +vt 0.025000 0.316667 +vt 0.025000 0.236667 +vt 0.025000 0.303333 +vt 0.025000 0.276667 +vt 0.025000 0.170000 +vt 0.025000 0.210000 +vt 0.025000 0.156667 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.8660 -0.5000 0.0000 +vn -1.0000 -0.0000 0.0000 +vn -0.8660 0.5000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn 0.5000 -0.8660 0.0000 +vn -0.0000 -1.0000 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.5000 0.8660 0.0000 +vn 0.8660 0.5000 0.0000 +vn 1.0000 -0.0000 0.0000 +s off +f 28/1/1 15/2/1 16/3/1 +f 14/4/1 25/5/1 13/6/1 +f 24/7/1 35/8/1 36/9/1 +f 29/10/1 16/3/1 17/11/1 +f 23/12/1 25/5/1 35/8/1 +f 31/13/1 18/14/1 19/15/1 +f 33/16/1 20/17/1 21/18/1 +f 15/2/1 26/19/1 14/4/1 +f 20/17/1 31/13/1 19/15/1 +f 30/20/1 17/11/1 18/14/1 +f 36/9/1 22/21/1 24/7/1 +f 34/22/1 21/23/1 22/21/1 +f 38/24/1 42/25/1 46/26/1 +f 8/27/2 4/28/2 11/29/2 +f 28/1/1 27/30/1 15/2/1 +f 14/4/1 26/19/1 25/5/1 +f 24/7/1 23/12/1 35/8/1 +f 29/10/1 28/1/1 16/3/1 +f 23/12/1 13/6/1 25/5/1 +f 31/13/1 30/20/1 18/14/1 +f 33/16/1 32/31/1 20/17/1 +f 15/2/1 27/30/1 26/19/1 +f 20/17/1 32/31/1 31/13/1 +f 30/20/1 29/10/1 17/11/1 +f 36/9/1 34/22/1 22/21/1 +f 34/22/1 33/32/1 21/23/1 +f 46/26/1 48/33/1 47/34/1 +f 47/34/1 37/35/1 46/26/1 +f 37/35/1 38/24/1 46/26/1 +f 38/24/1 39/36/1 42/25/1 +f 39/36/1 40/37/1 42/25/1 +f 40/37/1 41/38/1 42/25/1 +f 42/25/1 43/39/1 44/40/1 +f 44/40/1 45/41/1 42/25/1 +f 45/41/1 46/26/1 42/25/1 +f 11/29/2 12/42/2 10/43/2 +f 10/43/2 9/44/2 11/29/2 +f 9/44/2 8/27/2 11/29/2 +f 8/27/2 7/45/2 6/46/2 +f 6/46/2 5/47/2 4/28/2 +f 4/28/2 3/48/2 11/29/2 +f 3/48/2 2/49/2 11/29/2 +f 2/49/2 1/50/2 11/29/2 +f 8/27/2 6/46/2 4/28/2 +s 1 +f 20/17/3 7/51/4 8/52/3 +f 18/14/5 5/53/6 6/54/5 +f 24/7/7 10/55/8 12/56/7 +f 22/21/8 9/57/9 10/55/8 +f 16/3/10 3/58/11 4/59/10 +f 14/4/12 1/60/13 2/61/12 +f 11/62/14 24/7/7 12/56/7 +f 17/11/6 4/59/10 5/53/6 +f 1/60/13 23/12/14 11/62/14 +f 19/15/4 6/54/5 7/51/4 +f 21/18/9 8/52/3 9/63/9 +f 15/2/11 2/61/12 3/58/11 +f 40/64/10 27/30/11 28/1/10 +f 38/65/12 25/5/13 26/19/12 +f 35/8/14 48/66/7 36/9/7 +f 41/67/6 28/1/10 29/10/6 +f 25/5/13 47/68/14 35/8/14 +f 43/69/4 30/20/5 31/13/4 +f 45/70/9 32/31/3 33/16/9 +f 39/71/11 26/19/12 27/30/11 +f 44/72/3 31/13/4 32/31/3 +f 42/73/5 29/10/6 30/20/5 +f 48/66/7 34/22/8 36/9/7 +f 46/74/8 33/32/9 34/22/8 +f 20/17/3 19/15/4 7/51/4 +f 18/14/5 17/11/6 5/53/6 +f 24/7/7 22/21/8 10/55/8 +f 22/21/8 21/23/9 9/57/9 +f 16/3/10 15/2/11 3/58/11 +f 14/4/12 13/6/13 1/60/13 +f 11/62/14 23/12/14 24/7/7 +f 17/11/6 16/3/10 4/59/10 +f 1/60/13 13/6/13 23/12/14 +f 19/15/4 18/14/5 6/54/5 +f 21/18/9 20/17/3 8/52/3 +f 15/2/11 14/4/12 2/61/12 +f 40/64/10 39/71/11 27/30/11 +f 38/65/12 37/75/13 25/5/13 +f 35/8/14 47/68/14 48/66/7 +f 41/67/6 40/64/10 28/1/10 +f 25/5/13 37/75/13 47/68/14 +f 43/69/4 42/73/5 30/20/5 +f 45/70/9 44/72/3 32/31/3 +f 39/71/11 38/65/12 26/19/12 +f 44/72/3 43/69/4 31/13/4 +f 42/73/5 41/67/6 29/10/6 +f 48/66/7 46/74/8 34/22/8 +f 46/74/8 45/76/9 33/32/9 +o Hammer +v 0.745252 1.700511 -4.104497 +v 0.745252 1.813547 -4.151319 +v 0.745252 1.926583 -4.104497 +v 0.745252 1.973404 -3.991461 +v 0.745252 1.926583 -3.878425 +v 0.745252 1.813547 -3.831604 +v 0.745252 1.700511 -3.878425 +v 0.745252 1.653689 -3.991461 +v -0.626225 1.813547 -4.184730 +v -0.626225 1.676885 -4.128123 +v -0.745252 1.700511 -4.104497 +v -0.745252 1.813547 -4.151319 +v 0.626225 1.676885 -4.128123 +v 0.626225 1.813547 -4.184730 +v -0.626225 1.620278 -3.991461 +v -0.745252 1.653689 -3.991461 +v 0.626225 1.620278 -3.991461 +v -0.626225 1.676885 -3.854800 +v -0.745252 1.700511 -3.878425 +v 0.626225 1.676885 -3.854800 +v -0.626225 1.813547 -3.798193 +v -0.745252 1.813547 -3.831604 +v 0.626225 1.813547 -3.798193 +v -0.626225 1.950208 -3.854800 +v -0.745252 1.926583 -3.878425 +v 0.626225 1.950208 -3.854800 +v -0.626225 2.006815 -3.991461 +v -0.745252 1.973404 -3.991461 +v 0.626225 2.006815 -3.991461 +v -0.626225 1.950208 -4.128123 +v -0.745252 1.926583 -4.104497 +v 0.626225 1.950208 -4.128123 +v -0.206205 4.430529 -5.327692 +v -0.206205 4.510303 -5.183657 +v 0.206205 4.510303 -5.183657 +v 0.206205 4.430529 -5.327692 +v 0.206205 4.421892 -4.871769 +v 0.206205 4.372530 -4.722456 +v 0.206205 4.399612 -4.484733 +v 0.206205 4.442521 -4.233756 +v 0.206205 4.459024 -4.063620 +v 0.206205 4.490410 -3.895228 +v 0.206205 4.474938 -3.775805 +v 0.206205 4.611975 -3.495304 +v 0.206205 4.409944 -3.251491 +v 0.206205 4.139801 -3.461582 +v 0.206205 4.039521 -3.813910 +v 0.206205 4.008822 -4.135539 +v 0.206205 3.934636 -4.626007 +v 0.206205 3.845099 -4.867631 +v 0.206205 3.740214 -5.107749 +v 0.206205 4.068292 -5.353975 +v 0.206205 4.292388 -5.408881 +v 0.206205 4.476391 -5.035797 +v -0.206205 4.611975 -3.495304 +v -0.206205 4.409944 -3.251491 +v -0.206205 4.139801 -3.461582 +v -0.206205 4.474938 -3.775805 +v -0.206205 4.399612 -4.484733 +v -0.206205 4.442521 -4.233756 +v -0.206205 3.845099 -4.867631 +v -0.206205 3.934636 -4.626007 +v -0.206205 4.459024 -4.063620 +v -0.206205 4.490410 -3.895228 +v -0.206205 4.008822 -4.135539 +v -0.206205 4.039521 -3.813910 +v -0.206205 3.740214 -5.107749 +v -0.206205 4.372530 -4.722456 +v -0.206205 4.476391 -5.035797 +v -0.206205 4.421892 -4.871769 +v -0.206205 4.292388 -5.408881 +v -0.206205 4.068292 -5.353975 +vt 0.589044 0.875414 +vt 0.591244 0.874200 +vt 0.591244 0.882498 +vt 0.599072 0.881280 +vt 0.599072 0.875472 +vt 0.603428 0.875472 +vt 0.609398 0.934618 +vt 0.605458 0.935216 +vt 0.607800 0.924944 +vt 0.572500 0.826666 +vt 0.565000 0.816666 +vt 0.572500 0.816666 +vt 0.592420 0.913470 +vt 0.587478 0.912434 +vt 0.587032 0.904256 +vt 0.593446 0.875414 +vt 0.594358 0.878348 +vt 0.593446 0.881284 +vt 0.589044 0.881284 +vt 0.588132 0.878348 +vt 0.598170 0.878376 +vt 0.601250 0.874268 +vt 0.604330 0.878376 +vt 0.603428 0.881280 +vt 0.601250 0.882482 +vt 0.601300 0.936164 +vt 0.599674 0.926582 +vt 0.598482 0.936528 +vt 0.595692 0.937222 +vt 0.594344 0.927260 +vt 0.593712 0.936880 +vt 0.589066 0.939906 +vt 0.588506 0.929476 +vt 0.585026 0.935444 +vt 0.611804 0.922966 +vt 0.615782 0.920648 +vt 0.619862 0.927896 +vt 0.611872 0.935708 +vt 0.620770 0.932846 +vt 0.619426 0.935898 +vt 0.617040 0.937660 +vt 0.614590 0.936912 +vt 0.565000 0.826666 +vt 0.613758 0.913438 +vt 0.611736 0.913788 +vt 0.613114 0.903606 +vt 0.608884 0.913078 +vt 0.606004 0.912706 +vt 0.607666 0.902912 +vt 0.601754 0.911736 +vt 0.622638 0.911970 +vt 0.618510 0.916532 +vt 0.619080 0.905870 +vt 0.597728 0.911126 +vt 0.599360 0.901238 +vt 0.591202 0.896848 +vt 0.595268 0.899216 +vt 0.595198 0.912240 +vt 0.586102 0.909316 +vt 0.589916 0.914236 +vt 0.597526 0.878376 +vt 0.595008 0.878348 +vt 0.593906 0.874802 +vt 0.601250 0.873410 +vt 0.598616 0.874864 +vt 0.591244 0.873332 +vt 0.603882 0.874864 +vt 0.588584 0.874802 +vt 0.604974 0.878376 +vt 0.587482 0.878348 +vt 0.603882 0.881886 +vt 0.588584 0.881896 +vt 0.601250 0.883340 +vt 0.591244 0.883366 +vt 0.593906 0.881896 +vt 0.598616 0.881886 +vt 0.565000 0.870000 +vt 0.572500 0.873334 +vt 0.565000 0.873334 +vt 0.572500 0.940000 +vt 0.565000 0.950000 +vt 0.565000 0.940000 +vt 0.565000 0.833334 +vt 0.572500 0.833334 +vt 0.565000 0.853334 +vt 0.572500 0.846666 +vt 0.572500 0.853334 +vt 0.565000 0.840000 +vt 0.572500 0.836666 +vt 0.572500 0.840000 +vt 0.565000 0.856666 +vt 0.572500 0.856666 +vt 0.565000 0.836666 +vt 0.565000 0.846666 +vt 0.565000 0.866666 +vt 0.572500 0.863334 +vt 0.572500 0.866666 +vt 0.572500 0.880000 +vt 0.565000 0.883334 +vt 0.565000 0.880000 +vt 0.565000 0.863334 +vt 0.572500 0.883334 +vt 0.565000 0.896666 +vt 0.572500 0.870000 +vt 0.572500 0.950000 +vt 0.572500 0.896666 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.7700 0.6380 +vn -0.2703 -0.0000 -0.9628 +vn -0.2703 -0.6808 -0.6808 +vn 0.2703 -0.0000 -0.9628 +vn 0.2703 -0.6808 -0.6808 +vn -0.2703 -0.9628 -0.0000 +vn 0.2703 -0.9628 -0.0000 +vn -0.2703 -0.6808 0.6808 +vn 0.2703 -0.6808 0.6808 +vn -0.2703 0.0000 0.9628 +vn 0.2703 0.0000 0.9628 +vn -0.2703 0.6808 0.6808 +vn 0.2703 0.6808 0.6808 +vn -0.2703 0.9628 0.0000 +vn 0.2703 0.9628 0.0000 +vn -0.2703 0.6808 -0.6808 +vn 0.2703 0.6808 -0.6808 +vn 0.0000 0.9902 -0.1397 +vn 0.0000 0.7161 -0.6980 +vn 0.0000 -0.6139 0.7894 +vn 0.0000 0.9868 -0.1621 +vn 0.0000 0.8985 -0.4390 +vn 0.0000 0.9900 -0.1409 +vn 0.0000 0.9912 -0.1326 +vn 0.0000 0.9901 -0.1400 +vn 0.0000 0.9996 -0.0277 +vn 0.0000 0.9947 0.1027 +vn 0.0000 0.9629 0.2697 +vn 0.0000 0.9492 0.3146 +vn 0.0000 0.1450 -0.9894 +vn 0.0000 -0.4278 -0.9039 +vn 0.0000 -0.6003 -0.7998 +s off +f 55/77/15 56/78/15 52/79/15 +f 79/80/16 59/81/16 67/82/16 +f 86/83/15 87/84/15 97/85/15 +f 92/86/17 104/87/17 93/88/17 +f 117/89/16 81/90/16 120/91/16 +f 56/78/15 49/92/15 52/79/15 +f 49/92/15 50/93/15 52/79/15 +f 50/93/15 51/94/15 52/79/15 +f 52/79/15 53/95/15 54/96/15 +f 54/96/15 55/77/15 52/79/15 +f 79/80/16 60/97/16 59/81/16 +f 59/81/16 64/98/16 67/82/16 +f 67/82/16 70/99/16 79/80/16 +f 70/99/16 73/100/16 79/80/16 +f 73/100/16 76/101/16 79/80/16 +f 87/84/15 88/102/15 96/103/15 +f 88/102/15 89/104/15 96/103/15 +f 89/104/15 90/105/15 95/106/15 +f 90/105/15 91/107/15 95/106/15 +f 91/107/15 92/108/15 94/109/15 +f 92/108/15 93/110/15 94/109/15 +f 94/109/15 95/106/15 91/107/15 +f 95/106/15 96/103/15 89/104/15 +f 96/103/15 97/85/15 87/84/15 +f 98/111/15 99/112/15 100/113/15 +f 97/85/15 98/111/15 86/83/15 +f 98/111/15 100/113/15 85/114/15 +f 86/83/15 98/111/15 85/114/15 +f 100/113/15 101/115/15 84/116/15 +f 84/116/15 83/117/15 102/118/15 +f 84/116/15 102/118/15 100/113/15 +f 102/118/15 85/114/15 100/113/15 +f 92/86/17 103/119/17 104/87/17 +f 106/120/16 112/121/16 114/122/16 +f 112/121/16 111/123/16 114/122/16 +f 111/123/16 108/124/16 113/125/16 +f 108/124/16 107/126/16 113/125/16 +f 104/127/16 103/128/16 105/129/16 +f 103/128/16 106/120/16 105/129/16 +f 114/122/16 105/129/16 106/120/16 +f 113/125/16 114/122/16 111/123/16 +f 107/126/16 116/130/16 110/131/16 +f 113/125/16 107/126/16 110/131/16 +f 120/91/16 115/132/16 109/133/16 +f 120/91/16 109/133/16 118/134/16 +f 109/133/16 110/131/16 116/130/16 +f 118/134/16 109/133/16 116/130/16 +f 81/90/16 119/135/16 120/91/16 +f 117/89/16 82/136/16 81/90/16 +f 118/134/16 117/89/16 120/91/16 +s 1 +f 57/137/18 59/81/19 60/97/18 +f 62/138/20 49/92/21 61/139/21 +f 63/140/22 59/81/19 58/141/19 +f 65/142/23 49/92/21 56/78/23 +f 66/143/24 64/98/22 63/140/22 +f 68/144/25 56/78/23 55/77/25 +f 69/145/26 67/82/24 66/143/24 +f 71/146/27 55/77/25 54/96/27 +f 72/147/28 70/99/26 69/145/26 +f 74/148/29 54/96/27 53/95/29 +f 75/149/30 73/100/28 72/147/28 +f 77/150/31 53/95/29 52/79/31 +f 75/149/30 79/80/32 76/101/30 +f 77/150/31 51/94/33 80/151/33 +f 78/152/32 60/97/18 79/80/32 +f 80/151/33 50/93/20 62/138/20 +f 82/153/34 84/154/35 81/155/35 +f 94/156/36 104/157/36 105/158/36 +f 106/159/37 92/86/38 91/160/37 +f 107/161/39 88/162/40 87/163/39 +f 111/164/41 90/165/42 89/166/41 +f 116/167/43 87/163/39 86/168/43 +f 112/169/42 91/160/37 90/165/42 +f 108/170/40 89/166/41 88/162/40 +f 117/171/44 85/172/45 102/173/44 +f 101/174/46 120/175/47 119/176/46 +f 118/177/45 86/168/43 85/172/45 +f 100/178/47 115/179/48 120/175/47 +f 84/154/35 119/176/46 81/155/35 +f 82/153/34 102/173/44 83/180/34 +f 57/137/18 58/141/19 59/81/19 +f 62/138/20 50/93/20 49/92/21 +f 63/140/22 64/98/22 59/81/19 +f 65/142/23 61/139/21 49/92/21 +f 66/143/24 67/82/24 64/98/22 +f 68/144/25 65/142/23 56/78/23 +f 69/145/26 70/99/26 67/82/24 +f 71/146/27 68/144/25 55/77/25 +f 72/147/28 73/100/28 70/99/26 +f 74/148/29 71/146/27 54/96/27 +f 75/149/30 76/101/30 73/100/28 +f 77/150/31 74/148/29 53/95/29 +f 75/149/30 78/152/32 79/80/32 +f 77/150/31 52/79/31 51/94/33 +f 78/152/32 57/137/18 60/97/18 +f 80/151/33 51/94/33 50/93/20 +f 82/153/34 83/180/34 84/154/35 +f 94/156/36 93/181/36 104/157/36 +f 106/159/37 103/119/38 92/86/38 +f 107/161/39 108/170/40 88/162/40 +f 111/164/41 112/169/42 90/165/42 +f 116/167/43 107/161/39 87/163/39 +f 112/169/42 106/159/37 91/160/37 +f 108/170/40 111/164/41 89/166/41 +f 117/171/44 118/177/45 85/172/45 +f 101/174/46 100/178/47 120/175/47 +f 118/177/45 116/167/43 86/168/43 +f 100/178/47 99/182/48 115/179/48 +f 84/154/35 101/174/46 119/176/46 +f 82/153/34 117/171/44 102/173/44 +o Barrel +v 0.731983 1.964559 1.588737 +v 0.731983 2.154102 1.510226 +v 0.731983 2.343645 1.588737 +v 0.731983 2.422156 1.778280 +v 0.731983 2.343645 1.967823 +v 0.731983 2.154102 2.046335 +v 0.731983 1.964559 1.967823 +v 0.731983 1.886048 1.778280 +v -0.634395 2.154102 1.465021 +v -0.634395 1.932595 1.556772 +v -0.731983 1.964559 1.588737 +v -0.731983 2.154102 1.510226 +v 0.634395 1.932594 1.556772 +v 0.634395 2.154102 1.465021 +v -0.634395 1.840843 1.778280 +v -0.731983 1.886048 1.778280 +v 0.634395 1.840843 1.778280 +v -0.634395 1.932595 1.999788 +v -0.731983 1.964559 1.967823 +v 0.634395 1.932594 1.999788 +v -0.634395 2.154102 2.091539 +v -0.731983 2.154102 2.046335 +v 0.634395 2.154102 2.091539 +v -0.634395 2.375610 1.999788 +v -0.731983 2.343645 1.967823 +v 0.634395 2.375610 1.999788 +v -0.634395 2.467361 1.778280 +v -0.731983 2.422156 1.778280 +v 0.634395 2.467361 1.778280 +v -0.634395 2.375610 1.556772 +v -0.731983 2.343645 1.588737 +v 0.634395 2.375610 1.556772 +v -0.480500 5.241631 -2.458135 +v -0.480500 5.241631 2.917163 +v 0.480500 5.241631 2.917163 +v 0.480500 5.241631 -2.458135 +v 1.160030 4.562099 2.917163 +v 1.160029 4.562099 -2.458135 +v 1.160030 3.601100 2.917163 +v 1.160030 3.601100 -2.458135 +v 0.480500 2.921570 2.917163 +v 0.480500 2.921571 -2.458135 +v -0.480500 2.921570 2.917163 +v -0.480500 2.921571 -2.458135 +v -1.160029 3.601100 2.917163 +v -1.160030 3.601100 -2.458135 +v -1.160029 4.562099 2.917163 +v -0.882965 3.571820 2.917163 +v -1.019560 4.081600 2.917163 +v -0.882965 4.591380 2.917163 +v -0.509780 4.964565 2.917163 +v 0.000000 5.101160 2.917163 +v 0.509780 4.964563 2.917163 +v 0.882965 4.591380 2.917163 +v -1.160030 4.562099 -2.458135 +v 0.882965 4.591380 -2.458135 +v 0.509780 4.964565 -2.458135 +v 0.000000 5.101160 -2.458135 +v -0.509780 4.964565 -2.458135 +v -0.882965 4.591380 -2.458135 +v -1.019560 4.081600 -2.458135 +v -0.882965 3.571820 -2.458135 +v 0.000000 5.224927 2.791627 +v 0.000000 5.224926 8.802454 +v 0.437532 5.137895 8.802454 +v 0.437532 5.137897 2.791627 +v 0.808454 4.890054 8.802454 +v 0.808454 4.890055 2.791627 +v 1.056296 4.519132 8.802454 +v 1.056296 4.519133 2.791627 +v 1.143327 4.081600 8.802454 +v 1.143327 4.081600 2.791627 +v 1.056296 3.644067 8.802454 +v 1.056296 3.644068 2.791627 +v 0.808454 3.273145 8.802454 +v 0.808454 3.273145 2.791627 +v 0.437532 3.025303 8.802454 +v 0.437532 3.025304 2.791627 +v 0.000000 2.938272 8.802454 +v 0.000000 2.938273 2.791627 +v -0.437532 3.025303 8.802454 +v -0.437532 3.025304 2.791627 +v -0.808454 3.273145 8.802454 +v -0.808454 3.273145 2.791627 +v -1.056296 3.644067 8.802454 +v -1.056296 3.644068 2.791627 +v -1.143327 4.081600 8.802454 +v -1.143327 4.081600 2.791627 +v -1.056296 4.519132 8.802454 +v -1.056296 4.519133 2.791627 +v -0.808454 4.890054 8.802454 +v -0.808454 4.890055 2.791627 +v -0.437532 5.137895 8.802454 +v -0.882965 3.571820 8.802454 +v -1.019560 4.081600 8.802454 +v -0.882965 4.591379 8.802453 +v -0.509780 4.964563 8.802455 +v 0.000000 5.101159 8.802455 +v 0.509780 4.964563 8.802455 +v 0.882965 4.591380 8.802454 +v -0.437532 5.137897 2.791627 +v -0.509780 3.198636 -2.458135 +v -0.509780 3.198635 2.917163 +v 0.000000 3.062040 2.917163 +v 0.000000 3.062041 -2.458135 +v -0.509780 3.198635 8.802456 +v 0.000000 3.062040 8.802452 +v 0.509780 3.198635 2.917163 +v 0.509780 3.198636 -2.458135 +v 0.509780 3.198635 8.802452 +v 1.019560 4.081600 -2.458135 +v 1.019560 4.081600 2.917163 +v 1.019560 4.081600 8.802454 +v 0.882964 3.571820 -2.458135 +v 0.882965 3.571820 2.917163 +v 0.882965 3.571820 8.802455 +v 0.380419 2.209798 2.878785 +v 0.380419 3.025099 2.869944 +v -0.380419 3.025099 2.869944 +v -0.380419 2.209798 2.878785 +v -0.380419 1.997613 2.520242 +v 0.380419 1.997613 2.520242 +v -0.380419 3.025099 1.369944 +v -0.380419 1.988772 1.369944 +v 0.380419 3.025099 1.369944 +v 0.380419 1.988772 1.369944 +vt 0.303068 0.499090 +vt 0.305662 0.507436 +vt 0.299402 0.510894 +vt 0.311900 0.502596 +vt 0.314444 0.499204 +vt 0.318042 0.510786 +vt 0.402500 0.900000 +vt 0.295000 0.926666 +vt 0.295000 0.900000 +vt 0.402500 0.926666 +vt 0.295000 0.953334 +vt 0.402500 0.740000 +vt 0.295000 0.766666 +vt 0.295000 0.740000 +vt 0.402500 0.766666 +vt 0.295000 0.793334 +vt 0.402500 0.793334 +vt 0.295000 0.820000 +vt 0.402500 0.820000 +vt 0.295000 0.846666 +vt 0.224086 0.536286 +vt 0.223498 0.528860 +vt 0.233744 0.532522 +vt 0.402500 0.846666 +vt 0.295000 0.873334 +vt 0.402500 0.873334 +vt 0.374172 0.391588 +vt 0.373584 0.384172 +vt 0.387224 0.402360 +vt 0.369048 0.457912 +vt 0.358566 0.456996 +vt 0.366964 0.453774 +vt 0.243990 0.481534 +vt 0.233744 0.477874 +vt 0.243402 0.474110 +vt 0.356002 0.509156 +vt 0.366484 0.510072 +vt 0.358086 0.513292 +vt 0.346214 0.428866 +vt 0.354292 0.446270 +vt 0.340652 0.428082 +vt 0.040000 0.806666 +vt 0.055000 0.786667 +vt 0.055000 0.806666 +vt 0.060000 0.806666 +vt 0.060000 0.786667 +vt 0.077500 0.920000 +vt 0.077500 0.893334 +vt 0.100000 0.893334 +vt 0.032500 0.920000 +vt 0.032500 0.900000 +vt 0.040000 0.893334 +vt 0.080000 0.806666 +vt 0.305662 0.502548 +vt 0.303068 0.510894 +vt 0.296808 0.507436 +vt 0.296808 0.502548 +vt 0.299402 0.499090 +vt 0.318042 0.499204 +vt 0.320586 0.502596 +vt 0.320586 0.507394 +vt 0.314444 0.510786 +vt 0.311900 0.507394 +vt 0.402500 0.953334 +vt 0.210428 0.518074 +vt 0.210428 0.492320 +vt 0.213252 0.505198 +vt 0.215996 0.491536 +vt 0.251490 0.518860 +vt 0.257060 0.518074 +vt 0.243402 0.536286 +vt 0.243990 0.528860 +vt 0.215996 0.518860 +vt 0.387224 0.428082 +vt 0.373584 0.446270 +vt 0.374172 0.438854 +vt 0.381662 0.428866 +vt 0.353704 0.391588 +vt 0.354292 0.384172 +vt 0.363938 0.387932 +vt 0.384404 0.415222 +vt 0.381662 0.401578 +vt 0.343604 0.466676 +vt 0.349882 0.458304 +vt 0.349144 0.463190 +vt 0.358086 0.453774 +vt 0.375168 0.458304 +vt 0.381446 0.466676 +vt 0.377782 0.465694 +vt 0.384844 0.477614 +vt 0.382428 0.478254 +vt 0.384844 0.489452 +vt 0.381742 0.492230 +vt 0.343308 0.474836 +vt 0.340206 0.477614 +vt 0.257060 0.492320 +vt 0.254236 0.505198 +vt 0.223498 0.481534 +vt 0.224086 0.474110 +vt 0.251490 0.491536 +vt 0.340206 0.489452 +vt 0.342622 0.488812 +vt 0.349882 0.508762 +vt 0.343604 0.500390 +vt 0.347268 0.501374 +vt 0.366964 0.513292 +vt 0.381446 0.500390 +vt 0.375168 0.508762 +vt 0.375906 0.503876 +vt 0.340652 0.402360 +vt 0.346214 0.401578 +vt 0.363938 0.442510 +vt 0.343472 0.415222 +vt 0.353704 0.438854 +vt 0.040000 0.786667 +vt 0.107500 0.900000 +vt 0.107500 0.920000 +vt 0.062500 0.893334 +vt 0.062500 0.920000 +vt 0.080000 0.786667 +vt 0.322118 0.501128 +vt 0.319144 0.497162 +vt 0.307558 0.507848 +vt 0.307558 0.502136 +vt 0.322448 0.507798 +vt 0.322448 0.502192 +vt 0.304192 0.497010 +vt 0.322118 0.508864 +vt 0.303378 0.496560 +vt 0.299092 0.496560 +vt 0.318346 0.513268 +vt 0.295248 0.501050 +vt 0.313342 0.512828 +vt 0.294912 0.502136 +vt 0.294912 0.507848 +vt 0.310038 0.502192 +vt 0.310038 0.507798 +vt 0.298278 0.512974 +vt 0.310368 0.501128 +vt 0.299092 0.513422 +vt 0.303378 0.513422 +vt 0.318346 0.496722 +vt 0.314140 0.496722 +vt 0.307222 0.508934 +vt 0.290000 0.913334 +vt 0.170000 0.926666 +vt 0.170000 0.913334 +vt 0.290000 0.926666 +vt 0.170000 0.940000 +vt 0.290000 0.940000 +vt 0.170000 0.953334 +vt 0.290000 0.740000 +vt 0.170000 0.753334 +vt 0.170000 0.740000 +vt 0.290000 0.753334 +vt 0.170000 0.766666 +vt 0.290000 0.766666 +vt 0.170000 0.780000 +vt 0.290000 0.780000 +vt 0.170000 0.793334 +vt 0.290000 0.793334 +vt 0.170000 0.806666 +vt 0.290000 0.806666 +vt 0.170000 0.820000 +vt 0.290000 0.820000 +vt 0.170000 0.833334 +vt 0.290000 0.833334 +vt 0.170000 0.846666 +vt 0.290000 0.846666 +vt 0.170000 0.860000 +vt 0.290000 0.860000 +vt 0.170000 0.873334 +vt 0.290000 0.873334 +vt 0.170000 0.886666 +vt 0.290000 0.886666 +vt 0.170000 0.900000 +vt 0.290000 0.900000 +vt 0.295000 0.610000 +vt 0.402500 0.596666 +vt 0.402500 0.610000 +vt 0.290000 0.610000 +vt 0.172500 0.596666 +vt 0.290000 0.596666 +vt 0.295000 0.596666 +vt 0.402500 0.583334 +vt 0.290000 0.583334 +vt 0.295000 0.556666 +vt 0.402500 0.543334 +vt 0.402500 0.556666 +vt 0.172500 0.556666 +vt 0.290000 0.543334 +vt 0.290000 0.556666 +vt 0.295000 0.623334 +vt 0.402500 0.623334 +vt 0.172500 0.623334 +vt 0.290000 0.623334 +vt 0.402500 0.570000 +vt 0.172500 0.570000 +vt 0.290000 0.570000 +vt 0.295000 0.636666 +vt 0.402500 0.636666 +vt 0.172500 0.636666 +vt 0.290000 0.636666 +vt 0.295000 0.650000 +vt 0.402500 0.650000 +vt 0.172500 0.650000 +vt 0.290000 0.650000 +vt 0.295000 0.663334 +vt 0.402500 0.663334 +vt 0.290000 0.663334 +vt 0.295000 0.690000 +vt 0.402500 0.676666 +vt 0.402500 0.690000 +vt 0.172500 0.690000 +vt 0.290000 0.676666 +vt 0.290000 0.690000 +vt 0.295000 0.676666 +vt 0.172500 0.676666 +vt 0.295000 0.703334 +vt 0.402500 0.703334 +vt 0.172500 0.703334 +vt 0.290000 0.703334 +vt 0.295000 0.583334 +vt 0.172500 0.583334 +vt 0.307222 0.501050 +vt 0.319144 0.512828 +vt 0.314140 0.513268 +vt 0.298278 0.497010 +vt 0.310368 0.508864 +vt 0.295248 0.508934 +vt 0.313342 0.497164 +vt 0.304192 0.512974 +vt 0.290000 0.953334 +vt 0.172500 0.610000 +vt 0.295000 0.543334 +vt 0.172500 0.543334 +vt 0.295000 0.570000 +vt 0.172500 0.663334 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.7071 0.7071 0.0000 +vn 0.7071 -0.7071 0.0000 +vn 0.0000 -1.0000 -0.0000 +vn -0.7071 -0.7071 -0.0000 +vn -0.0000 0.0000 1.0000 +vn -0.7071 0.7071 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 0.0108 0.9999 +vn 0.0000 -0.8606 0.5093 +vn 0.0000 -1.0000 0.0077 +vn -0.4203 -0.6416 -0.6416 +vn -0.4203 0.0000 -0.9074 +vn 0.4203 0.0000 -0.9074 +vn 0.4203 -0.6416 -0.6416 +vn -0.4203 -0.9074 0.0000 +vn 0.4203 -0.9074 0.0000 +vn -0.4203 -0.6416 0.6416 +vn 0.4203 -0.6416 0.6416 +vn -0.4203 0.0000 0.9074 +vn 0.4203 0.0000 0.9074 +vn -0.4203 0.6416 0.6416 +vn 0.4203 0.6416 0.6416 +vn -0.4203 0.9074 0.0000 +vn 0.4203 0.9074 0.0000 +vn -0.4203 0.6416 -0.6416 +vn 0.4203 0.6416 -0.6416 +vn 0.3827 0.9239 0.0000 +vn 0.9239 0.3827 0.0000 +vn 0.9239 -0.3827 -0.0000 +vn 0.3827 -0.9239 -0.0000 +vn -0.3827 -0.9239 -0.0000 +vn -0.9239 -0.3827 -0.0000 +vn -0.9239 0.3827 0.0000 +vn -0.3827 0.9239 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5000 0.8660 0.0000 +vn -0.8660 -0.5000 0.0000 +vn 0.8660 0.5000 0.0000 +vn -0.8660 0.5000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn 0.5000 -0.8660 0.0000 +vn -0.5000 -0.8660 -0.0000 +s off +f 128/183/49 122/184/49 124/185/49 +f 148/186/50 151/187/50 139/188/50 +f 154/189/51 156/190/51 153/191/51 +f 155/192/52 158/193/52 156/190/52 +f 157/194/49 160/195/49 158/196/49 +f 159/197/53 162/198/53 160/195/53 +f 161/199/54 164/200/54 162/198/54 +f 163/201/55 166/202/55 164/200/55 +f 154/203/56 171/204/56 172/205/56 +f 165/206/50 175/207/50 166/202/50 +f 167/208/57 153/191/57 175/207/57 +f 180/209/58 175/210/58 153/211/58 +f 217/212/56 218/213/56 213/214/56 +f 228/215/56 224/216/56 161/217/56 +f 230/218/56 227/219/56 197/220/56 +f 229/221/58 160/222/58 162/223/58 +f 238/224/59 240/225/59 237/226/59 +f 242/227/60 240/225/60 241/228/60 +f 243/229/50 244/230/50 241/231/50 +f 238/232/49 237/233/49 242/234/49 +f 241/228/61 246/235/61 242/227/61 +f 128/183/49 121/236/49 122/184/49 +f 122/184/49 123/237/49 124/185/49 +f 124/185/49 125/238/49 128/183/49 +f 125/238/49 126/239/49 128/183/49 +f 126/239/49 127/240/49 128/183/49 +f 151/187/50 132/241/50 139/188/50 +f 132/241/50 131/242/50 139/188/50 +f 131/242/50 136/243/50 139/188/50 +f 139/188/50 142/244/50 145/245/50 +f 145/245/50 148/186/50 139/188/50 +f 154/189/51 155/192/51 156/190/51 +f 155/192/52 157/246/52 158/193/52 +f 157/194/49 159/197/49 160/195/49 +f 159/197/53 161/199/53 162/198/53 +f 161/199/54 163/201/54 164/200/54 +f 163/201/55 165/206/55 166/202/55 +f 167/247/56 165/248/56 169/249/56 +f 165/248/56 168/250/56 169/249/56 +f 174/251/56 157/252/56 155/253/56 +f 173/254/56 174/251/56 155/253/56 +f 167/247/56 169/249/56 170/255/56 +f 167/247/56 170/255/56 154/203/56 +f 170/255/56 171/204/56 154/203/56 +f 173/254/56 155/253/56 172/205/56 +f 155/253/56 154/203/56 172/205/56 +f 165/206/50 167/208/50 175/207/50 +f 167/208/57 154/189/57 153/191/57 +f 156/256/58 158/257/58 176/258/58 +f 156/256/58 176/258/58 177/259/58 +f 182/260/58 166/261/58 181/262/58 +f 166/261/58 175/210/58 181/262/58 +f 153/211/58 156/256/58 178/263/58 +f 156/256/58 177/259/58 178/263/58 +f 180/209/58 181/262/58 175/210/58 +f 153/211/58 178/263/58 179/264/58 +f 179/264/58 180/209/58 153/211/58 +f 187/265/56 185/266/56 219/267/56 +f 185/266/56 184/268/56 218/213/56 +f 219/267/56 185/266/56 218/213/56 +f 184/268/56 213/214/56 218/213/56 +f 213/214/56 211/269/56 217/212/56 +f 211/269/56 209/270/56 216/271/56 +f 209/270/56 207/272/56 215/273/56 +f 207/272/56 205/274/56 215/273/56 +f 205/274/56 214/275/56 215/273/56 +f 220/276/56 189/277/56 187/265/56 +f 219/267/56 220/276/56 187/265/56 +f 209/270/56 215/273/56 216/271/56 +f 211/269/56 216/271/56 217/212/56 +f 159/278/56 157/252/56 232/279/56 +f 157/252/56 174/251/56 232/279/56 +f 168/250/56 165/248/56 223/280/56 +f 165/248/56 163/281/56 223/280/56 +f 159/278/56 232/279/56 235/282/56 +f 159/278/56 235/282/56 228/215/56 +f 223/280/56 163/281/56 224/216/56 +f 163/281/56 161/217/56 224/216/56 +f 161/217/56 159/278/56 228/215/56 +f 191/283/56 189/277/56 233/284/56 +f 189/277/56 220/276/56 233/284/56 +f 195/285/56 193/286/56 236/287/56 +f 193/286/56 191/283/56 233/284/56 +f 199/288/56 197/220/56 227/219/56 +f 197/220/56 195/285/56 230/218/56 +f 203/289/56 201/290/56 226/291/56 +f 201/290/56 199/288/56 227/219/56 +f 226/291/56 201/290/56 227/219/56 +f 214/275/56 205/274/56 203/289/56 +f 226/291/56 214/275/56 203/289/56 +f 193/286/56 233/284/56 236/287/56 +f 195/285/56 236/287/56 230/218/56 +f 164/292/58 166/261/58 182/260/58 +f 164/292/58 182/260/58 222/293/58 +f 176/258/58 158/257/58 231/294/58 +f 158/257/58 160/222/58 231/294/58 +f 162/223/58 164/292/58 225/295/58 +f 164/292/58 222/293/58 225/295/58 +f 234/296/58 231/294/58 160/222/58 +f 162/223/58 225/295/58 229/221/58 +f 229/221/58 234/296/58 160/222/58 +f 238/224/59 239/297/59 240/225/59 +f 242/227/60 237/226/60 240/225/60 +f 240/298/50 239/299/50 241/231/50 +f 239/299/50 243/229/50 241/231/50 +f 246/300/49 245/301/49 242/234/49 +f 245/301/49 238/232/49 242/234/49 +f 241/228/61 244/302/61 246/235/61 +s 1 +f 130/303/62 132/241/63 129/304/63 +f 134/305/64 121/236/65 133/306/65 +f 135/307/66 131/242/62 130/308/62 +f 137/309/67 121/236/65 128/183/67 +f 135/310/66 139/188/68 136/243/66 +f 137/311/67 127/240/69 140/312/69 +f 138/313/68 142/244/70 139/188/68 +f 143/314/71 127/240/69 126/239/71 +f 141/315/70 145/245/72 142/244/70 +f 143/316/71 125/238/73 146/317/73 +f 147/318/74 145/245/72 144/319/72 +f 149/320/75 125/238/73 124/185/75 +f 147/321/74 151/187/76 148/186/74 +f 149/322/75 123/237/77 152/323/77 +f 129/324/63 151/187/76 150/325/76 +f 134/326/64 123/237/77 122/184/64 +f 184/327/51 186/328/78 183/329/51 +f 185/330/78 188/331/52 186/328/78 +f 187/332/52 190/333/79 188/331/52 +f 189/334/79 192/335/49 190/336/79 +f 191/337/49 194/338/80 192/335/49 +f 193/339/80 196/340/53 194/338/80 +f 195/341/53 198/342/81 196/340/53 +f 197/343/81 200/344/54 198/342/81 +f 199/345/54 202/346/82 200/344/54 +f 201/347/82 204/348/55 202/346/82 +f 203/349/55 206/350/83 204/348/55 +f 205/351/83 208/352/50 206/350/83 +f 207/353/50 210/354/84 208/352/50 +f 209/355/84 212/356/57 210/354/84 +f 211/357/57 221/358/85 212/356/57 +f 213/359/85 183/329/51 221/358/85 +f 223/360/86 225/361/51 222/362/86 +f 223/363/86 227/364/51 224/365/51 +f 224/366/51 229/367/87 225/361/51 +f 227/364/51 228/368/87 224/365/51 +f 232/369/50 176/370/88 231/371/50 +f 233/372/50 174/373/88 232/374/50 +f 168/375/89 222/362/86 182/376/89 +f 214/377/89 223/363/86 168/378/89 +f 234/379/90 232/369/50 231/371/50 +f 236/380/90 232/374/50 235/381/90 +f 169/382/49 182/376/89 181/383/49 +f 215/384/49 168/378/89 169/385/49 +f 170/386/91 181/383/49 180/387/91 +f 216/388/91 169/385/49 170/389/91 +f 171/390/92 180/387/91 179/391/92 +f 171/392/92 216/388/91 170/389/91 +f 173/393/93 178/394/54 177/395/93 +f 219/396/93 172/397/54 173/398/93 +f 172/399/54 179/391/92 178/394/54 +f 218/400/54 171/392/92 172/397/54 +f 174/401/88 177/395/93 176/402/88 +f 220/403/88 173/398/93 174/404/88 +f 228/405/87 234/379/90 229/367/87 +f 230/406/87 235/381/90 228/368/87 +f 130/303/62 131/242/62 132/241/63 +f 134/305/64 122/184/64 121/236/65 +f 135/307/66 136/243/66 131/242/62 +f 137/309/67 133/407/65 121/236/65 +f 135/310/66 138/408/68 139/188/68 +f 137/311/67 128/183/67 127/240/69 +f 138/313/68 141/409/70 142/244/70 +f 143/314/71 140/410/69 127/240/69 +f 141/315/70 144/411/72 145/245/72 +f 143/316/71 126/239/71 125/238/73 +f 147/318/74 148/186/74 145/245/72 +f 149/320/75 146/412/73 125/238/73 +f 147/321/74 150/413/76 151/187/76 +f 149/322/75 124/185/75 123/237/77 +f 129/324/63 132/241/63 151/187/76 +f 134/326/64 152/414/77 123/237/77 +f 184/327/51 185/330/78 186/328/78 +f 185/330/78 187/332/52 188/331/52 +f 187/332/52 189/415/79 190/333/79 +f 189/334/79 191/337/49 192/335/49 +f 191/337/49 193/339/80 194/338/80 +f 193/339/80 195/341/53 196/340/53 +f 195/341/53 197/343/81 198/342/81 +f 197/343/81 199/345/54 200/344/54 +f 199/345/54 201/347/82 202/346/82 +f 201/347/82 203/349/55 204/348/55 +f 203/349/55 205/351/83 206/350/83 +f 205/351/83 207/353/50 208/352/50 +f 207/353/50 209/355/84 210/354/84 +f 209/355/84 211/357/57 212/356/57 +f 211/357/57 213/359/85 221/358/85 +f 213/359/85 184/327/51 183/329/51 +f 223/360/86 224/366/51 225/361/51 +f 223/363/86 226/416/86 227/364/51 +f 224/366/51 228/405/87 229/367/87 +f 227/364/51 230/406/87 228/368/87 +f 232/369/50 174/417/88 176/370/88 +f 233/372/50 220/418/88 174/373/88 +f 168/375/89 223/360/86 222/362/86 +f 214/377/89 226/416/86 223/363/86 +f 234/379/90 235/419/90 232/369/50 +f 236/380/90 233/372/50 232/374/50 +f 169/382/49 168/375/89 182/376/89 +f 215/384/49 214/377/89 168/378/89 +f 170/386/91 169/382/49 181/383/49 +f 216/388/91 215/384/49 169/385/49 +f 171/390/92 170/386/91 180/387/91 +f 171/392/92 217/420/92 216/388/91 +f 173/393/93 172/399/54 178/394/54 +f 219/396/93 218/400/54 172/397/54 +f 172/399/54 171/390/92 179/391/92 +f 218/400/54 217/420/92 171/392/92 +f 174/401/88 173/393/93 177/395/93 +f 220/403/88 219/396/93 173/398/93 +f 228/405/87 235/419/90 234/379/90 +f 230/406/87 236/380/90 235/381/90 +o Gun +v 0.513393 3.167058 -2.968280 +v 0.000000 3.026850 -2.968280 +v 0.000000 3.026850 2.166241 +v 0.412401 3.137352 1.926816 +v 0.518167 3.171832 1.672396 +v -0.513393 3.167058 -2.968280 +v -0.518167 3.171832 1.672396 +v -0.412401 3.137352 1.926816 +v 0.648125 2.914532 2.325881 +v -0.648125 2.914532 2.325881 +v -0.648125 2.694242 2.477893 +v 0.648125 2.694242 2.477893 +v 0.648125 3.202249 -2.603896 +v 0.648125 3.207023 1.672396 +v 0.648125 3.172543 1.926816 +v 0.648125 3.087669 2.138505 +v 0.648125 1.827062 2.466587 +v 0.648125 1.827062 -3.371653 +v 0.648125 3.202249 -3.373368 +v -0.648125 3.202249 -3.373368 +v -0.648125 3.202249 -2.603896 +v -0.648125 3.482961 -2.583913 +v -0.648125 3.482961 -3.353385 +v 0.410225 1.557572 2.449717 +v -0.648125 1.827062 2.466587 +v -0.410225 1.557569 2.449717 +v -0.648125 3.087669 2.138505 +v -0.648125 3.172543 1.926816 +v -0.648125 3.207023 1.672396 +v 1.038337 -3.794194 -8.814981 +v 1.038337 -3.162951 -8.684003 +v 1.038337 -2.579798 -8.560258 +v 1.038337 -1.996350 -8.402351 +v 1.038337 -1.120453 -8.045218 +v 1.038337 -0.091451 -7.476527 +v 1.038337 0.441162 -7.089207 +v 1.038337 1.112446 -6.400294 +v 1.038337 1.220466 -6.142394 +v 1.038337 1.005753 -5.478510 +v 1.038337 0.750945 -5.306003 +v 1.038337 0.223651 -5.215686 +v 1.038337 -0.101480 -5.453102 +v 1.038337 -0.769097 -5.873155 +v 1.038337 -1.364660 -6.016363 +v 1.038337 -2.303804 -6.153728 +v 1.038337 -3.304539 -6.180392 +v 1.038337 -4.531919 -6.132348 +v 1.038337 -5.079535 -6.119195 +v 1.038337 -5.072083 -8.828292 +v 1.038337 -4.355278 -8.863739 +v 0.677363 -5.419761 -5.771656 +v 0.677363 -4.520823 -5.793253 +v -0.677363 -4.520823 -5.793253 +v -0.677363 -5.419761 -5.771656 +v -0.677363 -5.410460 -9.151239 +v -0.677363 -4.348941 -9.203733 +v 0.677363 -4.348941 -9.203733 +v 0.677363 -5.410460 -9.151239 +v 0.677363 -1.429002 -5.682898 +v 0.677363 -0.902601 -5.556320 +v -0.677363 -0.902601 -5.556320 +v -0.677363 -1.429002 -5.682898 +v -0.677363 -3.744874 -9.151239 +v -0.677363 -3.093311 -9.016046 +v 0.677363 -3.093311 -9.016046 +v 0.677363 -3.744874 -9.151239 +v 0.677363 -3.302420 -5.840949 +v 0.677363 -2.332974 -5.815118 +v -0.677363 -2.332974 -5.815118 +v -0.677363 -3.302420 -5.840949 +v 0.677363 -0.294467 -5.173693 +v -0.677363 -0.294467 -5.173693 +v 0.677363 0.173305 -4.878585 +v -0.677363 0.173305 -4.878585 +v -0.677363 -2.500212 -8.890191 +v 0.677363 -2.500212 -8.890191 +v -0.677363 -1.887578 -8.724384 +v 0.677363 -1.887578 -8.724384 +v -0.677363 -0.973846 -8.351825 +v -0.677363 0.091069 -7.763287 +v 0.677363 0.091069 -7.763287 +v 0.677363 -0.973846 -8.351825 +v -0.677363 0.664022 -7.346631 +v 0.677363 0.664022 -7.346631 +v -0.677363 1.400451 -6.590861 +v 0.677363 1.400451 -6.590861 +v -1.038337 -5.079535 -6.119195 +v -1.038337 -5.072083 -8.828292 +v -0.677363 0.881192 -4.984477 +v -0.677363 1.292630 -5.263024 +v -1.038337 1.005753 -5.478510 +v -1.038337 0.750945 -5.306003 +v -0.677363 1.581939 -6.157557 +v -1.038337 1.220466 -6.142394 +v -1.038337 -4.355278 -8.863739 +v 0.677363 1.581939 -6.157557 +v 0.677363 1.292630 -5.263024 +v -1.038337 -1.364660 -6.016363 +v -1.038337 -2.303804 -6.153728 +v -1.038337 -2.579798 -8.560258 +v -1.038337 -1.996350 -8.402351 +v -1.038337 -3.794194 -8.814981 +v -1.038337 -3.162951 -8.684003 +v -1.038337 -3.304539 -6.180392 +v -1.038337 -4.531919 -6.132348 +v -1.038337 -0.101480 -5.453102 +v -1.038337 -0.769097 -5.873155 +v -1.038337 -1.120453 -8.045218 +v -1.038337 -0.091451 -7.476527 +v -1.038337 0.223651 -5.215686 +v -1.038337 0.441162 -7.089207 +v -1.038337 1.112446 -6.400294 +v 0.677363 0.881192 -4.984477 +v -0.388087 0.378275 -0.541007 +v -0.388087 0.538445 -0.691282 +v 0.388087 0.538445 -0.691282 +v 0.388087 0.378275 -0.541007 +v 0.388087 0.263531 0.761497 +v 0.388087 0.549235 0.902510 +v -0.388087 0.549235 0.902510 +v -0.388087 0.263531 0.761497 +v -0.388087 -3.282760 -2.259867 +v 0.388087 -3.282760 -2.259867 +v 0.388087 -3.416696 -2.107284 +v -0.388087 -3.416696 -2.107284 +v 0.388087 -2.115547 -1.510431 +v 0.388087 -2.036536 -0.519215 +v -0.388087 -2.036536 -0.519215 +v -0.388087 -2.115547 -1.510431 +v -0.388087 -2.019589 -1.905299 +v -0.388087 -1.845016 -1.572362 +v 0.388087 -1.845016 -1.572362 +v 0.388087 -2.019589 -1.905299 +v -0.388087 -2.824581 -2.298897 +v -0.388087 -2.254520 -2.104208 +v 0.388087 -2.254520 -2.104208 +v 0.388087 -2.824581 -2.298897 +v 0.388087 -2.749647 -2.086469 +v 0.388087 -2.339508 -1.897398 +v -0.388087 -2.339508 -1.897398 +v -0.388087 -2.749647 -2.086469 +v 0.388087 -1.052225 0.501511 +v 0.388087 -0.560944 0.588307 +v -0.388087 -0.560944 0.588307 +v -0.388087 -1.052225 0.501511 +v -0.388087 -1.284873 0.069368 +v -0.388087 -0.821706 0.217083 +v 0.388087 -0.821706 0.217083 +v 0.388087 -1.284873 0.069368 +v -0.388087 -1.788417 -0.845057 +v 0.388087 -1.788417 -0.845057 +v 0.388087 -1.766717 0.022973 +v -0.388087 -1.766717 0.022973 +v 0.388087 -0.334531 0.625094 +v 0.388087 0.005006 0.677293 +v -0.388087 0.005006 0.677293 +v -0.388087 -0.334531 0.625094 +v -0.388087 -0.356680 0.194787 +v -0.388087 0.002437 0.021986 +v 0.388087 0.002437 0.021986 +v 0.388087 -0.356680 0.194787 +v -0.388087 -1.615613 -0.248490 +v -0.388087 -1.423407 0.304049 +v 0.388087 -1.615613 -0.248490 +v 0.388087 -1.423407 0.304049 +v -0.334293 -1.549449 -2.555341 +v -0.334293 -1.287187 -2.738739 +v -0.334293 -0.766452 -2.910610 +v -0.334293 -0.399781 -2.891256 +v -0.334293 -0.115175 -2.859514 +v -0.334293 0.168657 -2.706223 +v -0.334293 0.588200 -2.184493 +v -0.334293 0.282394 -3.889986 +v -0.334293 -0.106957 -3.400619 +v -0.334293 -0.356724 -3.225651 +v -0.334293 -0.736246 -3.153187 +v -0.334293 -1.159743 -2.994812 +v -0.334293 -1.539680 -2.799144 +v -0.334293 -1.754503 -2.595457 +v -0.334293 -1.929948 -2.254812 +v -0.339648 -2.024864 -1.896991 +v -0.339648 -1.896961 -1.579169 +v -0.334293 -1.813819 -2.175126 +v 0.334293 0.282394 -3.889986 +v 0.334293 -0.106957 -3.400619 +v 0.334293 0.168657 -2.706223 +v 0.334293 0.588200 -2.184493 +v 0.334293 -1.287187 -2.738739 +v 0.334293 -0.766452 -2.910610 +v 0.334293 -1.159743 -2.994812 +v 0.334293 -1.539680 -2.799144 +v 0.334293 -1.754503 -2.595457 +v 0.334293 -1.929948 -2.254812 +v 0.334293 -0.736246 -3.153187 +v 0.334293 -0.356724 -3.225651 +v 0.334293 -0.115175 -2.859514 +v 0.334293 -0.399781 -2.891256 +v 0.334293 -1.549449 -2.555341 +v 0.334293 -1.813819 -2.175126 +v 0.328939 -1.896961 -1.579169 +v 0.328939 -2.024864 -1.896991 +v -0.677363 4.127562 -4.010149 +v -0.677363 4.243626 -3.549657 +v 0.677363 4.243626 -3.549657 +v 0.677363 4.127562 -4.010149 +v -0.677363 4.582104 -3.283700 +v 0.677363 4.582104 -3.283700 +v -0.677363 2.640762 -6.548580 +v -0.677363 2.737251 -6.208553 +v 0.677363 2.737251 -6.208553 +v 0.677363 2.640762 -6.548580 +v -0.677363 2.014416 -6.783812 +v -0.677363 2.238806 -6.763745 +v 0.677363 2.238806 -6.763745 +v 0.677363 2.014416 -6.783812 +v -0.677363 3.424877 -5.697894 +v -0.677363 3.656194 -5.417248 +v 0.677363 3.656194 -5.417248 +v 0.677363 3.424877 -5.697894 +v -0.677363 3.870349 -5.088138 +v -0.677363 4.091084 -4.470795 +v 0.677363 4.091084 -4.470795 +v 0.677363 3.870349 -5.088138 +v -0.677363 2.497756 -6.693510 +v 0.677363 2.497756 -6.693510 +v -0.677363 0.283971 -3.279829 +v 0.677363 0.283971 -3.279829 +v -0.677363 1.474082 -6.850760 +v -0.677363 1.751935 -6.791059 +v 0.677363 1.751935 -6.791059 +v 0.677363 1.474082 -6.850760 +v -0.677363 1.300423 -6.918651 +v 0.677363 1.300423 -6.918651 +v 0.677363 0.288958 -4.369509 +v -0.677363 0.288958 -4.369509 +v 0.677363 0.183064 -4.636606 +v -0.677363 0.183064 -4.636606 +v 0.677363 -0.094873 -5.054910 +v 0.677363 0.938536 -7.024597 +v -0.677363 0.938536 -7.024597 +v -0.677363 -0.094873 -5.054910 +v -0.410225 1.557572 -3.367706 +v -0.410225 0.363872 -4.767666 +v -0.410225 0.088182 -3.011839 +v -0.410225 0.346088 -2.547045 +v -0.410225 0.370646 -2.111420 +v -0.410225 0.490531 -1.718697 +v -0.410225 0.536416 0.879805 +v -0.410225 1.060247 2.159820 +v -0.410225 1.224972 2.278783 +v 0.410225 1.224972 2.278783 +v 0.410225 0.370646 -2.111420 +v 0.410225 0.490531 -1.718697 +v 0.410225 0.088182 -3.011839 +v 0.410225 0.346088 -2.547045 +v 0.410225 0.363872 -4.767666 +v 0.410225 1.557572 -3.367706 +v 0.410225 1.060247 2.159820 +v 0.410225 0.536416 0.879805 +v 0.165776 0.293496 -1.893382 +v 0.165776 0.680617 -1.761686 +v -0.165974 0.680617 -1.761686 +v -0.165974 0.293496 -1.893382 +v -0.165974 -1.314300 -1.864868 +v 0.165776 -1.314300 -1.864868 +v 0.165776 -1.503054 -1.310113 +v -0.165974 -1.503054 -1.310113 +v 0.165776 -0.933038 -1.695922 +v 0.165776 -0.526778 -1.857364 +v -0.165974 -0.526778 -1.857364 +v -0.165974 -0.933038 -1.695922 +v -0.165974 -0.802843 -2.222122 +v -0.165974 -0.354921 -2.352316 +v 0.165776 -0.354921 -2.352316 +v 0.165776 -0.802843 -2.222122 +v 0.165776 -0.071044 -1.902498 +v -0.165974 -0.071044 -1.902498 +v -0.165974 0.129456 -2.466887 +v 0.165776 0.129456 -2.466887 +v -0.165974 0.697671 -2.080118 +v -0.165974 0.361592 -2.371173 +v 0.165776 0.361592 -2.371173 +v 0.165776 0.697671 -2.080118 +v -1.216637 4.585567 -2.907501 +v -1.216637 4.585567 -2.368979 +v -0.503948 5.298257 -2.368979 +v -0.503948 5.298257 -2.907501 +v 1.216637 4.585567 -2.907501 +v 1.216637 4.585567 -2.368979 +v 1.216637 3.577672 -2.368979 +v 1.216637 3.577672 -2.907501 +v 0.503948 2.864983 -2.368979 +v 0.503948 2.864983 -2.907501 +v -0.503947 2.864983 -2.907501 +v -0.503947 2.864983 -2.368979 +v -1.216637 3.577672 -2.368979 +v -1.216637 3.577672 -2.907501 +v 0.503947 5.298257 -2.368979 +v 0.503947 5.298257 -2.907501 +v 0.370304 4.975613 -3.279490 +v -0.370304 4.975613 -3.279490 +v 0.893993 4.451924 -3.279490 +v 0.893993 3.711316 -3.279490 +v 0.370304 3.187627 -3.279490 +v -0.893993 3.711316 -3.279490 +v -0.370304 3.187627 -3.279490 +v -0.893993 4.451924 -3.279490 +v 0.648125 3.482961 -3.353385 +v 0.648125 3.482961 -2.583913 +v -0.648125 1.827062 -3.371653 +vt 0.336992 0.270342 +vt 0.255266 0.273654 +vt 0.255266 0.270342 +vt 0.614566 0.346798 +vt 0.614596 0.379886 +vt 0.600710 0.379886 +vt 0.465000 0.643334 +vt 0.480000 0.636666 +vt 0.480000 0.643334 +vt 0.255266 0.300062 +vt 0.336992 0.303374 +vt 0.255266 0.303374 +vt 0.600214 0.487836 +vt 0.601098 0.500080 +vt 0.595040 0.491676 +vt 0.503148 0.512132 +vt 0.503584 0.524246 +vt 0.495896 0.518924 +vt 0.096596 0.379962 +vt 0.093018 0.386784 +vt 0.091840 0.380216 +vt 0.070000 0.743334 +vt 0.057500 0.726666 +vt 0.070000 0.726666 +vt 0.070000 0.700000 +vt 0.057500 0.683334 +vt 0.070000 0.683334 +vt 0.053524 0.411332 +vt 0.046216 0.417760 +vt 0.046848 0.410186 +vt 0.070000 0.676666 +vt 0.057500 0.663334 +vt 0.070000 0.663334 +vt 0.070000 0.716666 +vt 0.057500 0.710000 +vt 0.070000 0.710000 +vt 0.070000 0.646666 +vt 0.057500 0.646666 +vt 0.057500 0.676666 +vt 0.057500 0.700000 +vt 0.057500 0.716666 +vt 0.512500 0.690000 +vt 0.540000 0.800000 +vt 0.512500 0.800000 +vt 0.757830 0.629988 +vt 0.796914 0.668008 +vt 0.786324 0.691844 +vt 0.816062 0.674308 +vt 0.815928 0.668042 +vt 0.826376 0.691556 +vt 0.568242 0.229558 +vt 0.611622 0.230578 +vt 0.540712 0.253308 +vt 0.487500 0.780000 +vt 0.470000 0.793334 +vt 0.470000 0.780000 +vt 0.487500 0.756666 +vt 0.470000 0.770000 +vt 0.470000 0.756666 +vt 0.487500 0.710000 +vt 0.470000 0.710000 +vt 0.599684 0.311164 +vt 0.608072 0.304958 +vt 0.614494 0.340312 +vt 0.487500 0.770000 +vt 0.007500 0.690000 +vt 0.015000 0.700000 +vt 0.007500 0.700000 +vt 0.007500 0.770000 +vt 0.015000 0.753334 +vt 0.015000 0.770000 +vt 0.007500 0.723334 +vt 0.015000 0.736666 +vt 0.007500 0.736666 +vt 0.015000 0.800000 +vt 0.007500 0.786666 +vt 0.015000 0.786666 +vt 0.007500 0.710000 +vt 0.015000 0.723334 +vt 0.015000 0.813334 +vt 0.007500 0.800000 +vt 0.047414 0.461680 +vt 0.057378 0.458394 +vt 0.054322 0.468652 +vt 0.027954 0.468120 +vt 0.024942 0.458008 +vt 0.034762 0.461248 +vt 0.007500 0.753334 +vt 0.015000 0.710000 +vt 0.015000 0.820000 +vt 0.007500 0.813334 +vt 0.117500 0.613333 +vt 0.127500 0.583333 +vt 0.127500 0.613333 +vt 0.117500 0.523334 +vt 0.127500 0.493334 +vt 0.127500 0.523334 +vt 0.117500 0.493334 +vt 0.127500 0.463334 +vt 0.117500 0.673333 +vt 0.127500 0.643333 +vt 0.127500 0.673333 +vt 0.117500 0.643333 +vt 0.247500 0.426666 +vt 0.262500 0.406666 +vt 0.280000 0.406666 +vt 0.117500 0.553334 +vt 0.127500 0.553334 +vt 0.117500 0.583333 +vt 0.137500 0.580000 +vt 0.137500 0.550000 +vt 0.137500 0.496666 +vt 0.137500 0.520000 +vt 0.137500 0.490000 +vt 0.137500 0.670000 +vt 0.137500 0.640000 +vt 0.137500 0.610000 +vt 0.222500 0.433334 +vt 0.212500 0.466666 +vt 0.187500 0.453334 +vt 0.465000 0.626666 +vt 0.480000 0.633334 +vt 0.465000 0.633334 +vt 0.637500 0.253333 +vt 0.540000 0.260000 +vt 0.540000 0.253333 +vt 0.510000 0.340000 +vt 0.615000 0.346667 +vt 0.510000 0.346667 +vt 0.487500 0.793334 +vt 0.470000 0.860000 +vt 0.624854 0.290024 +vt 0.553464 0.289918 +vt 0.540646 0.259308 +vt 0.343956 0.273776 +vt 0.523542 0.380000 +vt 0.518950 0.379170 +vt 0.511750 0.372962 +vt 0.509210 0.346798 +vt 0.509006 0.367662 +vt 0.515130 0.377128 +vt 0.465000 0.636666 +vt 0.343956 0.299940 +vt 0.614288 0.539426 +vt 0.616976 0.546688 +vt 0.600194 0.532792 +vt 0.586600 0.546412 +vt 0.589464 0.542342 +vt 0.610988 0.518476 +vt 0.611690 0.524230 +vt 0.603488 0.523666 +vt 0.612684 0.532858 +vt 0.609334 0.505992 +vt 0.603912 0.511850 +vt 0.605570 0.496560 +vt 0.570988 0.478972 +vt 0.589880 0.480978 +vt 0.583670 0.487284 +vt 0.556706 0.449310 +vt 0.559614 0.445906 +vt 0.560010 0.462858 +vt 0.559672 0.475440 +vt 0.555962 0.460954 +vt 0.569808 0.485846 +vt 0.563464 0.481410 +vt 0.563614 0.473280 +vt 0.552306 0.459954 +vt 0.548502 0.474806 +vt 0.548156 0.461908 +vt 0.544616 0.480926 +vt 0.544462 0.472592 +vt 0.538112 0.485474 +vt 0.536902 0.478426 +vt 0.523902 0.486948 +vt 0.551544 0.448020 +vt 0.548562 0.444530 +vt 0.506942 0.487514 +vt 0.517534 0.480484 +vt 0.512246 0.491450 +vt 0.501450 0.496456 +vt 0.506034 0.500066 +vt 0.497592 0.506126 +vt 0.494158 0.533668 +vt 0.495178 0.524822 +vt 0.520896 0.547564 +vt 0.489756 0.547846 +vt 0.517960 0.543392 +vt 0.492512 0.540402 +vt 0.506960 0.533602 +vt 0.093652 0.424652 +vt 0.103830 0.435566 +vt 0.070558 0.427612 +vt 0.080106 0.417484 +vt 0.090662 0.417270 +vt 0.083518 0.410986 +vt 0.084932 0.401114 +vt 0.090042 0.409866 +vt 0.088022 0.390098 +vt 0.089664 0.400328 +vt 0.095814 0.374628 +vt 0.102458 0.370064 +vt 0.104014 0.373084 +vt 0.109440 0.367596 +vt 0.115640 0.370922 +vt 0.057500 0.743334 +vt 0.034146 0.369466 +vt 0.040944 0.374134 +vt 0.032556 0.372556 +vt 0.045010 0.379852 +vt 0.040144 0.379592 +vt 0.048916 0.389962 +vt 0.043804 0.386570 +vt 0.052076 0.401232 +vt 0.047236 0.400428 +vt 0.027004 0.366940 +vt 0.020660 0.370344 +vt 0.057016 0.417980 +vt 0.066782 0.428340 +vt 0.043156 0.425314 +vt 0.032742 0.436480 +vt 0.540000 0.690000 +vt 0.765968 0.719244 +vt 0.754758 0.724574 +vt 0.752980 0.632546 +vt 0.746394 0.725446 +vt 0.738034 0.728246 +vt 0.733200 0.736432 +vt 0.733200 0.632400 +vt 0.771946 0.714068 +vt 0.777044 0.708476 +vt 0.795132 0.686058 +vt 0.792498 0.689516 +vt 0.796410 0.679792 +vt 0.765428 0.623270 +vt 0.798002 0.661284 +vt 0.801168 0.648326 +vt 0.799238 0.657082 +vt 0.796778 0.674360 +vt 0.859270 0.633056 +vt 0.878786 0.632914 +vt 0.865768 0.724708 +vt 0.878786 0.735546 +vt 0.874018 0.727470 +vt 0.811732 0.648624 +vt 0.846990 0.623906 +vt 0.813636 0.657262 +vt 0.854486 0.630532 +vt 0.814854 0.661408 +vt 0.857518 0.723846 +vt 0.846460 0.718588 +vt 0.840562 0.713482 +vt 0.835532 0.707964 +vt 0.820284 0.689260 +vt 0.816424 0.679666 +vt 0.817686 0.685848 +vt 0.634976 0.245906 +vt 0.637830 0.253308 +vt 0.517340 0.226738 +vt 0.546654 0.220602 +vt 0.554412 0.226342 +vt 0.561686 0.226888 +vt 0.632990 0.242238 +vt 0.639758 0.311592 +vt 0.509514 0.340312 +vt 0.537844 0.315742 +vt 0.584736 0.314638 +vt 0.512600 0.332310 +vt 0.514746 0.328346 +vt 0.591824 0.311754 +vt 0.015000 0.690000 +vt 0.053638 0.489364 +vt 0.056132 0.499138 +vt 0.050102 0.499570 +vt 0.044590 0.491084 +vt 0.042778 0.485222 +vt 0.044948 0.472990 +vt 0.053466 0.480160 +vt 0.054178 0.448766 +vt 0.064684 0.444000 +vt 0.037192 0.472396 +vt 0.039332 0.484452 +vt 0.028796 0.479462 +vt 0.037544 0.490228 +vt 0.028626 0.488534 +vt 0.032112 0.498592 +vt 0.026168 0.498168 +vt 0.017740 0.443822 +vt 0.028094 0.448520 +vt 0.007500 0.820000 +vt 0.117500 0.463334 +vt 0.295000 0.426666 +vt 0.295000 0.450000 +vt 0.280000 0.470000 +vt 0.262500 0.470000 +vt 0.247500 0.450000 +vt 0.137500 0.556667 +vt 0.137500 0.526666 +vt 0.137500 0.466666 +vt 0.137500 0.646667 +vt 0.137500 0.616667 +vt 0.137500 0.586667 +vt 0.187500 0.433334 +vt 0.197500 0.420000 +vt 0.212500 0.420000 +vt 0.222500 0.453334 +vt 0.197500 0.466666 +vt 0.480000 0.626666 +vt 0.637500 0.260000 +vt 0.615000 0.340000 +vt 0.487500 0.860000 +vt 0.540618 0.289918 +vt 0.638112 0.259308 +vt 0.638300 0.278610 +vt 0.635762 0.283514 +vt 0.632634 0.287368 +vt 0.629100 0.289256 +vt 0.245828 0.286858 +vt 0.250404 0.276350 +vt 0.250404 0.297368 +vt 0.465000 0.950000 +vt 0.492500 0.943334 +vt 0.492500 0.950000 +vt 0.246358 0.270342 +vt 0.250404 0.270342 +vt 0.465000 0.920000 +vt 0.470000 0.913334 +vt 0.492500 0.920000 +vt 0.242776 0.303374 +vt 0.242776 0.270342 +vt 0.246358 0.303374 +vt 0.250404 0.303374 +vt 0.781120 0.480610 +vt 0.749548 0.462818 +vt 0.752368 0.447180 +vt 0.427500 0.650000 +vt 0.455000 0.673334 +vt 0.427500 0.673334 +vt 0.455000 0.793334 +vt 0.427500 0.763334 +vt 0.455000 0.763334 +vt 0.427500 0.553334 +vt 0.455000 0.570000 +vt 0.427500 0.570000 +vt 0.455000 0.826666 +vt 0.427500 0.806666 +vt 0.455000 0.806666 +vt 0.427500 0.593334 +vt 0.455000 0.620000 +vt 0.427500 0.620000 +vt 0.427500 0.536666 +vt 0.455000 0.553334 +vt 0.427500 0.520000 +vt 0.455000 0.536666 +vt 0.427500 0.793334 +vt 0.455000 0.650000 +vt 0.455000 0.840000 +vt 0.427500 0.826666 +vt 0.455000 0.856666 +vt 0.427500 0.840000 +vt 0.455000 0.916666 +vt 0.427500 0.883334 +vt 0.455000 0.883334 +vt 0.427500 0.856666 +vt 0.455000 0.933334 +vt 0.427500 0.916666 +vt 0.455000 0.963334 +vt 0.427500 0.933334 +vt 0.455000 0.593334 +vt 0.837092 0.341162 +vt 0.896614 0.349824 +vt 0.843432 0.350018 +vt 0.918888 0.505838 +vt 0.909190 0.509100 +vt 0.912576 0.502430 +vt 0.913420 0.516608 +vt 0.896158 0.514720 +vt 0.836062 0.368946 +vt 0.842736 0.368780 +vt 0.807740 0.349838 +vt 0.815134 0.368824 +vt 0.808438 0.368658 +vt 0.814100 0.340954 +vt 0.754392 0.349642 +vt 0.747548 0.340708 +vt 0.737532 0.516950 +vt 0.754850 0.515056 +vt 0.755148 0.524546 +vt 0.747974 0.364312 +vt 0.754652 0.364020 +vt 0.902582 0.421712 +vt 0.898632 0.447056 +vt 0.895936 0.422476 +vt 0.842218 0.417334 +vt 0.851794 0.430522 +vt 0.845472 0.433370 +vt 0.799352 0.430594 +vt 0.808960 0.417364 +vt 0.805694 0.433450 +vt 0.743308 0.459312 +vt 0.839746 0.401812 +vt 0.843694 0.383466 +vt 0.846266 0.399988 +vt 0.807478 0.383390 +vt 0.811438 0.401792 +vt 0.804898 0.399964 +vt 0.748404 0.421756 +vt 0.755598 0.396246 +vt 0.755072 0.422522 +vt 0.902076 0.396338 +vt 0.896356 0.364156 +vt 0.903012 0.364448 +vt 0.907662 0.459150 +vt 0.909688 0.480118 +vt 0.901444 0.462644 +vt 0.852786 0.457286 +vt 0.869968 0.480382 +vt 0.864338 0.485158 +vt 0.798358 0.457442 +vt 0.786768 0.485402 +vt 0.735774 0.475280 +vt 0.736600 0.488884 +vt 0.729962 0.487562 +vt 0.837092 0.384758 +vt 0.814100 0.384686 +vt 0.748914 0.396302 +vt 0.903436 0.340918 +vt 0.895412 0.396282 +vt 0.848694 0.415252 +vt 0.802462 0.415276 +vt 0.745800 0.445490 +vt 0.858804 0.453448 +vt 0.792320 0.453592 +vt 0.741276 0.480346 +vt 0.905178 0.445372 +vt 0.915174 0.475068 +vt 0.914350 0.488628 +vt 0.877572 0.494322 +vt 0.872518 0.500154 +vt 0.773494 0.494594 +vt 0.778564 0.500446 +vt 0.891096 0.511892 +vt 0.887354 0.519430 +vt 0.759928 0.512220 +vt 0.763680 0.519782 +vt 0.732048 0.506148 +vt 0.738378 0.502728 +vt 0.920966 0.487310 +vt 0.895860 0.524180 +vt 0.741776 0.509418 +vt 0.022500 0.536666 +vt 0.037500 0.543334 +vt 0.022500 0.543334 +vt 0.037500 0.853334 +vt 0.022500 0.846666 +vt 0.037500 0.846666 +vt 0.037500 0.693334 +vt 0.022500 0.700000 +vt 0.022500 0.693334 +vt 0.037500 0.770000 +vt 0.022500 0.743334 +vt 0.037500 0.743334 +vt 0.022500 0.646666 +vt 0.037500 0.656666 +vt 0.022500 0.656666 +vt 0.022500 0.666666 +vt 0.037500 0.683334 +vt 0.022500 0.683334 +vt 0.037500 0.730000 +vt 0.022500 0.716666 +vt 0.037500 0.716666 +vt 0.037500 0.823334 +vt 0.022500 0.810000 +vt 0.037500 0.810000 +vt 0.022500 0.583334 +vt 0.037500 0.596666 +vt 0.022500 0.596666 +vt 0.037500 0.700000 +vt 0.037500 0.666666 +vt 0.022500 0.730000 +vt 0.022500 0.626666 +vt 0.037500 0.646666 +vt 0.037500 0.786666 +vt 0.022500 0.770000 +vt 0.037500 0.840000 +vt 0.022500 0.830000 +vt 0.037500 0.830000 +vt 0.022500 0.560000 +vt 0.037500 0.573334 +vt 0.022500 0.573334 +vt 0.022500 0.840000 +vt 0.037500 0.560000 +vt 0.037500 0.583334 +vt 0.022500 0.823334 +vt 0.037500 0.610000 +vt 0.022500 0.610000 +vt 0.022500 0.796666 +vt 0.037500 0.796666 +vt 0.022500 0.786666 +vt 0.037500 0.626666 +vt 0.130000 0.806666 +vt 0.117500 0.790000 +vt 0.130000 0.790000 +vt 0.130000 0.760000 +vt 0.117500 0.750000 +vt 0.130000 0.750000 +vt 0.130000 0.743334 +vt 0.117500 0.733334 +vt 0.130000 0.733334 +vt 0.130000 0.783334 +vt 0.117500 0.773334 +vt 0.130000 0.773334 +vt 0.117500 0.723334 +vt 0.130000 0.723334 +vt 0.117500 0.743334 +vt 0.117500 0.760000 +vt 0.117500 0.783334 +vt 0.512500 0.813334 +vt 0.540000 0.823334 +vt 0.512500 0.823334 +vt 0.540000 0.813334 +vt 0.512500 0.896666 +vt 0.540000 0.903334 +vt 0.512500 0.903334 +vt 0.512500 0.916666 +vt 0.540000 0.923334 +vt 0.512500 0.923334 +vt 0.512500 0.863334 +vt 0.540000 0.873334 +vt 0.512500 0.873334 +vt 0.512500 0.836666 +vt 0.540000 0.853334 +vt 0.512500 0.853334 +vt 0.540000 0.896666 +vt 0.540000 0.910000 +vt 0.512500 0.910000 +vt 0.512500 0.930000 +vt 0.540000 0.936666 +vt 0.512500 0.936666 +vt 0.540000 0.836666 +vt 0.540000 0.863334 +vt 0.540000 0.916666 +vt 0.540000 0.930000 +vt 0.540000 0.943334 +vt 0.512500 0.943334 +vt 0.512500 0.660000 +vt 0.540000 0.660000 +vt 0.512500 0.653334 +vt 0.540000 0.653334 +vt 0.540000 0.953334 +vt 0.512500 0.953334 +vt 0.512500 0.640000 +vt 0.540000 0.640000 +vt 0.487500 0.903334 +vt 0.470000 0.903334 +vt 0.470000 0.896666 +vt 0.487500 0.896666 +vt 0.343956 0.286858 +vt 0.465000 0.943334 +vt 0.487500 0.913334 +vt 0.455000 0.520000 +vt 0.427500 0.963334 +vt 0.037500 0.536666 +vt 0.022500 0.853334 +vt 0.117500 0.806666 +vn -0.2614 0.9652 -0.0011 +vn -0.2578 0.9662 -0.0012 +vn 1.0000 0.0000 0.0000 +vn -1.0000 -0.0000 0.0000 +vn 0.2583 0.9661 -0.0030 +vn 0.2614 0.9652 -0.0011 +vn 0.0000 -0.7793 0.6267 +vn 0.0000 0.3134 0.9496 +vn 0.0000 0.8210 0.5709 +vn 0.0000 -0.1108 0.9938 +vn 0.0000 0.9904 0.1382 +vn 0.0000 0.5731 0.8195 +vn 0.0000 -0.0527 0.9986 +vn 0.0000 -0.4752 0.8799 +vn 0.0000 0.0009 1.0000 +vn 0.0000 -0.9564 0.2920 +vn 0.0000 -0.8744 0.4852 +vn 0.0000 -0.9879 -0.1551 +vn 0.0000 -0.9984 0.0563 +vn 0.0000 -0.3221 0.9467 +vn 0.0000 -0.9467 -0.3221 +vn 0.0000 0.3693 0.9293 +vn 0.0000 -0.2791 -0.9603 +vn 0.0000 0.0986 0.9951 +vn 0.0000 -0.2302 -0.9731 +vn 0.0000 -0.5726 -0.8198 +vn 0.0000 0.5605 0.8281 +vn 0.0000 -0.0250 0.9997 +vn 0.0000 0.3812 -0.9245 +vn -0.7071 0.7071 0.0000 +vn 0.7071 -0.7071 0.0000 +vn -0.7071 -0.7071 0.0000 +vn -0.0000 0.0000 1.0000 +vn 0.7071 0.7071 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 0.7554 -0.6552 +vn 0.5342 0.5342 -0.6552 +vn 0.7554 0.0000 -0.6552 +vn 0.5342 -0.5342 -0.6552 +vn -0.5342 -0.5342 -0.6552 +vn -0.7554 0.0000 -0.6552 +vn -0.5342 0.5342 -0.6552 +vn 0.0000 0.0000 -1.0000 +vn -0.7497 -0.6618 -0.0000 +vn 0.7497 -0.6618 -0.0000 +vn 0.0000 -0.9998 0.0177 +vn -0.2508 0.9680 -0.0007 +vn -0.2457 0.9693 -0.0042 +vn -0.2507 0.9680 -0.0044 +vn 0.2508 0.9680 -0.0044 +vn 0.2457 0.9693 -0.0042 +vn 0.2508 0.9680 -0.0007 +vn -0.9999 0.0087 -0.0127 +vn -0.9998 0.0166 -0.0067 +vn 0.9999 -0.0087 0.0127 +vn 0.9998 -0.0166 0.0067 +vn -0.0000 1.0000 0.0070 +vn -0.2419 0.9698 0.0308 +vn -0.2652 0.9642 0.0010 +vn 0.2680 0.9634 0.0025 +vn 0.2419 0.9698 0.0308 +vn 0.0164 0.6644 0.7472 +vn 0.0000 0.2912 0.9567 +vn -0.0164 0.6644 0.7472 +vn -0.1115 0.9619 0.2498 +vn -0.0769 0.8571 0.5095 +vn -0.1619 0.9600 0.2284 +vn 0.0000 -0.0304 0.9995 +vn 0.0000 -0.2276 0.9738 +vn 0.0000 0.8427 0.5384 +vn -0.2117 0.9713 0.1081 +vn -0.2592 0.9571 0.1297 +vn 0.1115 0.9619 0.2498 +vn 0.0769 0.8571 0.5095 +vn 0.2094 0.9718 0.1082 +vn 0.1619 0.9600 0.2284 +vn 0.9123 0.2199 -0.3455 +vn 0.9336 -0.1391 0.3302 +vn 0.9221 -0.0733 0.3800 +vn 0.3677 0.0294 0.9295 +vn -0.2777 0.0231 0.9604 +vn 0.2777 0.0231 0.9604 +vn -0.3635 0.0174 -0.9314 +vn 0.2844 -0.0474 -0.9575 +vn -0.2844 -0.0474 -0.9575 +vn 0.3853 -0.3583 0.8504 +vn -0.3723 -0.1758 0.9113 +vn 0.3723 -0.1758 0.9113 +vn -0.3681 0.1909 -0.9100 +vn 0.3641 0.1352 -0.9215 +vn -0.3641 0.1352 -0.9215 +vn 0.3736 -0.0796 0.9242 +vn -0.3711 0.0058 0.9286 +vn 0.3711 0.0058 0.9286 +vn 0.3632 -0.5016 0.7852 +vn -0.3853 -0.3583 0.8504 +vn 0.4618 -0.3170 0.8284 +vn -0.3632 -0.5016 0.7852 +vn 0.2844 -0.9587 -0.0026 +vn -0.2777 -0.9607 -0.0026 +vn -0.2844 -0.9587 -0.0026 +vn 0.3635 0.0174 -0.9314 +vn -0.3677 0.0294 0.9295 +vn -0.3662 0.2182 -0.9046 +vn 0.3681 0.1909 -0.9100 +vn -0.3639 0.2981 -0.8825 +vn 0.3662 0.2182 -0.9046 +vn -0.3639 0.5001 -0.7858 +vn 0.3641 0.4018 -0.8403 +vn -0.3641 0.4018 -0.8403 +vn 0.3639 0.2981 -0.8825 +vn -0.3625 0.6100 -0.7046 +vn 0.3639 0.5001 -0.7858 +vn -0.4789 0.6904 -0.5422 +vn 0.3625 0.6100 -0.7046 +vn -0.3736 -0.0796 0.9242 +vn -0.8982 -0.3076 0.3142 +vn -0.8954 -0.3221 -0.3074 +vn -0.6900 0.2669 0.6728 +vn -0.8937 0.3587 0.2695 +vn -0.9005 0.1621 0.4035 +vn -0.7050 0.5671 0.4260 +vn -0.8927 0.4503 -0.0189 +vn -0.9118 0.0077 -0.4106 +vn 0.8954 -0.3221 -0.3074 +vn 0.9118 0.0077 -0.4106 +vn 0.8982 -0.3076 0.3142 +vn 0.2777 -0.9607 -0.0026 +vn 0.7050 0.5671 0.4260 +vn 0.8927 0.4503 -0.0189 +vn 0.7079 0.7057 -0.0296 +vn 0.9171 0.0126 0.3984 +vn -0.9221 -0.0733 0.3800 +vn -0.9234 -0.0329 0.3824 +vn -0.9123 0.1310 -0.3879 +vn 0.9123 0.1310 -0.3879 +vn -0.9126 0.0593 -0.4046 +vn -0.9176 0.0816 -0.3890 +vn 0.9126 0.0593 -0.4046 +vn 0.9176 0.0816 -0.3890 +vn 0.9209 0.0024 0.3898 +vn 0.9234 -0.0329 0.3824 +vn -0.9171 0.0126 0.3984 +vn -0.9211 -0.2186 0.3222 +vn -0.9336 -0.1391 0.3302 +vn -0.9123 0.2199 -0.3455 +vn 0.8848 -0.1072 0.4534 +vn -0.9209 0.0024 0.3898 +vn -0.9153 0.0944 -0.3915 +vn 0.9153 0.0944 -0.3915 +vn -0.9126 0.1764 -0.3689 +vn 0.9126 0.1764 -0.3689 +vn 0.9211 -0.2186 0.3222 +vn -0.8848 -0.1072 0.4534 +vn -0.9103 0.2709 -0.3129 +vn 0.9103 0.2709 -0.3129 +vn -0.9023 0.3595 -0.2379 +vn 0.9023 0.3595 -0.2379 +vn 0.4789 0.6904 -0.5422 +vn 0.6900 0.2669 0.6728 +vn 0.9005 0.1621 0.4035 +vn -0.4618 -0.3170 0.8284 +vn -0.7079 0.7057 -0.0296 +vn 0.8937 0.3587 0.2695 +vn 0.0000 -0.6842 -0.7293 +vn 0.0000 -0.7629 -0.6465 +vn 0.0000 -0.4426 0.8967 +vn 0.0000 -0.3771 0.9262 +vn 0.0000 -0.4508 -0.8926 +vn 0.0000 -0.7515 -0.6597 +vn 0.0000 -0.9636 0.2674 +vn 0.0000 -0.9547 0.2975 +vn 0.0000 0.9610 -0.2766 +vn 0.0000 0.7803 -0.6254 +vn 0.0000 0.4933 -0.8699 +vn 0.0000 0.1218 -0.9926 +vn 0.0000 -0.6736 0.7391 +vn 0.0000 -0.2295 0.9733 +vn 0.0000 -0.1672 0.9859 +vn 0.0000 -0.3258 0.9454 +vn 0.0000 0.1300 -0.9915 +vn 0.0000 0.5117 -0.8592 +vn 0.0000 -0.0312 0.9995 +vn 0.0000 0.9839 -0.1788 +vn 0.0000 -0.7818 0.6235 +vn 0.0000 -0.2316 0.9728 +vn 0.0000 -0.1562 0.9877 +vn 0.0000 -0.6559 -0.7549 +vn 0.0000 -0.2457 -0.9694 +vn 0.0000 0.8559 -0.5172 +vn 0.0000 -0.5543 0.8323 +vn 0.0000 -0.7825 -0.6226 +vn 0.0000 -0.6852 -0.7283 +vn 0.0000 -0.4048 -0.9144 +vn 0.0000 -0.5787 -0.8155 +vn 0.0000 -0.7998 -0.6002 +vn 0.0000 -0.9331 -0.3597 +vn 0.0000 -0.9334 -0.3588 +vn 0.0000 -0.3893 -0.9211 +vn 0.0000 -0.2699 -0.9629 +vn 0.0000 -0.9666 -0.2564 +vn 0.0000 0.8387 -0.5446 +vn 0.0000 0.9868 -0.1622 +vn 0.0000 0.6178 -0.7863 +vn 0.0000 0.8229 -0.5682 +vn 0.0000 0.8640 -0.5035 +vn 0.0000 0.1761 -0.9844 +vn 0.0000 0.0584 -0.9983 +vn 0.0000 0.8062 -0.5917 +vn 0.0000 0.6890 -0.7248 +vn 0.0000 0.9778 -0.2096 +vn 0.0000 0.8960 -0.4441 +vn 0.0000 0.5042 -0.8636 +vn 0.0000 0.1193 -0.9929 +vn 0.0000 0.2880 -0.9576 +vn 0.0000 0.3228 -0.9465 +vn 0.0000 -1.0000 -0.0046 +vn 0.0000 -0.9827 0.1854 +vn 0.0000 -0.8861 0.4635 +vn 0.0000 0.2810 -0.9597 +vn 0.0000 -0.8329 0.5534 +vn 0.0000 -0.5228 0.8525 +vn 0.0000 -0.9255 0.3787 +vn 0.0000 -0.7858 0.6185 +vn -0.2574 0.9663 0.0002 +vn 0.0000 1.0000 -0.0007 +vn 0.2574 0.9663 0.0002 +vn 0.2592 0.9571 0.1297 +s off +f 259/421/94 251/422/95 260/423/94 +f 264/424/96 265/425/96 259/426/96 +f 267/427/97 269/428/97 266/429/97 +f 253/430/98 267/431/99 275/432/99 +f 399/433/97 392/434/97 408/435/97 +f 394/436/96 407/437/96 389/438/96 +f 412/439/97 413/440/97 424/441/97 +f 433/442/100 417/443/100 432/444/100 +f 435/445/101 413/446/101 434/447/101 +f 441/448/96 442/449/96 443/450/96 +f 444/451/102 429/452/102 445/453/102 +f 442/454/103 415/455/103 443/456/103 +f 446/457/104 429/452/104 428/458/104 +f 434/447/105 412/459/105 444/451/105 +f 443/456/106 414/460/106 435/445/106 +f 432/444/107 416/461/107 442/454/107 +f 472/462/108 453/463/108 452/464/108 +f 482/465/96 476/466/96 456/467/96 +f 458/468/97 475/469/97 455/470/97 +f 493/471/97 494/472/97 488/473/97 +f 498/474/109 493/475/109 492/476/109 +f 500/477/110 491/478/110 490/479/110 +f 502/480/111 490/479/111 489/481/111 +f 501/482/96 500/483/96 503/484/96 +f 501/485/112 492/476/112 491/478/112 +f 507/486/113 509/487/113 506/488/113 +f 511/489/114 513/490/114 510/491/114 +f 515/492/115 517/493/115 514/494/115 +f 519/495/116 521/496/116 518/497/116 +f 522/498/117 516/499/117 515/492/117 +f 524/500/118 520/501/118 519/495/118 +f 518/502/97 517/503/97 516/504/97 +f 518/497/119 511/489/119 510/491/119 +f 515/505/96 514/506/96 521/507/96 +f 514/494/120 513/490/120 512/508/120 +f 506/488/121 523/509/121 522/498/121 +f 527/510/122 525/511/122 524/500/122 +f 531/512/123 533/513/123 530/514/123 +f 535/515/96 537/516/96 534/517/96 +f 536/518/124 539/519/124 537/516/124 +f 541/520/125 543/521/125 540/522/125 +f 542/523/97 530/514/97 543/521/97 +f 538/524/126 536/525/126 535/526/126 +f 544/527/127 534/517/127 545/528/127 +f 532/529/128 545/528/128 533/513/128 +f 545/528/129 547/530/129 533/513/129 +f 534/517/130 546/531/130 545/528/130 +f 534/517/131 549/532/131 548/533/131 +f 539/519/132 549/534/132 537/516/132 +f 543/521/133 552/535/133 540/522/133 +f 530/514/134 551/536/134 543/521/134 +f 533/513/135 553/537/135 530/514/135 +f 549/538/136 552/539/136 553/540/136 +f 259/541/96 554/542/96 555/543/96 +f 272/544/137 556/545/137 488/546/137 +f 270/547/138 264/548/138 263/549/138 +f 499/550/139 494/551/139 493/475/139 +f 275/552/97 267/553/97 556/554/97 +f 259/421/140 247/555/141 251/422/142 +f 259/426/96 260/556/96 264/424/96 +f 260/556/96 261/557/96 255/558/96 +f 263/559/96 260/556/96 258/560/96 +f 261/557/96 262/561/96 255/558/96 +f 255/558/96 258/560/96 260/556/96 +f 263/559/96 264/424/96 260/556/96 +f 267/427/97 268/562/97 269/428/97 +f 253/430/143 252/563/144 267/431/145 +f 367/564/97 366/565/97 405/566/97 +f 366/565/97 361/567/97 360/568/97 +f 360/568/97 405/566/97 366/565/97 +f 390/569/97 403/570/97 404/571/97 +f 403/570/97 402/572/97 404/571/97 +f 402/572/97 367/564/97 405/566/97 +f 402/572/97 405/566/97 404/571/97 +f 391/573/97 390/569/97 393/574/97 +f 393/574/97 390/569/97 404/571/97 +f 399/433/97 409/575/97 392/434/97 +f 409/575/97 391/573/97 392/434/97 +f 375/576/97 374/577/97 396/578/97 +f 374/577/97 399/433/97 408/435/97 +f 392/434/97 391/573/97 393/574/97 +f 368/579/97 371/580/97 387/581/97 +f 381/582/97 380/583/97 387/581/97 +f 380/583/97 368/579/97 387/581/97 +f 377/584/97 376/585/97 375/576/97 +f 376/585/97 381/582/97 386/586/97 +f 375/576/97 376/585/97 386/586/97 +f 396/578/97 377/584/97 375/576/97 +f 381/582/97 387/581/97 386/586/97 +f 408/435/97 396/578/97 374/577/97 +f 383/587/96 382/588/96 384/589/96 +f 382/588/96 379/590/96 385/591/96 +f 384/589/96 382/588/96 385/591/96 +f 379/590/96 378/592/96 372/593/96 +f 378/592/96 397/594/96 372/593/96 +f 369/595/96 383/587/96 384/589/96 +f 384/589/96 370/596/96 369/595/96 +f 398/597/96 373/598/96 410/599/96 +f 373/598/96 372/593/96 397/594/96 +f 410/599/96 373/598/96 397/594/96 +f 372/593/96 385/591/96 379/590/96 +f 411/600/96 398/597/96 395/601/96 +f 389/438/96 388/602/96 394/436/96 +f 388/602/96 411/600/96 395/601/96 +f 394/436/96 388/602/96 395/601/96 +f 401/603/96 400/604/96 407/437/96 +f 400/604/96 389/438/96 407/437/96 +f 362/605/96 365/606/96 363/607/96 +f 365/606/96 364/608/96 406/609/96 +f 363/607/96 365/606/96 406/609/96 +f 364/608/96 401/603/96 406/609/96 +f 398/597/96 410/599/96 395/601/96 +f 407/437/96 406/609/96 401/603/96 +f 417/610/97 418/611/97 419/612/97 +f 417/610/97 419/612/97 420/613/97 +f 416/614/97 417/610/97 420/613/97 +f 421/615/97 422/616/97 415/617/97 +f 422/616/97 423/618/97 414/619/97 +f 416/614/97 420/613/97 421/615/97 +f 415/617/97 416/614/97 421/615/97 +f 422/616/97 414/619/97 415/617/97 +f 423/618/97 424/441/97 413/440/97 +f 424/441/97 425/620/97 412/439/97 +f 425/620/97 426/621/97 429/622/97 +f 426/621/146 427/623/146 429/622/146 +f 427/623/147 428/624/147 429/622/147 +f 413/440/97 414/619/97 423/618/97 +f 425/620/97 429/622/97 412/439/97 +f 433/442/100 418/625/100 417/443/100 +f 435/445/101 414/460/101 413/446/101 +f 439/626/96 438/627/96 445/628/96 +f 438/627/96 437/629/96 444/630/96 +f 437/629/96 436/631/96 434/632/96 +f 436/631/96 440/633/96 435/634/96 +f 436/631/96 435/634/96 434/632/96 +f 440/633/96 441/448/96 443/450/96 +f 435/634/96 440/633/96 443/450/96 +f 447/635/148 439/626/148 445/628/148 +f 438/627/96 444/630/96 445/628/96 +f 445/628/149 446/636/149 447/635/149 +f 431/637/96 430/638/96 432/639/96 +f 430/638/96 433/640/96 432/639/96 +f 441/448/96 431/637/96 442/449/96 +f 431/637/96 432/639/96 442/449/96 +f 434/632/96 444/630/96 437/629/96 +f 444/451/102 412/459/102 429/452/102 +f 442/454/103 416/461/103 415/455/103 +f 446/457/104 445/453/104 429/452/104 +f 434/447/105 413/446/105 412/459/105 +f 443/456/106 415/455/106 414/460/106 +f 432/444/107 417/443/107 416/461/107 +f 472/462/108 473/641/108 453/463/108 +f 469/642/96 468/643/96 480/644/96 +f 468/643/96 451/645/96 480/644/96 +f 450/646/96 453/647/96 473/648/96 +f 464/649/96 469/642/96 480/644/96 +f 451/645/96 450/646/96 473/648/96 +f 451/645/96 473/648/96 480/644/96 +f 465/650/96 464/649/96 480/644/96 +f 471/651/96 457/652/96 460/653/96 +f 457/652/96 456/467/96 460/653/96 +f 456/467/96 465/650/96 480/644/96 +f 456/467/96 480/644/96 482/465/96 +f 482/465/96 484/654/96 477/655/96 +f 484/654/96 485/656/96 479/657/96 +f 477/655/96 484/654/96 479/657/96 +f 476/466/96 461/658/96 456/467/96 +f 461/658/96 460/653/96 456/467/96 +f 482/465/96 477/655/96 476/466/96 +f 481/659/97 472/660/97 448/661/97 +f 472/660/97 452/662/97 449/663/97 +f 472/660/97 449/663/97 448/661/97 +f 486/664/97 487/665/97 478/666/97 +f 487/665/97 483/667/97 474/668/97 +f 478/666/97 487/665/97 474/668/97 +f 483/667/97 481/659/97 455/470/97 +f 448/661/97 467/669/97 481/659/97 +f 467/669/97 466/670/97 481/659/97 +f 481/659/97 466/670/97 463/671/97 +f 462/672/97 481/659/97 463/671/97 +f 455/470/97 454/673/97 459/674/97 +f 454/673/97 470/675/97 459/674/97 +f 462/672/97 455/470/97 481/659/97 +f 474/668/97 483/667/97 475/469/97 +f 475/469/97 483/667/97 455/470/97 +f 459/674/97 458/468/97 455/470/97 +f 496/676/97 272/677/97 494/472/97 +f 272/677/97 488/473/97 494/472/97 +f 488/473/97 489/678/97 490/679/97 +f 491/680/97 492/681/97 488/473/97 +f 492/681/97 493/471/97 488/473/97 +f 488/473/97 490/679/97 491/680/97 +f 495/682/97 496/676/97 494/472/97 +f 498/474/109 499/550/109 493/475/109 +f 500/477/110 501/485/110 491/478/110 +f 502/480/111 500/477/111 490/479/111 +f 502/683/96 503/484/96 500/483/96 +f 503/484/96 270/684/96 505/685/96 +f 499/686/96 503/484/96 505/685/96 +f 270/684/96 497/687/96 505/685/96 +f 497/687/96 504/688/96 505/685/96 +f 499/686/96 498/689/96 503/484/96 +f 498/689/96 501/482/96 503/484/96 +f 501/485/112 498/474/112 492/476/112 +f 507/486/113 508/690/113 509/487/113 +f 511/489/114 512/508/114 513/490/114 +f 515/492/115 516/499/115 517/493/115 +f 519/495/116 520/501/116 521/496/116 +f 522/498/117 523/509/117 516/499/117 +f 524/500/118 525/511/118 520/501/118 +f 509/691/97 508/692/97 526/693/97 +f 526/693/97 527/694/97 509/691/97 +f 527/694/97 524/695/97 509/691/97 +f 524/695/97 519/696/97 523/697/97 +f 519/696/97 518/502/97 516/504/97 +f 518/502/97 510/698/97 517/503/97 +f 510/698/97 513/699/97 517/503/97 +f 519/696/97 516/504/97 523/697/97 +f 523/697/97 509/691/97 524/695/97 +f 518/497/119 521/496/119 511/489/119 +f 521/507/96 520/700/96 515/505/96 +f 520/700/96 525/701/96 522/702/96 +f 525/701/96 528/703/96 506/704/96 +f 528/703/96 529/705/96 506/704/96 +f 529/705/96 507/706/96 506/704/96 +f 506/704/96 522/702/96 525/701/96 +f 520/700/96 522/702/96 515/505/96 +f 512/707/96 511/708/96 514/506/96 +f 511/708/96 521/507/96 514/506/96 +f 514/494/120 517/493/120 513/490/120 +f 506/488/121 509/487/121 523/509/121 +f 527/510/122 528/709/122 525/511/122 +f 531/512/123 532/529/123 533/513/123 +f 535/515/96 536/518/96 537/516/96 +f 536/518/124 538/710/124 539/519/124 +f 541/520/125 542/523/125 543/521/125 +f 542/523/97 531/512/97 530/514/97 +f 535/526/126 544/711/126 532/712/126 +f 532/712/126 531/713/126 535/526/126 +f 531/713/126 542/714/126 535/526/126 +f 542/714/126 541/715/126 535/526/126 +f 541/715/126 538/524/126 535/526/126 +f 544/527/127 535/515/127 534/517/127 +f 532/529/128 544/527/128 545/528/128 +f 545/528/129 546/716/129 547/530/129 +f 534/517/130 548/717/130 546/531/130 +f 534/517/131 537/516/131 549/532/131 +f 539/519/132 550/718/132 549/534/132 +f 543/521/133 551/719/133 552/535/133 +f 530/514/134 553/720/134 551/536/134 +f 533/513/135 547/721/135 553/537/135 +f 553/540/136 547/722/136 546/723/136 +f 546/723/136 548/724/136 553/540/136 +f 548/724/136 549/538/136 553/540/136 +f 549/538/136 550/725/136 552/539/136 +f 552/539/136 551/726/136 553/540/136 +f 259/541/96 265/727/96 554/542/96 +f 272/544/137 271/728/137 556/545/137 +f 270/547/138 503/729/138 264/548/138 +f 499/550/139 505/730/139 494/551/139 +f 267/553/97 266/731/97 556/554/97 +f 556/554/97 271/732/97 275/552/97 +f 271/732/97 257/733/97 275/552/97 +f 275/552/97 257/733/97 256/734/97 +f 256/734/97 273/735/97 274/736/97 +f 275/552/97 256/734/97 274/736/97 +s 1 +f 249/737/150 250/738/151 251/422/152 +f 253/430/153 254/739/154 249/737/150 +f 256/740/155 258/741/156 255/742/157 +f 250/738/158 262/743/159 261/744/160 +f 271/745/161 272/746/162 263/747/161 +f 249/737/163 256/748/155 255/749/157 +f 251/422/164 261/744/160 260/423/165 +f 254/739/166 273/750/167 249/737/163 +f 253/430/168 274/751/169 254/739/166 +f 281/752/170 289/753/171 290/754/172 +f 298/755/173 300/756/174 297/757/175 +f 302/758/176 304/759/177 301/760/178 +f 306/761/179 308/762/180 305/763/181 +f 310/764/182 312/765/183 309/766/184 +f 314/767/185 316/768/186 313/769/187 +f 317/770/188 307/771/189 306/761/179 +f 319/772/190 318/773/191 317/770/188 +f 304/759/192 300/756/193 301/760/194 +f 309/766/184 303/774/195 302/758/176 +f 313/769/187 299/775/196 298/755/173 +f 321/776/197 311/777/198 310/764/182 +f 323/778/199 322/779/200 321/776/197 +f 326/780/201 328/781/202 325/782/203 +f 325/782/203 324/783/204 323/778/199 +f 329/784/205 327/785/206 326/780/201 +f 331/786/207 330/787/208 329/784/205 +f 305/763/181 315/788/209 314/767/185 +f 301/789/194 333/790/210 334/791/211 +f 335/792/212 337/793/213 338/794/214 +f 336/795/215 340/796/216 337/793/213 +f 302/797/176 334/791/211 341/798/217 +f 295/799/218 303/800/195 296/801/219 +f 304/802/192 294/803/220 297/804/221 +f 343/805/222 284/806/223 342/807/224 +f 298/808/173 294/803/220 293/809/225 +f 315/810/209 344/811/226 345/812/227 +f 321/813/197 347/814/228 323/815/199 +f 279/816/229 322/817/200 324/818/204 +f 306/819/179 290/754/172 289/753/171 +f 310/820/182 348/821/230 349/822/231 +f 276/823/232 311/824/198 277/825/233 +f 314/826/185 292/827/234 291/828/235 +f 316/829/186 351/830/236 299/831/196 +f 307/832/189 352/833/237 353/834/238 +f 325/835/203 355/836/239 326/837/201 +f 281/752/170 328/838/202 327/839/206 +f 317/840/188 287/841/240 319/842/190 +f 309/843/184 341/798/217 348/821/230 +f 296/801/219 312/844/183 276/823/232 +f 313/845/187 293/809/225 292/827/234 +f 299/831/196 333/790/210 300/846/174 +f 315/810/209 350/847/241 316/829/186 +f 310/820/182 346/848/242 321/813/197 +f 278/849/243 311/824/198 322/817/200 +f 314/826/185 290/754/172 305/850/181 +f 325/835/203 347/814/228 354/851/244 +f 279/816/229 328/838/202 280/852/245 +f 306/819/179 288/853/246 317/840/188 +f 307/832/189 344/811/226 308/854/180 +f 318/855/191 356/856/247 352/833/237 +f 326/837/201 357/857/248 329/858/205 +f 282/859/249 327/839/206 330/860/208 +f 329/858/205 358/861/250 331/862/207 +f 283/863/251 330/860/208 332/864/252 +f 359/865/253 287/841/240 286/866/254 +f 335/792/212 356/856/247 320/867/255 +f 331/862/207 340/796/216 339/868/256 +f 284/806/223 332/864/252 342/807/224 +f 359/865/253 285/869/257 343/805/222 +f 350/847/241 345/812/227 346/848/242 +f 361/870/258 363/871/259 360/872/259 +f 365/873/260 367/874/261 364/875/261 +f 369/876/262 371/877/263 368/878/262 +f 373/879/264 375/880/265 372/881/265 +f 377/882/266 379/883/267 376/884/267 +f 381/885/268 383/886/269 380/887/269 +f 385/888/270 387/889/271 384/890/271 +f 389/891/272 391/892/273 388/893/273 +f 393/894/274 395/895/275 392/896/275 +f 384/890/271 371/877/276 370/897/276 +f 380/887/269 369/876/262 368/878/262 +f 376/884/267 382/898/268 381/885/268 +f 372/881/265 386/899/270 385/888/270 +f 396/900/277 378/901/266 377/882/266 +f 398/902/278 374/903/264 373/879/264 +f 401/904/279 403/905/280 400/906/280 +f 405/907/281 407/908/282 404/909/282 +f 364/875/261 402/910/279 401/904/279 +f 360/872/259 406/911/281 405/907/281 +f 404/909/282 394/912/274 393/894/274 +f 400/906/280 390/913/272 389/891/272 +f 392/896/275 410/914/283 408/915/283 +f 388/893/273 409/916/284 411/917/284 +f 411/917/284 399/918/278 398/902/278 +f 408/915/283 397/919/277 396/900/277 +f 419/920/285 431/921/286 420/922/286 +f 423/923/287 437/924/288 424/925/288 +f 425/926/289 439/927/290 426/928/291 +f 421/929/292 440/930/293 422/931/293 +f 426/928/291 447/932/294 427/933/294 +f 424/925/288 438/934/289 425/926/289 +f 422/931/293 436/935/287 423/923/287 +f 420/922/286 441/936/292 421/929/292 +f 449/937/295 451/938/296 448/939/296 +f 449/937/295 453/463/297 450/940/295 +f 455/941/298 457/942/299 454/943/299 +f 459/944/300 461/945/301 458/946/301 +f 463/947/302 465/948/303 462/949/303 +f 467/950/304 469/951/305 466/952/305 +f 462/949/303 456/953/298 455/941/298 +f 454/943/299 471/954/306 470/955/306 +f 475/956/307 477/957/308 474/958/308 +f 448/939/296 468/959/304 467/950/304 +f 466/952/305 464/960/302 463/947/302 +f 470/955/306 460/961/300 459/944/300 +f 458/946/301 476/962/307 475/956/307 +f 474/958/308 479/963/309 478/964/309 +f 473/641/310 481/965/311 480/966/311 +f 480/966/311 483/967/312 482/968/312 +f 478/964/309 485/969/313 486/970/313 +f 482/968/312 487/971/314 484/972/314 +f 497/973/315 272/746/162 496/974/315 +f 505/730/316 495/975/317 494/551/316 +f 504/976/317 496/974/315 495/975/317 +f 251/422/152 247/555/318 248/977/319 +f 248/977/319 249/737/150 251/422/152 +f 249/737/150 248/977/319 253/430/153 +f 248/977/319 252/563/320 253/430/153 +f 256/740/155 257/978/156 258/741/156 +f 250/738/158 249/737/163 262/743/159 +f 272/746/162 270/979/162 263/747/161 +f 263/747/161 258/741/156 257/978/156 +f 257/978/156 271/745/161 263/747/161 +f 255/749/157 262/743/159 249/737/163 +f 249/737/163 273/750/167 256/748/155 +f 251/422/164 250/738/158 261/744/160 +f 254/739/166 274/751/169 273/750/167 +f 253/430/168 275/432/321 274/751/169 +f 296/801/219 276/823/232 293/809/225 +f 276/823/232 277/825/233 292/827/234 +f 277/825/233 278/849/243 292/827/234 +f 278/849/243 279/816/229 291/828/235 +f 292/827/234 278/849/243 291/828/235 +f 279/816/229 280/852/245 291/828/235 +f 280/852/245 281/752/170 290/754/172 +f 291/828/235 280/852/245 290/754/172 +f 281/752/170 282/859/249 289/753/171 +f 282/859/249 283/863/251 288/853/246 +f 283/863/251 284/806/223 285/869/257 +f 285/869/257 286/866/254 283/863/251 +f 286/866/254 287/841/240 288/853/246 +f 286/866/254 288/853/246 283/863/251 +f 282/859/249 288/853/246 289/753/171 +f 295/799/218 296/801/219 293/809/225 +f 276/823/232 292/827/234 293/809/225 +f 293/809/225 294/803/220 295/799/218 +f 298/755/173 299/775/196 300/756/174 +f 302/758/176 303/774/195 304/759/177 +f 306/761/179 307/771/189 308/762/180 +f 310/764/182 311/777/198 312/765/183 +f 314/767/185 315/788/209 316/768/186 +f 317/770/188 318/773/191 307/771/189 +f 319/772/190 320/980/255 318/773/191 +f 304/759/192 297/757/221 300/756/193 +f 309/766/184 312/765/183 303/774/195 +f 313/769/187 316/768/186 299/775/196 +f 321/776/197 322/779/200 311/777/198 +f 323/778/199 324/783/204 322/779/200 +f 326/780/201 327/785/206 328/781/202 +f 325/782/203 328/781/202 324/783/204 +f 329/784/205 330/787/208 327/785/206 +f 331/786/207 332/981/252 330/787/208 +f 305/763/181 308/762/180 315/788/209 +f 301/789/194 300/846/193 333/790/210 +f 335/792/212 336/795/215 337/793/213 +f 336/795/215 339/868/256 340/796/216 +f 302/797/176 301/789/178 334/791/211 +f 295/799/218 304/802/177 303/800/195 +f 304/802/192 295/799/218 294/803/220 +f 343/805/222 285/869/257 284/806/223 +f 298/808/173 297/804/175 294/803/220 +f 315/810/209 308/854/180 344/811/226 +f 321/813/197 346/848/242 347/814/228 +f 279/816/229 278/849/243 322/817/200 +f 306/819/179 305/850/181 290/754/172 +f 310/820/182 309/843/184 348/821/230 +f 276/823/232 312/844/183 311/824/198 +f 314/826/185 313/845/187 292/827/234 +f 316/829/186 350/847/241 351/830/236 +f 307/832/189 318/855/191 352/833/237 +f 325/835/203 354/851/244 355/836/239 +f 281/752/170 280/852/245 328/838/202 +f 317/840/188 288/853/246 287/841/240 +f 309/843/184 302/797/176 341/798/217 +f 296/801/219 303/800/195 312/844/183 +f 313/845/187 298/808/173 293/809/225 +f 299/831/196 351/830/236 333/790/210 +f 315/810/209 345/812/227 350/847/241 +f 310/820/182 349/822/231 346/848/242 +f 278/849/243 277/825/233 311/824/198 +f 314/826/185 291/828/235 290/754/172 +f 325/835/203 323/815/199 347/814/228 +f 279/816/229 324/818/204 328/838/202 +f 306/819/179 289/753/171 288/853/246 +f 307/832/189 353/834/238 344/811/226 +f 318/855/191 320/867/255 356/856/247 +f 326/837/201 355/836/239 357/857/248 +f 282/859/249 281/752/170 327/839/206 +f 329/858/205 357/857/248 358/861/250 +f 283/863/251 282/859/249 330/860/208 +f 359/865/253 319/842/190 287/841/240 +f 335/792/212 338/794/214 356/856/247 +f 331/862/207 358/861/250 340/796/216 +f 284/806/223 283/863/251 332/864/252 +f 359/865/253 286/866/254 285/869/257 +f 352/833/237 356/856/247 338/794/214 +f 338/794/214 337/793/213 358/861/250 +f 337/793/213 340/796/216 358/861/250 +f 358/861/250 357/857/248 352/833/237 +f 357/857/248 355/836/239 353/834/238 +f 355/836/239 354/851/244 344/811/226 +f 354/851/244 347/814/228 345/812/227 +f 347/814/228 346/848/242 345/812/227 +f 346/848/242 349/822/231 350/847/241 +f 349/822/231 348/821/230 350/847/241 +f 348/821/230 341/798/217 351/830/236 +f 341/798/217 334/791/211 351/830/236 +f 334/791/211 333/790/210 351/830/236 +f 351/830/236 350/847/241 348/821/230 +f 355/836/239 344/811/226 353/834/238 +f 344/811/226 354/851/244 345/812/227 +f 358/861/250 352/833/237 338/794/214 +f 353/834/238 352/833/237 357/857/248 +f 361/870/258 362/982/258 363/871/259 +f 365/873/260 366/983/260 367/874/261 +f 369/876/262 370/897/263 371/877/263 +f 373/879/264 374/903/264 375/880/265 +f 377/882/266 378/901/266 379/883/267 +f 381/885/268 382/898/268 383/886/269 +f 385/888/270 386/899/270 387/889/271 +f 389/891/272 390/913/272 391/892/273 +f 393/894/274 394/912/274 395/895/275 +f 384/890/271 387/889/271 371/877/276 +f 380/887/269 383/886/269 369/876/262 +f 376/884/267 379/883/267 382/898/268 +f 372/881/265 375/880/265 386/899/270 +f 396/900/277 397/919/277 378/901/266 +f 398/902/278 399/918/278 374/903/264 +f 401/904/279 402/910/279 403/905/280 +f 405/907/281 406/911/281 407/908/282 +f 364/875/261 367/874/261 402/910/279 +f 360/872/259 363/871/259 406/911/281 +f 404/909/282 407/908/282 394/912/274 +f 400/906/280 403/905/280 390/913/272 +f 392/896/275 395/895/275 410/914/283 +f 388/893/273 391/892/273 409/916/284 +f 411/917/284 409/916/284 399/918/278 +f 408/915/283 410/914/283 397/919/277 +f 419/920/285 430/984/285 431/921/286 +f 423/923/287 436/935/287 437/924/288 +f 425/926/289 438/934/289 439/927/290 +f 421/929/292 441/936/292 440/930/293 +f 426/928/291 439/927/290 447/932/294 +f 424/925/288 437/924/288 438/934/289 +f 422/931/293 440/930/293 436/935/287 +f 420/922/286 431/921/286 441/936/292 +f 449/937/295 450/940/295 451/938/296 +f 449/937/295 452/464/297 453/463/297 +f 455/941/298 456/953/298 457/942/299 +f 459/944/300 460/961/300 461/945/301 +f 463/947/302 464/960/302 465/948/303 +f 467/950/304 468/959/304 469/951/305 +f 462/949/303 465/948/303 456/953/298 +f 454/943/299 457/942/299 471/954/306 +f 475/956/307 476/962/307 477/957/308 +f 448/939/296 451/938/296 468/959/304 +f 466/952/305 469/951/305 464/960/302 +f 470/955/306 471/954/306 460/961/300 +f 458/946/301 461/945/301 476/962/307 +f 474/958/308 477/957/308 479/963/309 +f 473/641/310 472/462/310 481/965/311 +f 480/966/311 481/965/311 483/967/312 +f 478/964/309 479/963/309 485/969/313 +f 482/968/312 483/967/312 487/971/314 +f 497/973/315 270/979/162 272/746/162 +f 505/730/316 504/976/317 495/975/317 +f 504/976/317 497/973/315 496/974/315 diff --git a/src/main/resources/assets/hbm/models/weapons/greasegun.obj b/src/main/resources/assets/hbm/models/weapons/greasegun.obj index fd439f5e1..666f8fc0e 100644 --- a/src/main/resources/assets/hbm/models/weapons/greasegun.obj +++ b/src/main/resources/assets/hbm/models/weapons/greasegun.obj @@ -1,6 +1,1914 @@ # Blender v2.79 (sub 0) OBJ File: 'greasegun.blend' # www.blender.org -o Cylinder +o Bullet +v 0.000000 -0.293931 1.531675 +v -0.078125 -0.313602 1.538834 +v -0.135317 -0.367344 1.558395 +v -0.156250 -0.440758 1.585115 +v -0.135317 -0.514171 1.611836 +v -0.078125 -0.567913 1.631396 +v 0.000000 -0.587584 1.638556 +v 0.078125 -0.567914 1.631396 +v 0.135316 -0.514171 1.611836 +v 0.156250 -0.440758 1.585115 +v 0.135316 -0.367344 1.558395 +v 0.078125 -0.313602 1.538834 +v 0.000000 -0.122921 2.001521 +v -0.078125 -0.142592 2.008681 +v -0.135317 -0.196334 2.028241 +v -0.156250 -0.269747 2.054962 +v -0.135317 -0.343161 2.081682 +v -0.078125 -0.396903 2.101243 +v 0.000000 -0.416574 2.108402 +v 0.078125 -0.396903 2.101243 +v 0.135316 -0.343161 2.081682 +v 0.156250 -0.269747 2.054962 +v 0.135316 -0.196334 2.028241 +v 0.078125 -0.142592 2.008681 +v 0.000000 -0.095498 2.191073 +v -0.058594 -0.110252 2.196443 +v -0.101488 -0.150559 2.211114 +v -0.117188 -0.205619 2.231154 +v -0.101488 -0.260679 2.251194 +v -0.058594 -0.300986 2.265865 +v 0.000000 -0.315739 2.271235 +v 0.058594 -0.300986 2.265865 +v 0.101487 -0.260679 2.251194 +v 0.117188 -0.205619 2.231154 +v 0.101487 -0.150559 2.211114 +v 0.058594 -0.110252 2.196443 +v 0.000000 -0.147536 2.276525 +v -0.019531 -0.152454 2.278315 +v -0.033830 -0.165889 2.283205 +v -0.039062 -0.184243 2.289885 +v -0.033830 -0.202596 2.296565 +v -0.019531 -0.216031 2.301455 +v 0.000000 -0.220949 2.303245 +v 0.019531 -0.216032 2.301455 +v 0.033829 -0.202596 2.296565 +v 0.039062 -0.184243 2.289885 +v 0.033829 -0.165889 2.283205 +v 0.019531 -0.152454 2.278315 +vt 0.676595 0.272573 +vt 0.683036 0.263897 +vt 0.689476 0.289927 +vt 0.686754 0.296278 +vt 0.676595 0.289927 +vt 0.683036 0.298603 +vt 0.679317 0.296278 +vt 0.675599 0.281250 +vt 0.679317 0.266222 +vt 0.686754 0.266222 +vt 0.689476 0.272573 +vt 0.690473 0.281250 +vt 0.636905 0.298611 +vt 0.660714 0.291667 +vt 0.660714 0.298611 +vt 0.636905 0.333333 +vt 0.660714 0.326389 +vt 0.660714 0.333333 +vt 0.636905 0.263889 +vt 0.660714 0.270833 +vt 0.636905 0.270833 +vt 0.636905 0.284722 +vt 0.636905 0.291667 +vt 0.636905 0.326389 +vt 0.660714 0.319444 +vt 0.636905 0.347222 +vt 0.660714 0.340278 +vt 0.660714 0.347222 +vt 0.636905 0.277778 +vt 0.660714 0.284722 +vt 0.636905 0.312500 +vt 0.636905 0.319444 +vt 0.636905 0.305556 +vt 0.660714 0.305556 +vt 0.636905 0.340278 +vt 0.660714 0.277778 +vt 0.660714 0.312500 +vt 0.669643 0.340278 +vt 0.669643 0.347222 +vt 0.669643 0.284722 +vt 0.669643 0.312500 +vt 0.669643 0.319444 +vt 0.669643 0.305556 +vt 0.669643 0.277778 +vt 0.669643 0.291667 +vt 0.669643 0.298611 +vt 0.669643 0.333333 +vt 0.660714 0.263889 +vt 0.669643 0.270833 +vt 0.669643 0.326389 +vt 0.675595 0.347222 +vt 0.675595 0.277778 +vt 0.675595 0.284722 +vt 0.675595 0.319444 +vt 0.675595 0.305556 +vt 0.675595 0.340278 +vt 0.675595 0.312500 +vt 0.675595 0.291667 +vt 0.675595 0.298611 +vt 0.675595 0.326389 +vt 0.675595 0.333333 +vt 0.675595 0.263889 +vt 0.675595 0.270833 +vt 0.676042 0.302196 +vt 0.681100 0.302196 +vt 0.678571 0.312365 +vt 0.669643 0.263889 +vt 0.677132 0.311457 +vt 0.676042 0.308915 +vt 0.675653 0.305556 +vt 0.677132 0.299654 +vt 0.678571 0.298746 +vt 0.680011 0.299654 +vt 0.681490 0.305556 +vt 0.681100 0.308915 +vt 0.680011 0.311457 +vn 0.0000 -0.3420 -0.9397 +vn -0.5000 0.8138 -0.2962 +vn -0.8616 0.5019 -0.0754 +vn -0.4975 0.8441 -0.1999 +vn 0.8660 -0.4698 0.1710 +vn 0.9949 0.0345 0.0948 +vn 0.8616 -0.4330 0.2649 +vn -0.0000 -0.9397 0.3420 +vn -0.4974 -0.7752 0.3894 +vn -0.5000 -0.8138 0.2962 +vn -1.0000 0.0000 -0.0000 +vn -0.8660 0.4698 -0.1710 +vn 1.0000 -0.0000 0.0000 +vn 0.8616 0.5019 -0.0754 +vn 0.4975 -0.7752 0.3894 +vn -0.0000 -0.9004 0.4350 +vn -0.8660 -0.4698 0.1710 +vn -0.9949 0.0345 0.0948 +vn 0.5000 0.8138 -0.2962 +vn 0.8660 0.4698 -0.1710 +vn 0.0000 0.9397 -0.3420 +vn -0.0000 0.9694 -0.2455 +vn 0.5000 -0.8138 0.2962 +vn -0.8616 -0.4330 0.2649 +vn 0.4975 0.8441 -0.1999 +vn 0.4331 -0.5339 0.7262 +vn 0.0000 -0.6430 0.7659 +vn -0.8661 0.1709 0.4697 +vn 0.4331 0.8758 0.2131 +vn 0.7501 0.5779 0.3215 +vn -0.0000 0.9848 0.1734 +vn -0.7501 -0.2360 0.6178 +vn -0.7501 0.5779 0.3215 +vn -0.4331 0.8758 0.2131 +vn 0.7501 -0.2360 0.6178 +vn -0.4331 -0.5339 0.7262 +vn 0.8661 0.1709 0.4697 +vn 0.0000 -0.0388 0.9992 +vn -0.3276 0.1389 0.9346 +vn -0.3782 0.3166 0.8699 +vn 0.3276 0.4943 0.8052 +vn 0.0000 0.6720 0.7405 +vn 0.1891 0.0088 0.9819 +vn 0.1891 0.6244 0.7579 +vn -0.3276 0.4943 0.8052 +vn -0.1891 0.6244 0.7579 +vn 0.3782 0.3166 0.8699 +vn 0.3276 0.1389 0.9346 +vn -0.1891 0.0088 0.9819 +s off +f 9/1/1 7/2/1 3/3/1 +f 3/3/1 2/4/1 11/5/1 +f 2/4/1 1/6/1 11/5/1 +f 1/6/1 12/7/1 11/5/1 +f 11/5/1 10/8/1 9/1/1 +f 9/1/1 8/9/1 7/2/1 +f 7/2/1 6/10/1 5/11/1 +f 5/11/1 4/12/1 7/2/1 +f 4/12/1 3/3/1 7/2/1 +f 11/5/1 9/1/1 3/3/1 +s 1 +f 2/13/2 15/14/3 14/15/4 +f 9/16/5 22/17/6 21/18/7 +f 7/19/8 18/20/9 6/21/10 +f 4/22/11 15/14/3 3/23/12 +f 10/24/13 23/25/14 22/17/6 +f 7/26/8 20/27/15 19/28/16 +f 5/29/17 16/30/18 4/22/11 +f 12/31/19 23/25/14 11/32/20 +f 1/33/21 14/15/4 13/34/22 +f 9/16/5 20/27/15 8/35/23 +f 5/29/17 18/20/9 17/36/24 +f 1/33/21 24/37/25 12/31/19 +f 19/28/16 32/38/26 31/39/27 +f 17/36/24 28/40/28 16/30/18 +f 23/25/14 36/41/29 35/42/30 +f 14/15/4 25/43/31 13/34/22 +f 21/18/7 32/38/26 20/27/15 +f 18/20/9 29/44/32 17/36/24 +f 24/37/25 25/43/31 36/41/29 +f 14/15/4 27/45/33 26/46/34 +f 22/17/6 33/47/35 21/18/7 +f 19/48/16 30/49/36 18/20/9 +f 16/30/18 27/45/33 15/14/3 +f 22/17/6 35/42/30 34/50/37 +f 32/38/26 43/51/38 31/39/27 +f 28/40/28 41/52/39 40/53/40 +f 36/41/29 47/54/41 35/42/30 +f 26/46/34 37/55/42 25/43/31 +f 33/47/35 44/56/43 32/38/26 +f 30/49/36 41/52/39 29/44/32 +f 36/41/29 37/55/42 48/57/44 +f 26/46/34 39/58/45 38/59/46 +f 33/47/35 46/60/47 45/61/48 +f 30/49/36 43/62/38 42/63/49 +f 28/40/28 39/58/45 27/45/33 +f 35/42/30 46/60/47 34/50/37 +f 41/64/39 45/65/48 37/66/42 +f 2/13/2 3/23/12 15/14/3 +f 9/16/5 10/24/13 22/17/6 +f 7/19/8 19/48/16 18/20/9 +f 4/22/11 16/30/18 15/14/3 +f 10/24/13 11/32/20 23/25/14 +f 7/26/8 8/35/23 20/27/15 +f 5/29/17 17/36/24 16/30/18 +f 12/31/19 24/37/25 23/25/14 +f 1/33/21 2/13/2 14/15/4 +f 9/16/5 21/18/7 20/27/15 +f 5/29/17 6/21/10 18/20/9 +f 1/33/21 13/34/22 24/37/25 +f 19/28/16 20/27/15 32/38/26 +f 17/36/24 29/44/32 28/40/28 +f 23/25/14 24/37/25 36/41/29 +f 14/15/4 26/46/34 25/43/31 +f 21/18/7 33/47/35 32/38/26 +f 18/20/9 30/49/36 29/44/32 +f 24/37/25 13/34/22 25/43/31 +f 14/15/4 15/14/3 27/45/33 +f 22/17/6 34/50/37 33/47/35 +f 19/48/16 31/67/27 30/49/36 +f 16/30/18 28/40/28 27/45/33 +f 22/17/6 23/25/14 35/42/30 +f 32/38/26 44/56/43 43/51/38 +f 28/40/28 29/44/32 41/52/39 +f 36/41/29 48/57/44 47/54/41 +f 26/46/34 38/59/46 37/55/42 +f 33/47/35 45/61/48 44/56/43 +f 30/49/36 42/63/49 41/52/39 +f 36/41/29 25/43/31 37/55/42 +f 26/46/34 27/45/33 39/58/45 +f 33/47/35 34/50/37 46/60/47 +f 30/49/36 31/67/27 43/62/38 +f 28/40/28 40/53/40 39/58/45 +f 35/42/30 47/54/41 46/60/47 +f 37/66/42 38/68/46 39/69/45 +f 39/69/45 40/70/40 37/66/42 +f 40/70/40 41/64/39 37/66/42 +f 41/64/39 42/71/49 45/65/48 +f 42/71/49 43/72/38 45/65/48 +f 43/72/38 44/73/43 45/65/48 +f 45/65/48 46/74/47 47/75/41 +f 47/75/41 48/76/44 37/66/42 +f 45/65/48 47/75/41 37/66/42 +o Handle +v -0.250000 -1.580894 -0.329788 +v -0.250000 -1.459289 -0.374049 +v -0.250000 -1.331845 -0.351577 +v -0.250000 -1.232712 -0.268394 +v -0.250000 -1.188451 -0.146789 +v -0.250000 -1.210923 -0.019345 +v -0.250000 -1.294106 0.079788 +v -0.250000 -1.415711 0.124049 +v -0.250000 -1.543154 0.101577 +v -0.250000 -1.642288 0.018394 +v -0.250000 -1.686549 -0.103211 +v -0.250000 -1.664077 -0.230654 +v -0.500000 -1.580894 -0.329788 +v -0.500000 -1.459289 -0.374049 +v -0.500000 -1.331845 -0.351577 +v -0.500000 -1.232712 -0.268394 +v -0.500000 -1.188451 -0.146789 +v -0.500000 -1.210923 -0.019345 +v -0.500000 -1.294106 0.079788 +v -0.500000 -1.415711 0.124049 +v -0.500000 -1.543154 0.101577 +v -0.500000 -1.642288 0.018394 +v -0.500000 -1.686549 -0.103211 +v -0.500000 -1.664077 -0.230654 +v -0.593750 -0.612984 1.052531 +v -0.593750 -0.521780 1.019336 +v -0.593750 -0.426197 1.036189 +v -0.593750 -0.351847 1.098576 +v -0.593750 -0.318652 1.189780 +v -0.593750 -0.335506 1.285363 +v -0.593750 -0.397893 1.359713 +v -0.593750 -0.489097 1.392909 +v -0.593750 -0.584679 1.376055 +v -0.593750 -0.659029 1.313668 +v -0.593750 -0.692225 1.222464 +v -0.593750 -0.675371 1.126881 +v -0.781250 -0.612984 1.052531 +v -0.781250 -0.521780 1.019336 +v -0.781250 -0.426197 1.036189 +v -0.781250 -0.351847 1.098576 +v -0.781250 -0.318652 1.189780 +v -0.781250 -0.335506 1.285363 +v -0.781250 -0.397893 1.359713 +v -0.781250 -0.489097 1.392909 +v -0.781250 -0.584679 1.376055 +v -0.781250 -0.659029 1.313668 +v -0.781250 -0.692225 1.222464 +v -0.781250 -0.675371 1.126881 +v -0.750000 -0.643681 1.226622 +v -0.625000 -0.643681 1.226622 +v -0.750000 -0.438893 1.083228 +v -0.625000 -0.438893 1.083228 +v -0.750000 -0.582287 0.878440 +v -0.750000 -0.787075 1.021834 +v -0.625000 -0.787075 1.021834 +v -0.625000 -0.582287 0.878440 +v -0.437500 -1.155863 0.059288 +v -0.437500 -1.360651 0.202682 +v -0.312500 -1.360651 0.202682 +v -0.312500 -1.155863 0.059288 +v -0.437500 -1.227560 -0.043106 +v -0.437500 -1.432348 0.100288 +v -0.312500 -1.432348 0.100288 +v -0.312500 -1.227560 -0.043106 +v -0.781250 -0.577135 1.103728 +v -0.781250 -0.516333 1.081598 +v -0.781250 -0.452611 1.092834 +v -0.781250 -0.403044 1.134425 +v -0.781250 -0.380914 1.195228 +v -0.781250 -0.392150 1.258950 +v -0.781250 -0.433741 1.308516 +v -0.781250 -0.494544 1.330647 +v -0.781250 -0.558265 1.319411 +v -0.781250 -0.607832 1.277819 +v -0.781250 -0.629963 1.217017 +v -0.781250 -0.618727 1.153295 +v -1.531250 -0.577135 1.103728 +v -1.531250 -0.516333 1.081598 +v -1.531250 -0.452611 1.092834 +v -1.531250 -0.403044 1.134425 +v -1.531250 -0.380914 1.195228 +v -1.531250 -0.392150 1.258950 +v -1.531250 -0.433741 1.308516 +v -1.531250 -0.494544 1.330647 +v -1.531250 -0.558265 1.319411 +v -1.531250 -0.607832 1.277819 +v -1.531250 -0.629963 1.217017 +v -1.531250 -0.618727 1.153295 +vt 0.717262 0.500032 +vt 0.727560 0.513905 +vt 0.727560 0.541651 +vt 0.668008 0.736165 +vt 0.668008 0.763835 +vt 0.647468 0.763835 +vt 0.647468 0.680609 +vt 0.657738 0.666774 +vt 0.668008 0.680609 +vt 0.577381 0.722222 +vt 0.571429 0.708333 +vt 0.577381 0.708333 +vt 0.636905 0.722222 +vt 0.625000 0.708333 +vt 0.636905 0.708333 +vt 0.636905 0.680556 +vt 0.625000 0.666667 +vt 0.636905 0.666667 +vt 0.625000 0.722222 +vt 0.577381 0.680556 +vt 0.577381 0.666667 +vt 0.571429 0.666667 +vt 0.711309 0.694407 +vt 0.706168 0.687481 +vt 0.706168 0.673629 +vt 0.706964 0.541651 +vt 0.705371 0.527778 +vt 0.706964 0.513905 +vt 0.711316 0.503749 +vt 0.723207 0.503749 +vt 0.729153 0.527778 +vt 0.723207 0.551806 +vt 0.717262 0.555524 +vt 0.711316 0.551806 +vt 0.645879 0.750000 +vt 0.647468 0.736165 +vt 0.651809 0.726037 +vt 0.657738 0.722330 +vt 0.663667 0.726037 +vt 0.669597 0.750000 +vt 0.663667 0.773963 +vt 0.657738 0.777671 +vt 0.651809 0.773963 +vt 0.669597 0.694444 +vt 0.668008 0.708280 +vt 0.663667 0.718408 +vt 0.657738 0.722115 +vt 0.651809 0.718408 +vt 0.647468 0.708280 +vt 0.645879 0.694444 +vt 0.651809 0.670481 +vt 0.663667 0.670481 +vt 0.571429 0.722222 +vt 0.625000 0.680556 +vt 0.571429 0.680556 +vt 0.708341 0.668559 +vt 0.711309 0.666703 +vt 0.714278 0.668559 +vt 0.716451 0.673629 +vt 0.717246 0.680555 +vt 0.716451 0.687481 +vt 0.714278 0.692551 +vt 0.708341 0.692552 +vt 0.705373 0.680555 +vt 0.705357 0.611111 +vt 0.693452 0.597222 +vt 0.705357 0.597222 +vt 0.705357 0.513889 +vt 0.693452 0.500000 +vt 0.705357 0.500000 +vt 0.705357 0.652778 +vt 0.693452 0.638889 +vt 0.705357 0.638889 +vt 0.705357 0.555556 +vt 0.693452 0.541667 +vt 0.705357 0.541667 +vt 0.693452 0.583333 +vt 0.705357 0.583333 +vt 0.693452 0.625000 +vt 0.705357 0.625000 +vt 0.693452 0.527778 +vt 0.705357 0.527778 +vt 0.693452 0.569444 +vt 0.705357 0.569444 +vt 0.693452 0.611111 +vt 0.693452 0.513889 +vt 0.705357 0.666667 +vt 0.693452 0.652778 +vt 0.693452 0.555556 +vt 0.636905 0.805556 +vt 0.645833 0.791667 +vt 0.645833 0.805556 +vt 0.636905 0.708333 +vt 0.645833 0.694444 +vt 0.645833 0.708333 +vt 0.636905 0.750000 +vt 0.645833 0.736111 +vt 0.645833 0.750000 +vt 0.636905 0.791667 +vt 0.645833 0.777778 +vt 0.636905 0.694444 +vt 0.645833 0.680556 +vt 0.636905 0.833333 +vt 0.645833 0.819444 +vt 0.645833 0.833333 +vt 0.636905 0.736111 +vt 0.645833 0.722222 +vt 0.636905 0.777778 +vt 0.645833 0.763889 +vt 0.636905 0.680556 +vt 0.645833 0.666667 +vt 0.636905 0.819444 +vt 0.636905 0.722222 +vt 0.636905 0.763889 +vt 0.577381 0.750000 +vt 0.625000 0.750000 +vt 0.705357 0.708333 +vt 0.669643 0.715278 +vt 0.669643 0.708333 +vt 0.705357 0.687500 +vt 0.669643 0.694444 +vt 0.669643 0.687500 +vt 0.705357 0.736111 +vt 0.669643 0.743056 +vt 0.669643 0.736111 +vt 0.705357 0.666667 +vt 0.669643 0.673611 +vt 0.669643 0.666667 +vt 0.705357 0.715278 +vt 0.669643 0.722222 +vt 0.705357 0.694444 +vt 0.669643 0.701389 +vt 0.705357 0.743056 +vt 0.669643 0.750000 +vt 0.705357 0.673611 +vt 0.669643 0.680556 +vt 0.705357 0.722222 +vt 0.669643 0.729167 +vt 0.705357 0.701389 +vt 0.705357 0.680556 +vt 0.705357 0.729167 +vt 0.693452 0.666667 +vt 0.636905 0.666667 +vt 0.636905 0.750000 +vt 0.571429 0.750000 +vt 0.705357 0.750000 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.8192 -0.5736 +vn 0.0000 -0.8192 0.5736 +vn 0.0000 0.9962 -0.0872 +vn 0.0000 0.9063 0.4226 +vn 0.0000 -0.9063 -0.4226 +vn 0.0000 -0.5736 -0.8192 +vn 0.0000 -0.0872 -0.9962 +vn 0.0000 0.4226 -0.9063 +vn 0.0000 -0.4226 0.9063 +vn 0.0000 0.5736 0.8192 +vn 0.0000 -0.9962 0.0872 +vn 0.0000 0.0872 0.9962 +vn 0.9886 0.0865 0.1236 +vn -0.9886 -0.0865 -0.1236 +s off +f 71/77/50 69/78/50 67/79/50 +f 93/80/50 91/81/50 87/82/50 +f 81/83/51 83/84/51 73/85/51 +f 108/86/52 109/87/52 105/88/52 +f 100/89/52 101/90/52 99/91/52 +f 97/92/53 103/93/53 98/94/53 +f 104/95/52 105/88/52 101/90/52 +f 103/93/53 106/96/53 107/97/53 +f 106/96/53 111/98/53 107/97/53 +f 131/99/50 129/100/50 127/101/50 +f 63/102/50 62/103/50 61/104/50 +f 61/104/50 72/105/50 71/77/50 +f 71/77/50 70/106/50 69/78/50 +f 69/78/50 68/107/50 67/79/50 +f 67/79/50 66/108/50 63/102/50 +f 66/108/50 65/109/50 63/102/50 +f 65/109/50 64/110/50 63/102/50 +f 63/102/50 61/104/50 67/79/50 +f 61/104/50 71/77/50 67/79/50 +f 87/82/50 86/111/50 85/112/50 +f 85/112/50 96/113/50 95/114/50 +f 95/114/50 94/115/50 93/80/50 +f 93/80/50 92/116/50 91/81/50 +f 91/81/50 90/117/50 87/82/50 +f 90/117/50 89/118/50 87/82/50 +f 89/118/50 88/119/50 87/82/50 +f 87/82/50 85/112/50 95/114/50 +f 95/114/50 93/80/50 87/82/50 +f 73/85/51 74/120/51 75/121/51 +f 75/121/51 76/122/51 77/123/51 +f 77/123/51 78/124/51 81/83/51 +f 78/124/51 79/125/51 81/83/51 +f 79/125/51 80/126/51 81/83/51 +f 81/83/51 82/127/51 83/84/51 +f 83/84/51 84/128/51 73/85/51 +f 73/85/51 75/121/51 81/83/51 +f 75/121/51 77/123/51 81/83/51 +f 108/86/52 112/129/52 109/87/52 +f 100/89/52 104/95/52 101/90/52 +f 97/92/53 102/130/53 103/93/53 +f 104/95/52 108/86/52 105/88/52 +f 103/93/53 102/130/53 106/96/53 +f 106/96/53 110/131/53 111/98/53 +f 127/101/50 126/132/50 125/133/50 +f 125/133/50 136/134/50 127/101/50 +f 136/134/50 135/135/50 127/101/50 +f 135/135/50 134/136/50 133/137/50 +f 133/137/50 132/138/50 131/99/50 +f 131/99/50 130/139/50 129/100/50 +f 129/100/50 128/140/50 127/101/50 +f 135/135/50 133/137/50 127/101/50 +f 133/137/50 131/99/50 127/101/50 +s 1 +f 53/141/54 66/142/55 54/143/55 +f 60/144/56 61/145/57 49/146/57 +f 50/147/58 63/148/59 51/149/59 +f 57/150/60 70/151/53 58/152/53 +f 54/143/55 67/153/61 55/154/61 +f 51/149/59 64/155/52 52/156/52 +f 58/152/53 71/157/62 59/158/62 +f 55/154/61 68/159/63 56/160/63 +f 52/156/52 65/161/54 53/141/54 +f 59/158/62 72/162/56 60/144/56 +f 49/163/57 62/164/58 50/147/58 +f 56/160/63 69/165/60 57/150/60 +f 87/166/59 76/167/52 75/168/59 +f 94/169/53 83/170/62 82/171/53 +f 91/172/61 80/173/63 79/174/61 +f 88/175/52 77/176/54 76/167/52 +f 95/177/62 84/178/56 83/170/62 +f 85/179/57 74/180/58 73/181/57 +f 92/182/63 81/183/60 80/173/63 +f 89/184/54 78/185/55 77/176/54 +f 96/186/56 73/187/57 84/178/56 +f 86/188/58 75/168/59 74/180/58 +f 93/189/60 82/171/53 81/183/60 +f 90/190/55 79/174/61 78/185/55 +f 104/95/64 107/191/64 108/86/64 +f 100/89/51 103/192/64 104/95/64 +f 99/91/50 102/130/65 97/92/50 +f 101/90/65 106/96/65 102/130/65 +f 131/193/61 120/194/63 119/195/61 +f 107/191/64 112/129/51 108/86/64 +f 105/88/65 110/131/50 106/96/65 +f 128/196/52 117/197/54 116/198/52 +f 135/199/62 124/200/56 123/201/62 +f 125/202/57 114/203/58 113/204/57 +f 132/205/63 121/206/60 120/194/63 +f 129/207/54 118/208/55 117/197/54 +f 136/209/56 113/210/57 124/200/56 +f 126/211/58 115/212/59 114/203/58 +f 133/213/60 122/214/53 121/206/60 +f 130/215/55 119/195/61 118/208/55 +f 127/216/59 116/198/52 115/212/59 +f 134/217/53 123/201/62 122/214/53 +f 53/141/54 65/161/54 66/142/55 +f 60/144/56 72/162/56 61/145/57 +f 50/147/58 62/164/58 63/148/59 +f 57/150/60 69/165/60 70/151/53 +f 54/143/55 66/142/55 67/153/61 +f 51/149/59 63/148/59 64/155/52 +f 58/152/53 70/151/53 71/157/62 +f 55/154/61 67/153/61 68/159/63 +f 52/156/52 64/155/52 65/161/54 +f 59/158/62 71/157/62 72/162/56 +f 49/163/57 61/218/57 62/164/58 +f 56/160/63 68/159/63 69/165/60 +f 87/166/59 88/175/52 76/167/52 +f 94/169/53 95/177/62 83/170/62 +f 91/172/61 92/182/63 80/173/63 +f 88/175/52 89/184/54 77/176/54 +f 95/177/62 96/186/56 84/178/56 +f 85/179/57 86/188/58 74/180/58 +f 92/182/63 93/189/60 81/183/60 +f 89/184/54 90/190/55 78/185/55 +f 96/186/56 85/219/57 73/187/57 +f 86/188/58 87/166/59 75/168/59 +f 93/189/60 94/169/53 82/171/53 +f 90/190/55 91/172/61 79/174/61 +f 104/95/64 103/192/64 107/191/64 +f 100/89/51 98/220/51 103/192/64 +f 99/91/50 101/90/65 102/130/65 +f 101/90/65 105/88/65 106/96/65 +f 131/193/61 132/205/63 120/194/63 +f 107/191/64 111/221/51 112/129/51 +f 105/88/65 109/87/50 110/131/50 +f 128/196/52 129/207/54 117/197/54 +f 135/199/62 136/209/56 124/200/56 +f 125/202/57 126/211/58 114/203/58 +f 132/205/63 133/213/60 121/206/60 +f 129/207/54 130/215/55 118/208/55 +f 136/209/56 125/222/57 113/210/57 +f 126/211/58 127/216/59 115/212/59 +f 133/213/60 134/217/53 122/214/53 +f 130/215/55 131/193/61 119/195/61 +f 127/216/59 128/196/52 116/198/52 +f 134/217/53 135/199/62 123/201/62 +o Magazine +v 0.187500 -0.312500 1.375000 +v 0.187500 -0.312500 2.375000 +v -0.187500 -0.312500 2.375000 +v -0.187500 -0.312500 1.375000 +v -0.187500 -6.687500 1.375000 +v -0.187500 -6.687500 2.375000 +v 0.187500 -6.687500 2.375000 +v 0.187500 -6.687500 1.375000 +v 0.125000 -0.187500 1.375000 +v -0.125000 -0.187500 1.375000 +v 0.062500 -0.187500 1.875000 +v -0.062500 -0.187500 1.875000 +v -0.062500 -0.187500 1.375000 +v -0.125000 -0.187500 1.875000 +v 0.062500 -0.187500 1.375000 +v 0.125000 -0.187500 1.875000 +v 0.187500 -0.312500 1.875000 +v -0.187500 -0.312500 1.875000 +v 0.062500 -0.312500 1.875000 +v -0.062500 -0.312500 1.875000 +v 0.062500 -0.312500 1.375000 +v -0.062500 -0.312500 1.375000 +vt 0.779762 0.041667 +vt 0.779762 0.750000 +vt 0.755952 0.750000 +vt 0.797619 0.041667 +vt 0.845238 0.041667 +vt 0.845238 0.750000 +vt 0.821429 0.750000 +vt 0.732143 0.041667 +vt 0.779762 -0.000000 +vt 0.863095 0.041667 +vt 0.857143 0.750000 +vt 0.851190 0.750000 +vt 0.797619 0.805556 +vt 0.800595 0.861111 +vt 0.797619 0.861111 +vt 0.806548 0.861111 +vt 0.800595 0.805556 +vt 0.806548 0.805556 +vt 0.776786 0.805556 +vt 0.779762 0.861111 +vt 0.776786 0.861111 +vt 0.770833 0.805556 +vt 0.770833 0.861111 +vt 0.797619 0.875000 +vt 0.803571 0.875000 +vt 0.779762 0.875000 +vt 0.773810 0.875000 +vt 0.797619 0.750000 +vt 0.791667 0.805556 +vt 0.785714 0.805556 +vt 0.791667 0.861111 +vt 0.785714 0.861111 +vt 0.779762 0.805556 +vt 0.779762 0.791667 +vt 0.797619 0.791667 +vt 0.732143 0.750000 +vt 0.732143 0.000000 +vt 0.863095 0.750000 +vt 0.779762 0.805556 +vt 0.797619 0.805556 +vt 0.773810 0.791667 +vt 0.803571 0.791667 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 1.0000 0.0000 +vn 0.8944 0.4472 0.0000 +vn -0.8944 0.4472 0.0000 +s off +f 142/223/66 139/224/66 154/225/66 +f 143/226/67 139/224/67 142/223/67 +f 144/227/68 137/228/68 153/229/68 +f 141/230/69 143/231/69 142/223/69 +f 141/232/70 158/233/70 157/234/70 +f 147/235/71 145/236/71 151/237/71 +f 137/238/72 152/239/72 153/240/72 +f 150/241/71 149/242/71 146/243/71 +f 154/244/73 146/243/73 140/245/73 +f 157/246/70 145/236/70 137/247/70 +f 146/243/70 158/248/70 140/249/70 +f 138/250/71 155/251/71 156/252/71 +f 147/235/66 157/253/66 155/251/66 +f 158/254/68 148/255/68 156/252/68 +f 156/252/71 157/253/71 158/254/71 +f 150/241/67 156/256/67 148/255/67 +f 155/257/67 152/239/67 147/235/67 +f 140/258/66 141/230/66 154/225/66 +f 141/230/66 142/223/66 154/225/66 +f 143/226/67 138/250/67 139/224/67 +f 138/250/68 143/226/68 153/229/68 +f 143/226/68 144/227/68 153/229/68 +f 141/230/69 144/259/69 143/231/69 +f 137/228/70 144/227/70 157/234/70 +f 144/227/70 141/232/70 157/234/70 +f 141/232/70 140/260/70 158/233/70 +f 147/235/71 152/239/71 145/236/71 +f 137/238/72 145/236/72 152/239/72 +f 150/241/71 148/255/71 149/242/71 +f 154/244/73 150/241/73 146/243/73 +f 157/246/70 151/237/70 145/236/70 +f 146/243/70 149/242/70 158/248/70 +f 154/261/71 139/224/71 156/252/71 +f 139/224/71 138/250/71 156/252/71 +f 138/250/71 153/262/71 155/251/71 +f 147/235/66 151/237/66 157/253/66 +f 158/254/68 149/242/68 148/255/68 +f 156/252/71 155/251/71 157/253/71 +f 150/241/67 154/263/67 156/256/67 +f 155/257/67 153/264/67 152/239/67 +o Flap +v 0.562500 1.125000 0.312500 +v 0.519682 0.909741 0.312500 +v 0.397748 0.727252 0.312500 +v 0.215260 0.605318 0.312500 +v 0.625000 1.125000 0.312500 +v 0.239177 0.547575 0.312500 +v 0.441942 0.683058 0.312500 +v 0.577425 0.885823 0.312500 +v 0.562500 1.125000 2.437500 +v 0.519682 0.909741 2.437500 +v 0.397747 0.727252 2.437500 +v 0.215260 0.605318 2.437500 +v 0.239177 0.547575 2.437500 +v 0.441941 0.683058 2.437500 +v 0.577424 0.885823 2.437500 +v 0.625000 1.125000 2.437500 +v 0.239177 0.547575 2.062500 +v 0.000000 0.500000 2.062500 +v 0.000000 0.562500 2.062500 +v 0.215260 0.605318 2.062500 +v 0.239177 0.547575 0.687500 +v 0.000000 0.500000 0.687500 +v 0.215260 0.605318 0.687500 +v 0.000000 0.562500 0.687500 +vt 0.431548 0.597222 +vt 0.532738 0.590278 +vt 0.431548 0.590278 +vt 0.449405 0.520833 +vt 0.431548 0.513889 +vt 0.431548 0.520833 +vt 0.449405 0.486111 +vt 0.514881 0.493056 +vt 0.514881 0.486111 +vt 0.529762 0.513889 +vt 0.532738 0.541667 +vt 0.532738 0.513889 +vt 0.529762 0.569444 +vt 0.532738 0.597222 +vt 0.532738 0.569444 +vt 0.529762 0.541667 +vt 0.431548 0.541667 +vt 0.434524 0.513889 +vt 0.434524 0.569444 +vt 0.431548 0.569444 +vt 0.434524 0.541667 +vt 0.449405 0.513889 +vt 0.452381 0.486111 +vt 0.511905 0.513889 +vt 0.514881 0.513889 +vt 0.514881 0.520833 +vt 0.532738 0.520833 +vt 0.449405 0.493056 +vt 0.529762 0.597222 +vt 0.434524 0.597222 +vt 0.452381 0.513889 +vt 0.511905 0.486111 +vt 0.532738 0.569444 +vt 0.431548 0.534722 +vt 0.532738 0.534722 +vt 0.449405 0.486111 +vt 0.514881 0.513889 +vt 0.449405 0.513889 +vt 0.532738 0.597222 +vt 0.431548 0.569444 +vt 0.514881 0.486111 +vt 0.431548 0.597222 +vt 0.532738 0.513889 +vt 0.431548 0.513889 +vn 0.0000 1.0000 0.0000 +vn -0.9239 -0.3827 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +vn -0.0000 0.0000 1.0000 +vn -0.9239 0.3827 -0.0000 +vn -0.7071 0.7071 -0.0000 +vn 0.9239 -0.3827 0.0000 +vn 0.9808 -0.1951 0.0000 +vn -0.1951 0.9808 0.0000 +vn -0.4430 0.8965 -0.0000 +vn -0.9808 0.1951 -0.0000 +vn 0.7071 -0.7071 0.0000 +vn 0.4430 -0.8965 0.0000 +vn 0.1951 -0.9808 0.0000 +vn -0.5556 0.8315 0.0000 +vn 0.5556 -0.8315 0.0000 +s off +f 174/265/74 159/266/74 167/267/74 +f 178/268/75 171/269/75 170/270/75 +f 176/271/76 182/272/76 180/273/76 +f 162/274/77 165/275/77 164/276/77 +f 160/277/77 163/278/77 166/279/77 +f 161/280/77 166/279/77 165/275/77 +f 172/281/78 170/282/78 171/269/78 +f 174/265/78 168/283/78 173/284/78 +f 173/284/78 169/285/78 172/281/78 +f 175/286/78 177/287/78 176/271/78 +f 180/273/77 181/288/77 179/289/77 +f 164/276/75 181/290/75 162/291/75 +f 174/265/74 163/278/74 159/266/74 +f 178/268/75 175/286/75 171/269/75 +f 176/271/76 177/292/76 182/272/76 +f 162/274/77 161/280/77 165/275/77 +f 160/277/77 159/293/77 163/278/77 +f 161/280/77 160/277/77 166/279/77 +f 172/281/78 169/285/78 170/282/78 +f 174/265/78 167/294/78 168/283/78 +f 173/284/78 168/283/78 169/285/78 +f 175/286/78 178/295/78 177/287/78 +f 180/273/77 182/296/77 181/288/77 +f 164/276/75 179/289/75 181/290/75 +s 1 +f 168/297/79 161/298/80 169/299/80 +f 173/284/81 163/278/82 174/265/82 +f 182/300/83 178/301/84 181/302/84 +f 167/303/85 160/304/79 168/297/79 +f 172/281/86 166/279/81 173/284/81 +f 175/286/87 180/273/88 179/289/87 +f 178/301/84 161/298/80 181/302/84 +f 179/289/87 165/275/86 172/281/86 +f 168/297/79 160/304/79 161/298/80 +f 173/284/81 166/279/81 163/278/82 +f 182/300/83 177/305/83 178/301/84 +f 167/303/85 159/306/85 160/304/79 +f 172/281/86 165/275/86 166/279/81 +f 175/286/87 176/271/88 180/273/88 +f 178/301/84 170/307/89 169/299/80 +f 169/299/80 161/298/80 178/301/84 +f 161/298/80 162/308/89 181/302/84 +f 172/281/86 171/269/90 175/286/87 +f 179/289/87 164/276/90 165/275/86 +f 172/281/86 175/286/87 179/289/87 +o Stock +v -0.375000 -0.437500 -6.562500 +v -0.437500 -0.454247 -6.562500 +v -0.483253 -0.500000 -6.562500 +v -0.500000 -0.562500 -6.562500 +v -0.483253 -0.625000 -6.562500 +v -0.437500 -0.670753 -6.562500 +v -0.375000 -0.687500 -6.562500 +v -0.312500 -0.670753 -6.562500 +v -0.266747 -0.625000 -6.562500 +v -0.250000 -0.562500 -6.562500 +v -0.266747 -0.500000 -6.562500 +v -0.312500 -0.454247 -6.562500 +v -0.375000 -2.937500 -7.062500 +v -0.375000 -0.504487 -6.812500 +v -0.437500 -0.518991 -6.804127 +v -0.483253 -0.558614 -6.781250 +v -0.500000 -0.612741 -6.750000 +v -0.483253 -0.666867 -6.718750 +v -0.437500 -0.706490 -6.695873 +v -0.375000 -0.720994 -6.687500 +v -0.312500 -0.706490 -6.695873 +v -0.266747 -0.666867 -6.718750 +v -0.250000 -0.612741 -6.750000 +v -0.266747 -0.558614 -6.781250 +v -0.312500 -0.518991 -6.804127 +v -0.375000 -0.687500 -6.995513 +v -0.437500 -0.695874 -6.981009 +v -0.483253 -0.718750 -6.941386 +v -0.500000 -0.750000 -6.887259 +v -0.483253 -0.781250 -6.833133 +v -0.437500 -0.804126 -6.793509 +v -0.375000 -0.812500 -6.779007 +v -0.312500 -0.804126 -6.793509 +v -0.266747 -0.781250 -6.833133 +v -0.250000 -0.750000 -6.887259 +v -0.266747 -0.718750 -6.941386 +v -0.312500 -0.695874 -6.981009 +v -0.375000 -0.937500 -7.062500 +v -0.437500 -0.937500 -7.045753 +v -0.483253 -0.937500 -7.000000 +v -0.500000 -0.937500 -6.937500 +v -0.483253 -0.937500 -6.875000 +v -0.437500 -0.937500 -6.829247 +v -0.375000 -0.937500 -6.812500 +v -0.312500 -0.937500 -6.829247 +v -0.266747 -0.937500 -6.875000 +v -0.250000 -0.937500 -6.937500 +v -0.266747 -0.937500 -7.000000 +v -0.312500 -0.937500 -7.045753 +v -0.437500 -2.937500 -7.045753 +v -0.483253 -2.937500 -7.000000 +v -0.500000 -2.937500 -6.937500 +v -0.483253 -2.937500 -6.875000 +v -0.437500 -2.937500 -6.829247 +v -0.375000 -2.937500 -6.812500 +v -0.312500 -2.937500 -6.829247 +v -0.266747 -2.937500 -6.875000 +v -0.250000 -2.937500 -6.937500 +v -0.266747 -2.937500 -7.000000 +v -0.312500 -2.937500 -7.045753 +v 0.375000 -0.437500 -6.562500 +v -0.324759 -3.125000 -7.062500 +v -0.378886 -3.156250 -7.045753 +v -0.418509 -3.179127 -7.000000 +v -0.433013 -3.187500 -6.937500 +v -0.418509 -3.179127 -6.875000 +v -0.378886 -3.156250 -6.829247 +v -0.324759 -3.125000 -6.812500 +v -0.270633 -3.093750 -6.829247 +v -0.231009 -3.070873 -6.875000 +v -0.216506 -3.062500 -6.937500 +v -0.231009 -3.070873 -7.000000 +v -0.270633 -3.093750 -7.045753 +v -0.187500 -3.262259 -7.062500 +v -0.218750 -3.316386 -7.045753 +v -0.241627 -3.356009 -7.000000 +v -0.250000 -3.370513 -6.937500 +v -0.241627 -3.356009 -6.875000 +v -0.218750 -3.316386 -6.829247 +v -0.187500 -3.262259 -6.812500 +v -0.156250 -3.208133 -6.829247 +v -0.133374 -3.168509 -6.875000 +v -0.125000 -3.154006 -6.937500 +v -0.133373 -3.168509 -7.000000 +v -0.156250 -3.208133 -7.045753 +v 0.000000 -3.312500 -7.062500 +v 0.000000 -3.375000 -7.045753 +v 0.000000 -3.420753 -7.000000 +v 0.000000 -3.437500 -6.937500 +v 0.000000 -3.420753 -6.875000 +v -0.000000 -3.375000 -6.829247 +v 0.000000 -3.312500 -6.812500 +v -0.000000 -3.250000 -6.829247 +v 0.000000 -3.204247 -6.875000 +v 0.000000 -3.187500 -6.937500 +v 0.000000 -3.204247 -7.000000 +v 0.000000 -3.250000 -7.045753 +v 0.437500 -0.454247 -6.562500 +v 0.483253 -0.500000 -6.562500 +v 0.500000 -0.562500 -6.562500 +v 0.483253 -0.625000 -6.562500 +v 0.437500 -0.670753 -6.562500 +v 0.375000 -0.687500 -6.562500 +v 0.312500 -0.670753 -6.562500 +v 0.266747 -0.625000 -6.562500 +v 0.250000 -0.562500 -6.562500 +v 0.266747 -0.500000 -6.562500 +v 0.312500 -0.454247 -6.562500 +v 0.375000 -2.937500 -7.062500 +v 0.375000 -0.504487 -6.812500 +v 0.437500 -0.518991 -6.804127 +v 0.483253 -0.558614 -6.781250 +v 0.500000 -0.612741 -6.750000 +v 0.483253 -0.666867 -6.718750 +v 0.437500 -0.706490 -6.695873 +v 0.375000 -0.720994 -6.687500 +v 0.312500 -0.706490 -6.695873 +v 0.266747 -0.666867 -6.718750 +v 0.250000 -0.612741 -6.750000 +v 0.266747 -0.558614 -6.781250 +v 0.312500 -0.518991 -6.804127 +v 0.375000 -0.687500 -6.995513 +v 0.437500 -0.695874 -6.981009 +v 0.483253 -0.718750 -6.941386 +v 0.500000 -0.750000 -6.887259 +v 0.483253 -0.781250 -6.833133 +v 0.437500 -0.804126 -6.793509 +v 0.375000 -0.812500 -6.779007 +v 0.312500 -0.804126 -6.793509 +v 0.266747 -0.781250 -6.833133 +v 0.250000 -0.750000 -6.887259 +v 0.266747 -0.718750 -6.941386 +v 0.312500 -0.695874 -6.981009 +v 0.375000 -0.937500 -7.062500 +v 0.437500 -0.937500 -7.045753 +v 0.483253 -0.937500 -7.000000 +v 0.500000 -0.937500 -6.937500 +v 0.483253 -0.937500 -6.875000 +v 0.437500 -0.937500 -6.829247 +v 0.375000 -0.937500 -6.812500 +v 0.312500 -0.937500 -6.829247 +v 0.266747 -0.937500 -6.875000 +v 0.250000 -0.937500 -6.937500 +v 0.266747 -0.937500 -7.000000 +v 0.312500 -0.937500 -7.045753 +v 0.437500 -2.937500 -7.045753 +v 0.483253 -2.937500 -7.000000 +v 0.500000 -2.937500 -6.937500 +v 0.483253 -2.937500 -6.875000 +v 0.437500 -2.937500 -6.829247 +v 0.375000 -2.937500 -6.812500 +v 0.312500 -2.937500 -6.829247 +v 0.266747 -2.937500 -6.875000 +v 0.250000 -2.937500 -6.937500 +v 0.266747 -2.937500 -7.000000 +v 0.312500 -2.937500 -7.045753 +v 0.324759 -3.125000 -7.062500 +v 0.378886 -3.156250 -7.045753 +v 0.418509 -3.179127 -7.000000 +v 0.433012 -3.187500 -6.937500 +v 0.418509 -3.179127 -6.875000 +v 0.378886 -3.156250 -6.829247 +v 0.324759 -3.125000 -6.812500 +v 0.270633 -3.093750 -6.829247 +v 0.231009 -3.070873 -6.875000 +v 0.216506 -3.062500 -6.937500 +v 0.231009 -3.070873 -7.000000 +v 0.270633 -3.093750 -7.045753 +v 0.187500 -3.262259 -7.062500 +v 0.218750 -3.316386 -7.045753 +v 0.241627 -3.356009 -7.000000 +v 0.250000 -3.370513 -6.937500 +v 0.241627 -3.356009 -6.875000 +v 0.218750 -3.316386 -6.829247 +v 0.187500 -3.262259 -6.812500 +v 0.156250 -3.208133 -6.829247 +v 0.133373 -3.168509 -6.875000 +v 0.125000 -3.154006 -6.937500 +v 0.133373 -3.168509 -7.000000 +v 0.156250 -3.208133 -7.045753 +v -0.375000 -0.437500 1.187500 +v -0.437500 -0.454247 1.187500 +v -0.483253 -0.500000 1.187500 +v -0.500000 -0.562500 1.187500 +v -0.483253 -0.625000 1.187500 +v -0.437500 -0.670753 1.187500 +v -0.375000 -0.687500 1.187500 +v -0.312500 -0.670753 1.187500 +v -0.266747 -0.625000 1.187500 +v -0.250000 -0.562500 1.187500 +v -0.266747 -0.500000 1.187500 +v -0.312500 -0.454247 1.187500 +v 0.375000 -0.437500 1.187500 +v 0.437500 -0.454247 1.187500 +v 0.483253 -0.500000 1.187500 +v 0.500000 -0.562500 1.187500 +v 0.483253 -0.625000 1.187500 +v 0.437500 -0.670753 1.187500 +v 0.375000 -0.687500 1.187500 +v 0.312500 -0.670753 1.187500 +v 0.266747 -0.625000 1.187500 +v 0.250000 -0.562500 1.187500 +v 0.266747 -0.500000 1.187500 +v 0.312500 -0.454247 1.187500 +vt 0.518695 0.923665 +vt 0.528925 0.923665 +vt 0.523810 0.944337 +vt 0.518695 0.937446 +vt 0.523810 0.916775 +vt 0.528925 0.937446 +vt 0.520857 0.942491 +vt 0.518695 0.937446 +vt 0.517904 0.930556 +vt 0.520857 0.918621 +vt 0.523810 0.916775 +vt 0.526763 0.918621 +vt 0.529716 0.930556 +vt 0.528925 0.937446 +vt 0.526763 0.942490 +vt 0.526763 0.942490 +vt 0.523810 0.944337 +vt 0.520857 0.942491 +vt 0.517904 0.930556 +vt 0.518695 0.923665 +vt 0.520857 0.918621 +vt 0.526763 0.918621 +vt 0.528925 0.923665 +vt 0.529716 0.930556 +vt 0.369048 0.986111 +vt 0.377976 0.993056 +vt 0.369048 0.993056 +vt 0.369048 0.965278 +vt 0.377976 0.972222 +vt 0.369048 0.972222 +vt 0.369048 0.937500 +vt 0.377976 0.930556 +vt 0.377976 0.937500 +vt 0.369048 0.951389 +vt 0.377976 0.944444 +vt 0.377976 0.951389 +vt 0.369048 1.000000 +vt 0.377976 1.000000 +vt 0.369048 0.979167 +vt 0.377976 0.979167 +vt 0.369048 0.944444 +vt 0.369048 0.958333 +vt 0.377976 0.958333 +vt 0.369048 0.916667 +vt 0.377976 0.923611 +vt 0.369048 0.923611 +vt 0.377976 0.986111 +vt 0.377976 0.965278 +vt 0.369048 0.930556 +vt 0.386905 0.944444 +vt 0.386905 0.958333 +vt 0.386905 0.916667 +vt 0.386905 0.923611 +vt 0.386905 0.986111 +vt 0.386905 0.965278 +vt 0.386905 0.930556 +vt 0.386905 0.993056 +vt 0.386905 0.972222 +vt 0.386905 0.937500 +vt 0.386905 0.951389 +vt 0.386905 1.000000 +vt 0.386905 0.979167 +vt 0.395833 0.979167 +vt 0.395833 0.937500 +vt 0.395833 0.944444 +vt 0.395833 0.958333 +vt 0.395833 0.916667 +vt 0.395833 0.923611 +vt 0.395833 0.986111 +vt 0.395833 0.965278 +vt 0.395833 0.930556 +vt 0.395833 0.993056 +vt 0.395833 0.972222 +vt 0.395833 0.951389 +vt 0.395833 1.000000 +vt 0.491071 0.979167 +vt 0.491071 0.944444 +vt 0.491071 0.958333 +vt 0.491071 0.916667 +vt 0.491071 0.923611 +vt 0.491071 0.986111 +vt 0.491071 0.965278 +vt 0.491071 0.930556 +vt 0.491071 0.993056 +vt 0.491071 0.972222 +vt 0.491071 0.937500 +vt 0.491071 0.951389 +vt 0.491071 1.000000 +vt 0.500000 0.993056 +vt 0.500000 1.000000 +vt 0.500000 0.979167 +vt 0.500000 0.944444 +vt 0.500000 0.958333 +vt 0.500000 0.916667 +vt 0.500000 0.923611 +vt 0.500000 0.986111 +vt 0.500000 0.965278 +vt 0.500000 0.930556 +vt 0.500000 0.972222 +vt 0.500000 0.937500 +vt 0.500000 0.951389 +vt 0.508929 0.944444 +vt 0.508929 0.951389 +vt 0.508929 0.993056 +vt 0.508929 1.000000 +vt 0.508929 0.979167 +vt 0.508929 0.958333 +vt 0.508929 0.923611 +vt 0.508929 0.986111 +vt 0.508929 0.965278 +vt 0.508929 0.930556 +vt 0.508929 0.972222 +vt 0.508929 0.937500 +vt 0.517857 0.937500 +vt 0.517857 0.944444 +vt 0.517857 0.951389 +vt 0.517857 0.993056 +vt 0.517857 1.000000 +vt 0.517857 0.979167 +vt 0.517857 0.958333 +vt 0.517857 0.916667 +vt 0.517857 0.923611 +vt 0.517857 0.986111 +vt 0.517857 0.965278 +vt 0.517857 0.930556 +vt 0.517857 0.972222 +vt 0.377976 0.993056 +vt 0.369048 1.000000 +vt 0.369048 0.993056 +vt 0.377976 0.930556 +vt 0.369048 0.937500 +vt 0.369048 0.930556 +vt 0.369048 0.965278 +vt 0.377976 0.972222 +vt 0.369048 0.972222 +vt 0.369048 0.951389 +vt 0.377976 0.958333 +vt 0.369048 0.958333 +vt 0.377976 0.986111 +vt 0.369048 0.986111 +vt 0.377976 0.923611 +vt 0.369048 0.923611 +vt 0.377976 0.944444 +vt 0.369048 0.944444 +vt 0.369048 0.979167 +vt 0.369048 0.916667 +vt 0.377976 0.979167 +vt 0.386905 0.965278 +vt 0.377976 0.965278 +vt 0.386905 0.944444 +vt 0.377976 0.951389 +vt 0.386905 0.979167 +vt 0.377976 0.916667 +vt 0.386905 0.923611 +vt 0.377976 0.937500 +vt 0.386905 0.972222 +vt 0.386905 0.993056 +vt 0.377976 1.000000 +vt 0.386905 0.930556 +vt 0.386905 0.951389 +vt 0.395833 0.923611 +vt 0.395833 0.958333 +vt 0.386905 0.958333 +vt 0.395833 0.944444 +vt 0.395833 0.986111 +vt 0.386905 0.986111 +vt 0.386905 0.916667 +vt 0.395833 0.937500 +vt 0.386905 0.937500 +vt 0.395833 0.979167 +vt 0.395833 0.993056 +vt 0.386905 1.000000 +vt 0.395833 0.930556 +vt 0.395833 0.972222 +vt 0.491071 0.923611 +vt 0.491071 0.958333 +vt 0.395833 0.965278 +vt 0.491071 0.944444 +vt 0.395833 0.951389 +vt 0.491071 0.979167 +vt 0.395833 0.916667 +vt 0.491071 0.937500 +vt 0.491071 0.972222 +vt 0.491071 0.993056 +vt 0.395833 1.000000 +vt 0.491071 0.930556 +vt 0.491071 0.951389 +vt 0.491071 0.986111 +vt 0.500000 0.993056 +vt 0.500000 0.923611 +vt 0.500000 0.958333 +vt 0.491071 0.965278 +vt 0.500000 0.944444 +vt 0.500000 0.986111 +vt 0.491071 0.916667 +vt 0.500000 0.972222 +vt 0.491071 1.000000 +vt 0.500000 0.937500 +vt 0.500000 0.951389 +vt 0.508929 0.958333 +vt 0.508929 0.993056 +vt 0.508929 0.923611 +vt 0.500000 0.930556 +vt 0.500000 0.965278 +vt 0.508929 0.944444 +vt 0.508929 0.979167 +vt 0.500000 0.979167 +vt 0.508929 0.916667 +vt 0.500000 0.916667 +vt 0.500000 1.000000 +vt 0.508929 0.930556 +vt 0.508929 0.972222 +vt 0.517857 0.972222 +vt 0.508929 0.965278 +vt 0.517857 0.965278 +vt 0.517857 0.979167 +vt 0.508929 0.986111 +vt 0.517857 0.986111 +vt 0.517857 1.000000 +vt 0.517857 0.916667 +vt 0.517857 0.923611 +vt 0.517857 0.930556 +vt 0.508929 0.937500 +vt 0.517857 0.937500 +vt 0.517857 0.944444 +vt 0.508929 0.951389 +vt 0.517857 0.958333 +vt 0.000000 0.937500 +vt 0.000000 0.965278 +vt 0.000000 0.979167 +vt 0.000000 0.930556 +vt 0.000000 0.958333 +vt -0.000000 0.986111 +vt 0.000000 0.923611 +vt -0.000000 0.993056 +vt 0.000000 0.916667 +vt 0.000000 0.944444 +vt 0.000000 0.916667 +vt 0.000000 0.993056 +vt 0.000000 0.951389 +vt 0.000000 0.923611 +vt 0.000000 0.986111 +vt 0.000000 0.958333 +vt 0.000000 0.951389 +vt 0.000000 0.930556 +vt 0.000000 0.979167 +vt 0.000000 0.965278 +vt 0.000000 0.944444 +vt 0.000000 0.937500 +vt 0.000000 0.972222 +vt 0.000000 0.972222 +vt 0.377976 0.916667 +vt 0.508929 0.916667 +vt 0.508929 1.000000 +vt -0.000000 1.000000 +vt 0.000000 1.000000 +vn 0.0000 0.0000 1.0000 +vn -0.0000 -0.9911 0.1334 +vn 0.5194 -0.7400 0.4273 +vn 0.5065 -0.8546 0.1144 +vn -0.9998 0.0215 -0.0058 +vn -0.8846 -0.4039 0.2332 +vn -0.8738 -0.4822 0.0628 +vn 0.4883 0.8653 -0.1129 +vn 0.8474 0.4598 -0.2654 +vn 0.4823 0.7586 -0.4380 +vn -0.4883 0.8653 -0.1129 +vn 0.0000 0.8660 -0.5000 +vn -0.4823 0.7586 -0.4380 +vn 0.8738 -0.4822 0.0628 +vn 0.8846 -0.4039 0.2332 +vn -0.5065 -0.8546 0.1144 +vn -0.5194 -0.7400 0.4273 +vn 0.0000 0.9918 -0.1278 +vn -0.8549 0.5140 -0.0698 +vn -0.8474 0.4598 -0.2654 +vn 0.9991 0.0373 -0.0215 +vn 0.9998 0.0215 -0.0058 +vn -0.0000 -0.8660 0.5000 +vn -0.9991 0.0373 -0.0215 +vn 0.8549 0.5140 -0.0698 +vn -0.0000 0.5000 -0.8660 +vn -0.8474 0.2655 -0.4598 +vn 0.8846 -0.2332 0.4039 +vn 0.9991 0.0215 -0.0373 +vn 0.0000 -0.5000 0.8660 +vn -0.9991 0.0215 -0.0373 +vn 0.8474 0.2655 -0.4598 +vn 0.5195 -0.4273 0.7400 +vn -0.8846 -0.2332 0.4039 +vn 0.4823 0.4380 -0.7586 +vn -0.4823 0.4380 -0.7586 +vn -0.5194 -0.4273 0.7400 +vn -0.5065 -0.1144 0.8546 +vn 0.4883 0.1129 -0.8653 +vn -0.0000 0.1278 -0.9918 +vn -0.8549 0.0698 -0.5140 +vn 0.8738 -0.0628 0.4822 +vn 0.9998 0.0058 -0.0215 +vn -0.0000 -0.1334 0.9911 +vn -0.9998 0.0058 -0.0215 +vn 0.8549 0.0698 -0.5140 +vn 0.5065 -0.1144 0.8546 +vn -0.8738 -0.0628 0.4822 +vn -0.4883 0.1129 -0.8653 +vn -0.5140 -0.0698 0.8549 +vn -0.0215 -0.0058 -0.9998 +vn -0.8653 -0.1129 -0.4883 +vn 0.8546 0.1144 0.5065 +vn 0.9911 0.1334 0.0000 +vn -0.0215 -0.0058 0.9998 +vn -0.9918 -0.1278 0.0000 +vn 0.8546 0.1144 -0.5065 +vn 0.4822 0.0628 0.8738 +vn -0.8653 -0.1129 0.4883 +vn 0.4822 0.0628 -0.8738 +vn -0.5140 -0.0698 -0.8549 +vn 0.4039 0.2332 0.8846 +vn 0.7400 0.4273 0.5195 +vn -0.4598 -0.2655 0.8474 +vn -0.0373 -0.0215 -0.9991 +vn -0.7586 -0.4380 -0.4823 +vn 0.8660 0.5000 0.0000 +vn -0.0373 -0.0215 0.9991 +vn -0.8660 -0.5000 -0.0000 +vn 0.7400 0.4273 -0.5195 +vn -0.7586 -0.4380 0.4823 +vn 0.4039 0.2332 -0.8846 +vn -0.4598 -0.2655 -0.8474 +vn -0.0215 -0.0373 -0.9991 +vn -0.2655 -0.4598 -0.8474 +vn 0.2332 0.4039 0.8846 +vn 0.4273 0.7400 0.5195 +vn -0.2655 -0.4598 0.8474 +vn -0.4380 -0.7586 -0.4823 +vn 0.5000 0.8660 -0.0000 +vn -0.0215 -0.0373 0.9991 +vn -0.5000 -0.8660 -0.0000 +vn 0.4273 0.7400 -0.5194 +vn -0.4380 -0.7586 0.4823 +vn 0.2332 0.4039 -0.8846 +vn 0.0000 0.4664 -0.8846 +vn 0.0000 -0.0431 -0.9991 +vn 0.0000 -0.5309 -0.8474 +vn 0.0000 0.4664 0.8846 +vn 0.0000 0.8545 0.5195 +vn -0.0000 -0.5309 0.8474 +vn 0.0000 -0.8760 -0.4823 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -0.0431 0.9991 +vn 0.0000 -1.0000 -0.0000 +vn 0.0000 0.8545 -0.5194 +vn 0.0000 -0.8760 0.4823 +vn -0.5194 -0.7400 0.4272 +vn 0.5195 -0.7400 0.4272 +vn 0.5194 -0.4273 0.7400 +vn 0.5140 -0.0698 0.8549 +vn 0.0215 -0.0058 -0.9998 +vn 0.8653 -0.1129 -0.4883 +vn -0.9911 0.1334 0.0000 +vn 0.9918 -0.1278 0.0000 +vn -0.8546 0.1144 -0.5065 +vn -0.4822 0.0628 0.8738 +vn 0.8653 -0.1129 0.4883 +vn 0.5140 -0.0698 -0.8549 +vn -0.8546 0.1144 0.5065 +vn -0.4039 0.2332 0.8846 +vn 0.4598 -0.2654 0.8474 +vn 0.0373 -0.0215 -0.9991 +vn -0.4822 0.0628 -0.8738 +vn 0.7586 -0.4380 -0.4823 +vn -0.7400 0.4272 0.5194 +vn 0.0215 -0.0058 0.9998 +vn -0.7400 0.4273 -0.5195 +vn 0.8660 -0.5000 -0.0000 +vn 0.4598 -0.2654 -0.8474 +vn 0.0215 -0.0373 -0.9991 +vn -0.2332 0.4039 0.8846 +vn 0.2655 -0.4598 0.8474 +vn 0.7586 -0.4380 0.4823 +vn -0.4039 0.2332 -0.8846 +vn 0.4380 -0.7586 -0.4823 +vn -0.5000 0.8660 -0.0000 +vn -0.8660 0.5000 -0.0000 +vn 0.0215 -0.0373 0.9991 +vn 0.0373 -0.0215 0.9991 +vn 0.4380 -0.7586 0.4823 +vn -0.4273 0.7400 -0.5194 +vn -0.2332 0.4039 -0.8846 +vn -0.4273 0.7400 0.5194 +vn 0.5000 -0.8660 -0.0000 +vn 0.2654 -0.4598 -0.8474 +vn 1.0000 0.0000 0.0000 +vn -1.0000 -0.0000 0.0000 +s off +f 367/309/91 371/310/91 363/311/91 +f 385/312/91 381/313/91 377/314/91 +f 363/311/91 364/315/91 365/316/91 +f 365/316/91 366/317/91 363/311/91 +f 366/317/91 367/309/91 363/311/91 +f 367/309/91 368/318/91 371/310/91 +f 368/318/91 369/319/91 371/310/91 +f 369/319/91 370/320/91 371/310/91 +f 371/310/91 372/321/91 373/322/91 +f 373/322/91 374/323/91 371/310/91 +f 374/323/91 363/311/91 371/310/91 +f 377/314/91 376/324/91 375/325/91 +f 375/325/91 386/326/91 377/314/91 +f 386/326/91 385/312/91 377/314/91 +f 385/312/91 384/327/91 383/328/91 +f 383/328/91 382/329/91 385/312/91 +f 382/329/91 381/313/91 385/312/91 +f 381/313/91 380/330/91 377/314/91 +f 380/330/91 379/331/91 377/314/91 +f 379/331/91 378/332/91 377/314/91 +s 1 +f 189/333/92 203/334/93 190/335/94 +f 186/336/95 200/337/96 187/338/97 +f 194/339/98 206/340/99 207/341/100 +f 184/342/101 196/343/102 197/344/103 +f 191/345/104 203/334/93 204/346/105 +f 188/347/106 200/337/96 201/348/107 +f 194/339/98 196/343/102 183/349/108 +f 185/350/109 197/344/103 198/351/110 +f 191/352/104 205/353/111 192/354/112 +f 189/333/92 201/348/107 202/355/113 +f 185/350/109 199/356/114 186/336/95 +f 192/354/112 206/340/99 193/357/115 +f 207/341/100 208/358/116 196/343/102 +f 197/344/103 210/359/117 198/351/110 +f 205/353/111 216/360/118 217/361/119 +f 201/348/107 214/362/120 202/355/113 +f 198/351/110 211/363/121 199/356/114 +f 205/353/111 218/364/122 206/340/99 +f 202/355/113 215/365/123 203/334/93 +f 199/356/114 212/366/124 200/337/96 +f 207/341/100 218/364/122 219/367/125 +f 197/344/103 208/358/116 209/368/126 +f 204/346/105 215/365/123 216/369/118 +f 200/337/96 213/370/127 201/348/107 +f 212/366/124 225/371/128 213/370/127 +f 208/358/116 231/372/129 220/373/130 +f 209/368/126 222/374/131 210/359/117 +f 217/361/119 228/375/132 229/376/133 +f 214/362/120 225/371/128 226/377/134 +f 210/359/117 223/378/135 211/363/121 +f 218/364/122 229/376/133 230/379/136 +f 214/362/120 227/380/137 215/365/123 +f 211/363/121 224/381/138 212/366/124 +f 219/367/125 230/379/136 231/372/129 +f 209/368/126 220/373/130 221/382/139 +f 216/369/118 227/380/137 228/383/132 +f 224/381/138 236/384/140 225/371/128 +f 231/372/129 195/385/141 220/373/130 +f 221/382/139 233/386/142 222/374/131 +f 229/376/133 239/387/143 240/388/144 +f 225/371/128 237/389/145 226/377/134 +f 222/374/131 234/390/146 223/378/135 +f 229/376/133 241/391/147 230/379/136 +f 226/377/134 238/392/148 227/380/137 +f 223/378/135 235/393/149 224/381/138 +f 230/379/136 242/394/150 231/372/129 +f 221/382/139 195/385/141 232/395/151 +f 228/383/132 238/392/148 239/396/143 +f 239/396/143 251/397/152 252/398/153 +f 235/393/149 249/399/154 236/384/140 +f 242/394/150 244/400/155 195/385/141 +f 232/395/151 246/401/156 233/386/142 +f 240/388/144 252/402/153 253/403/157 +f 237/389/145 249/399/154 250/404/158 +f 234/390/146 246/401/156 247/405/159 +f 240/388/144 254/406/160 241/391/147 +f 237/389/145 251/397/152 238/392/148 +f 235/393/149 247/405/159 248/407/161 +f 242/394/150 254/406/160 255/408/162 +f 232/395/151 244/400/155 245/409/163 +f 245/409/163 256/410/164 257/411/165 +f 252/398/153 263/412/166 264/413/167 +f 248/407/161 261/414/168 249/399/154 +f 255/408/162 256/410/164 244/400/155 +f 246/401/156 257/411/165 258/415/169 +f 252/402/153 265/416/170 253/403/157 +f 250/404/158 261/414/168 262/417/171 +f 247/405/159 258/415/169 259/418/172 +f 254/406/160 265/416/170 266/419/173 +f 250/404/158 263/412/166 251/397/152 +f 247/405/159 260/420/174 248/407/161 +f 255/408/162 266/419/173 267/421/175 +f 266/419/173 279/422/176 267/421/175 +f 257/411/165 268/423/177 269/424/178 +f 264/413/167 275/425/179 276/426/180 +f 260/420/174 273/427/181 261/414/168 +f 267/421/175 268/423/177 256/410/164 +f 257/411/165 270/428/182 258/415/169 +f 265/416/170 276/429/180 277/430/183 +f 262/417/171 273/427/181 274/431/184 +f 259/418/172 270/428/182 271/432/185 +f 266/419/173 277/430/183 278/433/186 +f 262/417/171 275/425/179 263/412/166 +f 259/418/172 272/434/187 260/420/174 +f 299/435/188 285/436/92 286/437/106 +f 296/438/105 282/439/112 283/440/104 +f 290/441/101 302/442/110 289/443/109 +f 280/444/98 292/445/102 243/446/108 +f 300/447/96 286/437/106 287/448/97 +f 297/449/189 283/440/104 284/450/94 +f 292/445/102 290/441/101 243/446/108 +f 294/451/99 280/444/98 281/452/115 +f 288/453/95 300/447/96 287/448/97 +f 285/454/92 297/449/189 284/450/94 +f 282/439/112 294/451/99 281/452/115 +f 289/443/109 301/455/114 288/453/95 +f 292/445/102 315/456/126 303/457/103 +f 306/458/122 293/459/100 294/451/99 +f 313/460/121 300/447/96 301/455/114 +f 298/461/113 309/462/190 297/449/189 +f 295/463/111 306/458/122 294/451/99 +f 314/464/117 301/455/114 302/442/110 +f 311/465/127 298/466/113 299/435/188 +f 308/467/118 295/463/111 296/438/105 +f 303/457/103 314/464/117 302/442/110 +f 305/468/125 292/445/102 293/459/100 +f 300/447/96 311/465/127 299/435/188 +f 309/462/190 296/438/105 297/449/189 +f 321/469/137 308/467/118 309/462/190 +f 316/470/130 315/456/126 304/471/116 +f 318/472/136 305/468/125 306/458/122 +f 313/460/121 324/473/138 312/474/124 +f 310/475/120 321/469/137 309/462/190 +f 319/476/133 306/458/122 307/477/119 +f 314/464/117 325/478/135 313/460/121 +f 323/479/128 310/480/120 311/465/127 +f 320/481/132 307/477/119 308/467/118 +f 315/456/126 326/482/131 314/464/117 +f 305/468/125 316/470/130 304/471/116 +f 312/474/124 323/479/128 311/465/127 +f 332/483/191 320/481/132 321/469/137 +f 291/484/192 327/485/139 316/470/130 +f 329/486/193 317/487/129 318/472/136 +f 336/488/194 324/473/138 325/478/135 +f 322/489/134 332/483/191 321/469/137 +f 330/490/195 318/472/136 319/476/133 +f 337/491/196 325/478/135 326/482/131 +f 334/492/197 322/493/134 323/479/128 +f 331/494/198 319/476/133 320/481/132 +f 327/485/139 337/491/196 326/482/131 +f 328/495/199 316/470/130 317/487/129 +f 324/473/138 334/492/197 323/479/128 +f 335/496/200 346/497/201 334/492/197 +f 344/498/202 331/494/198 332/483/191 +f 339/499/203 338/500/204 291/484/192 +f 341/501/205 328/495/199 329/486/193 +f 336/488/194 347/502/206 335/496/200 +f 333/503/207 344/498/202 332/483/191 +f 330/490/195 341/501/205 329/486/193 +f 349/504/208 336/488/194 337/491/196 +f 346/497/201 333/505/207 334/492/197 +f 331/494/198 342/506/209 330/490/195 +f 338/500/204 349/504/208 337/491/196 +f 328/495/199 339/499/203 291/484/192 +f 340/507/210 351/508/211 339/499/203 +f 347/502/206 358/509/212 346/497/201 +f 356/510/213 343/511/214 344/498/202 +f 351/508/211 350/512/215 339/499/203 +f 353/513/216 340/507/210 341/501/205 +f 360/514/217 347/502/206 348/515/218 +f 357/516/219 344/498/202 345/517/220 +f 342/506/209 353/513/216 341/501/205 +f 349/504/208 360/514/217 348/515/218 +f 358/509/212 345/518/220 346/497/201 +f 355/519/221 342/506/209 343/511/214 +f 350/512/215 361/520/222 349/504/208 +f 278/521/186 362/522/223 279/523/176 +f 277/524/183 361/520/222 278/521/186 +f 359/525/224 277/524/183 276/526/180 +f 358/509/212 276/526/180 275/425/179 +f 274/527/184 358/509/212 275/425/179 +f 356/510/213 274/528/184 273/529/181 +f 272/530/187 356/510/213 273/529/181 +f 354/531/225 272/530/187 271/532/185 +f 270/533/182 354/531/225 271/532/185 +f 352/534/226 270/533/182 269/424/178 +f 268/535/177 352/534/226 269/424/178 +f 362/522/223 268/535/177 279/523/176 +f 281/452/115 378/536/227 282/439/112 +f 289/443/109 386/537/217 290/441/101 +f 189/333/92 368/538/172 188/347/106 +f 282/439/112 379/539/209 283/440/104 +f 290/441/101 375/540/183 243/446/108 +f 190/335/94 369/541/185 189/333/92 +f 283/440/104 380/542/225 284/450/94 +f 191/345/104 370/543/225 190/335/94 +f 284/450/94 381/544/185 285/454/92 +f 184/342/101 363/545/183 183/349/108 +f 192/354/112 371/546/209 191/352/104 +f 285/436/92 382/547/172 286/437/106 +f 185/350/109 364/548/217 184/342/101 +f 193/357/115 372/549/227 192/354/112 +f 286/437/106 383/550/159 287/448/97 +f 186/336/95 365/551/218 185/350/109 +f 243/446/108 376/552/170 280/444/98 +f 194/339/98 373/553/157 193/357/115 +f 287/448/97 384/554/228 288/453/95 +f 187/338/97 366/555/228 186/336/95 +f 280/444/98 377/556/157 281/452/115 +f 183/349/108 374/557/170 194/339/98 +f 288/453/95 385/558/218 289/443/109 +f 188/347/106 367/559/159 187/338/97 +f 189/333/92 202/355/113 203/334/93 +f 186/336/95 199/356/114 200/337/96 +f 194/339/98 193/357/115 206/340/99 +f 184/342/101 183/349/108 196/343/102 +f 191/345/104 190/335/94 203/334/93 +f 188/347/106 187/338/97 200/337/96 +f 194/339/98 207/341/100 196/343/102 +f 185/350/109 184/342/101 197/344/103 +f 191/352/104 204/560/105 205/353/111 +f 189/333/92 188/347/106 201/348/107 +f 185/350/109 198/351/110 199/356/114 +f 192/354/112 205/353/111 206/340/99 +f 207/341/100 219/367/125 208/358/116 +f 197/344/103 209/368/126 210/359/117 +f 205/353/111 204/560/105 216/360/118 +f 201/348/107 213/370/127 214/362/120 +f 198/351/110 210/359/117 211/363/121 +f 205/353/111 217/361/119 218/364/122 +f 202/355/113 214/362/120 215/365/123 +f 199/356/114 211/363/121 212/366/124 +f 207/341/100 206/340/99 218/364/122 +f 197/344/103 196/343/102 208/358/116 +f 204/346/105 203/334/93 215/365/123 +f 200/337/96 212/366/124 213/370/127 +f 212/366/124 224/381/138 225/371/128 +f 208/358/116 219/367/125 231/372/129 +f 209/368/126 221/382/139 222/374/131 +f 217/361/119 216/360/118 228/375/132 +f 214/362/120 213/370/127 225/371/128 +f 210/359/117 222/374/131 223/378/135 +f 218/364/122 217/361/119 229/376/133 +f 214/362/120 226/377/134 227/380/137 +f 211/363/121 223/378/135 224/381/138 +f 219/367/125 218/364/122 230/379/136 +f 209/368/126 208/358/116 220/373/130 +f 216/369/118 215/365/123 227/380/137 +f 224/381/138 235/393/149 236/384/140 +f 231/372/129 242/394/150 195/385/141 +f 221/382/139 232/395/151 233/386/142 +f 229/376/133 228/375/132 239/387/143 +f 225/371/128 236/384/140 237/389/145 +f 222/374/131 233/386/142 234/390/146 +f 229/376/133 240/388/144 241/391/147 +f 226/377/134 237/389/145 238/392/148 +f 223/378/135 234/390/146 235/393/149 +f 230/379/136 241/391/147 242/394/150 +f 221/382/139 220/373/130 195/385/141 +f 228/383/132 227/380/137 238/392/148 +f 239/396/143 238/392/148 251/397/152 +f 235/393/149 248/407/161 249/399/154 +f 242/394/150 255/408/162 244/400/155 +f 232/395/151 245/409/163 246/401/156 +f 240/388/144 239/387/143 252/402/153 +f 237/389/145 236/384/140 249/399/154 +f 234/390/146 233/386/142 246/401/156 +f 240/388/144 253/403/157 254/406/160 +f 237/389/145 250/404/158 251/397/152 +f 235/393/149 234/390/146 247/405/159 +f 242/394/150 241/391/147 254/406/160 +f 232/395/151 195/385/141 244/400/155 +f 245/409/163 244/400/155 256/410/164 +f 252/398/153 251/397/152 263/412/166 +f 248/407/161 260/420/174 261/414/168 +f 255/408/162 267/421/175 256/410/164 +f 246/401/156 245/409/163 257/411/165 +f 252/402/153 264/561/167 265/416/170 +f 250/404/158 249/399/154 261/414/168 +f 247/405/159 246/401/156 258/415/169 +f 254/406/160 253/403/157 265/416/170 +f 250/404/158 262/417/171 263/412/166 +f 247/405/159 259/418/172 260/420/174 +f 255/408/162 254/406/160 266/419/173 +f 266/419/173 278/433/186 279/422/176 +f 257/411/165 256/410/164 268/423/177 +f 264/413/167 263/412/166 275/425/179 +f 260/420/174 272/434/187 273/427/181 +f 267/421/175 279/422/176 268/423/177 +f 257/411/165 269/424/178 270/428/182 +f 265/416/170 264/561/167 276/429/180 +f 262/417/171 261/414/168 273/427/181 +f 259/418/172 258/415/169 270/428/182 +f 266/419/173 265/416/170 277/430/183 +f 262/417/171 274/431/184 275/425/179 +f 259/418/172 271/432/185 272/434/187 +f 299/435/188 298/466/113 285/436/92 +f 296/438/105 295/463/111 282/439/112 +f 290/441/101 303/457/103 302/442/110 +f 280/444/98 293/459/100 292/445/102 +f 300/447/96 299/435/188 286/437/106 +f 297/449/189 296/438/105 283/440/104 +f 292/445/102 303/457/103 290/441/101 +f 294/451/99 293/459/100 280/444/98 +f 288/453/95 301/455/114 300/447/96 +f 285/454/92 298/461/113 297/449/189 +f 282/439/112 295/463/111 294/451/99 +f 289/443/109 302/442/110 301/455/114 +f 292/445/102 304/471/116 315/456/126 +f 306/458/122 305/468/125 293/459/100 +f 313/460/121 312/474/124 300/447/96 +f 298/461/113 310/475/120 309/462/190 +f 295/463/111 307/477/119 306/458/122 +f 314/464/117 313/460/121 301/455/114 +f 311/465/127 310/480/120 298/466/113 +f 308/467/118 307/477/119 295/463/111 +f 303/457/103 315/456/126 314/464/117 +f 305/468/125 304/471/116 292/445/102 +f 300/447/96 312/474/124 311/465/127 +f 309/462/190 308/467/118 296/438/105 +f 321/469/137 320/481/132 308/467/118 +f 316/470/130 327/485/139 315/456/126 +f 318/472/136 317/487/129 305/468/125 +f 313/460/121 325/478/135 324/473/138 +f 310/475/120 322/489/134 321/469/137 +f 319/476/133 318/472/136 306/458/122 +f 314/464/117 326/482/131 325/478/135 +f 323/479/128 322/493/134 310/480/120 +f 320/481/132 319/476/133 307/477/119 +f 315/456/126 327/485/139 326/482/131 +f 305/468/125 317/487/129 316/470/130 +f 312/474/124 324/473/138 323/479/128 +f 332/483/191 331/494/198 320/481/132 +f 291/484/192 338/500/204 327/485/139 +f 329/486/193 328/495/199 317/487/129 +f 336/488/194 335/496/200 324/473/138 +f 322/489/134 333/503/207 332/483/191 +f 330/490/195 329/486/193 318/472/136 +f 337/491/196 336/488/194 325/478/135 +f 334/492/197 333/505/207 322/493/134 +f 331/494/198 330/490/195 319/476/133 +f 327/485/139 338/500/204 337/491/196 +f 328/495/199 291/484/192 316/470/130 +f 324/473/138 335/496/200 334/492/197 +f 335/496/200 347/502/206 346/497/201 +f 344/498/202 343/511/214 331/494/198 +f 339/499/203 350/512/215 338/500/204 +f 341/501/205 340/507/210 328/495/199 +f 336/488/194 348/515/218 347/502/206 +f 333/503/207 345/517/220 344/498/202 +f 330/490/195 342/506/209 341/501/205 +f 349/504/208 348/515/218 336/488/194 +f 346/497/201 345/518/220 333/505/207 +f 331/494/198 343/511/214 342/506/209 +f 338/500/204 350/512/215 349/504/208 +f 328/495/199 340/507/210 339/499/203 +f 340/507/210 352/534/226 351/508/211 +f 347/502/206 359/525/224 358/509/212 +f 356/510/213 355/519/221 343/511/214 +f 351/508/211 362/522/223 350/512/215 +f 353/513/216 352/534/226 340/507/210 +f 360/514/217 359/525/224 347/502/206 +f 357/516/219 356/510/213 344/498/202 +f 342/506/209 354/531/225 353/513/216 +f 349/504/208 361/520/222 360/514/217 +f 358/509/212 357/562/219 345/518/220 +f 355/519/221 354/531/225 342/506/209 +f 350/512/215 362/522/223 361/520/222 +f 278/521/186 361/520/222 362/522/223 +f 277/524/183 360/514/217 361/520/222 +f 359/525/224 360/514/217 277/524/183 +f 358/509/212 359/525/224 276/526/180 +f 274/527/184 357/562/219 358/509/212 +f 356/510/213 357/516/219 274/528/184 +f 272/530/187 355/519/221 356/510/213 +f 354/531/225 355/519/221 272/530/187 +f 270/533/182 353/513/216 354/531/225 +f 352/534/226 353/513/216 270/533/182 +f 268/535/177 351/508/211 352/534/226 +f 362/522/223 351/508/211 268/535/177 +f 281/452/115 377/556/157 378/536/227 +f 289/443/109 385/558/218 386/537/217 +f 189/333/92 369/541/185 368/538/172 +f 282/439/112 378/536/227 379/539/209 +f 290/441/101 386/537/217 375/540/183 +f 190/335/94 370/543/225 369/541/185 +f 283/440/104 379/539/209 380/542/225 +f 191/345/104 371/563/209 370/543/225 +f 284/450/94 380/542/225 381/544/185 +f 184/342/101 364/548/217 363/545/183 +f 192/354/112 372/549/227 371/546/209 +f 285/436/92 381/564/185 382/547/172 +f 185/350/109 365/551/218 364/548/217 +f 193/357/115 373/553/157 372/549/227 +f 286/437/106 382/547/172 383/550/159 +f 186/336/95 366/555/228 365/551/218 +f 243/446/108 375/540/183 376/552/170 +f 194/339/98 374/557/170 373/553/157 +f 287/448/97 383/550/159 384/554/228 +f 187/338/97 367/559/159 366/555/228 +f 280/444/98 376/552/170 377/556/157 +f 183/349/108 363/545/183 374/557/170 +f 288/453/95 384/554/228 385/558/218 +f 188/347/106 368/538/172 367/559/159 +o Gun v 0.000000 0.250000 3.750000 v 0.000000 0.250000 8.000000 v 0.095671 0.230970 3.750000 @@ -227,16 +2135,8 @@ v 0.397747 0.397748 -4.625000 v 0.215259 0.519682 -4.625000 v -0.312500 -0.437500 1.250000 v 0.312500 -0.437500 1.250000 -v 0.187500 -0.312500 1.375000 -v 0.187500 -0.312500 2.375000 -v -0.187500 -0.312500 2.375000 -v -0.187500 -0.312500 1.375000 v -0.312500 -2.187500 1.250000 v 0.312500 -2.187500 1.250000 -v -0.187500 -6.687500 1.375000 -v -0.187500 -6.687500 2.375000 -v 0.187500 -6.687500 2.375000 -v 0.187500 -6.687500 1.375000 v -0.312500 -0.437500 2.312500 v -0.125000 -0.437500 2.500000 v 0.125000 -0.437500 2.500000 @@ -328,22 +2228,6 @@ v -0.230970 0.095671 2.875000 v -0.176777 0.176777 2.875000 v -0.095671 0.230970 2.875000 v -0.000000 0.250000 2.875000 -v 0.562500 1.125000 0.312500 -v 0.519682 0.909741 0.312500 -v 0.397748 0.727252 0.312500 -v 0.215260 0.605318 0.312500 -v 0.625000 1.125000 0.312500 -v 0.239177 0.547575 0.312500 -v 0.441942 0.683058 0.312500 -v 0.577425 0.885823 0.312500 -v 0.562500 1.125000 2.437500 -v 0.519682 0.909741 2.437500 -v 0.397747 0.727252 2.437500 -v 0.215260 0.605318 2.437500 -v 0.239177 0.547575 2.437500 -v 0.441941 0.683058 2.437500 -v 0.577424 0.885823 2.437500 -v 0.625000 1.125000 2.437500 v 0.625000 0.000000 0.312500 v 0.577425 0.239177 0.312500 v 0.441941 0.441942 0.312500 @@ -372,14 +2256,6 @@ v 0.239177 0.577425 2.062500 v 0.000000 0.625000 2.062500 v 0.215260 0.519682 2.062500 v 0.000000 0.562500 2.062500 -v 0.239177 0.547575 2.062500 -v 0.000000 0.500000 2.062500 -v 0.000000 0.562500 2.062500 -v 0.215260 0.605318 2.062500 -v 0.239177 0.547575 0.687500 -v 0.000000 0.500000 0.687500 -v 0.215260 0.605318 0.687500 -v 0.000000 0.562500 0.687500 v -0.250000 -0.437500 -1.875000 v 0.250000 -0.437500 -1.875000 v -0.250000 -1.812500 -1.875000 @@ -416,14 +2292,14 @@ v -0.250000 -0.312500 -2.875000 v 0.250000 -0.312500 -2.875000 v -0.375000 -0.600718 -3.125000 v 0.375000 -0.600718 -3.125000 -v -0.375000 -0.654728 -3.449057 -v 0.375000 -0.654728 -3.449057 +v -0.375000 -0.654727 -3.449057 +v 0.375000 -0.654727 -3.449057 v -0.375000 -3.311872 -4.173732 v 0.375000 -3.311872 -4.173732 v -0.375000 -3.085226 -4.929220 v 0.375000 -3.085226 -4.929220 -v 0.375000 -0.961348 -4.201034 -v -0.375000 -0.961348 -4.201034 +v 0.375000 -0.961349 -4.201034 +v -0.375000 -0.961349 -4.201034 v 0.250000 -0.812500 -4.875000 v 0.375000 -0.312500 -4.679806 v 0.250000 -0.812500 -2.875000 @@ -480,94 +2356,6 @@ v -0.125000 -1.437500 -3.125000 v 0.125000 -1.437500 -3.125000 v -0.125000 -1.437500 -3.500000 v 0.125000 -1.437500 -3.500000 -v -0.250000 -1.580894 -0.329788 -v -0.250000 -1.459289 -0.374049 -v -0.250000 -1.331845 -0.351577 -v -0.250000 -1.232712 -0.268394 -v -0.250000 -1.188451 -0.146789 -v -0.250000 -1.210923 -0.019345 -v -0.250000 -1.294106 0.079788 -v -0.250000 -1.415711 0.124049 -v -0.250000 -1.543154 0.101577 -v -0.250000 -1.642288 0.018394 -v -0.250000 -1.686549 -0.103211 -v -0.250000 -1.664077 -0.230654 -v -0.500000 -1.580894 -0.329788 -v -0.500000 -1.459289 -0.374049 -v -0.500000 -1.331845 -0.351577 -v -0.500000 -1.232712 -0.268394 -v -0.500000 -1.188451 -0.146789 -v -0.500000 -1.210923 -0.019345 -v -0.500000 -1.294106 0.079788 -v -0.500000 -1.415711 0.124049 -v -0.500000 -1.543154 0.101577 -v -0.500000 -1.642288 0.018394 -v -0.500000 -1.686549 -0.103211 -v -0.500000 -1.664077 -0.230654 -v -0.593750 -0.612984 1.052531 -v -0.593750 -0.521780 1.019336 -v -0.593750 -0.426197 1.036189 -v -0.593750 -0.351847 1.098576 -v -0.593750 -0.318652 1.189780 -v -0.593750 -0.335506 1.285363 -v -0.593750 -0.397893 1.359713 -v -0.593750 -0.489097 1.392909 -v -0.593750 -0.584679 1.376055 -v -0.593750 -0.659029 1.313668 -v -0.593750 -0.692225 1.222464 -v -0.593750 -0.675371 1.126881 -v -0.781250 -0.612984 1.052531 -v -0.781250 -0.521780 1.019336 -v -0.781250 -0.426197 1.036189 -v -0.781250 -0.351847 1.098576 -v -0.781250 -0.318652 1.189780 -v -0.781250 -0.335506 1.285363 -v -0.781250 -0.397893 1.359713 -v -0.781250 -0.489097 1.392909 -v -0.781250 -0.584679 1.376055 -v -0.781250 -0.659029 1.313668 -v -0.781250 -0.692225 1.222464 -v -0.781250 -0.675371 1.126881 -v -0.750000 -0.643681 1.226622 -v -0.625000 -0.643681 1.226622 -v -0.750000 -0.438893 1.083228 -v -0.625000 -0.438893 1.083228 -v -0.750000 -0.582287 0.878440 -v -0.750000 -0.787075 1.021834 -v -0.625000 -0.787075 1.021834 -v -0.625000 -0.582287 0.878440 -v -0.437500 -1.155863 0.059288 -v -0.437500 -1.360651 0.202682 -v -0.312500 -1.360651 0.202682 -v -0.312500 -1.155863 0.059288 -v -0.437500 -1.227560 -0.043106 -v -0.437500 -1.432348 0.100288 -v -0.312500 -1.432348 0.100288 -v -0.312500 -1.227560 -0.043106 -v -0.781250 -0.577135 1.103728 -v -0.781250 -0.516333 1.081598 -v -0.781250 -0.452611 1.092834 -v -0.781250 -0.403044 1.134425 -v -0.781250 -0.380914 1.195228 -v -0.781250 -0.392150 1.258950 -v -0.781250 -0.433741 1.308516 -v -0.781250 -0.494544 1.330647 -v -0.781250 -0.558265 1.319411 -v -0.781250 -0.607832 1.277819 -v -0.781250 -0.629963 1.217017 -v -0.781250 -0.618727 1.153295 -v -1.531250 -0.577135 1.103728 -v -1.531250 -0.516333 1.081598 -v -1.531250 -0.452611 1.092834 -v -1.531250 -0.403044 1.134425 -v -1.531250 -0.380914 1.195228 -v -1.531250 -0.392150 1.258950 -v -1.531250 -0.433741 1.308516 -v -1.531250 -0.494544 1.330647 -v -1.531250 -0.558265 1.319411 -v -1.531250 -0.607832 1.277819 -v -1.531250 -0.629963 1.217017 -v -1.531250 -0.618727 1.153295 v -0.375000 -0.375000 -1.937500 v -0.468750 -0.400120 -1.937500 v -0.537380 -0.468750 -1.937500 @@ -616,272 +2404,6 @@ v -0.212621 -0.656250 -5.062500 v -0.187500 -0.562500 -5.062500 v -0.212621 -0.468750 -5.062500 v -0.281250 -0.400120 -5.062500 -v -0.375000 -0.437500 -6.562500 -v -0.437500 -0.454247 -6.562500 -v -0.483253 -0.500000 -6.562500 -v -0.500000 -0.562500 -6.562500 -v -0.483253 -0.625000 -6.562500 -v -0.437500 -0.670753 -6.562500 -v -0.375000 -0.687500 -6.562500 -v -0.312500 -0.670753 -6.562500 -v -0.266747 -0.625000 -6.562500 -v -0.250000 -0.562500 -6.562500 -v -0.266747 -0.500000 -6.562500 -v -0.312500 -0.454247 -6.562500 -v -0.375000 -2.937500 -7.062500 -v -0.375000 -0.504487 -6.812500 -v -0.437500 -0.518991 -6.804127 -v -0.483253 -0.558614 -6.781250 -v -0.500000 -0.612741 -6.750000 -v -0.483253 -0.666867 -6.718750 -v -0.437500 -0.706490 -6.695873 -v -0.375000 -0.720994 -6.687500 -v -0.312500 -0.706490 -6.695873 -v -0.266747 -0.666867 -6.718750 -v -0.250000 -0.612741 -6.750000 -v -0.266747 -0.558614 -6.781250 -v -0.312500 -0.518991 -6.804127 -v -0.375000 -0.687500 -6.995513 -v -0.437500 -0.695874 -6.981009 -v -0.483253 -0.718750 -6.941386 -v -0.500000 -0.750000 -6.887259 -v -0.483253 -0.781250 -6.833133 -v -0.437500 -0.804126 -6.793509 -v -0.375000 -0.812500 -6.779007 -v -0.312500 -0.804126 -6.793509 -v -0.266747 -0.781250 -6.833133 -v -0.250000 -0.750000 -6.887259 -v -0.266747 -0.718750 -6.941386 -v -0.312500 -0.695874 -6.981009 -v -0.375000 -0.937500 -7.062500 -v -0.437500 -0.937500 -7.045753 -v -0.483253 -0.937500 -7.000000 -v -0.500000 -0.937500 -6.937500 -v -0.483253 -0.937500 -6.875000 -v -0.437500 -0.937500 -6.829247 -v -0.375000 -0.937500 -6.812500 -v -0.312500 -0.937500 -6.829247 -v -0.266747 -0.937500 -6.875000 -v -0.250000 -0.937500 -6.937500 -v -0.266747 -0.937500 -7.000000 -v -0.312500 -0.937500 -7.045753 -v -0.437500 -2.937500 -7.045753 -v -0.483253 -2.937500 -7.000000 -v -0.500000 -2.937500 -6.937500 -v -0.483253 -2.937500 -6.875000 -v -0.437500 -2.937500 -6.829247 -v -0.375000 -2.937500 -6.812500 -v -0.312500 -2.937500 -6.829247 -v -0.266747 -2.937500 -6.875000 -v -0.250000 -2.937500 -6.937500 -v -0.266747 -2.937500 -7.000000 -v -0.312500 -2.937500 -7.045753 -v 0.375000 -0.437500 -6.562500 -v -0.324759 -3.125000 -7.062500 -v -0.378886 -3.156250 -7.045753 -v -0.418509 -3.179127 -7.000000 -v -0.433013 -3.187500 -6.937500 -v -0.418509 -3.179127 -6.875000 -v -0.378886 -3.156250 -6.829247 -v -0.324759 -3.125000 -6.812500 -v -0.270633 -3.093750 -6.829247 -v -0.231009 -3.070873 -6.875000 -v -0.216506 -3.062500 -6.937500 -v -0.231009 -3.070873 -7.000000 -v -0.270633 -3.093750 -7.045753 -v -0.187500 -3.262259 -7.062500 -v -0.218750 -3.316386 -7.045753 -v -0.241627 -3.356009 -7.000000 -v -0.250000 -3.370513 -6.937500 -v -0.241627 -3.356009 -6.875000 -v -0.218750 -3.316386 -6.829247 -v -0.187500 -3.262259 -6.812500 -v -0.156250 -3.208133 -6.829247 -v -0.133374 -3.168509 -6.875000 -v -0.125000 -3.154006 -6.937500 -v -0.133373 -3.168509 -7.000000 -v -0.156250 -3.208133 -7.045753 -v 0.000000 -3.312500 -7.062500 -v 0.000000 -3.375000 -7.045753 -v 0.000000 -3.420753 -7.000000 -v 0.000000 -3.437500 -6.937500 -v 0.000000 -3.420753 -6.875000 -v -0.000000 -3.375000 -6.829247 -v 0.000000 -3.312500 -6.812500 -v -0.000000 -3.250000 -6.829247 -v 0.000000 -3.204247 -6.875000 -v 0.000000 -3.187500 -6.937500 -v 0.000000 -3.204247 -7.000000 -v 0.000000 -3.250000 -7.045753 -v 0.437500 -0.454247 -6.562500 -v 0.483253 -0.500000 -6.562500 -v 0.500000 -0.562500 -6.562500 -v 0.483253 -0.625000 -6.562500 -v 0.437500 -0.670753 -6.562500 -v 0.375000 -0.687500 -6.562500 -v 0.312500 -0.670753 -6.562500 -v 0.266747 -0.625000 -6.562500 -v 0.250000 -0.562500 -6.562500 -v 0.266747 -0.500000 -6.562500 -v 0.312500 -0.454247 -6.562500 -v 0.375000 -2.937500 -7.062500 -v 0.375000 -0.504487 -6.812500 -v 0.437500 -0.518991 -6.804127 -v 0.483253 -0.558614 -6.781250 -v 0.500000 -0.612741 -6.750000 -v 0.483253 -0.666867 -6.718750 -v 0.437500 -0.706490 -6.695873 -v 0.375000 -0.720994 -6.687500 -v 0.312500 -0.706490 -6.695873 -v 0.266747 -0.666867 -6.718750 -v 0.250000 -0.612741 -6.750000 -v 0.266747 -0.558614 -6.781250 -v 0.312500 -0.518991 -6.804127 -v 0.375000 -0.687500 -6.995513 -v 0.437500 -0.695874 -6.981009 -v 0.483253 -0.718750 -6.941386 -v 0.500000 -0.750000 -6.887259 -v 0.483253 -0.781250 -6.833133 -v 0.437500 -0.804126 -6.793509 -v 0.375000 -0.812500 -6.779007 -v 0.312500 -0.804126 -6.793509 -v 0.266747 -0.781250 -6.833133 -v 0.250000 -0.750000 -6.887259 -v 0.266747 -0.718750 -6.941386 -v 0.312500 -0.695874 -6.981009 -v 0.375000 -0.937500 -7.062500 -v 0.437500 -0.937500 -7.045753 -v 0.483253 -0.937500 -7.000000 -v 0.500000 -0.937500 -6.937500 -v 0.483253 -0.937500 -6.875000 -v 0.437500 -0.937500 -6.829247 -v 0.375000 -0.937500 -6.812500 -v 0.312500 -0.937500 -6.829247 -v 0.266747 -0.937500 -6.875000 -v 0.250000 -0.937500 -6.937500 -v 0.266747 -0.937500 -7.000000 -v 0.312500 -0.937500 -7.045753 -v 0.437500 -2.937500 -7.045753 -v 0.483253 -2.937500 -7.000000 -v 0.500000 -2.937500 -6.937500 -v 0.483253 -2.937500 -6.875000 -v 0.437500 -2.937500 -6.829247 -v 0.375000 -2.937500 -6.812500 -v 0.312500 -2.937500 -6.829247 -v 0.266747 -2.937500 -6.875000 -v 0.250000 -2.937500 -6.937500 -v 0.266747 -2.937500 -7.000000 -v 0.312500 -2.937500 -7.045753 -v 0.324759 -3.125000 -7.062500 -v 0.378886 -3.156250 -7.045753 -v 0.418509 -3.179127 -7.000000 -v 0.433012 -3.187500 -6.937500 -v 0.418509 -3.179127 -6.875000 -v 0.378886 -3.156250 -6.829247 -v 0.324759 -3.125000 -6.812500 -v 0.270633 -3.093750 -6.829247 -v 0.231009 -3.070873 -6.875000 -v 0.216506 -3.062500 -6.937500 -v 0.231009 -3.070873 -7.000000 -v 0.270633 -3.093750 -7.045753 -v 0.187500 -3.262259 -7.062500 -v 0.218750 -3.316386 -7.045753 -v 0.241627 -3.356009 -7.000000 -v 0.250000 -3.370513 -6.937500 -v 0.241627 -3.356009 -6.875000 -v 0.218750 -3.316386 -6.829247 -v 0.187500 -3.262259 -6.812500 -v 0.156250 -3.208133 -6.829247 -v 0.133373 -3.168509 -6.875000 -v 0.125000 -3.154006 -6.937500 -v 0.133373 -3.168509 -7.000000 -v 0.156250 -3.208133 -7.045753 -v -0.375000 -0.437500 1.187500 -v -0.437500 -0.454247 1.187500 -v -0.483253 -0.500000 1.187500 -v -0.500000 -0.562500 1.187500 -v -0.483253 -0.625000 1.187500 -v -0.437500 -0.670753 1.187500 -v -0.375000 -0.687500 1.187500 -v -0.312500 -0.670753 1.187500 -v -0.266747 -0.625000 1.187500 -v -0.250000 -0.562500 1.187500 -v -0.266747 -0.500000 1.187500 -v -0.312500 -0.454247 1.187500 -v 0.375000 -0.437500 1.187500 -v 0.437500 -0.454247 1.187500 -v 0.483253 -0.500000 1.187500 -v 0.500000 -0.562500 1.187500 -v 0.483253 -0.625000 1.187500 -v 0.437500 -0.670753 1.187500 -v 0.375000 -0.687500 1.187500 -v 0.312500 -0.670753 1.187500 -v 0.266747 -0.625000 1.187500 -v 0.250000 -0.562500 1.187500 -v 0.266747 -0.500000 1.187500 -v 0.312500 -0.454247 1.187500 -v 0.000000 -0.293931 1.531675 -v -0.078125 -0.313602 1.538834 -v -0.135317 -0.367344 1.558395 -v -0.156250 -0.440758 1.585115 -v -0.135317 -0.514171 1.611836 -v -0.078125 -0.567913 1.631396 -v 0.000000 -0.587584 1.638556 -v 0.078125 -0.567914 1.631396 -v 0.135316 -0.514171 1.611836 -v 0.156250 -0.440758 1.585115 -v 0.135316 -0.367344 1.558395 -v 0.078125 -0.313602 1.538834 -v 0.000000 -0.122921 2.001521 -v -0.078125 -0.142592 2.008681 -v -0.135317 -0.196334 2.028241 -v -0.156250 -0.269747 2.054962 -v -0.135317 -0.343161 2.081682 -v -0.078125 -0.396903 2.101243 -v 0.000000 -0.416574 2.108402 -v 0.078125 -0.396903 2.101243 -v 0.135316 -0.343161 2.081682 -v 0.156250 -0.269747 2.054962 -v 0.135316 -0.196334 2.028241 -v 0.078125 -0.142592 2.008681 -v 0.000000 -0.095498 2.191073 -v -0.058594 -0.110252 2.196443 -v -0.101488 -0.150559 2.211114 -v -0.117188 -0.205619 2.231154 -v -0.101488 -0.260679 2.251194 -v -0.058594 -0.300986 2.265865 -v 0.000000 -0.315739 2.271235 -v 0.058594 -0.300986 2.265865 -v 0.101487 -0.260679 2.251194 -v 0.117188 -0.205619 2.231154 -v 0.101487 -0.150559 2.211114 -v 0.058594 -0.110252 2.196443 -v 0.000000 -0.147536 2.276525 -v -0.019531 -0.152454 2.278315 -v -0.033830 -0.165889 2.283205 -v -0.039062 -0.184243 2.289885 -v -0.033830 -0.202596 2.296565 -v -0.019531 -0.216031 2.301455 -v 0.000000 -0.220949 2.303245 -v 0.019531 -0.216032 2.301455 -v 0.033829 -0.202596 2.296565 -v 0.039062 -0.184243 2.289885 -v 0.033829 -0.165889 2.283205 -v 0.019531 -0.152454 2.278315 -v 0.125000 -0.187500 1.375000 -v -0.125000 -0.187500 1.375000 -v 0.062500 -0.187500 1.875000 -v -0.062500 -0.187500 1.875000 -v -0.062500 -0.187500 1.375000 -v -0.125000 -0.187500 1.875000 -v 0.062500 -0.187500 1.375000 -v 0.125000 -0.187500 1.875000 -v 0.187500 -0.312500 1.875000 -v -0.187500 -0.312500 1.875000 -v 0.062500 -0.312500 1.875000 -v -0.062500 -0.312500 1.875000 -v 0.062500 -0.312500 1.375000 -v -0.062500 -0.312500 1.375000 v 0.031250 0.875000 2.500000 v 0.031250 0.875000 2.875000 v -0.031250 0.875000 2.500000 @@ -1138,9 +2660,6 @@ vt -0.000000 0.444444 vt 0.002976 0.444444 vt -0.000000 0.416667 vt 0.002976 0.416667 -vt 0.779762 0.041667 -vt 0.779762 0.750000 -vt 0.755952 0.750000 vt 0.681548 0.069444 vt 0.672619 0.048611 vt 0.681548 0.000000 @@ -1153,15 +2672,6 @@ vt 0.601190 0.263889 vt 0.681548 0.263889 vt 0.732143 0.069444 vt 0.732143 0.263889 -vt 0.797619 0.041667 -vt 0.845238 0.041667 -vt 0.845238 0.750000 -vt 0.821429 0.750000 -vt 0.732143 0.041667 -vt 0.779762 -0.000000 -vt 0.863095 0.041667 -vt 0.845238 0.750000 -vt 0.845238 0.750000 vt 0.651786 0.069444 vt 0.660714 0.069444 vt 0.651786 0.263889 @@ -1197,30 +2707,9 @@ vt 0.461310 0.006944 vt 0.571429 0.131944 vt 0.568452 0.118056 vt 0.571429 0.118056 -vt 0.431548 0.597222 -vt 0.532738 0.590278 -vt 0.431548 0.590278 -vt 0.449405 0.520833 -vt 0.431548 0.513889 -vt 0.431548 0.520833 -vt 0.449405 0.486111 -vt 0.514881 0.493056 -vt 0.514881 0.486111 -vt 0.529762 0.513889 -vt 0.532738 0.541667 -vt 0.532738 0.513889 vt 0.532738 0.430556 vt 0.529762 0.458333 vt 0.532738 0.458333 -vt 0.529762 0.569444 -vt 0.532738 0.597222 -vt 0.532738 0.569444 -vt 0.529762 0.541667 -vt 0.431548 0.541667 -vt 0.434524 0.513889 -vt 0.434524 0.569444 -vt 0.431548 0.569444 -vt 0.434524 0.541667 vt 0.529762 0.402778 vt 0.529762 0.430556 vt 0.532738 0.486111 @@ -1247,12 +2736,6 @@ vt 0.514881 0.486111 vt 0.514881 0.513889 vt 0.446429 0.513889 vt 0.449405 0.513889 -vt 0.449405 0.513889 -vt 0.452381 0.486111 -vt 0.511905 0.513889 -vt 0.514881 0.513889 -vt 0.514881 0.520833 -vt 0.532738 0.520833 vt 0.110119 0.708333 vt 0.175595 0.763889 vt 0.110119 0.763889 @@ -1353,31 +2836,6 @@ vt 0.538690 0.708333 vt 0.538690 0.791667 vt 0.544643 0.833333 vt 0.526786 0.833333 -vt 0.717262 0.500032 -vt 0.727560 0.513905 -vt 0.727560 0.541651 -vt 0.668008 0.736165 -vt 0.668008 0.763835 -vt 0.647468 0.763835 -vt 0.647468 0.680609 -vt 0.657738 0.666774 -vt 0.668008 0.680609 -vt 0.577381 0.722222 -vt 0.571429 0.708333 -vt 0.577381 0.708333 -vt 0.636905 0.722222 -vt 0.625000 0.708333 -vt 0.636905 0.708333 -vt 0.636905 0.680556 -vt 0.625000 0.666667 -vt 0.636905 0.666667 -vt 0.625000 0.722222 -vt 0.577381 0.680556 -vt 0.577381 0.666667 -vt 0.571429 0.666667 -vt 0.711309 0.694407 -vt 0.706168 0.687481 -vt 0.706168 0.673629 vt 0.533983 0.531184 vt 0.541666 0.500130 vt 0.549350 0.531185 @@ -1390,38 +2848,6 @@ vt 0.403030 0.649371 vt 0.403031 0.628407 vt 0.410715 0.597353 vt 0.418398 0.628407 -vt 0.518695 0.923665 -vt 0.528925 0.923665 -vt 0.523810 0.944337 -vt 0.518695 0.937446 -vt 0.523810 0.916775 -vt 0.528925 0.937446 -vt 0.676595 0.272573 -vt 0.683036 0.263897 -vt 0.689476 0.289927 -vt 0.797619 0.805556 -vt 0.800595 0.861111 -vt 0.797619 0.861111 -vt 0.806548 0.861111 -vt 0.800595 0.805556 -vt 0.806548 0.805556 -vt 0.776786 0.805556 -vt 0.779762 0.861111 -vt 0.776786 0.861111 -vt 0.770833 0.805556 -vt 0.770833 0.861111 -vt 0.797619 0.875000 -vt 0.803571 0.875000 -vt 0.779762 0.875000 -vt 0.773810 0.875000 -vt 0.797619 0.750000 -vt 0.791667 0.805556 -vt 0.785714 0.805556 -vt 0.791667 0.861111 -vt 0.785714 0.861111 -vt 0.779762 0.805556 -vt 0.779762 0.791667 -vt 0.797619 0.791667 vt 0.708333 0.347222 vt 0.711310 0.305556 vt 0.711310 0.347222 @@ -1553,12 +2979,9 @@ vt -0.000000 0.333333 vt -0.000000 0.277778 vt -0.000000 0.666667 vt -0.000000 0.472222 -vt 0.732143 0.750000 vt 0.672619 0.020833 vt 0.732143 0.000000 vt 0.571429 0.069444 -vt 0.732143 0.000000 -vt 0.863095 0.750000 vt 0.443298 0.305555 vt 0.441600 0.315121 vt 0.433400 0.315121 @@ -1579,14 +3002,9 @@ vt 0.449405 0.006944 vt 0.449405 -0.000000 vt 0.544643 -0.000000 vt 0.568452 0.131944 -vt 0.449405 0.493056 -vt 0.529762 0.597222 -vt 0.434524 0.597222 vt 0.434524 0.430556 vt 0.517857 0.486111 vt 0.446429 0.486111 -vt 0.452381 0.513889 -vt 0.511905 0.486111 vt 0.324405 0.708333 vt 0.175595 0.916667 vt 0.324405 0.833333 @@ -1625,45 +3043,6 @@ vt 0.401786 0.902778 vt 0.431548 0.812500 vt 0.401786 0.861111 vt 0.520833 0.736111 -vt 0.706964 0.541651 -vt 0.705371 0.527778 -vt 0.706964 0.513905 -vt 0.711316 0.503749 -vt 0.723207 0.503749 -vt 0.729153 0.527778 -vt 0.723207 0.551806 -vt 0.717262 0.555524 -vt 0.711316 0.551806 -vt 0.645879 0.750000 -vt 0.647468 0.736165 -vt 0.651809 0.726037 -vt 0.657738 0.722330 -vt 0.663667 0.726037 -vt 0.669597 0.750000 -vt 0.663667 0.773963 -vt 0.657738 0.777671 -vt 0.651809 0.773963 -vt 0.669597 0.694444 -vt 0.668008 0.708280 -vt 0.663667 0.718408 -vt 0.657738 0.722115 -vt 0.651809 0.718408 -vt 0.647468 0.708280 -vt 0.645879 0.694444 -vt 0.651809 0.670481 -vt 0.663667 0.670481 -vt 0.571429 0.722222 -vt 0.625000 0.680556 -vt 0.571429 0.680556 -vt 0.708341 0.668559 -vt 0.711309 0.666703 -vt 0.714278 0.668559 -vt 0.716451 0.673629 -vt 0.717246 0.680555 -vt 0.716451 0.687481 -vt 0.714278 0.692551 -vt 0.708341 0.692552 -vt 0.705373 0.680555 vt 0.546103 0.538762 vt 0.541666 0.541536 vt 0.537230 0.538762 @@ -1700,37 +3079,6 @@ vt 0.406278 0.600127 vt 0.415151 0.600127 vt 0.418398 0.607704 vt 0.419587 0.618056 -vt 0.520857 0.942491 -vt 0.518695 0.937446 -vt 0.517904 0.930556 -vt 0.520857 0.918621 -vt 0.523810 0.916775 -vt 0.526763 0.918621 -vt 0.529716 0.930556 -vt 0.528925 0.937446 -vt 0.526763 0.942490 -vt 0.526763 0.942490 -vt 0.523810 0.944337 -vt 0.520857 0.942491 -vt 0.517904 0.930556 -vt 0.518695 0.923665 -vt 0.520857 0.918621 -vt 0.526763 0.918621 -vt 0.528925 0.923665 -vt 0.529716 0.930556 -vt 0.686754 0.296278 -vt 0.676595 0.289927 -vt 0.683036 0.298603 -vt 0.679317 0.296278 -vt 0.675599 0.281250 -vt 0.679317 0.266222 -vt 0.686754 0.266222 -vt 0.689476 0.272573 -vt 0.690473 0.281250 -vt 0.779762 0.805556 -vt 0.797619 0.805556 -vt 0.773810 0.791667 -vt 0.803571 0.791667 vt 0.714286 0.388889 vt 0.729167 0.305556 vt 0.708333 0.263889 @@ -2057,14 +3405,6 @@ vt 0.544643 0.284722 vt 0.544643 0.305556 vt 0.544643 0.326389 vt 0.544643 0.347222 -vt 0.532738 0.569444 -vt 0.431548 0.534722 -vt 0.532738 0.534722 -vt 0.449405 0.486111 -vt 0.514881 0.513889 -vt 0.449405 0.513889 -vt 0.532738 0.597222 -vt 0.431548 0.569444 vt 0.077381 0.326389 vt 0.077381 0.472222 vt 0.077381 0.451389 @@ -2093,19 +3433,19 @@ vt 1.000000 0.472222 vt 1.000000 0.055556 vt 0.976190 0.097222 vt 1.000000 0.333333 -vt 0.931548 0.298611 -vt 0.925595 0.027778 -vt 0.892857 0.312500 -vt 0.952381 0.368056 -vt 0.892857 0.312500 -vt 0.931548 0.298611 +vt 0.928571 0.291667 +vt 0.925595 0.034722 +vt 0.892857 0.326389 +vt 0.949405 0.368056 +vt 0.892857 0.326389 +vt 0.928571 0.291667 vt 0.949405 0.333333 vt 0.964286 0.368056 -vt 0.875000 0.333333 +vt 0.875000 0.347222 vt 0.863095 0.368056 vt 0.863095 0.312500 vt 0.880952 0.305556 -vt 0.925595 0.027778 +vt 0.925595 0.034722 vt 0.916667 0.000000 vt 0.961310 0.055556 vt 0.976190 0.041667 @@ -2114,7 +3454,7 @@ vt 0.958333 0.312500 vt 0.949405 0.333333 vt 0.964286 0.368056 vt 0.958333 0.312500 -vt 0.875000 0.333333 +vt 0.875000 0.347222 vt 0.863095 0.368056 vt 0.875000 0.368056 vt 0.880952 0.305556 @@ -2131,83 +3471,6 @@ vt 0.401786 0.763889 vt 0.550595 0.736111 vt 0.568452 0.736111 vt 0.550595 0.763889 -vt 0.705357 0.611111 -vt 0.693452 0.597222 -vt 0.705357 0.597222 -vt 0.705357 0.513889 -vt 0.693452 0.500000 -vt 0.705357 0.500000 -vt 0.705357 0.652778 -vt 0.693452 0.638889 -vt 0.705357 0.638889 -vt 0.705357 0.555556 -vt 0.693452 0.541667 -vt 0.705357 0.541667 -vt 0.693452 0.583333 -vt 0.705357 0.583333 -vt 0.693452 0.625000 -vt 0.705357 0.625000 -vt 0.693452 0.527778 -vt 0.705357 0.527778 -vt 0.693452 0.569444 -vt 0.705357 0.569444 -vt 0.693452 0.611111 -vt 0.693452 0.513889 -vt 0.705357 0.666667 -vt 0.693452 0.652778 -vt 0.693452 0.555556 -vt 0.636905 0.805556 -vt 0.645833 0.791667 -vt 0.645833 0.805556 -vt 0.636905 0.708333 -vt 0.645833 0.694444 -vt 0.645833 0.708333 -vt 0.636905 0.750000 -vt 0.645833 0.736111 -vt 0.645833 0.750000 -vt 0.636905 0.791667 -vt 0.645833 0.777778 -vt 0.636905 0.694444 -vt 0.645833 0.680556 -vt 0.636905 0.833333 -vt 0.645833 0.819444 -vt 0.645833 0.833333 -vt 0.636905 0.736111 -vt 0.645833 0.722222 -vt 0.636905 0.777778 -vt 0.645833 0.763889 -vt 0.636905 0.680556 -vt 0.645833 0.666667 -vt 0.636905 0.819444 -vt 0.636905 0.722222 -vt 0.636905 0.763889 -vt 0.577381 0.750000 -vt 0.625000 0.750000 -vt 0.705357 0.708333 -vt 0.669643 0.715278 -vt 0.669643 0.708333 -vt 0.705357 0.687500 -vt 0.669643 0.694444 -vt 0.669643 0.687500 -vt 0.705357 0.736111 -vt 0.669643 0.743056 -vt 0.669643 0.736111 -vt 0.705357 0.666667 -vt 0.669643 0.673611 -vt 0.669643 0.666667 -vt 0.705357 0.715278 -vt 0.669643 0.722222 -vt 0.705357 0.694444 -vt 0.669643 0.701389 -vt 0.705357 0.743056 -vt 0.669643 0.750000 -vt 0.705357 0.673611 -vt 0.669643 0.680556 -vt 0.705357 0.722222 -vt 0.669643 0.729167 -vt 0.705357 0.701389 -vt 0.705357 0.680556 -vt 0.705357 0.729167 vt 0.550595 0.513889 vt 0.693452 0.527778 vt 0.550595 0.527778 @@ -2258,288 +3521,6 @@ vt 0.419643 0.652778 vt 0.520833 0.652778 vt 0.419643 0.708333 vt 0.419643 0.638889 -vt 0.369048 0.916667 -vt 0.377976 0.923611 -vt 0.369048 0.923611 -vt 0.369048 0.979167 -vt 0.377976 0.986111 -vt 0.369048 0.986111 -vt 0.369048 0.951389 -vt 0.377976 0.944444 -vt 0.377976 0.951389 -vt 0.369048 0.965278 -vt 0.377976 0.958333 -vt 0.377976 0.965278 -vt 0.369048 0.930556 -vt 0.377976 0.930556 -vt 0.369048 0.993056 -vt 0.377976 0.993056 -vt 0.369048 0.958333 -vt 0.369048 0.972222 -vt 0.377976 0.972222 -vt 0.377976 0.937500 -vt 0.369048 0.937500 -vt 0.369048 1.000000 -vt 0.377976 1.000000 -vt 0.377976 0.979167 -vt 0.369048 0.944444 -vt 0.386905 0.958333 -vt 0.386905 0.972222 -vt 0.386905 0.930556 -vt 0.386905 0.937500 -vt 0.386905 1.000000 -vt 0.386905 0.979167 -vt 0.386905 0.944444 -vt 0.377976 0.916667 -vt 0.386905 0.923611 -vt 0.386905 0.986111 -vt 0.386905 0.951389 -vt 0.386905 0.965278 -vt 0.386905 0.993056 -vt 0.395833 0.993056 -vt 0.395833 0.951389 -vt 0.395833 0.958333 -vt 0.395833 0.972222 -vt 0.395833 0.930556 -vt 0.395833 0.937500 -vt 0.395833 1.000000 -vt 0.395833 0.979167 -vt 0.395833 0.944444 -vt 0.386905 0.916667 -vt 0.395833 0.923611 -vt 0.395833 0.986111 -vt 0.395833 0.965278 -vt 0.491071 0.993056 -vt 0.491071 0.958333 -vt 0.491071 0.972222 -vt 0.491071 0.930556 -vt 0.491071 0.937500 -vt 0.491071 1.000000 -vt 0.491071 0.979167 -vt 0.491071 0.944444 -vt 0.395833 0.916667 -vt 0.491071 0.923611 -vt 0.491071 0.986111 -vt 0.491071 0.951389 -vt 0.491071 0.965278 -vt 0.500000 0.923611 -vt 0.500000 0.930556 -vt 0.500000 0.993056 -vt 0.500000 0.958333 -vt 0.500000 0.972222 -vt 0.500000 0.937500 -vt 0.500000 1.000000 -vt 0.500000 0.979167 -vt 0.500000 0.944444 -vt 0.491071 0.916667 -vt 0.500000 0.986111 -vt 0.500000 0.951389 -vt 0.500000 0.965278 -vt 0.508929 0.958333 -vt 0.508929 0.965278 -vt 0.508929 0.923611 -vt 0.508929 0.930556 -vt 0.508929 0.993056 -vt 0.508929 0.972222 -vt 0.508929 0.937500 -vt 0.508929 1.000000 -vt 0.508929 0.979167 -vt 0.508929 0.944444 -vt 0.500000 0.916667 -vt 0.508929 0.986111 -vt 0.508929 0.951389 -vt 0.517857 0.951389 -vt 0.517857 0.958333 -vt 0.517857 0.965278 -vt 0.517857 0.923611 -vt 0.517857 0.930556 -vt 0.517857 0.993056 -vt 0.517857 0.972222 -vt 0.517857 0.937500 -vt 0.517857 1.000000 -vt 0.517857 0.979167 -vt 0.517857 0.944444 -vt 0.508929 0.916667 -vt 0.517857 0.986111 -vt 0.377976 0.993056 -vt 0.369048 1.000000 -vt 0.369048 0.993056 -vt 0.377976 0.930556 -vt 0.369048 0.937500 -vt 0.369048 0.930556 -vt 0.369048 0.965278 -vt 0.377976 0.972222 -vt 0.369048 0.972222 -vt 0.369048 0.951389 -vt 0.377976 0.958333 -vt 0.369048 0.958333 -vt 0.377976 0.986111 -vt 0.369048 0.986111 -vt 0.377976 0.923611 -vt 0.369048 0.923611 -vt 0.377976 0.944444 -vt 0.369048 0.944444 -vt 0.369048 0.979167 -vt 0.369048 0.916667 -vt 0.377976 0.979167 -vt 0.386905 0.965278 -vt 0.377976 0.965278 -vt 0.386905 0.944444 -vt 0.377976 0.951389 -vt 0.386905 0.979167 -vt 0.377976 0.916667 -vt 0.386905 0.923611 -vt 0.377976 0.937500 -vt 0.386905 0.972222 -vt 0.386905 0.993056 -vt 0.377976 1.000000 -vt 0.386905 0.930556 -vt 0.386905 0.951389 -vt 0.395833 0.923611 -vt 0.395833 0.958333 -vt 0.386905 0.958333 -vt 0.395833 0.944444 -vt 0.395833 0.986111 -vt 0.386905 0.986111 -vt 0.386905 0.916667 -vt 0.395833 0.937500 -vt 0.386905 0.937500 -vt 0.395833 0.979167 -vt 0.395833 0.993056 -vt 0.386905 1.000000 -vt 0.395833 0.930556 -vt 0.395833 0.972222 -vt 0.491071 0.923611 -vt 0.491071 0.958333 -vt 0.395833 0.965278 -vt 0.491071 0.944444 -vt 0.395833 0.951389 -vt 0.491071 0.979167 -vt 0.395833 0.916667 -vt 0.491071 0.937500 -vt 0.491071 0.972222 -vt 0.491071 0.993056 -vt 0.395833 1.000000 -vt 0.491071 0.930556 -vt 0.491071 0.951389 -vt 0.491071 0.986111 -vt 0.500000 0.993056 -vt 0.500000 0.923611 -vt 0.500000 0.958333 -vt 0.491071 0.965278 -vt 0.500000 0.944444 -vt 0.500000 0.986111 -vt 0.491071 0.916667 -vt 0.500000 0.972222 -vt 0.491071 1.000000 -vt 0.500000 0.937500 -vt 0.500000 0.951389 -vt 0.508929 0.958333 -vt 0.508929 0.993056 -vt 0.508929 0.923611 -vt 0.500000 0.930556 -vt 0.500000 0.965278 -vt 0.508929 0.944444 -vt 0.508929 0.979167 -vt 0.500000 0.979167 -vt 0.508929 0.916667 -vt 0.500000 0.916667 -vt 0.500000 1.000000 -vt 0.508929 0.930556 -vt 0.508929 0.972222 -vt 0.517857 0.972222 -vt 0.508929 0.965278 -vt 0.517857 0.965278 -vt 0.517857 0.979167 -vt 0.508929 0.986111 -vt 0.517857 0.986111 -vt 0.517857 0.993056 -vt 0.517857 0.916667 -vt 0.517857 0.923611 -vt 0.517857 0.930556 -vt 0.508929 0.937500 -vt 0.517857 0.937500 -vt 0.517857 0.944444 -vt 0.508929 0.951389 -vt 0.517857 0.951389 -vt 0.000000 0.937500 -vt 0.000000 0.965278 -vt 0.000000 0.993056 -vt 0.000000 0.930556 -vt 0.000000 0.958333 -vt 0.000000 0.916667 -vt 0.000000 0.923611 -vt 0.000000 0.923611 -vt 0.000000 0.916667 -vt 0.000000 0.958333 -vt 0.000000 0.930556 -vt 0.000000 0.993056 -vt 0.000000 0.965278 -vt 0.000000 0.937500 -vt 0.000000 0.986111 -vt 0.000000 0.972222 -vt 0.000000 0.951389 -vt 0.000000 0.944444 -vt 0.000000 0.979167 -vt 0.000000 0.979167 -vt 0.000000 0.944444 -vt 0.000000 0.951389 -vt 0.000000 0.972222 -vt 0.000000 0.986111 -vt 0.636905 0.298611 -vt 0.660714 0.291667 -vt 0.660714 0.298611 -vt 0.636905 0.333333 -vt 0.660714 0.326389 -vt 0.660714 0.333333 -vt 0.636905 0.263889 -vt 0.660714 0.270833 -vt 0.636905 0.270833 -vt 0.636905 0.284722 -vt 0.636905 0.291667 -vt 0.636905 0.326389 -vt 0.660714 0.319444 -vt 0.636905 0.347222 -vt 0.660714 0.340278 -vt 0.660714 0.347222 -vt 0.636905 0.277778 -vt 0.660714 0.284722 -vt 0.636905 0.312500 -vt 0.636905 0.319444 -vt 0.636905 0.305556 -vt 0.660714 0.305556 -vt 0.636905 0.340278 -vt 0.660714 0.277778 -vt 0.660714 0.312500 -vt 0.669643 0.340278 -vt 0.669643 0.347222 -vt 0.669643 0.284722 -vt 0.669643 0.312500 -vt 0.669643 0.319444 -vt 0.669643 0.305556 -vt 0.669643 0.277778 -vt 0.669643 0.291667 -vt 0.669643 0.298611 -vt 0.669643 0.333333 -vt 0.660714 0.263889 -vt 0.669643 0.270833 -vt 0.669643 0.326389 -vt 0.675595 0.347222 -vt 0.675595 0.277778 -vt 0.675595 0.284722 -vt 0.675595 0.319444 -vt 0.675595 0.305556 -vt 0.675595 0.340278 -vt 0.675595 0.312500 -vt 0.675595 0.291667 -vt 0.675595 0.298611 -vt 0.675595 0.326389 -vt 0.675595 0.333333 -vt 0.675595 0.263889 -vt 0.675595 0.270833 -vt 0.676042 0.302196 -vt 0.681100 0.302196 -vt 0.678571 0.312365 vt 0.619048 0.416667 vt 0.616071 0.416667 vt 0.604167 0.416667 @@ -2631,60 +3612,32 @@ vt 0.038690 0.666667 vt 0.520833 0.291667 vt 0.425595 0.305556 vt 0.119048 0.555556 -vt 0.514881 0.486111 -vt 0.431548 0.597222 -vt 0.532738 0.513889 -vt 0.431548 0.513889 vt 0.077381 0.305556 vt 0.077381 0.347222 vt 0.077381 0.388889 vt 0.077381 0.555556 vt 0.077381 0.513889 vt 1.000000 0.097222 -vt 0.952381 0.368056 +vt 0.949405 0.368056 vt 0.875000 0.368056 vt 0.568452 0.763889 -vt 0.693452 0.666667 -vt 0.636905 0.666667 -vt 0.636905 0.750000 -vt 0.571429 0.750000 -vt 0.705357 0.750000 vt 0.693452 0.500000 vt 0.419643 0.763889 -vt 0.508929 1.000000 -vt 0.000000 1.000000 -vt 0.000000 1.000000 -vt 0.669643 0.263889 -vt 0.677132 0.311457 -vt 0.676042 0.308915 -vt 0.675653 0.305556 -vt 0.677132 0.299654 -vt 0.678571 0.298746 -vt 0.680011 0.299654 -vt 0.681490 0.305556 -vt 0.681100 0.308915 -vt 0.680011 0.311457 vt 0.726190 0.388889 vt 0.693452 0.500000 vt 0.419643 0.763889 vn 0.0000 0.0000 1.0000 vn 0.0000 0.0000 -1.0000 -vn -1.0000 0.0000 0.0000 vn 0.0000 -1.0000 0.0000 vn 1.0000 0.0000 0.0000 vn 0.7071 0.0000 0.7071 vn -0.7071 0.0000 0.7071 +vn -1.0000 0.0000 0.0000 vn -0.9808 -0.1951 0.0000 vn -0.0000 1.0000 0.0000 -vn -0.9239 -0.3827 0.0000 vn -0.9239 0.3827 0.0000 vn 0.0000 -0.8480 0.5300 vn 0.0000 -0.8000 -0.6000 -vn 0.0000 0.8192 -0.5736 -vn 0.0000 -0.8192 0.5736 -vn 0.0000 -0.3420 -0.9397 -vn 0.8944 0.4472 0.0000 -vn -0.8944 0.4472 0.0000 vn 0.9965 0.0830 0.0000 vn -0.9965 0.0830 0.0000 vn 0.0000 0.9363 0.3511 @@ -2708,6 +3661,7 @@ vn -0.3827 -0.9239 -0.0000 vn -0.6479 -0.6479 0.4006 vn -0.7071 -0.7071 -0.0000 vn -0.8465 -0.3506 0.4006 +vn -0.9239 -0.3827 -0.0000 vn -0.9163 -0.0000 0.4006 vn -0.8465 0.3506 0.4006 vn -0.6479 0.6479 0.4006 @@ -2823,10 +3777,6 @@ vn 0.3583 -0.8651 -0.3511 vn 0.6621 -0.6621 -0.3511 vn 0.8651 -0.3583 -0.3511 vn 0.9363 -0.0000 -0.3511 -vn 0.9808 -0.1951 0.0000 -vn -0.4430 0.8965 -0.0000 -vn 0.4430 -0.8965 0.0000 -vn 0.1951 -0.9808 0.0000 vn 0.1951 0.9808 0.0000 vn 0.4430 0.8965 -0.0000 vn -0.8765 0.3630 -0.3162 @@ -2881,18 +3831,6 @@ vn 0.0000 0.9285 0.3714 vn 0.0000 -0.9285 -0.3714 vn 0.0000 -0.1602 0.9871 vn 0.0000 -0.3162 0.9487 -vn 0.0000 0.9962 -0.0872 -vn 0.0000 0.9063 0.4226 -vn 0.0000 -0.9063 -0.4226 -vn 0.0000 -0.5736 -0.8192 -vn 0.0000 -0.0872 -0.9962 -vn 0.0000 0.4226 -0.9063 -vn 0.0000 -0.4226 0.9063 -vn 0.0000 0.5736 0.8192 -vn 0.0000 -0.9962 0.0872 -vn 0.0000 0.0872 0.9962 -vn 0.9886 0.0865 0.1236 -vn -0.9886 -0.0865 -0.1236 vn -0.5000 -0.8660 0.0000 vn -0.8660 -0.5000 0.0000 vn 0.5000 0.8660 0.0000 @@ -2901,182 +3839,10 @@ vn -0.5000 0.8660 0.0000 vn 0.8660 -0.5000 0.0000 vn 0.8660 0.5000 0.0000 vn 0.5000 -0.8660 0.0000 -vn -0.0000 -0.9911 0.1334 -vn 0.5194 -0.7400 0.4273 -vn 0.5065 -0.8546 0.1144 -vn -0.9998 0.0215 -0.0058 -vn -0.8846 -0.4039 0.2332 -vn -0.8738 -0.4822 0.0628 -vn 0.4883 0.8653 -0.1129 -vn 0.8474 0.4598 -0.2654 -vn 0.4823 0.7586 -0.4380 -vn -0.4883 0.8653 -0.1129 -vn 0.0000 0.8660 -0.5000 -vn -0.4823 0.7586 -0.4380 -vn 0.8738 -0.4822 0.0628 -vn 0.8846 -0.4039 0.2332 -vn -0.5065 -0.8546 0.1144 -vn -0.5194 -0.7400 0.4273 -vn 0.0000 0.9918 -0.1278 -vn -0.8549 0.5140 -0.0698 -vn -0.8474 0.4598 -0.2654 -vn 0.9991 0.0373 -0.0215 -vn 0.9998 0.0215 -0.0058 -vn -0.0000 -0.8660 0.5000 -vn -0.9991 0.0373 -0.0215 -vn 0.8549 0.5140 -0.0698 -vn -0.0000 0.5000 -0.8660 -vn -0.8474 0.2655 -0.4598 -vn 0.8846 -0.2332 0.4039 -vn 0.9991 0.0215 -0.0373 -vn 0.0000 -0.5000 0.8660 -vn -0.9991 0.0215 -0.0373 -vn 0.8474 0.2655 -0.4598 -vn 0.5195 -0.4273 0.7400 -vn -0.8846 -0.2332 0.4039 -vn 0.4823 0.4380 -0.7586 -vn -0.4823 0.4380 -0.7586 -vn -0.5194 -0.4273 0.7400 -vn -0.5065 -0.1144 0.8546 -vn 0.4883 0.1129 -0.8653 -vn -0.0000 0.1278 -0.9918 -vn -0.8549 0.0698 -0.5140 -vn 0.8738 -0.0628 0.4822 -vn 0.9998 0.0058 -0.0215 -vn -0.0000 -0.1334 0.9911 -vn -0.9998 0.0058 -0.0215 -vn 0.8549 0.0698 -0.5140 -vn 0.5065 -0.1144 0.8546 -vn -0.8738 -0.0628 0.4822 -vn -0.4883 0.1129 -0.8653 -vn -0.5140 -0.0698 0.8549 -vn -0.0215 -0.0058 -0.9998 -vn -0.8653 -0.1129 -0.4883 -vn 0.8546 0.1144 0.5065 -vn 0.9911 0.1334 0.0000 -vn -0.0215 -0.0058 0.9998 -vn -0.9918 -0.1278 0.0000 -vn 0.8546 0.1144 -0.5065 -vn 0.4822 0.0628 0.8738 -vn -0.8653 -0.1129 0.4883 -vn 0.4822 0.0628 -0.8738 -vn -0.5140 -0.0698 -0.8549 -vn 0.4039 0.2332 0.8846 -vn 0.7400 0.4273 0.5195 -vn -0.4598 -0.2655 0.8474 -vn -0.0373 -0.0215 -0.9991 -vn -0.7586 -0.4380 -0.4823 -vn -0.0373 -0.0215 0.9991 -vn 0.7400 0.4273 -0.5195 -vn -0.7586 -0.4380 0.4823 -vn 0.4039 0.2332 -0.8846 -vn -0.4598 -0.2655 -0.8474 -vn -0.0215 -0.0373 -0.9991 -vn -0.2655 -0.4598 -0.8474 -vn 0.2332 0.4039 0.8846 -vn 0.4273 0.7400 0.5195 -vn -0.2655 -0.4598 0.8474 -vn -0.4380 -0.7586 -0.4823 -vn -0.0215 -0.0373 0.9991 -vn 0.4273 0.7400 -0.5194 -vn -0.4380 -0.7586 0.4823 -vn 0.2332 0.4039 -0.8846 -vn 0.0000 0.4664 -0.8846 -vn 0.0000 -0.0431 -0.9991 -vn 0.0000 -0.5309 -0.8474 -vn 0.0000 0.4664 0.8846 -vn 0.0000 0.8545 0.5195 -vn -0.0000 -0.5309 0.8474 -vn 0.0000 -0.8760 -0.4823 -vn 0.0000 -0.0431 0.9991 -vn 0.0000 0.8545 -0.5194 -vn 0.0000 -0.8760 0.4823 -vn -0.5194 -0.7400 0.4272 -vn 0.5195 -0.7400 0.4272 -vn 0.5194 -0.4273 0.7400 -vn 0.5140 -0.0698 0.8549 -vn 0.0215 -0.0058 -0.9998 -vn 0.8653 -0.1129 -0.4883 -vn -0.9911 0.1334 0.0000 -vn 0.9918 -0.1278 0.0000 -vn -0.8546 0.1144 -0.5065 -vn -0.4822 0.0628 0.8738 -vn 0.8653 -0.1129 0.4883 -vn 0.5140 -0.0698 -0.8549 -vn -0.8546 0.1144 0.5065 -vn -0.4039 0.2332 0.8846 -vn 0.4598 -0.2654 0.8474 -vn 0.0373 -0.0215 -0.9991 -vn -0.4822 0.0628 -0.8738 -vn 0.7586 -0.4380 -0.4823 -vn -0.7400 0.4272 0.5194 -vn 0.0215 -0.0058 0.9998 -vn -0.7400 0.4273 -0.5195 -vn 0.4598 -0.2654 -0.8474 -vn 0.0215 -0.0373 -0.9991 -vn -0.2332 0.4039 0.8846 -vn 0.2655 -0.4598 0.8474 -vn 0.7586 -0.4380 0.4823 -vn -0.4039 0.2332 -0.8846 -vn 0.4380 -0.7586 -0.4823 -vn 0.0215 -0.0373 0.9991 -vn 0.0373 -0.0215 0.9991 -vn 0.4380 -0.7586 0.4823 -vn -0.4273 0.7400 -0.5194 -vn -0.2332 0.4039 -0.8846 -vn -0.4273 0.7400 0.5194 -vn 0.2654 -0.4598 -0.8474 -vn -0.5000 0.8138 -0.2962 -vn -0.8616 0.5019 -0.0754 -vn -0.4975 0.8441 -0.1999 -vn 0.8660 -0.4698 0.1710 -vn 0.9949 0.0345 0.0948 -vn 0.8616 -0.4330 0.2649 -vn -0.0000 -0.9397 0.3420 -vn -0.4974 -0.7752 0.3894 -vn -0.5000 -0.8138 0.2962 -vn -0.8660 0.4698 -0.1710 -vn 0.8616 0.5019 -0.0754 -vn 0.4975 -0.7752 0.3894 -vn -0.0000 -0.9004 0.4350 -vn -0.8660 -0.4698 0.1710 -vn -0.9949 0.0345 0.0948 -vn 0.5000 0.8138 -0.2962 -vn 0.8660 0.4698 -0.1710 -vn 0.0000 0.9397 -0.3420 -vn -0.0000 0.9694 -0.2455 -vn 0.5000 -0.8138 0.2962 -vn -0.8616 -0.4330 0.2649 -vn 0.4975 0.8441 -0.1999 -vn 0.4331 -0.5339 0.7262 -vn 0.0000 -0.6430 0.7659 -vn -0.8661 0.1709 0.4697 -vn 0.4331 0.8758 0.2131 -vn 0.7501 0.5779 0.3215 -vn -0.0000 0.9848 0.1734 -vn -0.7501 -0.2360 0.6178 -vn -0.7501 0.5779 0.3215 -vn -0.4331 0.8758 0.2131 -vn 0.7501 -0.2360 0.6178 -vn -0.4331 -0.5339 0.7262 -vn 0.8661 0.1709 0.4697 -vn 0.0000 -0.0388 0.9992 -vn -0.3276 0.1389 0.9346 -vn -0.3782 0.3166 0.8699 -vn 0.3276 0.4943 0.8052 -vn 0.0000 0.6720 0.7405 -vn 0.1891 0.0088 0.9819 -vn 0.1891 0.6244 0.7579 -vn -0.3276 0.4943 0.8052 -vn -0.1891 0.6244 0.7579 -vn 0.3782 0.3166 0.8699 -vn 0.3276 0.1389 0.9346 -vn -0.1891 0.0088 0.9819 +vn 0.1951 -0.9808 0.0000 vn 0.6621 0.6621 -0.3511 vn -0.6621 0.6621 -0.3511 vn -0.0000 -0.9363 -0.3511 -vn -0.5556 0.8315 0.0000 -vn 0.5556 -0.8315 0.0000 vn -0.9487 0.0000 -0.3162 vn -0.6708 0.6708 -0.3162 vn 0.0000 0.9487 -0.3162 @@ -3084,1892 +3850,1176 @@ vn 0.6708 -0.6708 -0.3162 vn -0.9811 -0.0133 -0.1928 vn 0.9732 0.0000 0.2298 s off -f 30/1/1 36/2/1 35/3/1 -f 30/1/1 34/4/1 32/5/1 -f 32/5/1 33/6/1 2/7/1 -f 2/7/1 48/8/1 4/9/1 -f 4/9/1 47/10/1 6/11/1 -f 6/11/1 46/12/1 8/13/1 -f 8/13/1 45/14/1 10/15/1 -f 10/15/1 44/16/1 12/17/1 -f 12/17/1 43/18/1 14/19/1 -f 16/20/1 43/18/1 42/21/1 -f 18/22/1 42/21/1 41/23/1 -f 20/24/1 41/25/1 40/26/1 -f 22/27/1 40/26/1 39/28/1 -f 24/29/1 39/28/1 38/30/1 -f 26/31/1 38/30/1 37/32/1 -f 28/33/1 37/32/1 36/2/1 -f 129/34/2 121/35/2 122/36/2 -f 137/37/2 118/38/2 136/39/2 -f 122/36/2 144/40/2 129/34/2 -f 136/39/2 115/41/2 135/42/2 -f 119/43/2 143/44/2 144/40/2 -f 135/42/2 116/45/2 134/46/2 -f 143/44/2 113/47/2 142/48/2 -f 142/48/2 114/49/2 141/50/2 -f 134/46/2 128/51/2 133/52/2 -f 141/50/2 127/53/2 140/54/2 -f 133/52/2 126/55/2 132/56/2 -f 140/54/2 125/57/2 139/58/2 -f 132/56/2 124/59/2 131/60/2 -f 139/58/2 123/61/2 138/62/2 -f 131/60/2 121/35/2 130/63/2 -f 137/64/2 123/61/2 120/65/2 -f 195/66/2 109/67/2 110/68/2 -f 196/69/2 108/70/2 109/67/2 -f 108/70/2 198/71/2 107/72/2 -f 198/71/2 106/73/2 107/72/2 -f 106/73/2 200/74/2 105/75/2 -f 105/75/2 201/76/2 104/77/2 -f 104/78/2 202/79/2 103/80/2 -f 103/80/2 203/81/2 102/82/2 -f 102/82/2 204/83/2 101/84/2 -f 101/84/2 205/85/2 100/86/2 -f 205/85/2 99/87/2 100/86/2 -f 206/88/2 98/89/2 99/87/2 -f 207/90/2 97/91/2 98/89/2 -f 97/91/2 193/92/2 112/93/2 -f 112/93/2 194/94/2 111/95/2 -f 194/94/2 110/68/2 111/95/2 -f 234/96/3 229/97/3 877/98/3 -f 243/99/4 244/100/4 242/101/4 -f 238/102/1 244/103/1 239/104/1 -f 226/105/2 231/106/2 225/107/2 -f 240/108/5 232/109/5 226/110/5 -f 235/111/1 229/97/1 234/96/1 -f 236/112/5 227/113/5 876/114/5 -f 233/115/4 235/116/4 234/96/4 -f 233/117/2 881/118/2 880/119/2 -f 244/103/6 240/108/6 239/104/6 -f 238/102/7 242/120/7 241/121/7 -f 225/107/3 242/120/3 237/122/3 -f 253/123/2 259/124/2 257/125/2 -f 249/126/1 251/127/1 245/128/1 -f 269/129/2 272/130/2 262/131/2 -f 272/130/2 263/132/2 262/131/2 -f 273/133/2 264/134/2 263/132/2 -f 274/135/2 212/136/2 264/134/2 -f 270/137/1 310/138/1 306/139/1 -f 267/140/1 310/138/1 266/141/1 -f 268/142/1 309/143/1 267/140/1 -f 268/142/1 307/144/1 308/145/1 -f 311/146/8 287/147/8 269/148/8 -f 275/149/9 289/150/9 305/151/9 -f 59/152/2 318/153/2 58/154/2 -f 343/155/9 328/156/9 336/157/9 -f 375/158/10 340/159/10 339/160/10 -f 373/161/3 379/162/3 377/163/3 -f 331/164/2 334/165/2 333/166/2 -f 345/167/2 351/168/2 346/169/2 -f 329/170/2 332/171/2 335/172/2 -f 330/173/2 335/172/2 334/165/2 -f 341/174/1 339/175/1 340/159/1 -f 343/155/1 337/176/1 342/177/1 -f 342/177/1 338/178/1 341/174/1 -f 345/167/2 353/179/2 352/180/2 -f 347/181/2 349/182/2 348/183/2 -f 346/169/2 350/184/2 347/181/2 -f 361/185/1 354/186/1 355/187/1 -f 354/186/1 363/188/1 358/189/1 -f 360/190/1 356/191/1 357/192/1 -f 359/193/1 355/187/1 356/191/1 -f 368/194/11 367/195/11 370/196/11 -f 344/197/4 363/198/4 353/199/4 -f 366/200/1 364/201/1 365/202/1 -f 368/194/2 371/203/2 369/204/2 -f 372/205/1 374/206/1 373/161/1 -f 377/163/2 378/207/2 376/208/2 -f 333/166/10 378/209/10 331/210/10 -f 381/211/2 382/212/2 380/213/2 -f 383/214/4 384/215/4 382/212/4 -f 385/216/12 386/217/12 384/215/12 -f 387/218/4 388/219/4 386/217/4 -f 384/215/3 386/220/3 390/221/3 -f 391/222/5 389/223/5 387/224/5 -f 404/225/2 400/226/2 396/227/2 -f 60/228/2 317/229/2 59/230/2 -f 61/231/2 316/232/2 60/233/2 -f 62/234/2 315/235/2 61/236/2 -f 63/237/2 314/238/2 62/239/2 -f 64/240/2 313/241/2 63/242/2 -f 49/243/2 312/244/2 64/245/2 -f 50/246/2 327/247/2 49/248/2 -f 51/249/2 326/250/2 50/251/2 -f 51/252/2 324/253/2 325/254/2 -f 53/255/2 324/256/2 52/257/2 -f 53/258/2 322/259/2 323/260/2 -f 54/261/2 321/262/2 322/263/2 -f 55/264/2 320/265/2 321/266/2 -f 56/267/2 319/268/2 320/269/2 -f 57/270/2 318/271/2 319/272/2 -f 442/273/13 441/274/13 440/275/13 -f 444/276/4 443/277/4 442/273/4 -f 443/278/5 449/279/5 447/280/5 -f 448/281/3 444/282/3 442/283/3 -f 453/284/5 456/285/5 451/286/5 -f 450/287/3 455/288/3 452/289/3 -f 457/290/3 461/291/3 455/288/3 -f 460/292/5 456/285/5 454/293/5 -f 459/294/3 465/295/3 461/291/3 -f 460/292/5 462/296/5 458/297/5 -f 463/298/3 469/299/3 465/295/3 -f 462/296/5 468/300/5 466/301/5 -f 472/302/4 471/303/4 470/304/4 -f 479/305/5 477/306/5 475/307/5 -f 474/308/3 476/309/3 478/310/3 -f 502/311/3 500/312/3 498/313/3 -f 524/314/3 522/315/3 518/316/3 -f 512/317/5 514/318/5 504/319/5 -f 539/320/14 540/321/14 536/322/14 -f 531/323/14 532/324/14 530/325/14 -f 528/326/15 534/327/15 529/328/15 -f 535/329/14 536/322/14 532/324/14 -f 534/327/15 537/330/15 538/331/15 -f 537/330/15 542/332/15 538/331/15 -f 562/333/3 560/334/3 558/335/3 -f 578/336/2 574/337/2 570/338/2 -f 590/339/1 581/340/1 584/341/1 -f 602/342/1 592/343/1 596/344/1 -f 614/345/2 610/346/2 606/347/2 -f 800/348/1 804/349/1 796/350/1 -f 818/351/1 814/352/1 810/353/1 -f 828/354/16 826/355/16 822/356/16 -f 870/357/9 868/358/9 874/359/9 -f 227/360/17 875/361/17 876/362/17 -f 873/363/9 872/364/9 869/365/9 -f 877/366/18 869/365/18 230/367/18 -f 880/368/2 868/358/2 227/369/2 -f 869/365/2 881/370/2 230/371/2 -f 228/372/9 878/373/9 879/374/9 -f 870/357/3 880/375/3 878/373/3 -f 881/376/5 871/377/5 879/374/5 -f 879/374/9 880/375/9 881/376/9 -f 873/363/1 879/378/1 871/377/1 -f 878/379/1 875/361/1 870/357/1 -f 884/380/9 883/381/9 882/382/9 -f 882/382/2 889/383/2 884/380/2 -f 883/381/19 887/384/19 882/382/19 -f 885/385/1 886/386/1 883/381/1 -f 884/380/20 888/387/20 885/385/20 -f 899/388/2 912/389/2 900/390/2 -f 912/389/2 901/391/2 900/390/2 -f 901/391/2 902/392/2 890/393/2 -f 902/392/2 891/394/2 890/393/2 -f 891/394/2 904/395/2 892/396/2 -f 904/395/2 893/397/2 892/396/2 -f 893/397/2 906/398/2 894/399/2 -f 906/398/2 895/400/2 894/399/2 -f 895/400/2 908/401/2 896/402/2 -f 908/403/2 897/404/2 896/405/2 -f 897/404/2 910/406/2 898/407/2 -f 910/406/2 899/388/2 898/407/2 -f 923/408/1 936/409/1 935/410/1 -f 925/411/1 936/409/1 924/412/1 -f 925/411/1 927/413/1 937/414/1 -f 914/415/1 927/413/1 915/416/1 -f 914/415/1 928/417/1 926/418/1 -f 917/419/1 928/417/1 916/420/1 -f 917/419/1 930/421/1 929/422/1 -f 919/423/1 930/421/1 918/424/1 -f 919/423/1 932/425/1 931/426/1 -f 921/427/1 932/428/1 920/429/1 -f 921/427/1 934/430/1 933/431/1 -f 923/408/1 934/430/1 922/432/1 -f 945/433/21 956/434/21 942/435/21 -f 958/436/1 956/434/1 957/437/1 -f 948/438/2 940/439/2 947/440/2 -f 944/441/3 957/437/3 945/442/3 -f 948/438/3 951/443/3 949/444/3 -f 940/445/22 949/444/22 938/446/22 -f 943/447/5 956/434/5 959/448/5 -f 946/449/1 949/450/1 951/451/1 -f 952/452/5 955/453/5 953/454/5 -f 939/455/23 953/454/23 941/456/23 -f 962/457/3 965/458/3 963/459/3 -f 966/460/1 964/461/1 965/458/1 -f 963/462/21 964/461/21 960/463/21 -f 961/464/5 964/461/5 967/465/5 -f 980/466/1 982/467/1 976/468/1 -f 990/469/5 988/470/5 989/471/5 -f 987/472/4 990/469/4 985/473/4 -f 984/474/9 988/470/9 986/475/9 -f 986/476/2 991/477/2 987/478/2 -f 985/479/1 989/471/1 984/480/1 -f 304/481/1 289/482/1 992/483/1 -f 992/483/1 303/484/1 304/481/1 -f 993/485/1 302/486/1 303/484/1 -f 994/487/1 311/488/1 302/486/1 -f 300/489/1 288/490/1 301/491/1 -f 1005/492/2 1001/493/2 997/494/2 -f 1017/495/1 1008/496/1 1011/497/1 -f 1029/498/1 1019/499/1 1023/500/1 -f 1041/501/2 1037/502/2 1033/503/2 -f 30/1/1 28/33/1 36/2/1 -f 30/1/1 35/3/1 34/4/1 -f 32/5/1 34/4/1 33/6/1 -f 2/7/1 33/6/1 48/8/1 -f 4/9/1 48/8/1 47/10/1 -f 6/11/1 47/10/1 46/12/1 -f 8/13/1 46/12/1 45/14/1 -f 10/15/1 45/14/1 44/16/1 -f 12/17/1 44/16/1 43/18/1 -f 16/20/1 14/19/1 43/18/1 -f 18/22/1 16/20/1 42/21/1 -f 20/24/1 18/504/1 41/25/1 -f 22/27/1 20/24/1 40/26/1 -f 24/29/1 22/27/1 39/28/1 -f 26/31/1 24/29/1 38/30/1 -f 28/33/1 26/31/1 37/32/1 -f 129/34/2 130/63/2 121/35/2 -f 137/37/2 120/505/2 118/38/2 -f 122/36/2 119/43/2 144/40/2 -f 136/39/2 118/38/2 115/41/2 -f 119/43/2 117/506/2 143/44/2 -f 135/42/2 115/41/2 116/45/2 -f 143/44/2 117/506/2 113/47/2 -f 142/48/2 113/47/2 114/49/2 -f 134/46/2 116/45/2 128/51/2 -f 141/50/2 114/49/2 127/53/2 -f 133/52/2 128/51/2 126/55/2 -f 140/54/2 127/53/2 125/57/2 -f 132/56/2 126/55/2 124/59/2 -f 139/58/2 125/57/2 123/61/2 -f 131/60/2 124/59/2 121/35/2 -f 137/64/2 138/62/2 123/61/2 -f 195/66/2 196/69/2 109/67/2 -f 196/69/2 197/507/2 108/70/2 -f 108/70/2 197/507/2 198/71/2 -f 198/71/2 199/508/2 106/73/2 -f 106/73/2 199/508/2 200/74/2 -f 105/75/2 200/74/2 201/76/2 -f 104/78/2 201/509/2 202/79/2 -f 103/80/2 202/79/2 203/81/2 -f 102/82/2 203/81/2 204/83/2 -f 101/84/2 204/83/2 205/85/2 -f 205/85/2 206/88/2 99/87/2 -f 206/88/2 207/90/2 98/89/2 -f 207/90/2 208/510/2 97/91/2 -f 97/91/2 208/510/2 193/92/2 -f 112/93/2 193/92/2 194/94/2 -f 194/94/2 195/66/2 110/68/2 -f 230/511/3 233/115/3 877/98/3 -f 233/115/3 234/96/3 877/98/3 -f 244/100/4 241/512/4 242/101/4 -f 242/101/4 231/513/4 232/109/4 -f 232/109/4 243/99/4 242/101/4 -f 238/102/1 241/121/1 244/103/1 -f 226/105/2 232/514/2 231/106/2 -f 240/108/5 243/99/5 232/109/5 -f 235/111/1 228/372/1 229/97/1 -f 228/372/5 235/111/5 876/114/5 -f 235/111/5 236/112/5 876/114/5 -f 233/115/4 236/515/4 235/116/4 -f 227/113/2 236/112/2 880/119/2 -f 236/112/2 233/117/2 880/119/2 -f 233/117/2 230/516/2 881/118/2 -f 244/103/6 243/99/6 240/108/6 -f 238/102/7 237/122/7 242/120/7 -f 225/107/3 231/106/3 242/120/3 -f 255/517/2 254/518/2 253/123/2 -f 253/123/2 260/519/2 259/124/2 -f 259/124/2 258/520/2 257/125/2 -f 257/125/2 256/521/2 255/517/2 -f 255/517/2 253/123/2 257/125/2 -f 245/128/1 246/522/1 247/523/1 -f 247/523/1 248/524/1 249/126/1 -f 249/126/1 250/525/1 251/127/1 -f 251/127/1 252/526/1 245/128/1 -f 245/128/1 247/523/1 249/126/1 -f 269/129/2 287/527/2 272/130/2 -f 272/130/2 273/133/2 263/132/2 -f 273/133/2 274/135/2 264/134/2 -f 274/135/2 275/528/2 212/136/2 -f 270/137/1 266/141/1 310/138/1 -f 267/140/1 309/143/1 310/138/1 -f 268/142/1 308/145/1 309/143/1 -f 268/142/1 211/529/1 307/144/1 -f 269/148/8 270/530/8 311/146/8 -f 270/530/8 306/531/8 311/146/8 -f 311/146/8 301/532/8 287/147/8 -f 307/533/9 211/534/9 305/151/9 -f 211/534/9 212/535/9 305/151/9 -f 212/535/9 275/149/9 305/151/9 -f 59/152/2 317/536/2 318/153/2 -f 343/155/9 332/171/9 328/156/9 -f 375/158/10 372/205/10 340/159/10 -f 373/161/3 374/537/3 379/162/3 -f 331/164/2 330/173/2 334/165/2 -f 345/167/2 352/180/2 351/168/2 -f 329/170/2 328/538/2 332/171/2 -f 330/173/2 329/170/2 335/172/2 -f 341/174/1 338/178/1 339/175/1 -f 343/155/1 336/539/1 337/176/1 -f 342/177/1 337/176/1 338/178/1 -f 345/167/2 344/197/2 353/179/2 -f 347/181/2 350/184/2 349/182/2 -f 346/169/2 351/168/2 350/184/2 -f 361/185/1 362/540/1 354/186/1 -f 354/186/1 362/540/1 363/188/1 -f 360/190/1 359/193/1 356/191/1 -f 359/193/1 361/185/1 355/187/1 -f 368/194/11 364/201/11 367/195/11 -f 344/197/4 358/189/4 363/198/4 -f 366/200/1 367/541/1 364/201/1 -f 368/194/2 370/542/2 371/203/2 -f 372/205/1 375/543/1 374/206/1 -f 377/163/2 379/544/2 378/207/2 -f 333/166/10 376/208/10 378/209/10 -f 381/211/2 383/214/2 382/212/2 -f 383/214/4 385/216/4 384/215/4 -f 385/216/12 387/218/12 386/217/12 -f 387/218/4 389/545/4 388/219/4 -f 380/546/3 382/212/3 384/215/3 -f 386/220/3 388/547/3 390/221/3 -f 380/546/3 384/215/3 390/221/3 -f 383/214/5 381/548/5 385/216/5 -f 381/548/5 391/222/5 385/216/5 -f 385/216/5 391/222/5 387/224/5 -f 396/227/2 395/549/2 394/550/2 -f 394/550/2 409/551/2 396/227/2 -f 409/551/2 408/552/2 396/227/2 -f 408/552/2 407/553/2 406/554/2 -f 406/554/2 405/555/2 404/225/2 -f 404/225/2 403/556/2 402/557/2 -f 402/557/2 401/558/2 400/226/2 -f 400/226/2 399/559/2 398/560/2 -f 398/560/2 397/561/2 396/227/2 -f 408/552/2 406/554/2 404/225/2 -f 404/225/2 402/557/2 400/226/2 -f 400/226/2 398/560/2 396/227/2 -f 396/227/2 408/552/2 404/225/2 -f 60/228/2 316/562/2 317/229/2 -f 61/231/2 315/563/2 316/232/2 -f 62/234/2 314/564/2 315/235/2 -f 63/237/2 313/565/2 314/238/2 -f 64/240/2 312/566/2 313/241/2 -f 49/243/2 327/567/2 312/244/2 -f 50/246/2 326/568/2 327/247/2 -f 51/249/2 325/569/2 326/250/2 -f 51/252/2 52/570/2 324/253/2 -f 53/255/2 323/571/2 324/256/2 -f 53/258/2 54/572/2 322/259/2 -f 54/261/2 55/573/2 321/262/2 -f 55/264/2 56/574/2 320/265/2 -f 56/267/2 57/575/2 319/268/2 -f 57/270/2 58/576/2 318/271/2 -f 442/273/13 443/277/13 441/274/13 -f 444/276/4 445/577/4 443/277/4 -f 447/280/5 441/274/5 443/278/5 -f 443/278/5 445/578/5 449/279/5 -f 442/283/3 440/275/3 446/579/3 -f 446/579/3 448/281/3 442/283/3 -f 453/284/5 454/293/5 456/285/5 -f 450/287/3 457/290/3 455/288/3 -f 457/290/3 459/294/3 461/291/3 -f 460/292/5 458/297/5 456/285/5 -f 459/294/3 463/298/3 465/295/3 -f 460/292/5 464/580/5 462/296/5 -f 463/298/3 467/581/3 469/299/3 -f 462/296/5 464/580/5 468/300/5 -f 472/302/4 473/582/4 471/303/4 -f 475/307/5 471/303/5 473/582/5 -f 473/582/5 479/305/5 475/307/5 -f 478/310/3 472/302/3 474/308/3 -f 472/302/3 470/304/3 474/308/3 -f 494/583/3 493/584/3 492/585/3 -f 492/585/3 503/586/3 502/311/3 -f 502/311/3 501/587/3 500/312/3 -f 500/312/3 499/588/3 498/313/3 -f 498/313/3 497/589/3 494/583/3 -f 497/589/3 496/590/3 494/583/3 -f 496/590/3 495/591/3 494/583/3 -f 494/583/3 492/585/3 498/313/3 -f 492/585/3 502/311/3 498/313/3 -f 518/316/3 517/592/3 516/593/3 -f 516/593/3 527/594/3 526/595/3 -f 526/595/3 525/596/3 524/314/3 -f 524/314/3 523/597/3 522/315/3 -f 522/315/3 521/598/3 518/316/3 -f 521/598/3 520/599/3 518/316/3 -f 520/599/3 519/600/3 518/316/3 -f 518/316/3 516/593/3 526/595/3 -f 526/595/3 524/314/3 518/316/3 -f 504/319/5 505/601/5 506/602/5 -f 506/602/5 507/603/5 508/604/5 -f 508/604/5 509/605/5 512/317/5 -f 509/605/5 510/606/5 512/317/5 -f 510/606/5 511/607/5 512/317/5 -f 512/317/5 513/608/5 514/318/5 -f 514/318/5 515/609/5 504/319/5 -f 504/319/5 506/602/5 512/317/5 -f 506/602/5 508/604/5 512/317/5 -f 539/320/14 543/610/14 540/321/14 -f 531/323/14 535/329/14 532/324/14 -f 528/326/15 533/611/15 534/327/15 -f 535/329/14 539/320/14 536/322/14 -f 534/327/15 533/611/15 537/330/15 -f 537/330/15 541/612/15 542/332/15 -f 558/335/3 557/613/3 556/614/3 -f 556/614/3 567/615/3 558/335/3 -f 567/615/3 566/616/3 558/335/3 -f 566/616/3 565/617/3 564/618/3 -f 564/618/3 563/619/3 562/333/3 -f 562/333/3 561/620/3 560/334/3 -f 560/334/3 559/621/3 558/335/3 -f 566/616/3 564/618/3 558/335/3 -f 564/618/3 562/333/3 558/335/3 -f 570/338/2 569/622/2 578/336/2 -f 569/622/2 568/623/2 578/336/2 -f 568/623/2 579/624/2 578/336/2 -f 578/336/2 577/625/2 576/626/2 -f 576/626/2 575/627/2 574/337/2 -f 574/337/2 573/628/2 572/629/2 -f 572/629/2 571/630/2 574/337/2 -f 571/630/2 570/338/2 574/337/2 -f 578/336/2 576/626/2 574/337/2 -f 581/340/1 580/631/1 582/632/1 -f 582/632/1 583/633/1 581/340/1 -f 583/633/1 584/341/1 581/340/1 -f 584/341/1 585/634/1 588/635/1 -f 585/634/1 586/636/1 588/635/1 -f 586/636/1 587/637/1 588/635/1 -f 588/635/1 589/638/1 590/339/1 -f 590/339/1 591/639/1 581/340/1 -f 588/635/1 590/339/1 584/341/1 -f 592/343/1 593/640/1 594/641/1 -f 594/641/1 595/642/1 592/343/1 -f 595/642/1 596/344/1 592/343/1 -f 596/344/1 597/643/1 600/644/1 -f 597/643/1 598/645/1 600/644/1 -f 598/645/1 599/646/1 600/644/1 -f 600/644/1 601/647/1 602/342/1 -f 602/342/1 603/648/1 592/343/1 -f 600/644/1 602/342/1 596/344/1 -f 606/347/2 604/649/2 614/345/2 -f 604/649/2 605/650/2 614/345/2 -f 605/650/2 615/651/2 614/345/2 -f 614/345/2 613/652/2 612/653/2 -f 612/653/2 611/654/2 610/346/2 -f 610/346/2 609/655/2 608/656/2 -f 608/656/2 607/657/2 610/346/2 -f 607/657/2 606/347/2 610/346/2 -f 614/345/2 612/653/2 610/346/2 -f 796/350/1 797/658/1 798/659/1 -f 798/659/1 799/660/1 796/350/1 -f 799/660/1 800/348/1 796/350/1 -f 800/348/1 801/661/1 804/349/1 -f 801/661/1 802/662/1 804/349/1 -f 802/662/1 803/663/1 804/349/1 -f 804/349/1 805/664/1 806/665/1 -f 806/665/1 807/666/1 804/349/1 -f 807/666/1 796/350/1 804/349/1 -f 810/353/1 809/667/1 808/668/1 -f 808/668/1 819/669/1 810/353/1 -f 819/669/1 818/351/1 810/353/1 -f 818/351/1 817/670/1 816/671/1 -f 816/671/1 815/672/1 818/351/1 -f 815/672/1 814/352/1 818/351/1 -f 814/352/1 813/673/1 810/353/1 -f 813/673/1 812/674/1 810/353/1 -f 812/674/1 811/675/1 810/353/1 -f 822/356/16 821/676/16 830/677/16 -f 821/676/16 820/678/16 830/677/16 -f 820/678/16 831/679/16 830/677/16 -f 830/677/16 829/680/16 828/354/16 -f 828/354/16 827/681/16 826/355/16 -f 826/355/16 825/682/16 824/683/16 -f 824/683/16 823/684/16 826/355/16 -f 823/684/16 822/356/16 826/355/16 -f 830/677/16 828/354/16 822/356/16 -f 870/357/9 875/361/9 868/358/9 -f 227/360/17 868/358/17 875/361/17 -f 873/363/9 871/377/9 872/364/9 -f 877/366/18 873/363/18 869/365/18 -f 880/368/2 874/359/2 868/358/2 -f 869/365/2 872/364/2 881/370/2 -f 877/685/9 229/97/9 879/374/9 -f 229/97/9 228/372/9 879/374/9 -f 228/372/9 876/686/9 878/373/9 -f 870/357/3 874/359/3 880/375/3 -f 881/376/5 872/364/5 871/377/5 -f 879/374/9 878/373/9 880/375/9 -f 873/363/1 877/687/1 879/378/1 -f 878/379/1 876/688/1 875/361/1 -f 884/380/9 885/385/9 883/381/9 -f 882/382/2 887/689/2 889/383/2 -f 883/381/19 886/690/19 887/384/19 -f 885/385/1 888/691/1 886/386/1 -f 884/380/20 889/692/20 888/387/20 -f 899/388/2 911/693/2 912/389/2 -f 912/389/2 913/694/2 901/391/2 -f 901/391/2 913/694/2 902/392/2 -f 902/392/2 903/695/2 891/394/2 -f 891/394/2 903/695/2 904/395/2 -f 904/395/2 905/696/2 893/397/2 -f 893/397/2 905/696/2 906/398/2 -f 906/398/2 907/697/2 895/400/2 -f 895/400/2 907/697/2 908/401/2 -f 908/403/2 909/698/2 897/404/2 -f 897/404/2 909/698/2 910/406/2 -f 910/406/2 911/693/2 899/388/2 -f 923/408/1 924/412/1 936/409/1 -f 925/411/1 937/414/1 936/409/1 -f 925/411/1 915/416/1 927/413/1 -f 914/415/1 926/418/1 927/413/1 -f 914/415/1 916/420/1 928/417/1 -f 917/419/1 929/422/1 928/417/1 -f 917/419/1 918/424/1 930/421/1 -f 919/423/1 931/426/1 930/421/1 -f 919/423/1 920/699/1 932/425/1 -f 921/427/1 933/431/1 932/428/1 -f 921/427/1 922/432/1 934/430/1 -f 923/408/1 935/410/1 934/430/1 -f 945/433/21 957/437/21 956/434/21 -f 958/436/1 959/448/1 956/434/1 -f 947/440/2 941/700/2 953/701/2 -f 953/701/2 955/702/2 947/440/2 -f 955/702/2 950/703/2 947/440/2 -f 950/703/2 948/438/2 947/440/2 -f 944/441/3 958/436/3 957/437/3 -f 948/438/3 950/703/3 951/443/3 -f 940/445/22 948/438/22 949/444/22 -f 943/447/5 942/704/5 956/434/5 -f 951/451/1 954/705/1 946/449/1 -f 954/705/1 952/452/1 946/449/1 -f 952/452/1 939/706/1 946/449/1 -f 946/449/1 938/707/1 949/450/1 -f 952/452/5 954/705/5 955/453/5 -f 939/455/23 952/452/23 953/454/23 -f 962/457/3 966/460/3 965/458/3 -f 966/460/1 967/465/1 964/461/1 -f 963/462/21 965/458/21 964/461/21 -f 961/464/5 960/708/5 964/461/5 -f 976/468/1 977/709/1 978/710/1 -f 978/710/1 979/711/1 980/466/1 -f 980/466/1 981/712/1 982/467/1 -f 982/467/1 983/713/1 976/468/1 -f 976/468/1 978/710/1 980/466/1 -f 990/469/5 991/477/5 988/470/5 -f 987/472/4 991/477/4 990/469/4 -f 984/474/9 989/471/9 988/470/9 -f 986/476/2 988/470/2 991/477/2 -f 985/479/1 990/469/1 989/471/1 -f 304/481/1 305/714/1 289/482/1 -f 992/483/1 993/485/1 303/484/1 -f 993/485/1 994/487/1 302/486/1 -f 994/487/1 301/715/1 311/488/1 -f 301/491/1 994/716/1 993/717/1 -f 993/717/1 992/718/1 301/491/1 -f 992/718/1 289/719/1 301/491/1 -f 289/719/1 290/720/1 301/491/1 -f 290/720/1 291/721/1 301/491/1 -f 291/721/1 292/722/1 301/491/1 -f 292/722/1 293/723/1 301/491/1 -f 293/723/1 294/724/1 301/491/1 -f 294/724/1 295/725/1 301/491/1 -f 295/725/1 296/726/1 301/491/1 -f 296/726/1 297/727/1 301/491/1 -f 297/727/1 298/728/1 301/491/1 -f 298/728/1 299/729/1 301/491/1 -f 299/729/1 300/489/1 301/491/1 -f 997/494/2 996/730/2 1005/492/2 -f 996/730/2 995/731/2 1005/492/2 -f 995/731/2 1006/732/2 1005/492/2 -f 1005/492/2 1004/733/2 1003/734/2 -f 1003/734/2 1002/735/2 1001/493/2 -f 1001/493/2 1000/736/2 999/737/2 -f 999/737/2 998/738/2 1001/493/2 -f 998/738/2 997/494/2 1001/493/2 -f 1005/492/2 1003/734/2 1001/493/2 -f 1008/496/1 1007/739/1 1009/740/1 -f 1009/740/1 1010/741/1 1008/496/1 -f 1010/741/1 1011/497/1 1008/496/1 -f 1011/497/1 1012/742/1 1015/743/1 -f 1012/742/1 1013/744/1 1015/743/1 -f 1013/744/1 1014/745/1 1015/743/1 -f 1015/743/1 1016/746/1 1017/495/1 -f 1017/495/1 1018/747/1 1008/496/1 -f 1015/743/1 1017/495/1 1011/497/1 -f 1019/499/1 1020/748/1 1021/749/1 -f 1021/749/1 1022/750/1 1019/499/1 -f 1022/750/1 1023/500/1 1019/499/1 -f 1023/500/1 1024/751/1 1027/752/1 -f 1024/751/1 1025/753/1 1027/752/1 -f 1025/753/1 1026/754/1 1027/752/1 -f 1027/752/1 1028/755/1 1029/498/1 -f 1029/498/1 1030/756/1 1019/499/1 -f 1027/752/1 1029/498/1 1023/500/1 -f 1033/503/2 1031/757/2 1041/501/2 -f 1031/757/2 1032/758/2 1041/501/2 -f 1032/758/2 1042/759/2 1041/501/2 -f 1041/501/2 1040/760/2 1039/761/2 -f 1039/761/2 1038/762/2 1037/502/2 -f 1037/502/2 1036/763/2 1035/764/2 -f 1035/764/2 1034/765/2 1037/502/2 -f 1034/765/2 1033/503/2 1037/502/2 -f 1041/501/2 1039/761/2 1037/502/2 +f 416/565/229 422/566/229 421/567/229 +f 416/565/229 420/568/229 418/569/229 +f 418/569/229 419/570/229 388/571/229 +f 388/571/229 434/572/229 390/573/229 +f 390/573/229 433/574/229 392/575/229 +f 392/575/229 432/576/229 394/577/229 +f 394/577/229 431/578/229 396/579/229 +f 396/579/229 430/580/229 398/581/229 +f 398/581/229 429/582/229 400/583/229 +f 402/584/229 429/582/229 428/585/229 +f 404/586/229 428/585/229 427/587/229 +f 406/588/229 427/589/229 426/590/229 +f 408/591/229 426/590/229 425/592/229 +f 410/593/229 425/592/229 424/594/229 +f 412/595/229 424/594/229 423/596/229 +f 414/597/229 423/596/229 422/566/229 +f 515/598/230 507/599/230 508/600/230 +f 523/601/230 504/602/230 522/603/230 +f 508/600/230 530/604/230 515/598/230 +f 522/603/230 501/605/230 521/606/230 +f 505/607/230 529/608/230 530/604/230 +f 521/606/230 502/609/230 520/610/230 +f 529/608/230 499/611/230 528/612/230 +f 528/612/230 500/613/230 527/614/230 +f 520/610/230 514/615/230 519/616/230 +f 527/614/230 513/617/230 526/618/230 +f 519/616/230 512/619/230 518/620/230 +f 526/618/230 511/621/230 525/622/230 +f 518/620/230 510/623/230 517/624/230 +f 525/622/230 509/625/230 524/626/230 +f 517/624/230 507/599/230 516/627/230 +f 523/628/230 509/625/230 506/629/230 +f 581/630/230 495/631/230 496/632/230 +f 582/633/230 494/634/230 495/631/230 +f 494/634/230 584/635/230 493/636/230 +f 584/635/230 492/637/230 493/636/230 +f 492/637/230 586/638/230 491/639/230 +f 491/639/230 587/640/230 490/641/230 +f 490/642/230 588/643/230 489/644/230 +f 489/644/230 589/645/230 488/646/230 +f 488/646/230 590/647/230 487/648/230 +f 487/648/230 591/649/230 486/650/230 +f 591/649/230 485/651/230 486/650/230 +f 592/652/230 484/653/230 485/651/230 +f 593/654/230 483/655/230 484/653/230 +f 483/655/230 579/656/230 498/657/230 +f 498/657/230 580/658/230 497/659/230 +f 580/658/230 496/632/230 497/659/230 +f 621/660/231 622/661/231 620/662/231 +f 616/663/229 622/664/229 617/665/229 +f 612/666/230 613/667/230 611/668/230 +f 618/669/232 614/670/232 612/671/232 +f 622/664/233 618/669/233 617/665/233 +f 616/663/234 620/672/234 619/673/234 +f 611/668/235 620/672/235 615/674/235 +f 631/675/230 637/676/230 635/677/230 +f 627/678/229 629/679/229 623/680/229 +f 647/681/230 650/682/230 640/683/230 +f 650/682/230 641/684/230 640/683/230 +f 651/685/230 642/686/230 641/684/230 +f 652/687/230 598/688/230 642/686/230 +f 648/689/229 688/690/229 684/691/229 +f 645/692/229 688/690/229 644/693/229 +f 646/694/229 687/695/229 645/692/229 +f 646/694/229 685/696/229 686/697/229 +f 689/698/236 665/699/236 647/700/236 +f 653/701/237 667/702/237 683/703/237 +f 445/704/230 696/705/230 444/706/230 +f 707/707/230 713/708/230 708/709/230 +f 707/707/230 715/710/230 714/711/230 +f 709/712/230 711/713/230 710/714/230 +f 708/709/230 712/715/230 709/712/230 +f 723/716/229 716/717/229 717/718/229 +f 716/717/229 725/719/229 720/720/229 +f 722/721/229 718/722/229 719/723/229 +f 721/724/229 717/718/229 718/722/229 +f 730/725/238 729/726/238 732/727/238 +f 706/728/231 725/729/231 715/730/231 +f 728/731/229 726/732/229 727/733/229 +f 730/725/230 733/734/230 731/735/230 +f 735/736/230 736/737/230 734/738/230 +f 737/739/231 738/740/231 736/737/231 +f 739/741/239 740/742/239 738/740/239 +f 741/743/231 742/744/231 740/742/231 +f 738/740/235 740/745/235 744/746/235 +f 745/747/232 743/748/232 741/749/232 +f 758/750/230 754/751/230 750/752/230 +f 446/753/230 695/754/230 445/755/230 +f 447/756/230 694/757/230 446/758/230 +f 448/759/230 693/760/230 447/761/230 +f 449/762/230 692/763/230 448/764/230 +f 450/765/230 691/766/230 449/767/230 +f 435/768/230 690/769/230 450/770/230 +f 436/771/230 705/772/230 435/773/230 +f 437/774/230 704/775/230 436/776/230 +f 437/777/230 702/778/230 703/779/230 +f 439/780/230 702/781/230 438/782/230 +f 439/783/230 700/784/230 701/785/230 +f 440/786/230 699/787/230 700/788/230 +f 441/789/230 698/790/230 699/791/230 +f 442/792/230 697/793/230 698/794/230 +f 443/795/230 696/796/230 697/797/230 +f 796/798/240 795/799/240 794/800/240 +f 798/801/231 797/802/231 796/798/231 +f 797/803/232 803/804/232 801/805/232 +f 802/806/235 798/807/235 796/808/235 +f 807/809/232 810/810/232 805/811/232 +f 804/812/235 809/813/235 806/814/235 +f 811/815/235 815/816/235 809/813/235 +f 814/817/232 810/810/232 808/818/232 +f 813/819/235 819/820/235 815/816/235 +f 814/817/232 816/821/232 812/822/232 +f 817/823/235 823/824/235 819/820/235 +f 816/821/232 822/825/232 820/826/232 +f 826/827/231 825/828/231 824/829/231 +f 833/830/232 831/831/232 829/832/232 +f 828/833/235 830/834/235 832/835/235 +f 844/836/230 840/837/230 836/838/230 +f 856/839/229 847/840/229 850/841/229 +f 868/842/229 858/843/229 862/844/229 +f 880/845/230 876/846/230 872/847/230 +f 884/848/237 883/849/237 882/850/237 +f 882/850/230 889/851/230 884/848/230 +f 883/849/241 887/852/241 882/850/241 +f 885/853/229 886/854/229 883/849/229 +f 884/848/242 888/855/242 885/853/242 +f 899/856/230 912/857/230 900/858/230 +f 912/857/230 901/859/230 900/858/230 +f 901/859/230 902/860/230 890/861/230 +f 902/860/230 891/862/230 890/861/230 +f 891/862/230 904/863/230 892/864/230 +f 904/863/230 893/865/230 892/864/230 +f 893/865/230 906/866/230 894/867/230 +f 906/866/230 895/868/230 894/867/230 +f 895/868/230 908/869/230 896/870/230 +f 908/871/230 897/872/230 896/873/230 +f 897/872/230 910/874/230 898/875/230 +f 910/874/230 899/856/230 898/875/230 +f 923/876/229 936/877/229 935/878/229 +f 925/879/229 936/877/229 924/880/229 +f 925/879/229 927/881/229 937/882/229 +f 914/883/229 927/881/229 915/884/229 +f 914/883/229 928/885/229 926/886/229 +f 917/887/229 928/885/229 916/888/229 +f 917/887/229 930/889/229 929/890/229 +f 919/891/229 930/889/229 918/892/229 +f 919/891/229 932/893/229 931/894/229 +f 921/895/229 932/896/229 920/897/229 +f 921/895/229 934/898/229 933/899/229 +f 923/876/229 934/898/229 922/900/229 +f 945/901/243 956/902/243 942/903/243 +f 958/904/229 956/902/229 957/905/229 +f 948/906/230 940/907/230 947/908/230 +f 944/909/235 957/905/235 945/910/235 +f 948/906/235 951/911/235 949/912/235 +f 940/913/244 949/912/244 938/914/244 +f 943/915/232 956/902/232 959/916/232 +f 946/917/229 949/918/229 951/919/229 +f 952/920/232 955/921/232 953/922/232 +f 939/923/245 953/922/245 941/924/245 +f 962/925/235 965/926/235 963/927/235 +f 966/928/229 964/929/229 965/926/229 +f 963/930/243 964/929/243 960/931/243 +f 961/932/232 964/929/232 967/933/232 +f 980/934/229 982/935/229 976/936/229 +f 990/937/232 988/938/232 989/939/232 +f 987/940/231 990/937/231 985/941/231 +f 984/942/237 988/938/237 986/943/237 +f 986/944/230 991/945/230 987/946/230 +f 985/947/229 989/939/229 984/948/229 +f 682/949/229 667/950/229 992/951/229 +f 992/951/229 681/952/229 682/949/229 +f 993/953/229 680/954/229 681/952/229 +f 994/955/229 689/956/229 680/954/229 +f 678/957/229 666/958/229 679/959/229 +f 1005/960/230 1001/961/230 997/962/230 +f 1017/963/229 1008/964/229 1011/965/229 +f 1029/966/229 1019/967/229 1023/968/229 +f 1041/969/230 1037/970/230 1033/971/230 +f 416/565/229 414/597/229 422/566/229 +f 416/565/229 421/567/229 420/568/229 +f 418/569/229 420/568/229 419/570/229 +f 388/571/229 419/570/229 434/572/229 +f 390/573/229 434/572/229 433/574/229 +f 392/575/229 433/574/229 432/576/229 +f 394/577/229 432/576/229 431/578/229 +f 396/579/229 431/578/229 430/580/229 +f 398/581/229 430/580/229 429/582/229 +f 402/584/229 400/583/229 429/582/229 +f 404/586/229 402/584/229 428/585/229 +f 406/588/229 404/972/229 427/589/229 +f 408/591/229 406/588/229 426/590/229 +f 410/593/229 408/591/229 425/592/229 +f 412/595/229 410/593/229 424/594/229 +f 414/597/229 412/595/229 423/596/229 +f 515/598/230 516/627/230 507/599/230 +f 523/601/230 506/973/230 504/602/230 +f 508/600/230 505/607/230 530/604/230 +f 522/603/230 504/602/230 501/605/230 +f 505/607/230 503/974/230 529/608/230 +f 521/606/230 501/605/230 502/609/230 +f 529/608/230 503/974/230 499/611/230 +f 528/612/230 499/611/230 500/613/230 +f 520/610/230 502/609/230 514/615/230 +f 527/614/230 500/613/230 513/617/230 +f 519/616/230 514/615/230 512/619/230 +f 526/618/230 513/617/230 511/621/230 +f 518/620/230 512/619/230 510/623/230 +f 525/622/230 511/621/230 509/625/230 +f 517/624/230 510/623/230 507/599/230 +f 523/628/230 524/626/230 509/625/230 +f 581/630/230 582/633/230 495/631/230 +f 582/633/230 583/975/230 494/634/230 +f 494/634/230 583/975/230 584/635/230 +f 584/635/230 585/976/230 492/637/230 +f 492/637/230 585/976/230 586/638/230 +f 491/639/230 586/638/230 587/640/230 +f 490/642/230 587/977/230 588/643/230 +f 489/644/230 588/643/230 589/645/230 +f 488/646/230 589/645/230 590/647/230 +f 487/648/230 590/647/230 591/649/230 +f 591/649/230 592/652/230 485/651/230 +f 592/652/230 593/654/230 484/653/230 +f 593/654/230 594/978/230 483/655/230 +f 483/655/230 594/978/230 579/656/230 +f 498/657/230 579/656/230 580/658/230 +f 580/658/230 581/630/230 496/632/230 +f 622/661/231 619/979/231 620/662/231 +f 620/662/231 613/980/231 614/670/231 +f 614/670/231 621/660/231 620/662/231 +f 616/663/229 619/673/229 622/664/229 +f 612/666/230 614/981/230 613/667/230 +f 618/669/232 621/660/232 614/670/232 +f 622/664/233 621/660/233 618/669/233 +f 616/663/234 615/674/234 620/672/234 +f 611/668/235 613/667/235 620/672/235 +f 633/982/230 632/983/230 631/675/230 +f 631/675/230 638/984/230 637/676/230 +f 637/676/230 636/985/230 635/677/230 +f 635/677/230 634/986/230 633/982/230 +f 633/982/230 631/675/230 635/677/230 +f 623/680/229 624/987/229 625/988/229 +f 625/988/229 626/989/229 627/678/229 +f 627/678/229 628/990/229 629/679/229 +f 629/679/229 630/991/229 623/680/229 +f 623/680/229 625/988/229 627/678/229 +f 647/681/230 665/992/230 650/682/230 +f 650/682/230 651/685/230 641/684/230 +f 651/685/230 652/687/230 642/686/230 +f 652/687/230 653/993/230 598/688/230 +f 648/689/229 644/693/229 688/690/229 +f 645/692/229 687/695/229 688/690/229 +f 646/694/229 686/697/229 687/695/229 +f 646/694/229 597/994/229 685/696/229 +f 647/700/236 648/995/236 689/698/236 +f 648/995/236 684/996/236 689/698/236 +f 689/698/236 679/997/236 665/699/236 +f 685/998/237 597/999/237 683/703/237 +f 597/999/237 598/1000/237 683/703/237 +f 598/1000/237 653/701/237 683/703/237 +f 445/704/230 695/1001/230 696/705/230 +f 707/707/230 714/711/230 713/708/230 +f 707/707/230 706/728/230 715/710/230 +f 709/712/230 712/715/230 711/713/230 +f 708/709/230 713/708/230 712/715/230 +f 723/716/229 724/1002/229 716/717/229 +f 716/717/229 724/1002/229 725/719/229 +f 722/721/229 721/724/229 718/722/229 +f 721/724/229 723/716/229 717/718/229 +f 730/725/238 726/732/238 729/726/238 +f 706/728/231 720/720/231 725/729/231 +f 728/731/229 729/1003/229 726/732/229 +f 730/725/230 732/1004/230 733/734/230 +f 735/736/230 737/739/230 736/737/230 +f 737/739/231 739/741/231 738/740/231 +f 739/741/239 741/743/239 740/742/239 +f 741/743/231 743/1005/231 742/744/231 +f 734/1006/235 736/737/235 738/740/235 +f 740/745/235 742/1007/235 744/746/235 +f 734/1006/235 738/740/235 744/746/235 +f 737/739/232 735/1008/232 739/741/232 +f 735/1008/232 745/747/232 739/741/232 +f 739/741/232 745/747/232 741/749/232 +f 750/752/230 749/1009/230 748/1010/230 +f 748/1010/230 763/1011/230 750/752/230 +f 763/1011/230 762/1012/230 750/752/230 +f 762/1012/230 761/1013/230 760/1014/230 +f 760/1014/230 759/1015/230 758/750/230 +f 758/750/230 757/1016/230 756/1017/230 +f 756/1017/230 755/1018/230 754/751/230 +f 754/751/230 753/1019/230 752/1020/230 +f 752/1020/230 751/1021/230 750/752/230 +f 762/1012/230 760/1014/230 758/750/230 +f 758/750/230 756/1017/230 754/751/230 +f 754/751/230 752/1020/230 750/752/230 +f 750/752/230 762/1012/230 758/750/230 +f 446/753/230 694/1022/230 695/754/230 +f 447/756/230 693/1023/230 694/757/230 +f 448/759/230 692/1024/230 693/760/230 +f 449/762/230 691/1025/230 692/763/230 +f 450/765/230 690/1026/230 691/766/230 +f 435/768/230 705/1027/230 690/769/230 +f 436/771/230 704/1028/230 705/772/230 +f 437/774/230 703/1029/230 704/775/230 +f 437/777/230 438/1030/230 702/778/230 +f 439/780/230 701/1031/230 702/781/230 +f 439/783/230 440/1032/230 700/784/230 +f 440/786/230 441/1033/230 699/787/230 +f 441/789/230 442/1034/230 698/790/230 +f 442/792/230 443/1035/230 697/793/230 +f 443/795/230 444/1036/230 696/796/230 +f 796/798/240 797/802/240 795/799/240 +f 798/801/231 799/1037/231 797/802/231 +f 801/805/232 795/799/232 797/803/232 +f 797/803/232 799/1038/232 803/804/232 +f 796/808/235 794/800/235 800/1039/235 +f 800/1039/235 802/806/235 796/808/235 +f 807/809/232 808/818/232 810/810/232 +f 804/812/235 811/815/235 809/813/235 +f 811/815/235 813/819/235 815/816/235 +f 814/817/232 812/822/232 810/810/232 +f 813/819/235 817/823/235 819/820/235 +f 814/817/232 818/1040/232 816/821/232 +f 817/823/235 821/1041/235 823/824/235 +f 816/821/232 818/1040/232 822/825/232 +f 826/827/231 827/1042/231 825/828/231 +f 829/832/232 825/828/232 827/1042/232 +f 827/1042/232 833/830/232 829/832/232 +f 832/835/235 826/827/235 828/833/235 +f 826/827/235 824/829/235 828/833/235 +f 836/838/230 835/1043/230 844/836/230 +f 835/1043/230 834/1044/230 844/836/230 +f 834/1044/230 845/1045/230 844/836/230 +f 844/836/230 843/1046/230 842/1047/230 +f 842/1047/230 841/1048/230 840/837/230 +f 840/837/230 839/1049/230 838/1050/230 +f 838/1050/230 837/1051/230 840/837/230 +f 837/1051/230 836/838/230 840/837/230 +f 844/836/230 842/1047/230 840/837/230 +f 847/840/229 846/1052/229 848/1053/229 +f 848/1053/229 849/1054/229 847/840/229 +f 849/1054/229 850/841/229 847/840/229 +f 850/841/229 851/1055/229 854/1056/229 +f 851/1055/229 852/1057/229 854/1056/229 +f 852/1057/229 853/1058/229 854/1056/229 +f 854/1056/229 855/1059/229 856/839/229 +f 856/839/229 857/1060/229 847/840/229 +f 854/1056/229 856/839/229 850/841/229 +f 858/843/229 859/1061/229 860/1062/229 +f 860/1062/229 861/1063/229 858/843/229 +f 861/1063/229 862/844/229 858/843/229 +f 862/844/229 863/1064/229 866/1065/229 +f 863/1064/229 864/1066/229 866/1065/229 +f 864/1066/229 865/1067/229 866/1065/229 +f 866/1065/229 867/1068/229 868/842/229 +f 868/842/229 869/1069/229 858/843/229 +f 866/1065/229 868/842/229 862/844/229 +f 872/847/230 870/1070/230 880/845/230 +f 870/1070/230 871/1071/230 880/845/230 +f 871/1071/230 881/1072/230 880/845/230 +f 880/845/230 879/1073/230 878/1074/230 +f 878/1074/230 877/1075/230 876/846/230 +f 876/846/230 875/1076/230 874/1077/230 +f 874/1077/230 873/1078/230 876/846/230 +f 873/1078/230 872/847/230 876/846/230 +f 880/845/230 878/1074/230 876/846/230 +f 884/848/237 885/853/237 883/849/237 +f 882/850/230 887/1079/230 889/851/230 +f 883/849/241 886/1080/241 887/852/241 +f 885/853/229 888/1081/229 886/854/229 +f 884/848/242 889/1082/242 888/855/242 +f 899/856/230 911/1083/230 912/857/230 +f 912/857/230 913/1084/230 901/859/230 +f 901/859/230 913/1084/230 902/860/230 +f 902/860/230 903/1085/230 891/862/230 +f 891/862/230 903/1085/230 904/863/230 +f 904/863/230 905/1086/230 893/865/230 +f 893/865/230 905/1086/230 906/866/230 +f 906/866/230 907/1087/230 895/868/230 +f 895/868/230 907/1087/230 908/869/230 +f 908/871/230 909/1088/230 897/872/230 +f 897/872/230 909/1088/230 910/874/230 +f 910/874/230 911/1083/230 899/856/230 +f 923/876/229 924/880/229 936/877/229 +f 925/879/229 937/882/229 936/877/229 +f 925/879/229 915/884/229 927/881/229 +f 914/883/229 926/886/229 927/881/229 +f 914/883/229 916/888/229 928/885/229 +f 917/887/229 929/890/229 928/885/229 +f 917/887/229 918/892/229 930/889/229 +f 919/891/229 931/894/229 930/889/229 +f 919/891/229 920/1089/229 932/893/229 +f 921/895/229 933/899/229 932/896/229 +f 921/895/229 922/900/229 934/898/229 +f 923/876/229 935/878/229 934/898/229 +f 945/901/243 957/905/243 956/902/243 +f 958/904/229 959/916/229 956/902/229 +f 947/908/230 941/1090/230 953/1091/230 +f 953/1091/230 955/1092/230 947/908/230 +f 955/1092/230 950/1093/230 947/908/230 +f 950/1093/230 948/906/230 947/908/230 +f 944/909/235 958/904/235 957/905/235 +f 948/906/235 950/1093/235 951/911/235 +f 940/913/244 948/906/244 949/912/244 +f 943/915/232 942/1094/232 956/902/232 +f 951/919/229 954/1095/229 946/917/229 +f 954/1095/229 952/920/229 946/917/229 +f 952/920/229 939/1096/229 946/917/229 +f 946/917/229 938/1097/229 949/918/229 +f 952/920/232 954/1095/232 955/921/232 +f 939/923/245 952/920/245 953/922/245 +f 962/925/235 966/928/235 965/926/235 +f 966/928/229 967/933/229 964/929/229 +f 963/930/243 965/926/243 964/929/243 +f 961/932/232 960/1098/232 964/929/232 +f 976/936/229 977/1099/229 978/1100/229 +f 978/1100/229 979/1101/229 980/934/229 +f 980/934/229 981/1102/229 982/935/229 +f 982/935/229 983/1103/229 976/936/229 +f 976/936/229 978/1100/229 980/934/229 +f 990/937/232 991/945/232 988/938/232 +f 987/940/231 991/945/231 990/937/231 +f 984/942/237 989/939/237 988/938/237 +f 986/944/230 988/938/230 991/945/230 +f 985/947/229 990/937/229 989/939/229 +f 682/949/229 683/1104/229 667/950/229 +f 992/951/229 993/953/229 681/952/229 +f 993/953/229 994/955/229 680/954/229 +f 994/955/229 679/1105/229 689/956/229 +f 679/959/229 994/1106/229 993/1107/229 +f 993/1107/229 992/1108/229 679/959/229 +f 992/1108/229 667/1109/229 679/959/229 +f 667/1109/229 668/1110/229 679/959/229 +f 668/1110/229 669/1111/229 679/959/229 +f 669/1111/229 670/1112/229 679/959/229 +f 670/1112/229 671/1113/229 679/959/229 +f 671/1113/229 672/1114/229 679/959/229 +f 672/1114/229 673/1115/229 679/959/229 +f 673/1115/229 674/1116/229 679/959/229 +f 674/1116/229 675/1117/229 679/959/229 +f 675/1117/229 676/1118/229 679/959/229 +f 676/1118/229 677/1119/229 679/959/229 +f 677/1119/229 678/957/229 679/959/229 +f 997/962/230 996/1120/230 1005/960/230 +f 996/1120/230 995/1121/230 1005/960/230 +f 995/1121/230 1006/1122/230 1005/960/230 +f 1005/960/230 1004/1123/230 1003/1124/230 +f 1003/1124/230 1002/1125/230 1001/961/230 +f 1001/961/230 1000/1126/230 999/1127/230 +f 999/1127/230 998/1128/230 1001/961/230 +f 998/1128/230 997/962/230 1001/961/230 +f 1005/960/230 1003/1124/230 1001/961/230 +f 1008/964/229 1007/1129/229 1009/1130/229 +f 1009/1130/229 1010/1131/229 1008/964/229 +f 1010/1131/229 1011/965/229 1008/964/229 +f 1011/965/229 1012/1132/229 1015/1133/229 +f 1012/1132/229 1013/1134/229 1015/1133/229 +f 1013/1134/229 1014/1135/229 1015/1133/229 +f 1015/1133/229 1016/1136/229 1017/963/229 +f 1017/963/229 1018/1137/229 1008/964/229 +f 1015/1133/229 1017/963/229 1011/965/229 +f 1019/967/229 1020/1138/229 1021/1139/229 +f 1021/1139/229 1022/1140/229 1019/967/229 +f 1022/1140/229 1023/968/229 1019/967/229 +f 1023/968/229 1024/1141/229 1027/1142/229 +f 1024/1141/229 1025/1143/229 1027/1142/229 +f 1025/1143/229 1026/1144/229 1027/1142/229 +f 1027/1142/229 1028/1145/229 1029/966/229 +f 1029/966/229 1030/1146/229 1019/967/229 +f 1027/1142/229 1029/966/229 1023/968/229 +f 1033/971/230 1031/1147/230 1041/969/230 +f 1031/1147/230 1032/1148/230 1041/969/230 +f 1032/1148/230 1042/1149/230 1041/969/230 +f 1041/969/230 1040/1150/230 1039/1151/230 +f 1039/1151/230 1038/1152/230 1037/970/230 +f 1037/970/230 1036/1153/230 1035/1154/230 +f 1035/1154/230 1034/1155/230 1037/970/230 +f 1034/1155/230 1033/971/230 1037/970/230 +f 1041/969/230 1039/1151/230 1037/970/230 s 1 -f 2/7/9 3/766/24 1/767/25 -f 4/9/26 5/768/27 3/766/24 -f 6/11/23 7/769/28 5/768/27 -f 8/13/29 9/770/30 7/769/28 -f 10/15/5 11/771/31 9/770/30 -f 12/17/32 13/772/33 11/771/31 -f 13/772/33 16/20/34 15/773/35 -f 16/20/34 17/774/36 15/773/35 -f 18/504/4 19/775/37 17/776/36 -f 20/24/38 21/777/39 19/775/37 -f 22/27/40 23/778/41 21/777/39 -f 24/29/10 25/779/42 23/778/41 -f 26/31/3 27/780/43 25/779/42 -f 28/33/11 29/781/44 27/780/43 -f 30/1/22 31/782/45 29/781/44 -f 31/782/45 2/7/9 1/767/25 -f 43/18/22 58/783/46 42/21/46 -f 36/2/32 51/784/47 35/3/47 -f 44/16/11 59/785/22 43/18/22 -f 37/32/5 52/786/32 36/2/32 -f 45/14/3 60/787/11 44/16/11 -f 38/30/29 53/788/5 37/32/5 -f 46/12/10 61/789/3 45/14/3 -f 39/28/23 54/790/29 38/30/29 -f 47/10/40 62/791/10 46/12/10 -f 40/26/26 55/792/23 39/28/23 -f 48/8/38 63/793/40 47/10/40 -f 41/25/9 56/794/26 40/26/26 -f 34/4/34 49/795/4 33/6/4 -f 33/6/4 64/796/38 48/8/38 -f 42/21/46 57/797/9 41/23/9 -f 35/3/47 50/798/34 34/4/34 -f 66/799/48 81/800/49 65/801/50 -f 81/800/49 31/802/45 1/803/25 -f 80/804/51 81/805/49 96/806/52 -f 80/804/51 95/807/53 79/808/54 -f 79/808/54 94/809/55 78/810/56 -f 77/811/57 94/812/55 93/813/58 -f 76/814/59 93/815/58 92/816/60 -f 75/817/61 92/818/60 91/819/62 -f 74/820/63 91/821/62 90/822/64 -f 74/820/63 89/823/65 73/824/66 -f 72/825/67 89/826/65 88/827/68 -f 72/825/67 87/828/69 71/829/70 -f 71/829/70 86/830/71 70/831/72 -f 70/831/72 85/832/73 69/833/74 -f 68/834/75 85/835/73 84/836/76 -f 67/837/77 84/838/76 83/839/78 -f 67/837/77 82/840/79 66/799/48 -f 3/841/24 81/805/49 1/842/25 -f 5/843/27 96/844/52 3/845/24 -f 94/809/55 5/846/27 7/847/28 -f 93/813/58 7/848/28 9/849/30 -f 11/850/31 93/815/58 9/851/30 -f 13/852/33 92/818/60 11/853/31 -f 90/822/64 13/854/33 15/855/35 -f 89/823/65 15/856/35 17/857/36 -f 19/858/37 89/826/65 17/859/36 -f 21/860/39 88/861/68 19/862/37 -f 23/863/41 87/864/69 21/865/39 -f 85/832/73 23/866/41 25/867/42 -f 84/836/76 25/868/42 27/869/43 -f 83/839/78 27/870/43 29/871/44 -f 82/840/79 29/872/44 31/873/45 -f 129/34/9 111/95/46 130/63/46 -f 144/40/26 112/93/9 129/34/9 -f 137/64/4 103/80/34 138/62/34 -f 130/63/46 110/68/22 131/60/22 -f 138/62/34 102/82/47 139/58/47 -f 131/60/22 109/67/11 132/56/11 -f 139/58/47 101/84/32 140/54/32 -f 132/56/11 108/70/3 133/52/3 -f 140/54/32 100/86/5 141/50/5 -f 133/52/3 107/72/10 134/46/10 -f 141/50/5 99/87/29 142/48/29 -f 134/46/10 106/73/40 135/42/40 -f 142/48/29 98/89/23 143/44/23 -f 135/42/40 105/75/38 136/39/38 -f 143/44/23 97/91/26 144/40/26 -f 136/39/38 104/77/4 137/37/4 -f 154/874/9 119/43/26 122/36/9 -f 153/875/46 122/36/9 121/35/46 -f 156/876/22 121/35/46 124/59/22 -f 158/877/11 124/59/22 126/55/11 -f 160/878/3 126/55/11 128/51/3 -f 148/879/10 128/51/3 116/45/10 -f 147/880/40 116/45/10 115/41/40 -f 150/881/38 115/41/40 118/38/38 -f 152/882/4 118/38/38 120/505/4 -f 155/883/34 120/65/4 123/61/34 -f 157/884/47 123/61/34 125/57/47 -f 159/885/32 125/57/47 127/53/32 -f 146/886/5 127/53/32 114/49/5 -f 145/887/29 114/49/5 113/47/29 -f 149/888/23 113/47/29 117/506/23 -f 151/889/26 117/506/23 119/43/26 -f 192/890/80 153/875/81 191/891/81 -f 177/892/82 154/874/80 192/890/80 -f 178/893/83 151/889/82 177/892/82 -f 178/893/83 145/887/84 149/888/83 -f 179/894/84 146/886/6 145/887/84 -f 180/895/6 159/885/85 146/886/6 -f 181/896/85 157/884/86 159/885/85 -f 182/897/86 155/883/87 157/884/86 -f 184/898/88 155/883/87 183/899/87 -f 184/900/88 150/881/89 152/882/88 -f 185/901/89 147/880/90 150/881/89 -f 186/902/90 148/879/91 147/880/90 -f 188/903/7 148/879/91 187/904/91 -f 188/903/7 158/877/92 160/878/7 -f 189/905/92 156/876/93 158/877/92 -f 190/906/93 153/875/81 156/876/93 -f 172/907/94 191/891/95 190/906/94 -f 169/908/95 192/890/96 191/891/95 -f 170/909/96 177/892/97 192/890/96 -f 167/910/97 178/893/98 177/892/97 -f 178/893/98 161/911/99 179/894/99 -f 179/894/99 162/912/100 180/895/100 -f 180/895/100 175/913/101 181/896/101 -f 181/896/101 173/914/102 182/897/102 -f 173/914/102 183/899/103 182/897/102 -f 171/915/103 184/898/104 183/899/103 -f 184/900/104 166/916/105 185/901/105 -f 185/901/105 163/917/106 186/902/106 -f 186/902/106 164/918/107 187/904/107 -f 164/918/107 188/903/108 187/904/107 -f 188/903/108 174/919/109 189/905/109 -f 189/905/109 172/907/94 190/906/94 -f 66/799/46 172/907/22 67/837/22 -f 65/801/9 169/908/46 66/799/46 -f 80/804/26 170/909/9 65/801/9 -f 79/808/23 167/910/26 80/804/26 -f 78/810/29 165/920/23 79/808/23 -f 77/811/5 161/911/29 78/810/29 -f 76/814/32 162/912/5 77/811/5 -f 75/817/47 175/913/32 76/814/32 -f 74/820/34 173/914/47 75/817/47 -f 73/824/4 171/915/34 74/820/34 -f 72/825/38 168/921/4 73/922/4 -f 71/829/40 166/916/38 72/825/38 -f 70/831/10 163/917/40 71/829/40 -f 69/833/3 164/918/10 70/831/10 -f 68/834/11 176/923/3 69/833/3 -f 67/837/22 174/919/11 68/834/11 -f 198/924/10 215/925/110 199/926/40 -f 206/927/29 223/928/111 207/929/23 -f 199/926/40 216/930/112 200/931/38 -f 207/929/23 224/932/113 208/933/26 -f 200/931/38 217/934/114 201/935/4 -f 208/933/26 209/936/115 193/937/9 -f 201/938/4 218/939/116 202/940/34 -f 202/940/34 219/941/117 203/942/47 -f 203/942/47 220/943/118 204/944/32 -f 204/944/32 221/945/119 205/946/5 -f 270/947/120 193/937/9 209/936/115 -f 205/946/5 222/948/121 206/927/29 -f 245/949/9 254/950/22 246/951/22 -f 252/952/23 253/953/9 245/949/9 -f 250/954/47 259/955/5 251/956/5 -f 248/957/40 257/958/4 249/959/4 -f 246/951/22 255/960/3 247/961/3 -f 251/956/5 260/962/23 252/952/23 -f 249/963/4 258/964/47 250/954/47 -f 247/961/3 256/965/40 248/957/40 -f 269/966/120 194/967/46 193/937/9 -f 211/968/122 213/969/123 214/970/124 -f 264/971/11 197/972/3 196/973/11 -f 263/974/22 196/973/11 195/975/22 -f 262/976/46 195/975/22 194/967/46 -f 261/977/125 211/968/122 268/978/11 -f 265/979/126 268/978/11 267/980/22 -f 210/981/127 267/980/22 266/982/46 -f 210/981/127 270/947/120 209/936/115 -f 280/983/128 293/984/9 279/985/129 -f 281/986/130 294/987/46 280/983/128 -f 282/988/131 295/989/22 281/986/130 -f 283/990/132 296/991/11 282/988/131 -f 276/992/133 289/150/134 275/149/135 -f 284/993/136 297/994/3 283/990/132 -f 277/995/137 290/996/29 276/992/133 -f 285/997/138 298/998/10 284/993/136 -f 278/999/139 291/1000/23 277/995/137 -f 286/1001/140 299/1002/40 285/997/138 -f 279/985/129 292/1003/26 278/999/139 -f 287/147/141 288/1004/4 271/1005/142 -f 271/1005/142 300/1006/38 286/1001/140 -f 309/1007/22 304/481/11 303/484/22 -f 306/1008/120 302/486/46 311/488/120 -f 308/1009/11 305/714/143 304/481/11 -f 310/1010/46 303/484/22 302/486/46 -f 322/263/144 277/995/137 276/992/133 -f 277/995/137 320/265/145 278/999/139 -f 278/999/139 319/268/146 279/985/129 -f 319/272/146 280/983/128 279/985/129 -f 318/153/147 281/986/130 280/983/128 -f 281/986/130 316/562/148 282/988/131 -f 316/232/148 283/990/132 282/988/131 -f 315/235/149 284/993/136 283/990/132 -f 314/238/150 285/997/138 284/993/136 -f 312/244/151 271/1005/142 286/1001/140 -f 313/241/152 286/1001/140 285/997/138 -f 326/568/153 272/1011/153 287/147/141 -f 326/250/153 273/1012/154 272/1011/153 -f 325/254/154 274/1013/155 273/1012/154 -f 274/1013/155 323/571/156 275/1014/135 -f 323/260/156 276/992/133 275/149/135 -f 337/1015/11 330/1016/22 338/1017/22 -f 342/177/32 332/171/157 343/155/157 -f 379/1018/120 375/1019/158 378/1020/158 -f 336/1021/143 329/1022/11 337/1015/11 -f 341/174/47 335/172/32 342/177/32 -f 372/205/159 377/163/160 376/208/159 -f 346/169/23 354/186/29 345/167/29 -f 345/167/29 358/189/134 344/197/134 -f 365/202/161 347/181/26 348/183/161 -f 356/191/26 369/204/161 357/192/161 -f 364/201/162 368/194/162 355/187/23 -f 375/1019/158 330/1016/22 378/1020/158 -f 376/208/159 334/165/47 341/174/47 -f 397/1023/163 213/969/123 261/977/125 -f 220/943/118 406/1024/164 221/945/119 -f 221/945/119 407/1025/165 222/948/121 -f 407/1025/165 223/928/111 222/948/121 -f 215/925/110 401/1026/166 216/930/112 -f 214/970/124 400/1027/167 215/925/110 -f 408/1028/168 224/932/113 223/928/111 -f 265/979/126 397/1023/163 261/977/125 -f 409/1029/169 209/936/115 224/932/113 -f 217/1030/114 403/1031/170 218/939/116 -f 213/969/123 399/1032/171 214/970/124 -f 209/936/115 395/1033/172 210/981/127 -f 403/1031/170 219/941/117 218/939/116 -f 216/930/112 402/1034/173 217/934/114 -f 395/1033/172 265/979/126 210/981/127 -f 219/941/117 405/1035/174 220/943/118 -f 392/1036/175 432/1037/176 393/1038/177 -f 433/1039/178 413/1040/179 412/1041/180 -f 435/1042/181 426/1043/182 433/1039/178 -f 437/1044/183 428/1045/184 435/1042/181 -f 438/1046/185 429/1047/186 437/1044/183 -f 424/1048/187 439/1049/188 432/1037/176 -f 439/1049/188 430/1050/189 438/1046/185 -f 423/1051/190 418/1052/191 416/1053/192 -f 425/1054/193 417/1055/194 422/1056/195 -f 410/1057/196 392/1058/175 425/1054/193 -f 415/1059/197 413/1060/179 426/1061/182 -f 415/1059/197 428/1062/184 417/1055/194 -f 419/1063/198 428/1062/184 429/1064/186 -f 421/1065/199 429/1064/186 430/1066/189 -f 410/1057/196 431/1067/200 424/1068/187 -f 421/1065/199 431/1067/200 422/1056/195 -f 411/1069/201 393/1070/177 432/1071/176 -f 414/1072/202 412/1073/180 436/1074/203 -f 414/1072/202 435/1075/181 433/1076/178 -f 418/1052/191 435/1075/181 416/1053/192 -f 420/1077/204 437/1078/183 418/1052/191 -f 411/1069/201 439/1079/188 423/1051/190 -f 420/1077/204 439/1079/188 438/1080/185 -f 452/289/1 454/293/205 453/284/1 -f 451/286/2 457/1081/206 450/1082/2 -f 456/285/206 459/1083/207 457/1081/206 -f 455/288/205 460/292/208 454/293/205 -f 458/297/207 463/1084/209 459/1083/207 -f 461/291/208 464/580/210 460/292/208 -f 462/296/209 467/1085/211 463/1084/209 -f 465/295/210 468/300/212 464/580/210 -f 475/1086/213 470/304/1 471/303/1 -f 477/1087/214 474/1088/213 475/1086/213 -f 484/1089/215 497/1090/216 485/1091/216 -f 491/1092/217 492/1093/218 480/1094/218 -f 481/1095/219 494/1096/220 482/1097/220 -f 488/1098/221 501/1099/15 489/1100/15 -f 485/1091/216 498/1101/222 486/1102/222 -f 482/1097/220 495/1103/14 483/1104/14 -f 489/1100/15 502/1105/223 490/1106/223 -f 486/1102/222 499/1107/224 487/1108/224 -f 483/1104/14 496/1109/215 484/1089/215 -f 490/1106/223 503/1110/217 491/1092/217 -f 480/1111/218 493/1112/219 481/1095/219 -f 487/1108/224 500/1113/221 488/1098/221 -f 518/1114/220 507/1115/14 506/1116/220 -f 525/1117/15 514/1118/223 513/1119/15 -f 522/1120/222 511/1121/224 510/1122/222 -f 519/1123/14 508/1124/215 507/1115/14 -f 526/1125/223 515/1126/217 514/1118/223 -f 516/1127/218 505/1128/219 504/1129/218 -f 523/1130/224 512/1131/221 511/1121/224 -f 520/1132/215 509/1133/216 508/1124/215 -f 527/1134/217 504/1135/218 515/1126/217 -f 517/1136/219 506/1116/220 505/1128/219 -f 524/1137/221 513/1119/15 512/1131/221 -f 521/1138/216 510/1122/222 509/1133/216 -f 535/329/225 538/1139/225 539/320/225 -f 531/323/5 534/1140/225 535/329/225 -f 530/325/3 533/611/226 528/326/3 -f 532/324/226 537/330/226 533/611/226 -f 562/1141/222 551/1142/224 550/1143/222 -f 538/1139/225 543/610/5 539/320/225 -f 536/322/226 541/612/3 537/330/226 -f 559/1144/14 548/1145/215 547/1146/14 -f 566/1147/223 555/1148/217 554/1149/223 -f 556/1150/218 545/1151/219 544/1152/218 -f 563/1153/224 552/1154/221 551/1142/224 -f 560/1155/215 549/1156/216 548/1145/215 -f 567/1157/217 544/1158/218 555/1148/217 -f 557/1159/219 546/1160/220 545/1151/219 -f 564/1161/221 553/1162/15 552/1154/221 -f 561/1163/216 550/1143/222 549/1156/216 -f 558/1164/220 547/1146/14 546/1160/220 -f 565/1165/15 554/1149/223 553/1162/15 -f 573/1166/227 584/1167/228 572/1168/228 -f 568/1169/9 591/1170/229 579/1171/229 -f 570/1172/230 580/1173/231 569/1174/231 -f 577/1175/5 588/1176/232 576/1177/232 -f 574/1178/4 585/1179/227 573/1166/227 -f 571/1180/3 582/1181/230 570/1172/230 -f 578/1182/233 589/1183/5 577/1175/5 -f 575/1184/234 586/1185/4 574/1186/4 -f 572/1168/228 583/1187/3 571/1180/3 -f 579/1171/229 590/1188/233 578/1182/233 -f 569/1174/231 581/1189/9 568/1169/9 -f 576/1177/232 587/1190/234 575/1184/234 -f 602/1191/233 615/1192/229 603/1193/229 -f 595/1194/3 608/1195/228 596/1196/228 -f 603/1193/229 605/1197/9 592/1198/9 -f 596/1196/228 609/1199/227 597/1200/227 -f 597/1200/227 610/1201/4 598/1202/4 -f 598/1203/4 611/1204/234 599/1205/234 -f 599/1205/234 612/1206/232 600/1207/232 -f 592/1198/9 604/1208/231 593/1209/231 -f 600/1207/232 613/1210/5 601/1211/5 -f 593/1209/231 606/1212/230 594/1213/230 -f 601/1211/5 614/1214/233 602/1191/233 -f 594/1213/230 607/1215/3 595/1194/3 -f 622/1216/235 636/1217/236 623/1218/237 -f 619/1219/238 633/1220/239 620/1221/240 -f 627/1222/241 639/1223/242 640/1224/243 -f 617/1225/244 629/1226/245 630/1227/246 -f 624/1228/247 636/1217/236 637/1229/248 -f 621/1230/249 633/1220/239 634/1231/250 -f 627/1222/241 629/1226/245 616/1232/251 -f 618/1233/252 630/1227/246 631/1234/253 -f 624/1228/247 638/1235/254 625/1236/255 -f 622/1237/235 634/1231/250 635/1238/256 -f 618/1233/252 632/1239/257 619/1219/238 -f 625/1236/255 639/1223/242 626/1240/258 -f 640/1224/243 641/1241/259 629/1226/245 -f 630/1227/246 643/1242/260 631/1234/253 -f 638/1235/254 649/1243/261 650/1244/262 -f 634/1231/250 647/1245/263 635/1238/256 -f 631/1234/253 644/1246/264 632/1239/257 -f 638/1235/254 651/1247/265 639/1223/242 -f 635/1248/256 648/1249/266 636/1217/236 -f 632/1239/257 645/1250/267 633/1220/239 -f 640/1224/243 651/1247/265 652/1251/268 -f 630/1227/246 641/1241/259 642/1252/269 -f 637/1229/248 648/1249/266 649/1243/261 -f 633/1220/239 646/1253/270 634/1231/250 -f 645/1250/267 658/1254/271 646/1253/270 -f 641/1241/259 664/1255/272 653/1256/273 -f 642/1252/269 655/1257/274 643/1242/260 -f 650/1244/262 661/1258/275 662/1259/276 -f 647/1245/263 658/1254/271 659/1260/277 -f 643/1242/260 656/1261/278 644/1246/264 -f 651/1247/265 662/1259/276 663/1262/279 -f 647/1263/263 660/1264/280 648/1249/266 -f 644/1246/264 657/1265/281 645/1250/267 -f 652/1251/268 663/1262/279 664/1255/272 -f 642/1252/269 653/1256/273 654/1266/282 -f 649/1243/261 660/1264/280 661/1258/275 -f 657/1265/281 669/1267/283 658/1254/271 -f 664/1255/272 628/1268/284 653/1256/273 -f 654/1266/282 666/1269/285 655/1257/274 -f 662/1259/276 672/1270/286 673/1271/287 -f 658/1254/271 670/1272/288 659/1260/277 -f 655/1257/274 667/1273/289 656/1261/278 -f 662/1259/276 674/1274/290 663/1262/279 -f 659/1275/277 671/1276/291 660/1264/280 -f 656/1261/278 668/1277/292 657/1265/281 -f 663/1262/279 675/1278/293 664/1255/272 -f 654/1266/282 628/1268/284 665/1279/294 -f 661/1258/275 671/1276/291 672/1270/286 -f 672/1270/286 684/1280/295 685/1281/296 -f 668/1277/292 682/1282/297 669/1267/283 -f 675/1278/293 677/1283/298 628/1268/284 -f 665/1279/294 679/1284/299 666/1269/285 -f 673/1271/287 685/1281/296 686/1285/233 -f 670/1272/288 682/1282/297 683/1286/300 -f 667/1273/289 679/1284/299 680/1287/228 -f 673/1271/287 687/1288/301 674/1274/290 -f 670/1289/288 684/1280/295 671/1276/291 -f 668/1277/292 680/1287/228 681/1290/302 -f 675/1278/293 687/1288/301 688/1291/303 -f 665/1279/294 677/1283/298 678/1292/304 -f 678/1292/304 689/1293/305 690/1294/306 -f 685/1281/296 696/1295/307 697/1296/308 -f 681/1290/302 694/1297/309 682/1282/297 -f 688/1291/303 689/1293/305 677/1283/298 -f 679/1284/299 690/1294/306 691/1298/310 -f 685/1281/296 698/1299/229 686/1285/233 -f 683/1286/300 694/1297/309 695/1300/311 -f 680/1287/228 691/1298/310 692/1301/227 -f 687/1288/301 698/1299/229 699/1302/312 -f 683/1303/300 696/1295/307 684/1280/295 -f 680/1287/228 693/1304/313 681/1290/302 -f 688/1291/303 699/1302/312 700/1305/314 -f 699/1302/312 712/1306/315 700/1305/314 -f 690/1294/306 701/1307/316 702/1308/317 -f 697/1296/308 708/1309/318 709/1310/319 -f 693/1304/313 706/1311/320 694/1297/309 -f 700/1305/314 701/1307/316 689/1293/305 -f 690/1294/306 703/1312/321 691/1298/310 -f 698/1299/229 709/1310/319 710/1313/9 -f 695/1300/311 706/1311/320 707/1314/322 -f 692/1301/227 703/1312/321 704/1315/4 -f 699/1302/312 710/1313/9 711/1316/323 -f 695/1317/311 708/1309/318 696/1295/307 -f 692/1301/227 705/1318/324 693/1304/313 -f 732/1319/325 718/1320/235 719/1321/249 -f 729/1322/248 715/1323/255 716/1324/247 -f 723/1325/244 735/1326/253 722/1327/252 -f 713/1328/241 725/1329/245 676/1330/251 -f 733/1331/239 719/1321/249 720/1332/240 -f 730/1333/326 716/1324/247 717/1334/237 -f 725/1329/245 723/1325/244 676/1330/251 -f 727/1335/242 713/1328/241 714/1336/258 -f 721/1337/238 733/1331/239 720/1332/240 -f 718/1338/235 730/1333/326 717/1334/237 -f 715/1323/255 727/1335/242 714/1336/258 -f 722/1327/252 734/1339/257 721/1337/238 -f 725/1329/245 748/1340/269 736/1341/246 -f 739/1342/265 726/1343/243 727/1335/242 -f 746/1344/264 733/1331/239 734/1339/257 -f 731/1345/256 742/1346/327 730/1333/326 -f 728/1347/254 739/1342/265 727/1335/242 -f 747/1348/260 734/1339/257 735/1326/253 -f 744/1349/270 731/1350/256 732/1319/325 -f 741/1351/261 728/1347/254 729/1322/248 -f 736/1341/246 747/1348/260 735/1326/253 -f 738/1352/268 725/1329/245 726/1343/243 -f 733/1331/239 744/1349/270 732/1319/325 -f 742/1346/327 729/1322/248 730/1333/326 -f 754/1353/280 741/1351/261 742/1346/327 -f 749/1354/273 748/1340/269 737/1355/259 -f 751/1356/279 738/1352/268 739/1342/265 -f 746/1344/264 757/1357/281 745/1358/267 -f 743/1359/263 754/1353/280 742/1346/327 -f 752/1360/276 739/1342/265 740/1361/262 -f 747/1348/260 758/1362/278 746/1344/264 -f 756/1363/271 743/1364/263 744/1349/270 -f 753/1365/275 740/1361/262 741/1351/261 -f 748/1340/269 759/1366/274 747/1348/260 -f 738/1352/268 749/1354/273 737/1355/259 -f 745/1358/267 756/1363/271 744/1349/270 -f 765/1367/328 753/1365/275 754/1353/280 -f 724/1368/329 760/1369/282 749/1354/273 -f 762/1370/330 750/1371/272 751/1356/279 -f 769/1372/331 757/1357/281 758/1362/278 -f 755/1373/277 765/1367/328 754/1353/280 -f 763/1374/332 751/1356/279 752/1360/276 -f 770/1375/333 758/1362/278 759/1366/274 -f 767/1376/334 755/1377/277 756/1363/271 -f 764/1378/335 752/1360/276 753/1365/275 -f 760/1369/282 770/1375/333 759/1366/274 -f 761/1379/336 749/1354/273 750/1371/272 -f 757/1357/281 767/1376/334 756/1363/271 -f 768/1380/337 779/1381/338 767/1376/334 -f 777/1382/339 764/1378/335 765/1367/328 -f 772/1383/340 771/1384/341 724/1368/329 -f 774/1385/342 761/1379/336 762/1370/330 -f 769/1372/331 780/1386/343 768/1380/337 -f 766/1387/344 777/1382/339 765/1367/328 -f 763/1374/332 774/1385/342 762/1370/330 -f 782/1388/345 769/1372/331 770/1375/333 -f 779/1381/338 766/1389/344 767/1376/334 -f 764/1378/335 775/1390/232 763/1374/332 -f 771/1384/341 782/1388/345 770/1375/333 -f 761/1379/336 772/1383/340 724/1368/329 -f 773/1391/346 784/1392/347 772/1383/340 -f 780/1386/343 791/1393/348 779/1381/338 -f 789/1394/349 776/1395/350 777/1382/339 -f 784/1392/347 783/1396/351 772/1383/340 -f 786/1397/352 773/1391/346 774/1385/342 -f 793/1398/231 780/1386/343 781/1399/230 -f 790/1400/353 777/1382/339 778/1401/354 -f 775/1390/232 786/1397/352 774/1385/342 -f 782/1388/345 793/1398/231 781/1399/230 -f 791/1393/348 778/1402/354 779/1381/338 -f 788/1403/355 775/1390/232 776/1395/350 -f 783/1396/351 794/1404/356 782/1388/345 -f 711/1405/323 795/1406/357 712/1407/315 -f 710/1408/9 794/1404/356 711/1405/323 -f 792/1409/358 710/1408/9 709/1410/319 -f 791/1393/348 709/1410/319 708/1411/318 -f 707/1314/322 791/1393/348 708/1411/318 -f 789/1394/349 707/1412/322 706/1413/320 -f 705/1414/324 789/1394/349 706/1413/320 -f 787/1415/234 705/1414/324 704/1416/4 -f 703/1417/321 787/1415/234 704/1416/4 -f 785/1418/359 703/1417/321 702/1419/317 -f 701/1307/316 785/1418/359 702/1419/317 -f 795/1406/357 701/1307/316 712/1407/315 -f 714/1336/258 811/1420/5 715/1323/255 -f 722/1327/252 819/1421/231 723/1325/244 -f 622/1237/235 801/1422/227 621/1230/249 -f 715/1323/255 812/1423/232 716/1324/247 -f 723/1325/244 808/1424/9 676/1330/251 -f 623/1218/237 802/1425/4 622/1216/235 -f 716/1324/247 813/1426/234 717/1334/237 -f 624/1228/247 803/1427/234 623/1218/237 -f 717/1334/237 814/1428/4 718/1338/235 -f 617/1225/244 796/1429/9 616/1232/251 -f 625/1236/255 804/1430/232 624/1228/247 -f 718/1320/235 815/1431/227 719/1321/249 -f 618/1233/252 797/1432/231 617/1225/244 -f 626/1240/258 805/1433/5 625/1236/255 -f 719/1321/249 816/1434/228 720/1332/240 -f 619/1219/238 798/1435/230 618/1233/252 -f 676/1330/251 809/1436/229 713/1328/241 -f 627/1222/241 806/1437/233 626/1240/258 -f 720/1332/240 817/1438/3 721/1337/238 -f 620/1221/240 799/1439/3 619/1219/238 -f 713/1328/241 810/1440/233 714/1336/258 -f 616/1232/251 807/1441/229 627/1222/241 -f 721/1337/238 818/1442/230 722/1327/252 -f 621/1230/249 800/1443/228 620/1221/240 -f 821/1444/360 834/1445/361 833/1446/362 -f 828/1447/363 841/1448/364 840/1449/365 -f 826/1450/366 837/1451/367 825/1452/368 -f 823/1453/3 834/1445/361 822/1454/369 -f 829/1455/5 842/1456/370 841/1448/364 -f 826/1457/366 839/1458/371 838/1459/372 -f 824/1460/373 835/1461/374 823/1453/3 -f 831/1462/375 842/1456/370 830/1463/376 -f 820/1464/377 833/1446/362 832/1465/378 -f 828/1447/363 839/1458/371 827/1466/379 -f 824/1460/373 837/1451/367 836/1467/380 -f 820/1464/377 843/1468/381 831/1462/375 -f 838/1459/372 851/1469/382 850/1470/383 -f 836/1467/380 847/1471/384 835/1461/374 -f 842/1456/370 855/1472/385 854/1473/386 -f 833/1446/362 844/1474/387 832/1465/378 -f 840/1449/365 851/1469/382 839/1458/371 -f 837/1451/367 848/1475/388 836/1467/380 -f 843/1468/381 844/1474/387 855/1472/385 -f 833/1446/362 846/1476/389 845/1477/390 -f 841/1448/364 852/1478/391 840/1449/365 -f 838/1479/372 849/1480/392 837/1451/367 -f 835/1461/374 846/1476/389 834/1445/361 -f 841/1448/364 854/1473/386 853/1481/393 -f 851/1469/382 862/1482/394 850/1470/383 -f 847/1471/384 860/1483/395 859/1484/396 -f 855/1472/385 866/1485/397 854/1473/386 -f 845/1477/390 856/1486/398 844/1474/387 -f 852/1478/391 863/1487/399 851/1469/382 -f 849/1480/392 860/1483/395 848/1475/388 -f 855/1472/385 856/1486/398 867/1488/400 -f 845/1477/390 858/1489/401 857/1490/402 -f 852/1478/391 865/1491/403 864/1492/404 -f 849/1480/392 862/1493/394 861/1494/405 -f 847/1471/384 858/1489/401 846/1476/389 -f 854/1473/386 865/1491/403 853/1481/393 -f 860/1495/395 864/1496/404 856/1497/398 -f 896/402/4 919/423/227 895/400/227 -f 910/1498/230 935/410/3 911/1499/3 -f 903/1500/234 928/417/232 904/1501/232 -f 897/404/234 920/429/4 896/405/4 -f 911/1499/3 936/409/228 912/1502/228 -f 904/1501/232 929/422/5 905/1503/5 -f 898/407/232 921/427/234 897/404/234 -f 912/1502/228 937/414/227 913/1504/227 -f 891/394/231 915/416/9 890/393/9 -f 905/1503/5 930/421/233 906/1505/233 -f 899/388/5 922/432/232 898/407/232 -f 913/1504/227 927/413/4 902/1506/4 -f 892/396/230 914/415/231 891/394/231 -f 906/1505/233 931/426/229 907/1507/229 -f 900/390/233 923/408/5 899/388/5 -f 893/397/3 916/420/230 892/396/230 -f 907/1507/229 932/425/9 908/1508/9 -f 901/391/229 924/412/233 900/390/233 -f 894/399/228 917/419/3 893/397/3 -f 908/1509/9 933/431/231 909/1510/231 -f 890/393/9 925/411/229 901/391/229 -f 895/400/227 918/424/228 894/399/228 -f 909/1510/231 934/430/230 910/1498/230 -f 902/1506/4 926/418/234 903/1500/234 -f 970/1511/3 977/1512/22 969/1513/22 -f 975/1514/23 982/1515/5 974/1516/5 -f 973/1517/47 980/1518/4 972/1519/4 -f 971/1520/40 978/1521/3 970/1511/3 -f 969/1513/22 976/1522/9 968/1523/9 -f 968/1523/9 983/1524/23 975/1514/23 -f 974/1516/5 981/1525/47 973/1517/47 -f 972/1526/4 979/1527/40 971/1520/40 -f 1000/1528/227 1011/1529/228 999/1530/228 -f 995/1531/9 1018/1532/229 1006/1533/229 -f 997/1534/230 1007/1535/231 996/1536/231 -f 1004/1537/5 1015/1538/232 1003/1539/232 -f 1001/1540/4 1012/1541/227 1000/1528/227 -f 998/1542/3 1009/1543/230 997/1534/230 -f 1005/1544/233 1016/1545/5 1004/1537/5 -f 1002/1546/234 1013/1547/4 1001/1548/4 -f 999/1530/228 1010/1549/3 998/1542/3 -f 1006/1533/229 1017/1550/233 1005/1544/233 -f 996/1536/231 1008/1551/9 995/1531/9 -f 1003/1539/232 1014/1552/234 1002/1546/234 -f 1029/1553/233 1042/1554/229 1030/1555/229 -f 1022/1556/3 1035/1557/228 1023/1558/228 -f 1030/1555/229 1032/1559/9 1019/1560/9 -f 1023/1558/228 1036/1561/227 1024/1562/227 -f 1024/1562/227 1037/1563/4 1025/1564/4 -f 1025/1565/4 1038/1566/234 1026/1567/234 -f 1026/1567/234 1039/1568/232 1027/1569/232 -f 1019/1560/9 1031/1570/231 1020/1571/231 -f 1027/1569/232 1040/1572/5 1028/1573/5 -f 1020/1571/231 1033/1574/230 1021/1575/230 -f 1028/1573/5 1041/1576/233 1029/1553/233 -f 1021/1575/230 1034/1577/3 1022/1556/3 -f 2/7/9 4/9/26 3/766/24 -f 4/9/26 6/11/23 5/768/27 -f 6/11/23 8/13/29 7/769/28 -f 8/13/29 10/15/5 9/770/30 -f 10/15/5 12/17/32 11/771/31 -f 12/17/32 14/19/47 13/772/33 -f 13/772/33 14/19/47 16/20/34 -f 16/20/34 18/22/4 17/774/36 -f 18/504/4 20/24/38 19/775/37 -f 20/24/38 22/27/40 21/777/39 -f 22/27/40 24/29/10 23/778/41 -f 24/29/10 26/31/3 25/779/42 -f 26/31/3 28/33/11 27/780/43 -f 28/33/11 30/1/22 29/781/44 -f 30/1/22 32/5/46 31/782/45 -f 31/782/45 32/5/46 2/7/9 -f 43/18/22 59/785/22 58/783/46 -f 36/2/32 52/786/32 51/784/47 -f 44/16/11 60/787/11 59/785/22 -f 37/32/5 53/788/5 52/786/32 -f 45/14/3 61/789/3 60/787/11 -f 38/30/29 54/790/29 53/788/5 -f 46/12/10 62/791/10 61/789/3 -f 39/28/23 55/792/23 54/790/29 -f 47/10/40 63/793/40 62/791/10 -f 40/26/26 56/794/26 55/792/23 -f 48/8/38 64/796/38 63/793/40 -f 41/25/9 57/1578/9 56/794/26 -f 34/4/34 50/798/34 49/795/4 -f 33/6/4 49/795/4 64/796/38 -f 42/21/46 58/783/46 57/797/9 -f 35/3/47 51/784/47 50/798/34 -f 66/799/48 82/1579/79 81/800/49 -f 81/800/49 82/1579/79 31/802/45 -f 80/804/51 65/801/50 81/805/49 -f 80/804/51 96/844/52 95/807/53 -f 79/808/54 95/1580/53 94/809/55 -f 77/811/57 78/810/56 94/812/55 -f 76/814/59 77/811/57 93/815/58 -f 75/817/61 76/814/59 92/818/60 -f 74/820/63 75/817/61 91/821/62 -f 74/820/63 90/1581/64 89/823/65 -f 72/825/67 73/922/66 89/826/65 -f 72/825/67 88/861/68 87/828/69 -f 71/829/70 87/864/69 86/830/71 -f 70/831/72 86/1582/71 85/832/73 -f 68/834/75 69/833/74 85/835/73 -f 67/837/77 68/834/75 84/838/76 -f 67/837/77 83/1583/78 82/840/79 -f 3/841/24 96/806/52 81/805/49 -f 5/843/27 95/807/53 96/844/52 -f 94/809/55 95/1580/53 5/846/27 -f 93/813/58 94/812/55 7/848/28 -f 11/850/31 92/816/60 93/815/58 -f 13/852/33 91/819/62 92/818/60 -f 90/822/64 91/821/62 13/854/33 -f 89/823/65 90/1581/64 15/856/35 -f 19/858/37 88/827/68 89/826/65 -f 21/860/39 87/828/69 88/861/68 -f 23/863/41 86/830/71 87/864/69 -f 85/832/73 86/1582/71 23/866/41 -f 84/836/76 85/835/73 25/868/42 -f 83/839/78 84/838/76 27/870/43 -f 82/840/79 83/1583/78 29/872/44 -f 129/34/9 112/93/9 111/95/46 -f 144/40/26 97/91/26 112/93/9 -f 137/64/4 104/78/4 103/80/34 -f 130/63/46 111/95/46 110/68/22 -f 138/62/34 103/80/34 102/82/47 -f 131/60/22 110/68/22 109/67/11 -f 139/58/47 102/82/47 101/84/32 -f 132/56/11 109/67/11 108/70/3 -f 140/54/32 101/84/32 100/86/5 -f 133/52/3 108/70/3 107/72/10 -f 141/50/5 100/86/5 99/87/29 -f 134/46/10 107/72/10 106/73/40 -f 142/48/29 99/87/29 98/89/23 -f 135/42/40 106/73/40 105/75/38 -f 143/44/23 98/89/23 97/91/26 -f 136/39/38 105/75/38 104/77/4 -f 154/874/9 151/889/26 119/43/26 -f 153/875/46 154/874/9 122/36/9 -f 156/876/22 153/875/46 121/35/46 -f 158/877/11 156/876/22 124/59/22 -f 160/878/3 158/877/11 126/55/11 -f 148/879/10 160/878/3 128/51/3 -f 147/880/40 148/879/10 116/45/10 -f 150/881/38 147/880/40 115/41/40 -f 152/882/4 150/881/38 118/38/38 -f 155/883/34 152/1584/4 120/65/4 -f 157/884/47 155/883/34 123/61/34 -f 159/885/32 157/884/47 125/57/47 -f 146/886/5 159/885/32 127/53/32 -f 145/887/29 146/886/5 114/49/5 -f 149/888/23 145/887/29 113/47/29 -f 151/889/26 149/888/23 117/506/23 -f 192/890/80 154/874/80 153/875/81 -f 177/892/82 151/889/82 154/874/80 -f 178/893/83 149/888/83 151/889/82 -f 178/893/83 179/894/84 145/887/84 -f 179/894/84 180/895/6 146/886/6 -f 180/895/6 181/896/85 159/885/85 -f 181/896/85 182/897/86 157/884/86 -f 182/897/86 183/899/87 155/883/87 -f 184/898/88 152/1584/88 155/883/87 -f 184/900/88 185/901/89 150/881/89 -f 185/901/89 186/902/90 147/880/90 -f 186/902/90 187/904/91 148/879/91 -f 188/903/7 160/878/7 148/879/91 -f 188/903/7 189/905/92 158/877/92 -f 189/905/92 190/906/93 156/876/93 -f 190/906/93 191/891/81 153/875/81 -f 172/907/94 169/908/95 191/891/95 -f 169/908/95 170/909/96 192/890/96 -f 170/909/96 167/910/97 177/892/97 -f 167/910/97 165/920/98 178/893/98 -f 178/893/98 165/920/98 161/911/99 -f 179/894/99 161/911/99 162/912/100 -f 180/895/100 162/912/100 175/913/101 -f 181/896/101 175/913/101 173/914/102 -f 173/914/102 171/915/103 183/899/103 -f 171/915/103 168/1585/104 184/898/104 -f 184/900/104 168/921/104 166/916/105 -f 185/901/105 166/916/105 163/917/106 -f 186/902/106 163/917/106 164/918/107 -f 164/918/107 176/923/108 188/903/108 -f 188/903/108 176/923/108 174/919/109 -f 189/905/109 174/919/109 172/907/94 -f 66/799/46 169/908/46 172/907/22 -f 65/801/9 170/909/9 169/908/46 -f 80/804/26 167/910/26 170/909/9 -f 79/808/23 165/920/23 167/910/26 -f 78/810/29 161/911/29 165/920/23 -f 77/811/5 162/912/5 161/911/29 -f 76/814/32 175/913/32 162/912/5 -f 75/817/47 173/914/47 175/913/32 -f 74/820/34 171/915/34 173/914/47 -f 73/824/4 168/1585/4 171/915/34 -f 72/825/38 166/916/38 168/921/4 -f 71/829/40 163/917/40 166/916/38 -f 70/831/10 164/918/10 163/917/40 -f 69/833/3 176/923/3 164/918/10 -f 68/834/11 174/919/11 176/923/3 -f 67/837/22 172/907/22 174/919/11 -f 198/924/10 214/970/124 215/925/110 -f 206/927/29 222/948/121 223/928/111 -f 199/926/40 215/925/110 216/930/112 -f 207/929/23 223/928/111 224/932/113 -f 200/931/38 216/930/112 217/934/114 -f 208/933/26 224/932/113 209/936/115 -f 201/938/4 217/1030/114 218/939/116 -f 202/940/34 218/939/116 219/941/117 -f 203/942/47 219/941/117 220/943/118 -f 204/944/32 220/943/118 221/945/119 -f 270/947/120 269/966/120 193/937/9 -f 205/946/5 221/945/119 222/948/121 -f 245/949/9 253/953/9 254/950/22 -f 252/952/23 260/962/23 253/953/9 -f 250/954/47 258/964/47 259/955/5 -f 248/957/40 256/965/40 257/958/4 -f 246/951/22 254/950/22 255/960/3 -f 251/956/5 259/955/5 260/962/23 -f 249/963/4 257/1586/4 258/964/47 -f 247/961/3 255/960/3 256/965/40 -f 269/966/120 262/976/46 194/967/46 -f 214/970/124 198/924/10 211/968/122 -f 198/924/10 197/972/3 212/1587/122 -f 212/1587/122 211/968/122 198/924/10 -f 264/971/11 212/1587/122 197/972/3 -f 263/974/22 264/971/11 196/973/11 -f 262/976/46 263/974/22 195/975/22 -f 261/977/125 213/969/123 211/968/122 -f 265/979/126 261/977/125 268/978/11 -f 210/981/127 265/979/126 267/980/22 -f 210/981/127 266/982/46 270/947/120 -f 280/983/128 294/987/46 293/984/9 -f 281/986/130 295/989/22 294/987/46 -f 282/988/131 296/991/11 295/989/22 -f 283/990/132 297/994/3 296/991/11 -f 276/992/133 290/996/29 289/150/134 -f 284/993/136 298/998/10 297/994/3 -f 277/995/137 291/1000/23 290/996/29 -f 285/997/138 299/1002/40 298/998/10 -f 278/999/139 292/1003/26 291/1000/23 -f 286/1001/140 300/1006/38 299/1002/40 -f 279/985/129 293/984/9 292/1003/26 -f 287/147/141 301/532/160 288/1004/4 -f 271/1005/142 288/1004/4 300/1006/38 -f 309/1007/22 308/1009/11 304/481/11 -f 306/1008/120 310/1010/46 302/486/46 -f 308/1009/11 307/1588/143 305/714/143 -f 310/1010/46 309/1007/22 303/484/22 -f 322/263/144 321/262/406 277/995/137 -f 277/995/137 321/266/406 320/265/145 -f 278/999/139 320/269/145 319/268/146 -f 319/272/146 318/271/147 280/983/128 -f 318/153/147 317/536/407 281/986/130 -f 281/986/130 317/229/407 316/562/148 -f 316/232/148 315/563/149 283/990/132 -f 315/235/149 314/564/150 284/993/136 -f 314/238/150 313/565/152 285/997/138 -f 312/244/151 327/567/408 271/1005/142 -f 313/241/152 312/566/151 286/1001/140 -f 287/147/141 271/1005/142 327/247/408 -f 327/247/408 326/568/153 287/147/141 -f 326/250/153 325/569/154 273/1012/154 -f 325/254/154 324/253/155 274/1013/155 -f 274/1013/155 324/256/155 323/571/156 -f 323/260/156 322/259/144 276/992/133 -f 337/1015/11 329/1022/11 330/1016/22 -f 342/177/32 335/172/32 332/171/157 -f 379/1018/120 374/1589/120 375/1019/158 -f 336/1021/143 328/1590/143 329/1022/11 -f 341/174/47 334/165/47 335/172/32 -f 372/205/159 373/161/160 377/163/160 -f 346/169/23 355/187/23 354/186/29 -f 345/167/29 354/186/29 358/189/134 -f 365/202/161 364/201/162 347/181/26 -f 356/191/26 368/194/162 369/204/161 -f 346/169/23 347/181/26 364/201/162 -f 368/194/162 356/191/26 355/187/23 -f 346/169/23 364/201/162 355/187/23 -f 375/1019/158 339/1591/409 338/1017/22 -f 338/1017/22 330/1016/22 375/1019/158 -f 330/1016/22 331/1592/409 378/1020/158 -f 341/174/47 340/159/410 372/205/159 -f 376/208/159 333/166/410 334/165/47 -f 341/174/47 372/205/159 376/208/159 -f 397/1023/163 398/1593/411 213/969/123 -f 220/943/118 405/1035/174 406/1024/164 -f 221/945/119 406/1024/164 407/1025/165 -f 407/1025/165 408/1028/168 223/928/111 -f 215/925/110 400/1027/167 401/1026/166 -f 214/970/124 399/1032/171 400/1027/167 -f 408/1028/168 409/1029/169 224/932/113 -f 265/979/126 396/1594/412 397/1023/163 -f 409/1029/169 394/1595/413 209/936/115 -f 217/1030/114 402/1596/173 403/1031/170 -f 213/969/123 398/1593/411 399/1032/171 -f 209/936/115 394/1595/413 395/1033/172 -f 403/1031/170 404/1597/414 219/941/117 -f 216/930/112 401/1026/166 402/1034/173 -f 395/1033/172 396/1594/412 265/979/126 -f 219/941/117 404/1597/414 405/1035/174 -f 392/1036/175 424/1048/187 432/1037/176 -f 433/1039/178 426/1043/182 413/1040/179 -f 435/1042/181 428/1045/184 426/1043/182 -f 437/1044/183 429/1047/186 428/1045/184 -f 438/1046/185 430/1050/189 429/1047/186 -f 424/1048/187 431/1598/200 439/1049/188 -f 439/1049/188 431/1598/200 430/1050/189 -f 436/1074/203 434/1599/415 416/1053/192 -f 434/1599/415 411/1069/201 423/1051/190 -f 423/1051/190 420/1077/204 418/1052/191 -f 434/1599/415 423/1051/190 416/1053/192 -f 416/1053/192 414/1072/202 436/1074/203 -f 422/1056/195 410/1057/196 425/1054/193 -f 425/1054/193 427/1600/416 417/1055/194 -f 427/1600/416 415/1059/197 417/1055/194 -f 417/1055/194 419/1063/198 422/1056/195 -f 419/1063/198 421/1065/199 422/1056/195 -f 410/1057/196 424/1068/187 392/1058/175 -f 415/1059/197 427/1600/416 413/1060/179 -f 415/1059/197 426/1061/182 428/1062/184 -f 419/1063/198 417/1055/194 428/1062/184 -f 421/1065/199 419/1063/198 429/1064/186 -f 410/1057/196 422/1056/195 431/1067/200 -f 421/1065/199 430/1066/189 431/1067/200 -f 411/1069/201 434/1599/415 393/1070/177 -f 414/1072/202 433/1076/178 412/1073/180 -f 414/1072/202 416/1053/192 435/1075/181 -f 418/1052/191 437/1078/183 435/1075/181 -f 420/1077/204 438/1080/185 437/1078/183 -f 411/1069/201 432/1071/176 439/1079/188 -f 420/1077/204 423/1051/190 439/1079/188 -f 452/289/1 455/288/205 454/293/205 -f 451/286/2 456/285/206 457/1081/206 -f 456/285/206 458/297/207 459/1083/207 -f 455/288/205 461/291/208 460/292/208 -f 458/297/207 462/296/209 463/1084/209 -f 461/291/208 465/295/210 464/580/210 -f 462/296/209 466/301/211 467/1085/211 -f 465/295/210 469/299/212 468/300/212 -f 475/1086/213 474/1088/213 470/304/1 -f 477/1087/214 476/1601/214 474/1088/213 -f 484/1089/215 496/1109/215 497/1090/216 -f 491/1092/217 503/1110/217 492/1093/218 -f 481/1095/219 493/1112/219 494/1096/220 -f 488/1098/221 500/1113/221 501/1099/15 -f 485/1091/216 497/1090/216 498/1101/222 -f 482/1097/220 494/1096/220 495/1103/14 -f 489/1100/15 501/1099/15 502/1105/223 -f 486/1102/222 498/1101/222 499/1107/224 -f 483/1104/14 495/1103/14 496/1109/215 -f 490/1106/223 502/1105/223 503/1110/217 -f 480/1111/218 492/1602/218 493/1112/219 -f 487/1108/224 499/1107/224 500/1113/221 -f 518/1114/220 519/1123/14 507/1115/14 -f 525/1117/15 526/1125/223 514/1118/223 -f 522/1120/222 523/1130/224 511/1121/224 -f 519/1123/14 520/1132/215 508/1124/215 -f 526/1125/223 527/1134/217 515/1126/217 -f 516/1127/218 517/1136/219 505/1128/219 -f 523/1130/224 524/1137/221 512/1131/221 -f 520/1132/215 521/1138/216 509/1133/216 -f 527/1134/217 516/1603/218 504/1135/218 -f 517/1136/219 518/1114/220 506/1116/220 -f 524/1137/221 525/1117/15 513/1119/15 -f 521/1138/216 522/1120/222 510/1122/222 -f 535/329/225 534/1140/225 538/1139/225 -f 531/323/5 529/1604/5 534/1140/225 -f 530/325/3 532/324/226 533/611/226 -f 532/324/226 536/322/226 537/330/226 -f 562/1141/222 563/1153/224 551/1142/224 -f 538/1139/225 542/1605/5 543/610/5 -f 536/322/226 540/321/3 541/612/3 -f 559/1144/14 560/1155/215 548/1145/215 -f 566/1147/223 567/1157/217 555/1148/217 -f 556/1150/218 557/1159/219 545/1151/219 -f 563/1153/224 564/1161/221 552/1154/221 -f 560/1155/215 561/1163/216 549/1156/216 -f 567/1157/217 556/1606/218 544/1158/218 -f 557/1159/219 558/1164/220 546/1160/220 -f 564/1161/221 565/1165/15 553/1162/15 -f 561/1163/216 562/1141/222 550/1143/222 -f 558/1164/220 559/1144/14 547/1146/14 -f 565/1165/15 566/1147/223 554/1149/223 -f 573/1166/227 585/1179/227 584/1167/228 -f 568/1169/9 581/1189/9 591/1170/229 -f 570/1172/230 582/1181/230 580/1173/231 -f 577/1175/5 589/1183/5 588/1176/232 -f 574/1178/4 586/1607/4 585/1179/227 -f 571/1180/3 583/1187/3 582/1181/230 -f 578/1182/233 590/1188/233 589/1183/5 -f 575/1184/234 587/1190/234 586/1185/4 -f 572/1168/228 584/1167/228 583/1187/3 -f 579/1171/229 591/1170/229 590/1188/233 -f 569/1174/231 580/1173/231 581/1189/9 -f 576/1177/232 588/1176/232 587/1190/234 -f 602/1191/233 614/1214/233 615/1192/229 -f 595/1194/3 607/1215/3 608/1195/228 -f 603/1193/229 615/1192/229 605/1197/9 -f 596/1196/228 608/1195/228 609/1199/227 -f 597/1200/227 609/1199/227 610/1201/4 -f 598/1203/4 610/1608/4 611/1204/234 -f 599/1205/234 611/1204/234 612/1206/232 -f 592/1198/9 605/1197/9 604/1208/231 -f 600/1207/232 612/1206/232 613/1210/5 -f 593/1209/231 604/1208/231 606/1212/230 -f 601/1211/5 613/1210/5 614/1214/233 -f 594/1213/230 606/1212/230 607/1215/3 -f 622/1216/235 635/1248/256 636/1217/236 -f 619/1219/238 632/1239/257 633/1220/239 -f 627/1222/241 626/1240/258 639/1223/242 -f 617/1225/244 616/1232/251 629/1226/245 -f 624/1228/247 623/1218/237 636/1217/236 -f 621/1230/249 620/1221/240 633/1220/239 -f 627/1222/241 640/1224/243 629/1226/245 -f 618/1233/252 617/1225/244 630/1227/246 -f 624/1228/247 637/1229/248 638/1235/254 -f 622/1237/235 621/1230/249 634/1231/250 -f 618/1233/252 631/1234/253 632/1239/257 -f 625/1236/255 638/1235/254 639/1223/242 -f 640/1224/243 652/1251/268 641/1241/259 -f 630/1227/246 642/1252/269 643/1242/260 -f 638/1235/254 637/1229/248 649/1243/261 -f 634/1231/250 646/1253/270 647/1245/263 -f 631/1234/253 643/1242/260 644/1246/264 -f 638/1235/254 650/1244/262 651/1247/265 -f 635/1248/256 647/1263/263 648/1249/266 -f 632/1239/257 644/1246/264 645/1250/267 -f 640/1224/243 639/1223/242 651/1247/265 -f 630/1227/246 629/1226/245 641/1241/259 -f 637/1229/248 636/1217/236 648/1249/266 -f 633/1220/239 645/1250/267 646/1253/270 -f 645/1250/267 657/1265/281 658/1254/271 -f 641/1241/259 652/1251/268 664/1255/272 -f 642/1252/269 654/1266/282 655/1257/274 -f 650/1244/262 649/1243/261 661/1258/275 -f 647/1245/263 646/1253/270 658/1254/271 -f 643/1242/260 655/1257/274 656/1261/278 -f 651/1247/265 650/1244/262 662/1259/276 -f 647/1263/263 659/1275/277 660/1264/280 -f 644/1246/264 656/1261/278 657/1265/281 -f 652/1251/268 651/1247/265 663/1262/279 -f 642/1252/269 641/1241/259 653/1256/273 -f 649/1243/261 648/1249/266 660/1264/280 -f 657/1265/281 668/1277/292 669/1267/283 -f 664/1255/272 675/1278/293 628/1268/284 -f 654/1266/282 665/1279/294 666/1269/285 -f 662/1259/276 661/1258/275 672/1270/286 -f 658/1254/271 669/1267/283 670/1272/288 -f 655/1257/274 666/1269/285 667/1273/289 -f 662/1259/276 673/1271/287 674/1274/290 -f 659/1275/277 670/1289/288 671/1276/291 -f 656/1261/278 667/1273/289 668/1277/292 -f 663/1262/279 674/1274/290 675/1278/293 -f 654/1266/282 653/1256/273 628/1268/284 -f 661/1258/275 660/1264/280 671/1276/291 -f 672/1270/286 671/1276/291 684/1280/295 -f 668/1277/292 681/1290/302 682/1282/297 -f 675/1278/293 688/1291/303 677/1283/298 -f 665/1279/294 678/1292/304 679/1284/299 -f 673/1271/287 672/1270/286 685/1281/296 -f 670/1272/288 669/1267/283 682/1282/297 -f 667/1273/289 666/1269/285 679/1284/299 -f 673/1271/287 686/1285/233 687/1288/301 -f 670/1289/288 683/1303/300 684/1280/295 -f 668/1277/292 667/1273/289 680/1287/228 -f 675/1278/293 674/1274/290 687/1288/301 -f 665/1279/294 628/1268/284 677/1283/298 -f 678/1292/304 677/1283/298 689/1293/305 -f 685/1281/296 684/1280/295 696/1295/307 -f 681/1290/302 693/1304/313 694/1297/309 -f 688/1291/303 700/1305/314 689/1293/305 -f 679/1284/299 678/1292/304 690/1294/306 -f 685/1281/296 697/1296/308 698/1299/229 -f 683/1286/300 682/1282/297 694/1297/309 -f 680/1287/228 679/1284/299 691/1298/310 -f 687/1288/301 686/1285/233 698/1299/229 -f 683/1303/300 695/1317/311 696/1295/307 -f 680/1287/228 692/1301/227 693/1304/313 -f 688/1291/303 687/1288/301 699/1302/312 -f 699/1302/312 711/1316/323 712/1306/315 -f 690/1294/306 689/1293/305 701/1307/316 -f 697/1296/308 696/1295/307 708/1309/318 -f 693/1304/313 705/1318/324 706/1311/320 -f 700/1305/314 712/1306/315 701/1307/316 -f 690/1294/306 702/1308/317 703/1312/321 -f 698/1299/229 697/1296/308 709/1310/319 -f 695/1300/311 694/1297/309 706/1311/320 -f 692/1301/227 691/1298/310 703/1312/321 -f 699/1302/312 698/1299/229 710/1313/9 -f 695/1317/311 707/1412/322 708/1309/318 -f 692/1301/227 704/1315/4 705/1318/324 -f 732/1319/325 731/1350/256 718/1320/235 -f 729/1322/248 728/1347/254 715/1323/255 -f 723/1325/244 736/1341/246 735/1326/253 -f 713/1328/241 726/1343/243 725/1329/245 -f 733/1331/239 732/1319/325 719/1321/249 -f 730/1333/326 729/1322/248 716/1324/247 -f 725/1329/245 736/1341/246 723/1325/244 -f 727/1335/242 726/1343/243 713/1328/241 -f 721/1337/238 734/1339/257 733/1331/239 -f 718/1338/235 731/1345/256 730/1333/326 -f 715/1323/255 728/1347/254 727/1335/242 -f 722/1327/252 735/1326/253 734/1339/257 -f 725/1329/245 737/1355/259 748/1340/269 -f 739/1342/265 738/1352/268 726/1343/243 -f 746/1344/264 745/1358/267 733/1331/239 -f 731/1345/256 743/1359/263 742/1346/327 -f 728/1347/254 740/1361/262 739/1342/265 -f 747/1348/260 746/1344/264 734/1339/257 -f 744/1349/270 743/1364/263 731/1350/256 -f 741/1351/261 740/1361/262 728/1347/254 -f 736/1341/246 748/1340/269 747/1348/260 -f 738/1352/268 737/1355/259 725/1329/245 -f 733/1331/239 745/1358/267 744/1349/270 -f 742/1346/327 741/1351/261 729/1322/248 -f 754/1353/280 753/1365/275 741/1351/261 -f 749/1354/273 760/1369/282 748/1340/269 -f 751/1356/279 750/1371/272 738/1352/268 -f 746/1344/264 758/1362/278 757/1357/281 -f 743/1359/263 755/1373/277 754/1353/280 -f 752/1360/276 751/1356/279 739/1342/265 -f 747/1348/260 759/1366/274 758/1362/278 -f 756/1363/271 755/1377/277 743/1364/263 -f 753/1365/275 752/1360/276 740/1361/262 -f 748/1340/269 760/1369/282 759/1366/274 -f 738/1352/268 750/1371/272 749/1354/273 -f 745/1358/267 757/1357/281 756/1363/271 -f 765/1367/328 764/1378/335 753/1365/275 -f 724/1368/329 771/1384/341 760/1369/282 -f 762/1370/330 761/1379/336 750/1371/272 -f 769/1372/331 768/1380/337 757/1357/281 -f 755/1373/277 766/1387/344 765/1367/328 -f 763/1374/332 762/1370/330 751/1356/279 -f 770/1375/333 769/1372/331 758/1362/278 -f 767/1376/334 766/1389/344 755/1377/277 -f 764/1378/335 763/1374/332 752/1360/276 -f 760/1369/282 771/1384/341 770/1375/333 -f 761/1379/336 724/1368/329 749/1354/273 -f 757/1357/281 768/1380/337 767/1376/334 -f 768/1380/337 780/1386/343 779/1381/338 -f 777/1382/339 776/1395/350 764/1378/335 -f 772/1383/340 783/1396/351 771/1384/341 -f 774/1385/342 773/1391/346 761/1379/336 -f 769/1372/331 781/1399/230 780/1386/343 -f 766/1387/344 778/1401/354 777/1382/339 -f 763/1374/332 775/1390/232 774/1385/342 -f 782/1388/345 781/1399/230 769/1372/331 -f 779/1381/338 778/1402/354 766/1389/344 -f 764/1378/335 776/1395/350 775/1390/232 -f 771/1384/341 783/1396/351 782/1388/345 -f 761/1379/336 773/1391/346 772/1383/340 -f 773/1391/346 785/1418/359 784/1392/347 -f 780/1386/343 792/1409/358 791/1393/348 -f 789/1394/349 788/1403/355 776/1395/350 -f 784/1392/347 795/1406/357 783/1396/351 -f 786/1397/352 785/1418/359 773/1391/346 -f 793/1398/231 792/1409/358 780/1386/343 -f 790/1400/353 789/1394/349 777/1382/339 -f 775/1390/232 787/1415/234 786/1397/352 -f 782/1388/345 794/1404/356 793/1398/231 -f 791/1393/348 790/1609/353 778/1402/354 -f 788/1403/355 787/1415/234 775/1390/232 -f 783/1396/351 795/1406/357 794/1404/356 -f 711/1405/323 794/1404/356 795/1406/357 -f 710/1408/9 793/1398/231 794/1404/356 -f 792/1409/358 793/1398/231 710/1408/9 -f 791/1393/348 792/1409/358 709/1410/319 -f 707/1314/322 790/1609/353 791/1393/348 -f 789/1394/349 790/1400/353 707/1412/322 -f 705/1414/324 788/1403/355 789/1394/349 -f 787/1415/234 788/1403/355 705/1414/324 -f 703/1417/321 786/1397/352 787/1415/234 -f 785/1418/359 786/1397/352 703/1417/321 -f 701/1307/316 784/1392/347 785/1418/359 -f 795/1406/357 784/1392/347 701/1307/316 -f 714/1336/258 810/1440/233 811/1420/5 -f 722/1327/252 818/1442/230 819/1421/231 -f 622/1237/235 802/1610/4 801/1422/227 -f 715/1323/255 811/1420/5 812/1423/232 -f 723/1325/244 819/1421/231 808/1424/9 -f 623/1218/237 803/1427/234 802/1425/4 -f 716/1324/247 812/1423/232 813/1426/234 -f 624/1228/247 804/1430/232 803/1427/234 -f 717/1334/237 813/1426/234 814/1428/4 -f 617/1225/244 797/1432/231 796/1429/9 -f 625/1236/255 805/1433/5 804/1430/232 -f 718/1320/235 814/1611/4 815/1431/227 -f 618/1233/252 798/1435/230 797/1432/231 -f 626/1240/258 806/1437/233 805/1433/5 -f 719/1321/249 815/1431/227 816/1434/228 -f 619/1219/238 799/1439/3 798/1435/230 -f 676/1330/251 808/1424/9 809/1436/229 -f 627/1222/241 807/1441/229 806/1437/233 -f 720/1332/240 816/1434/228 817/1438/3 -f 620/1221/240 800/1443/228 799/1439/3 -f 713/1328/241 809/1436/229 810/1440/233 -f 616/1232/251 796/1429/9 807/1441/229 -f 721/1337/238 817/1438/3 818/1442/230 -f 621/1230/249 801/1422/227 800/1443/228 -f 821/1444/360 822/1454/369 834/1445/361 -f 828/1447/363 829/1455/5 841/1448/364 -f 826/1450/366 838/1479/372 837/1451/367 -f 823/1453/3 835/1461/374 834/1445/361 -f 829/1455/5 830/1463/376 842/1456/370 -f 826/1457/366 827/1466/379 839/1458/371 -f 824/1460/373 836/1467/380 835/1461/374 -f 831/1462/375 843/1468/381 842/1456/370 -f 820/1464/377 821/1444/360 833/1446/362 -f 828/1447/363 840/1449/365 839/1458/371 -f 824/1460/373 825/1452/368 837/1451/367 -f 820/1464/377 832/1465/378 843/1468/381 -f 838/1459/372 839/1458/371 851/1469/382 -f 836/1467/380 848/1475/388 847/1471/384 -f 842/1456/370 843/1468/381 855/1472/385 -f 833/1446/362 845/1477/390 844/1474/387 -f 840/1449/365 852/1478/391 851/1469/382 -f 837/1451/367 849/1480/392 848/1475/388 -f 843/1468/381 832/1465/378 844/1474/387 -f 833/1446/362 834/1445/361 846/1476/389 -f 841/1448/364 853/1481/393 852/1478/391 -f 838/1479/372 850/1612/383 849/1480/392 -f 835/1461/374 847/1471/384 846/1476/389 -f 841/1448/364 842/1456/370 854/1473/386 -f 851/1469/382 863/1487/399 862/1482/394 -f 847/1471/384 848/1475/388 860/1483/395 -f 855/1472/385 867/1488/400 866/1485/397 -f 845/1477/390 857/1490/402 856/1486/398 -f 852/1478/391 864/1492/404 863/1487/399 -f 849/1480/392 861/1494/405 860/1483/395 -f 855/1472/385 844/1474/387 856/1486/398 -f 845/1477/390 846/1476/389 858/1489/401 -f 852/1478/391 853/1481/393 865/1491/403 -f 849/1480/392 850/1612/383 862/1493/394 -f 847/1471/384 859/1484/396 858/1489/401 -f 854/1473/386 866/1485/397 865/1491/403 -f 856/1497/398 857/1613/402 858/1614/401 -f 858/1614/401 859/1615/396 856/1497/398 -f 859/1615/396 860/1495/395 856/1497/398 -f 860/1495/395 861/1616/405 864/1496/404 -f 861/1616/405 862/1617/394 864/1496/404 -f 862/1617/394 863/1618/399 864/1496/404 -f 864/1496/404 865/1619/403 866/1620/397 -f 866/1620/397 867/1621/400 856/1497/398 -f 864/1496/404 866/1620/397 856/1497/398 -f 896/402/4 920/699/4 919/423/227 -f 910/1498/230 934/430/230 935/410/3 -f 903/1500/234 926/418/234 928/417/232 -f 897/404/234 921/427/234 920/429/4 -f 911/1499/3 935/410/3 936/409/228 -f 904/1501/232 928/417/232 929/422/5 -f 898/407/232 922/432/232 921/427/234 -f 912/1502/228 936/409/228 937/414/227 -f 891/394/231 914/415/231 915/416/9 -f 905/1503/5 929/422/5 930/421/233 -f 899/388/5 923/408/5 922/432/232 -f 913/1504/227 937/414/227 927/413/4 -f 892/396/230 916/420/230 914/415/231 -f 906/1505/233 930/421/233 931/426/229 -f 900/390/233 924/412/233 923/408/5 -f 893/397/3 917/419/3 916/420/230 -f 907/1507/229 931/426/229 932/425/9 -f 901/391/229 925/411/229 924/412/233 -f 894/399/228 918/424/228 917/419/3 -f 908/1509/9 932/428/9 933/431/231 -f 890/393/9 915/416/9 925/411/229 -f 895/400/227 919/423/227 918/424/228 -f 909/1510/231 933/431/231 934/430/230 -f 902/1506/4 927/413/4 926/418/234 -f 970/1511/3 978/1521/3 977/1512/22 -f 975/1514/23 983/1524/23 982/1515/5 -f 973/1517/47 981/1525/47 980/1518/4 -f 971/1520/40 979/1527/40 978/1521/3 -f 969/1513/22 977/1512/22 976/1522/9 -f 968/1523/9 976/1522/9 983/1524/23 -f 974/1516/5 982/1515/5 981/1525/47 -f 972/1526/4 980/1622/4 979/1527/40 -f 1000/1528/227 1012/1541/227 1011/1529/228 -f 995/1531/9 1008/1551/9 1018/1532/229 -f 997/1534/230 1009/1543/230 1007/1535/231 -f 1004/1537/5 1016/1545/5 1015/1538/232 -f 1001/1540/4 1013/1623/4 1012/1541/227 -f 998/1542/3 1010/1549/3 1009/1543/230 -f 1005/1544/233 1017/1550/233 1016/1545/5 -f 1002/1546/234 1014/1552/234 1013/1547/4 -f 999/1530/228 1011/1529/228 1010/1549/3 -f 1006/1533/229 1018/1532/229 1017/1550/233 -f 996/1536/231 1007/1535/231 1008/1551/9 -f 1003/1539/232 1015/1538/232 1014/1552/234 -f 1029/1553/233 1041/1576/233 1042/1554/229 -f 1022/1556/3 1034/1577/3 1035/1557/228 -f 1030/1555/229 1042/1554/229 1032/1559/9 -f 1023/1558/228 1035/1557/228 1036/1561/227 -f 1024/1562/227 1036/1561/227 1037/1563/4 -f 1025/1565/4 1037/1624/4 1038/1566/234 -f 1026/1567/234 1038/1566/234 1039/1568/232 -f 1019/1560/9 1032/1559/9 1031/1570/231 -f 1027/1569/232 1039/1568/232 1040/1572/5 -f 1020/1571/231 1031/1570/231 1033/1574/230 -f 1028/1573/5 1040/1572/5 1041/1576/233 -f 1021/1575/230 1033/1574/230 1034/1577/3 +f 388/571/237 389/1156/246 387/1157/247 +f 390/573/248 391/1158/249 389/1156/246 +f 392/575/245 393/1159/250 391/1158/249 +f 394/577/251 395/1160/252 393/1159/250 +f 396/579/232 397/1161/253 395/1160/252 +f 398/581/254 399/1162/255 397/1161/253 +f 399/1162/255 402/584/256 401/1163/257 +f 402/584/256 403/1164/258 401/1163/257 +f 404/972/231 405/1165/259 403/1166/258 +f 406/588/260 407/1167/261 405/1165/259 +f 408/591/262 409/1168/263 407/1167/261 +f 410/593/264 411/1169/265 409/1168/263 +f 412/595/235 413/1170/266 411/1169/265 +f 414/597/238 415/1171/267 413/1170/266 +f 416/565/244 417/1172/268 415/1171/267 +f 417/1172/268 388/571/237 387/1157/247 +f 429/582/244 444/1173/269 428/585/269 +f 422/566/254 437/1174/270 421/567/270 +f 430/580/238 445/1175/244 429/582/244 +f 423/596/232 438/1176/254 422/566/254 +f 431/578/235 446/1177/238 430/580/238 +f 424/594/251 439/1178/232 423/596/232 +f 432/576/264 447/1179/235 431/578/235 +f 425/592/245 440/1180/251 424/594/251 +f 433/574/262 448/1181/264 432/576/264 +f 426/590/248 441/1182/245 425/592/245 +f 434/572/260 449/1183/262 433/574/262 +f 427/589/237 442/1184/248 426/590/248 +f 420/568/256 435/1185/231 419/570/231 +f 419/570/231 450/1186/260 434/572/260 +f 428/585/269 443/1187/237 427/587/237 +f 421/567/270 436/1188/256 420/568/256 +f 452/1189/271 467/1190/272 451/1191/273 +f 467/1190/272 417/1192/268 387/1193/247 +f 466/1194/274 467/1195/272 482/1196/275 +f 466/1194/274 481/1197/276 465/1198/277 +f 465/1198/277 480/1199/278 464/1200/279 +f 463/1201/280 480/1202/278 479/1203/281 +f 462/1204/282 479/1205/281 478/1206/283 +f 461/1207/284 478/1208/283 477/1209/285 +f 460/1210/286 477/1211/285 476/1212/287 +f 460/1210/286 475/1213/288 459/1214/289 +f 458/1215/290 475/1216/288 474/1217/291 +f 458/1215/290 473/1218/292 457/1219/293 +f 457/1219/293 472/1220/294 456/1221/295 +f 456/1221/295 471/1222/296 455/1223/297 +f 454/1224/298 471/1225/296 470/1226/299 +f 453/1227/300 470/1228/299 469/1229/301 +f 453/1227/300 468/1230/302 452/1189/271 +f 389/1231/246 467/1195/272 387/1232/247 +f 391/1233/249 482/1234/275 389/1235/246 +f 480/1199/278 391/1236/249 393/1237/250 +f 479/1203/281 393/1238/250 395/1239/252 +f 397/1240/253 479/1205/281 395/1241/252 +f 399/1242/255 478/1208/283 397/1243/253 +f 476/1212/287 399/1244/255 401/1245/257 +f 475/1213/288 401/1246/257 403/1247/258 +f 405/1248/259 475/1216/288 403/1249/258 +f 407/1250/261 474/1251/291 405/1252/259 +f 409/1253/263 473/1254/292 407/1255/261 +f 471/1222/296 409/1256/263 411/1257/265 +f 470/1226/299 411/1258/265 413/1259/266 +f 469/1229/301 413/1260/266 415/1261/267 +f 468/1230/302 415/1262/267 417/1263/268 +f 515/598/237 497/659/269 516/627/269 +f 530/604/248 498/657/237 515/598/237 +f 523/628/231 489/644/256 524/626/256 +f 516/627/269 496/632/244 517/624/244 +f 524/626/256 488/646/270 525/622/270 +f 517/624/244 495/631/238 518/620/238 +f 525/622/270 487/648/254 526/618/254 +f 518/620/238 494/634/235 519/616/235 +f 526/618/254 486/650/232 527/614/232 +f 519/616/235 493/636/264 520/610/264 +f 527/614/232 485/651/251 528/612/251 +f 520/610/264 492/637/262 521/606/262 +f 528/612/251 484/653/245 529/608/245 +f 521/606/262 491/639/260 522/603/260 +f 529/608/245 483/655/248 530/604/248 +f 522/603/260 490/641/231 523/601/231 +f 540/1264/237 505/607/248 508/600/237 +f 539/1265/269 508/600/237 507/599/269 +f 542/1266/244 507/599/269 510/623/244 +f 544/1267/238 510/623/244 512/619/238 +f 546/1268/235 512/619/238 514/615/235 +f 534/1269/264 514/615/235 502/609/264 +f 533/1270/262 502/609/264 501/605/262 +f 536/1271/260 501/605/262 504/602/260 +f 538/1272/231 504/602/260 506/973/231 +f 541/1273/256 506/629/231 509/625/256 +f 543/1274/270 509/625/256 511/621/270 +f 545/1275/254 511/621/270 513/617/254 +f 532/1276/232 513/617/254 500/613/232 +f 531/1277/251 500/613/232 499/611/251 +f 535/1278/245 499/611/251 503/974/245 +f 537/1279/248 503/974/245 505/607/248 +f 578/1280/303 539/1265/304 577/1281/304 +f 563/1282/305 540/1264/303 578/1280/303 +f 564/1283/306 537/1279/305 563/1282/305 +f 564/1283/306 531/1277/307 535/1278/306 +f 565/1284/307 532/1276/233 531/1277/307 +f 566/1285/233 545/1275/308 532/1276/233 +f 567/1286/308 543/1274/309 545/1275/308 +f 568/1287/309 541/1273/310 543/1274/309 +f 570/1288/311 541/1273/310 569/1289/310 +f 570/1290/311 536/1271/312 538/1272/311 +f 571/1291/312 533/1270/313 536/1271/312 +f 572/1292/313 534/1269/314 533/1270/313 +f 574/1293/234 534/1269/314 573/1294/314 +f 574/1293/234 544/1267/315 546/1268/234 +f 575/1295/315 542/1266/316 544/1267/315 +f 576/1296/316 539/1265/304 542/1266/316 +f 558/1297/317 577/1281/318 576/1296/317 +f 555/1298/318 578/1280/319 577/1281/318 +f 556/1299/319 563/1282/320 578/1280/319 +f 553/1300/320 564/1283/321 563/1282/320 +f 564/1283/321 547/1301/322 565/1284/322 +f 565/1284/322 548/1302/323 566/1285/323 +f 566/1285/323 561/1303/324 567/1286/324 +f 567/1286/324 559/1304/325 568/1287/325 +f 559/1304/325 569/1289/326 568/1287/325 +f 557/1305/326 570/1288/327 569/1289/326 +f 570/1290/327 552/1306/328 571/1291/328 +f 571/1291/328 549/1307/329 572/1292/329 +f 572/1292/329 550/1308/330 573/1294/330 +f 550/1308/330 574/1293/331 573/1294/330 +f 574/1293/331 560/1309/332 575/1295/332 +f 575/1295/332 558/1297/317 576/1296/317 +f 452/1189/269 558/1297/244 453/1227/244 +f 451/1191/237 555/1298/269 452/1189/269 +f 466/1194/248 556/1299/237 451/1191/237 +f 465/1198/245 553/1300/248 466/1194/248 +f 464/1200/251 551/1310/245 465/1198/245 +f 463/1201/232 547/1301/251 464/1200/251 +f 462/1204/254 548/1302/232 463/1201/232 +f 461/1207/270 561/1303/254 462/1204/254 +f 460/1210/256 559/1304/270 461/1207/270 +f 459/1214/231 557/1305/256 460/1210/256 +f 458/1215/260 554/1311/231 459/1312/231 +f 457/1219/262 552/1306/260 458/1215/260 +f 456/1221/264 549/1307/262 457/1219/262 +f 455/1223/235 550/1308/264 456/1221/264 +f 454/1224/238 562/1313/235 455/1223/235 +f 453/1227/244 560/1309/238 454/1224/238 +f 584/1314/264 601/1315/333 585/1316/262 +f 592/1317/251 609/1318/334 593/1319/245 +f 585/1316/262 602/1320/335 586/1321/260 +f 593/1319/245 610/1322/336 594/1323/248 +f 586/1321/260 603/1324/337 587/1325/231 +f 594/1323/248 595/1326/338 579/1327/237 +f 587/1328/231 604/1329/339 588/1330/256 +f 588/1330/256 605/1331/340 589/1332/270 +f 589/1332/270 606/1333/341 590/1334/254 +f 590/1334/254 607/1335/342 591/1336/232 +f 648/1337/343 579/1327/237 595/1326/338 +f 591/1336/232 608/1338/344 592/1317/251 +f 623/1339/237 632/1340/244 624/1341/244 +f 630/1342/245 631/1343/237 623/1339/237 +f 628/1344/270 637/1345/232 629/1346/232 +f 626/1347/262 635/1348/231 627/1349/231 +f 624/1341/244 633/1350/235 625/1351/235 +f 629/1346/232 638/1352/245 630/1342/245 +f 627/1353/231 636/1354/270 628/1344/270 +f 625/1351/235 634/1355/262 626/1347/262 +f 647/1356/343 580/1357/269 579/1327/237 +f 597/1358/345 599/1359/346 600/1360/347 +f 642/1361/238 583/1362/235 582/1363/238 +f 641/1364/244 582/1363/238 581/1365/244 +f 640/1366/269 581/1365/244 580/1357/269 +f 639/1367/348 597/1358/345 646/1368/238 +f 643/1369/349 646/1368/238 645/1370/244 +f 596/1371/350 645/1370/244 644/1372/269 +f 596/1371/350 648/1337/343 595/1326/338 +f 658/1373/351 671/1374/237 657/1375/352 +f 659/1376/353 672/1377/269 658/1373/351 +f 660/1378/354 673/1379/244 659/1376/353 +f 661/1380/355 674/1381/238 660/1378/354 +f 654/1382/356 667/702/357 653/701/358 +f 662/1383/359 675/1384/235 661/1380/355 +f 655/1385/360 668/1386/251 654/1382/356 +f 663/1387/361 676/1388/264 662/1383/359 +f 656/1389/362 669/1390/245 655/1385/360 +f 664/1391/363 677/1392/262 663/1387/361 +f 657/1375/352 670/1393/248 656/1389/362 +f 665/699/364 666/1394/231 649/1395/365 +f 649/1395/365 678/1396/260 664/1391/363 +f 687/1397/244 682/949/238 681/952/244 +f 684/1398/343 680/954/269 689/956/343 +f 686/1399/238 683/1104/366 682/949/238 +f 688/1400/269 681/952/244 680/954/269 +f 700/788/367 655/1385/360 654/1382/356 +f 655/1385/360 698/790/368 656/1389/362 +f 656/1389/362 697/793/369 657/1375/352 +f 697/797/369 658/1373/351 657/1375/352 +f 696/705/370 659/1376/353 658/1373/351 +f 659/1376/353 694/1022/371 660/1378/354 +f 694/757/371 661/1380/355 660/1378/354 +f 693/760/372 662/1383/359 661/1380/355 +f 692/763/373 663/1387/361 662/1383/359 +f 690/769/374 649/1395/365 664/1391/363 +f 691/766/375 664/1391/363 663/1387/361 +f 704/1028/376 650/1401/376 665/699/364 +f 704/775/376 651/1402/377 650/1401/376 +f 703/779/377 652/1403/378 651/1402/377 +f 652/1403/378 701/1031/379 653/1404/358 +f 701/785/379 654/1382/356 653/701/358 +f 708/709/245 716/717/251 707/707/251 +f 707/707/251 720/720/357 706/728/357 +f 727/733/380 709/712/248 710/714/380 +f 718/722/248 731/735/380 719/723/380 +f 726/732/381 730/725/381 717/718/245 +f 751/1405/382 599/1359/346 639/1367/348 +f 606/1333/341 760/1406/383 607/1335/342 +f 607/1335/342 761/1407/384 608/1338/344 +f 761/1407/384 609/1318/334 608/1338/344 +f 601/1315/333 755/1408/385 602/1320/335 +f 600/1360/347 754/1409/386 601/1315/333 +f 762/1410/387 610/1322/336 609/1318/334 +f 643/1369/349 751/1405/382 639/1367/348 +f 763/1411/388 595/1326/338 610/1322/336 +f 603/1412/337 757/1413/389 604/1329/339 +f 599/1359/346 753/1414/390 600/1360/347 +f 595/1326/338 749/1415/391 596/1371/350 +f 757/1413/389 605/1331/340 604/1329/339 +f 602/1320/335 756/1416/392 603/1324/337 +f 749/1415/391 643/1369/349 596/1371/350 +f 605/1331/340 759/1417/393 606/1333/341 +f 746/1418/394 786/1419/395 747/1420/396 +f 787/1421/397 767/1422/398 766/1423/399 +f 789/1424/400 780/1425/401 787/1421/397 +f 791/1426/402 782/1427/403 789/1424/400 +f 792/1428/404 783/1429/405 791/1426/402 +f 778/1430/406 793/1431/407 786/1419/395 +f 793/1431/407 784/1432/408 792/1428/404 +f 777/1433/409 772/1434/410 770/1435/411 +f 779/1436/412 771/1437/413 776/1438/414 +f 764/1439/415 746/1440/394 779/1436/412 +f 769/1441/416 767/1442/398 780/1443/401 +f 769/1441/416 782/1444/403 771/1437/413 +f 773/1445/417 782/1444/403 783/1446/405 +f 775/1447/418 783/1446/405 784/1448/408 +f 764/1439/415 785/1449/419 778/1450/406 +f 775/1447/418 785/1449/419 776/1438/414 +f 765/1451/420 747/1452/396 786/1453/395 +f 768/1454/421 766/1455/399 790/1456/422 +f 768/1454/421 789/1457/400 787/1458/397 +f 772/1434/410 789/1457/400 770/1435/411 +f 774/1459/423 791/1460/402 772/1434/410 +f 765/1451/420 793/1461/407 777/1433/409 +f 774/1459/423 793/1461/407 792/1462/404 +f 806/814/229 808/818/424 807/809/229 +f 805/811/230 811/1463/425 804/1464/230 +f 810/810/425 813/1465/426 811/1463/425 +f 809/813/424 814/817/427 808/818/424 +f 812/822/426 817/1466/428 813/1465/426 +f 815/816/427 818/1040/429 814/817/427 +f 816/821/428 821/1467/430 817/1466/428 +f 819/820/429 822/825/431 818/1040/429 +f 829/1468/432 824/829/229 825/828/229 +f 831/1469/433 828/1470/432 829/1468/432 +f 839/1471/434 850/1472/435 838/1473/435 +f 834/1474/237 857/1475/436 845/1476/436 +f 836/1477/437 846/1478/438 835/1479/438 +f 843/1480/232 854/1481/439 842/1482/439 +f 840/1483/231 851/1484/434 839/1471/434 +f 837/1485/235 848/1486/437 836/1477/437 +f 844/1487/440 855/1488/232 843/1480/232 +f 841/1489/441 852/1490/231 840/1491/231 +f 838/1473/435 849/1492/235 837/1485/235 +f 845/1476/436 856/1493/440 844/1487/440 +f 835/1479/438 847/1494/237 834/1474/237 +f 842/1482/439 853/1495/441 841/1489/441 +f 868/1496/440 881/1497/436 869/1498/436 +f 861/1499/235 874/1500/435 862/1501/435 +f 869/1498/436 871/1502/237 858/1503/237 +f 862/1501/435 875/1504/434 863/1505/434 +f 863/1505/434 876/1506/231 864/1507/231 +f 864/1508/231 877/1509/441 865/1510/441 +f 865/1510/441 878/1511/439 866/1512/439 +f 858/1503/237 870/1513/438 859/1514/438 +f 866/1512/439 879/1515/232 867/1516/232 +f 859/1514/438 872/1517/437 860/1518/437 +f 867/1516/232 880/1519/440 868/1496/440 +f 860/1518/437 873/1520/235 861/1499/235 +f 896/870/231 919/891/434 895/868/434 +f 910/1521/437 935/878/235 911/1522/235 +f 903/1523/441 928/885/439 904/1524/439 +f 897/872/441 920/897/231 896/873/231 +f 911/1522/235 936/877/435 912/1525/435 +f 904/1524/439 929/890/232 905/1526/232 +f 898/875/439 921/895/441 897/872/441 +f 912/1525/435 937/882/434 913/1527/434 +f 891/862/438 915/884/237 890/861/237 +f 905/1526/232 930/889/440 906/1528/440 +f 899/856/232 922/900/439 898/875/439 +f 913/1527/434 927/881/231 902/1529/231 +f 892/864/437 914/883/438 891/862/438 +f 906/1528/440 931/894/436 907/1530/436 +f 900/858/440 923/876/232 899/856/232 +f 893/865/235 916/888/437 892/864/437 +f 907/1530/436 932/893/237 908/1531/237 +f 901/859/436 924/880/440 900/858/440 +f 894/867/435 917/887/235 893/865/235 +f 908/1532/237 933/899/438 909/1533/438 +f 890/861/237 925/879/436 901/859/436 +f 895/868/434 918/892/435 894/867/435 +f 909/1533/438 934/898/437 910/1521/437 +f 902/1529/231 926/886/441 903/1523/441 +f 970/1534/235 977/1535/244 969/1536/244 +f 975/1537/245 982/1538/232 974/1539/232 +f 973/1540/270 980/1541/231 972/1542/231 +f 971/1543/262 978/1544/235 970/1534/235 +f 969/1536/244 976/1545/237 968/1546/237 +f 968/1546/237 983/1547/245 975/1537/245 +f 974/1539/232 981/1548/270 973/1540/270 +f 972/1549/231 979/1550/262 971/1543/262 +f 1000/1551/434 1011/1552/435 999/1553/435 +f 995/1554/237 1018/1555/436 1006/1556/436 +f 997/1557/437 1007/1558/438 996/1559/438 +f 1004/1560/232 1015/1561/439 1003/1562/439 +f 1001/1563/231 1012/1564/434 1000/1551/434 +f 998/1565/235 1009/1566/437 997/1557/437 +f 1005/1567/440 1016/1568/232 1004/1560/232 +f 1002/1569/441 1013/1570/231 1001/1571/231 +f 999/1553/435 1010/1572/235 998/1565/235 +f 1006/1556/436 1017/1573/440 1005/1567/440 +f 996/1559/438 1008/1574/237 995/1554/237 +f 1003/1562/439 1014/1575/441 1002/1569/441 +f 1029/1576/440 1042/1577/436 1030/1578/436 +f 1022/1579/235 1035/1580/435 1023/1581/435 +f 1030/1578/436 1032/1582/237 1019/1583/237 +f 1023/1581/435 1036/1584/434 1024/1585/434 +f 1024/1585/434 1037/1586/231 1025/1587/231 +f 1025/1588/231 1038/1589/441 1026/1590/441 +f 1026/1590/441 1039/1591/439 1027/1592/439 +f 1019/1583/237 1031/1593/438 1020/1594/438 +f 1027/1592/439 1040/1595/232 1028/1596/232 +f 1020/1594/438 1033/1597/437 1021/1598/437 +f 1028/1596/232 1041/1599/440 1029/1576/440 +f 1021/1598/437 1034/1600/235 1022/1579/235 +f 388/571/237 390/573/248 389/1156/246 +f 390/573/248 392/575/245 391/1158/249 +f 392/575/245 394/577/251 393/1159/250 +f 394/577/251 396/579/232 395/1160/252 +f 396/579/232 398/581/254 397/1161/253 +f 398/581/254 400/583/270 399/1162/255 +f 399/1162/255 400/583/270 402/584/256 +f 402/584/256 404/586/231 403/1164/258 +f 404/972/231 406/588/260 405/1165/259 +f 406/588/260 408/591/262 407/1167/261 +f 408/591/262 410/593/264 409/1168/263 +f 410/593/264 412/595/235 411/1169/265 +f 412/595/235 414/597/238 413/1170/266 +f 414/597/238 416/565/244 415/1171/267 +f 416/565/244 418/569/269 417/1172/268 +f 417/1172/268 418/569/269 388/571/237 +f 429/582/244 445/1175/244 444/1173/269 +f 422/566/254 438/1176/254 437/1174/270 +f 430/580/238 446/1177/238 445/1175/244 +f 423/596/232 439/1178/232 438/1176/254 +f 431/578/235 447/1179/235 446/1177/238 +f 424/594/251 440/1180/251 439/1178/232 +f 432/576/264 448/1181/264 447/1179/235 +f 425/592/245 441/1182/245 440/1180/251 +f 433/574/262 449/1183/262 448/1181/264 +f 426/590/248 442/1184/248 441/1182/245 +f 434/572/260 450/1186/260 449/1183/262 +f 427/589/237 443/1601/237 442/1184/248 +f 420/568/256 436/1188/256 435/1185/231 +f 419/570/231 435/1185/231 450/1186/260 +f 428/585/269 444/1173/269 443/1187/237 +f 421/567/270 437/1174/270 436/1188/256 +f 452/1189/271 468/1602/302 467/1190/272 +f 467/1190/272 468/1602/302 417/1192/268 +f 466/1194/274 451/1191/273 467/1195/272 +f 466/1194/274 482/1234/275 481/1197/276 +f 465/1198/277 481/1603/276 480/1199/278 +f 463/1201/280 464/1200/279 480/1202/278 +f 462/1204/282 463/1201/280 479/1205/281 +f 461/1207/284 462/1204/282 478/1208/283 +f 460/1210/286 461/1207/284 477/1211/285 +f 460/1210/286 476/1604/287 475/1213/288 +f 458/1215/290 459/1312/289 475/1216/288 +f 458/1215/290 474/1251/291 473/1218/292 +f 457/1219/293 473/1254/292 472/1220/294 +f 456/1221/295 472/1605/294 471/1222/296 +f 454/1224/298 455/1223/297 471/1225/296 +f 453/1227/300 454/1224/298 470/1228/299 +f 453/1227/300 469/1606/301 468/1230/302 +f 389/1231/246 482/1196/275 467/1195/272 +f 391/1233/249 481/1197/276 482/1234/275 +f 480/1199/278 481/1603/276 391/1236/249 +f 479/1203/281 480/1202/278 393/1238/250 +f 397/1240/253 478/1206/283 479/1205/281 +f 399/1242/255 477/1209/285 478/1208/283 +f 476/1212/287 477/1211/285 399/1244/255 +f 475/1213/288 476/1604/287 401/1246/257 +f 405/1248/259 474/1217/291 475/1216/288 +f 407/1250/261 473/1218/292 474/1251/291 +f 409/1253/263 472/1220/294 473/1254/292 +f 471/1222/296 472/1605/294 409/1256/263 +f 470/1226/299 471/1225/296 411/1258/265 +f 469/1229/301 470/1228/299 413/1260/266 +f 468/1230/302 469/1606/301 415/1262/267 +f 515/598/237 498/657/237 497/659/269 +f 530/604/248 483/655/248 498/657/237 +f 523/628/231 490/642/231 489/644/256 +f 516/627/269 497/659/269 496/632/244 +f 524/626/256 489/644/256 488/646/270 +f 517/624/244 496/632/244 495/631/238 +f 525/622/270 488/646/270 487/648/254 +f 518/620/238 495/631/238 494/634/235 +f 526/618/254 487/648/254 486/650/232 +f 519/616/235 494/634/235 493/636/264 +f 527/614/232 486/650/232 485/651/251 +f 520/610/264 493/636/264 492/637/262 +f 528/612/251 485/651/251 484/653/245 +f 521/606/262 492/637/262 491/639/260 +f 529/608/245 484/653/245 483/655/248 +f 522/603/260 491/639/260 490/641/231 +f 540/1264/237 537/1279/248 505/607/248 +f 539/1265/269 540/1264/237 508/600/237 +f 542/1266/244 539/1265/269 507/599/269 +f 544/1267/238 542/1266/244 510/623/244 +f 546/1268/235 544/1267/238 512/619/238 +f 534/1269/264 546/1268/235 514/615/235 +f 533/1270/262 534/1269/264 502/609/264 +f 536/1271/260 533/1270/262 501/605/262 +f 538/1272/231 536/1271/260 504/602/260 +f 541/1273/256 538/1607/231 506/629/231 +f 543/1274/270 541/1273/256 509/625/256 +f 545/1275/254 543/1274/270 511/621/270 +f 532/1276/232 545/1275/254 513/617/254 +f 531/1277/251 532/1276/232 500/613/232 +f 535/1278/245 531/1277/251 499/611/251 +f 537/1279/248 535/1278/245 503/974/245 +f 578/1280/303 540/1264/303 539/1265/304 +f 563/1282/305 537/1279/305 540/1264/303 +f 564/1283/306 535/1278/306 537/1279/305 +f 564/1283/306 565/1284/307 531/1277/307 +f 565/1284/307 566/1285/233 532/1276/233 +f 566/1285/233 567/1286/308 545/1275/308 +f 567/1286/308 568/1287/309 543/1274/309 +f 568/1287/309 569/1289/310 541/1273/310 +f 570/1288/311 538/1607/311 541/1273/310 +f 570/1290/311 571/1291/312 536/1271/312 +f 571/1291/312 572/1292/313 533/1270/313 +f 572/1292/313 573/1294/314 534/1269/314 +f 574/1293/234 546/1268/234 534/1269/314 +f 574/1293/234 575/1295/315 544/1267/315 +f 575/1295/315 576/1296/316 542/1266/316 +f 576/1296/316 577/1281/304 539/1265/304 +f 558/1297/317 555/1298/318 577/1281/318 +f 555/1298/318 556/1299/319 578/1280/319 +f 556/1299/319 553/1300/320 563/1282/320 +f 553/1300/320 551/1310/321 564/1283/321 +f 564/1283/321 551/1310/321 547/1301/322 +f 565/1284/322 547/1301/322 548/1302/323 +f 566/1285/323 548/1302/323 561/1303/324 +f 567/1286/324 561/1303/324 559/1304/325 +f 559/1304/325 557/1305/326 569/1289/326 +f 557/1305/326 554/1608/327 570/1288/327 +f 570/1290/327 554/1311/327 552/1306/328 +f 571/1291/328 552/1306/328 549/1307/329 +f 572/1292/329 549/1307/329 550/1308/330 +f 550/1308/330 562/1313/331 574/1293/331 +f 574/1293/331 562/1313/331 560/1309/332 +f 575/1295/332 560/1309/332 558/1297/317 +f 452/1189/269 555/1298/269 558/1297/244 +f 451/1191/237 556/1299/237 555/1298/269 +f 466/1194/248 553/1300/248 556/1299/237 +f 465/1198/245 551/1310/245 553/1300/248 +f 464/1200/251 547/1301/251 551/1310/245 +f 463/1201/232 548/1302/232 547/1301/251 +f 462/1204/254 561/1303/254 548/1302/232 +f 461/1207/270 559/1304/270 561/1303/254 +f 460/1210/256 557/1305/256 559/1304/270 +f 459/1214/231 554/1608/231 557/1305/256 +f 458/1215/260 552/1306/260 554/1311/231 +f 457/1219/262 549/1307/262 552/1306/260 +f 456/1221/264 550/1308/264 549/1307/262 +f 455/1223/235 562/1313/235 550/1308/264 +f 454/1224/238 560/1309/238 562/1313/235 +f 453/1227/244 558/1297/244 560/1309/238 +f 584/1314/264 600/1360/347 601/1315/333 +f 592/1317/251 608/1338/344 609/1318/334 +f 585/1316/262 601/1315/333 602/1320/335 +f 593/1319/245 609/1318/334 610/1322/336 +f 586/1321/260 602/1320/335 603/1324/337 +f 594/1323/248 610/1322/336 595/1326/338 +f 587/1328/231 603/1412/337 604/1329/339 +f 588/1330/256 604/1329/339 605/1331/340 +f 589/1332/270 605/1331/340 606/1333/341 +f 590/1334/254 606/1333/341 607/1335/342 +f 648/1337/343 647/1356/343 579/1327/237 +f 591/1336/232 607/1335/342 608/1338/344 +f 623/1339/237 631/1343/237 632/1340/244 +f 630/1342/245 638/1352/245 631/1343/237 +f 628/1344/270 636/1354/270 637/1345/232 +f 626/1347/262 634/1355/262 635/1348/231 +f 624/1341/244 632/1340/244 633/1350/235 +f 629/1346/232 637/1345/232 638/1352/245 +f 627/1353/231 635/1609/231 636/1354/270 +f 625/1351/235 633/1350/235 634/1355/262 +f 647/1356/343 640/1366/269 580/1357/269 +f 600/1360/347 584/1314/264 597/1358/345 +f 584/1314/264 583/1362/235 598/1610/345 +f 598/1610/345 597/1358/345 584/1314/264 +f 642/1361/238 598/1610/345 583/1362/235 +f 641/1364/244 642/1361/238 582/1363/238 +f 640/1366/269 641/1364/244 581/1365/244 +f 639/1367/348 599/1359/346 597/1358/345 +f 643/1369/349 639/1367/348 646/1368/238 +f 596/1371/350 643/1369/349 645/1370/244 +f 596/1371/350 644/1372/269 648/1337/343 +f 658/1373/351 672/1377/269 671/1374/237 +f 659/1376/353 673/1379/244 672/1377/269 +f 660/1378/354 674/1381/238 673/1379/244 +f 661/1380/355 675/1384/235 674/1381/238 +f 654/1382/356 668/1386/251 667/702/357 +f 662/1383/359 676/1388/264 675/1384/235 +f 655/1385/360 669/1390/245 668/1386/251 +f 663/1387/361 677/1392/262 676/1388/264 +f 656/1389/362 670/1393/248 669/1390/245 +f 664/1391/363 678/1396/260 677/1392/262 +f 657/1375/352 671/1374/237 670/1393/248 +f 665/699/364 679/997/442 666/1394/231 +f 649/1395/365 666/1394/231 678/1396/260 +f 687/1397/244 686/1399/238 682/949/238 +f 684/1398/343 688/1400/269 680/954/269 +f 686/1399/238 685/1611/366 683/1104/366 +f 688/1400/269 687/1397/244 681/952/244 +f 700/788/367 699/787/443 655/1385/360 +f 655/1385/360 699/791/443 698/790/368 +f 656/1389/362 698/794/368 697/793/369 +f 697/797/369 696/796/370 658/1373/351 +f 696/705/370 695/1001/444 659/1376/353 +f 659/1376/353 695/754/444 694/1022/371 +f 694/757/371 693/1023/372 661/1380/355 +f 693/760/372 692/1024/373 662/1383/359 +f 692/763/373 691/1025/375 663/1387/361 +f 690/769/374 705/1027/445 649/1395/365 +f 691/766/375 690/1026/374 664/1391/363 +f 665/699/364 649/1395/365 705/772/445 +f 705/772/445 704/1028/376 665/699/364 +f 704/775/376 703/1029/377 651/1402/377 +f 703/779/377 702/778/378 652/1403/378 +f 652/1403/378 702/781/378 701/1031/379 +f 701/785/379 700/784/367 654/1382/356 +f 708/709/245 717/718/245 716/717/251 +f 707/707/251 716/717/251 720/720/357 +f 727/733/380 726/732/381 709/712/248 +f 718/722/248 730/725/381 731/735/380 +f 708/709/245 709/712/248 726/732/381 +f 730/725/381 718/722/248 717/718/245 +f 708/709/245 726/732/381 717/718/245 +f 751/1405/382 752/1612/446 599/1359/346 +f 606/1333/341 759/1417/393 760/1406/383 +f 607/1335/342 760/1406/383 761/1407/384 +f 761/1407/384 762/1410/387 609/1318/334 +f 601/1315/333 754/1409/386 755/1408/385 +f 600/1360/347 753/1414/390 754/1409/386 +f 762/1410/387 763/1411/388 610/1322/336 +f 643/1369/349 750/1613/447 751/1405/382 +f 763/1411/388 748/1614/448 595/1326/338 +f 603/1412/337 756/1615/392 757/1413/389 +f 599/1359/346 752/1612/446 753/1414/390 +f 595/1326/338 748/1614/448 749/1415/391 +f 757/1413/389 758/1616/449 605/1331/340 +f 602/1320/335 755/1408/385 756/1416/392 +f 749/1415/391 750/1613/447 643/1369/349 +f 605/1331/340 758/1616/449 759/1417/393 +f 746/1418/394 778/1430/406 786/1419/395 +f 787/1421/397 780/1425/401 767/1422/398 +f 789/1424/400 782/1427/403 780/1425/401 +f 791/1426/402 783/1429/405 782/1427/403 +f 792/1428/404 784/1432/408 783/1429/405 +f 778/1430/406 785/1617/419 793/1431/407 +f 793/1431/407 785/1617/419 784/1432/408 +f 790/1456/422 788/1618/450 770/1435/411 +f 788/1618/450 765/1451/420 777/1433/409 +f 777/1433/409 774/1459/423 772/1434/410 +f 788/1618/450 777/1433/409 770/1435/411 +f 770/1435/411 768/1454/421 790/1456/422 +f 776/1438/414 764/1439/415 779/1436/412 +f 779/1436/412 781/1619/451 771/1437/413 +f 781/1619/451 769/1441/416 771/1437/413 +f 771/1437/413 773/1445/417 776/1438/414 +f 773/1445/417 775/1447/418 776/1438/414 +f 764/1439/415 778/1450/406 746/1440/394 +f 769/1441/416 781/1619/451 767/1442/398 +f 769/1441/416 780/1443/401 782/1444/403 +f 773/1445/417 771/1437/413 782/1444/403 +f 775/1447/418 773/1445/417 783/1446/405 +f 764/1439/415 776/1438/414 785/1449/419 +f 775/1447/418 784/1448/408 785/1449/419 +f 765/1451/420 788/1618/450 747/1452/396 +f 768/1454/421 787/1458/397 766/1455/399 +f 768/1454/421 770/1435/411 789/1457/400 +f 772/1434/410 791/1460/402 789/1457/400 +f 774/1459/423 792/1462/404 791/1460/402 +f 765/1451/420 786/1453/395 793/1461/407 +f 774/1459/423 777/1433/409 793/1461/407 +f 806/814/229 809/813/424 808/818/424 +f 805/811/230 810/810/425 811/1463/425 +f 810/810/425 812/822/426 813/1465/426 +f 809/813/424 815/816/427 814/817/427 +f 812/822/426 816/821/428 817/1466/428 +f 815/816/427 819/820/429 818/1040/429 +f 816/821/428 820/826/430 821/1467/430 +f 819/820/429 823/824/431 822/825/431 +f 829/1468/432 828/1470/432 824/829/229 +f 831/1469/433 830/1620/433 828/1470/432 +f 839/1471/434 851/1484/434 850/1472/435 +f 834/1474/237 847/1494/237 857/1475/436 +f 836/1477/437 848/1486/437 846/1478/438 +f 843/1480/232 855/1488/232 854/1481/439 +f 840/1483/231 852/1621/231 851/1484/434 +f 837/1485/235 849/1492/235 848/1486/437 +f 844/1487/440 856/1493/440 855/1488/232 +f 841/1489/441 853/1495/441 852/1490/231 +f 838/1473/435 850/1472/435 849/1492/235 +f 845/1476/436 857/1475/436 856/1493/440 +f 835/1479/438 846/1478/438 847/1494/237 +f 842/1482/439 854/1481/439 853/1495/441 +f 868/1496/440 880/1519/440 881/1497/436 +f 861/1499/235 873/1520/235 874/1500/435 +f 869/1498/436 881/1497/436 871/1502/237 +f 862/1501/435 874/1500/435 875/1504/434 +f 863/1505/434 875/1504/434 876/1506/231 +f 864/1508/231 876/1622/231 877/1509/441 +f 865/1510/441 877/1509/441 878/1511/439 +f 858/1503/237 871/1502/237 870/1513/438 +f 866/1512/439 878/1511/439 879/1515/232 +f 859/1514/438 870/1513/438 872/1517/437 +f 867/1516/232 879/1515/232 880/1519/440 +f 860/1518/437 872/1517/437 873/1520/235 +f 896/870/231 920/1089/231 919/891/434 +f 910/1521/437 934/898/437 935/878/235 +f 903/1523/441 926/886/441 928/885/439 +f 897/872/441 921/895/441 920/897/231 +f 911/1522/235 935/878/235 936/877/435 +f 904/1524/439 928/885/439 929/890/232 +f 898/875/439 922/900/439 921/895/441 +f 912/1525/435 936/877/435 937/882/434 +f 891/862/438 914/883/438 915/884/237 +f 905/1526/232 929/890/232 930/889/440 +f 899/856/232 923/876/232 922/900/439 +f 913/1527/434 937/882/434 927/881/231 +f 892/864/437 916/888/437 914/883/438 +f 906/1528/440 930/889/440 931/894/436 +f 900/858/440 924/880/440 923/876/232 +f 893/865/235 917/887/235 916/888/437 +f 907/1530/436 931/894/436 932/893/237 +f 901/859/436 925/879/436 924/880/440 +f 894/867/435 918/892/435 917/887/235 +f 908/1532/237 932/896/237 933/899/438 +f 890/861/237 915/884/237 925/879/436 +f 895/868/434 919/891/434 918/892/435 +f 909/1533/438 933/899/438 934/898/437 +f 902/1529/231 927/881/231 926/886/441 +f 970/1534/235 978/1544/235 977/1535/244 +f 975/1537/245 983/1547/245 982/1538/232 +f 973/1540/270 981/1548/270 980/1541/231 +f 971/1543/262 979/1550/262 978/1544/235 +f 969/1536/244 977/1535/244 976/1545/237 +f 968/1546/237 976/1545/237 983/1547/245 +f 974/1539/232 982/1538/232 981/1548/270 +f 972/1549/231 980/1623/231 979/1550/262 +f 1000/1551/434 1012/1564/434 1011/1552/435 +f 995/1554/237 1008/1574/237 1018/1555/436 +f 997/1557/437 1009/1566/437 1007/1558/438 +f 1004/1560/232 1016/1568/232 1015/1561/439 +f 1001/1563/231 1013/1624/231 1012/1564/434 +f 998/1565/235 1010/1572/235 1009/1566/437 +f 1005/1567/440 1017/1573/440 1016/1568/232 +f 1002/1569/441 1014/1575/441 1013/1570/231 +f 999/1553/435 1011/1552/435 1010/1572/235 +f 1006/1556/436 1018/1555/436 1017/1573/440 +f 996/1559/438 1007/1558/438 1008/1574/237 +f 1003/1562/439 1015/1561/439 1014/1575/441 +f 1029/1576/440 1041/1599/440 1042/1577/436 +f 1022/1579/235 1034/1600/235 1035/1580/435 +f 1030/1578/436 1042/1577/436 1032/1582/237 +f 1023/1581/435 1035/1580/435 1036/1584/434 +f 1024/1585/434 1036/1584/434 1037/1586/231 +f 1025/1588/231 1037/1625/231 1038/1589/441 +f 1026/1590/441 1038/1589/441 1039/1591/439 +f 1019/1583/237 1032/1582/237 1031/1593/438 +f 1027/1592/439 1039/1591/439 1040/1595/232 +f 1020/1594/438 1031/1593/438 1033/1597/437 +f 1028/1596/232 1040/1595/232 1041/1599/440 +f 1021/1598/437 1033/1597/437 1034/1600/235 diff --git a/src/main/resources/assets/hbm/models/weapons/henry.obj b/src/main/resources/assets/hbm/models/weapons/henry.obj index 4779070e8..03ba3df7f 100644 --- a/src/main/resources/assets/hbm/models/weapons/henry.obj +++ b/src/main/resources/assets/hbm/models/weapons/henry.obj @@ -1,6 +1,226 @@ # Blender v2.79 (sub 0) OBJ File: 'henry.blend' # www.blender.org -o Plane +o Sight +v -0.125000 1.250000 -0.218750 +v 0.125000 1.250000 -0.218750 +v -0.125000 1.250000 -0.156250 +v 0.125000 1.250000 -0.156250 +v -0.125000 2.000000 -0.218750 +v 0.125000 2.000000 -0.218750 +v -0.125000 2.000000 -0.156250 +v 0.125000 2.000000 -0.156250 +v -0.062500 1.875000 -0.218750 +v 0.062500 1.875000 -0.218750 +v -0.062500 1.875000 -0.156250 +v 0.062500 1.875000 -0.156250 +v -0.062500 1.250000 -0.218750 +v 0.062500 1.250000 -0.218750 +v -0.062500 1.250000 -0.156250 +v 0.062500 1.250000 -0.156250 +vt 0.017857 0.456522 +vt -0.000000 0.478261 +vt 0.005952 0.456522 +vt 0.017857 0.445652 +vt 0.053571 0.489130 +vt 0.029762 0.478261 +vt 0.053571 0.478261 +vt 0.059524 0.478261 +vt 0.053571 0.347826 +vt 0.059524 0.347826 +vt 0.023810 0.347826 +vt 0.023810 0.478261 +vt 0.035714 0.456522 +vt 0.047619 0.456522 +vt 0.041667 0.456522 +vt 0.047619 0.347826 +vt 0.041667 0.347826 +vt 0.041667 0.456522 +vt 0.029762 0.347826 +vt -0.000000 0.347826 +vt 0.005952 0.445652 +vt 0.029762 0.489130 +vt 0.041667 0.347826 +vt 0.035714 0.347826 +vt 0.017857 0.347826 +vt 0.005952 0.347826 +vn 0.0000 0.0000 1.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +s off +f 12/1/1 7/2/1 11/3/1 +f 11/3/2 10/4/2 12/1/2 +f 7/5/3 6/6/3 5/7/3 +f 7/8/4 1/9/4 3/10/4 +f 4/11/5 6/6/5 8/12/5 +f 5/7/6 10/13/6 9/14/6 +f 11/15/5 13/16/5 9/14/5 +f 10/13/4 16/17/4 12/18/4 +f 12/1/1 4/11/1 8/12/1 +f 2/19/6 10/13/6 6/6/6 +f 3/20/1 11/3/1 7/2/1 +f 9/14/6 1/9/6 5/7/6 +f 12/1/1 8/12/1 7/2/1 +f 11/3/2 9/21/2 10/4/2 +f 7/5/3 8/22/3 6/6/3 +f 7/8/4 5/7/4 1/9/4 +f 4/11/5 2/19/5 6/6/5 +f 5/7/6 6/6/6 10/13/6 +f 11/15/5 15/23/5 13/16/5 +f 10/13/4 14/24/4 16/17/4 +f 12/1/1 16/25/1 4/11/1 +f 2/19/6 14/24/6 10/13/6 +f 3/20/1 15/26/1 11/3/1 +f 9/14/6 13/16/6 1/9/6 +o Bullet +v -0.099437 0.786939 5.875000 +v 0.000000 0.828127 5.875000 +v -0.140625 0.687502 5.875000 +v -0.099437 0.588065 5.875000 +v 0.000000 0.546877 5.875000 +v 0.099437 0.588065 5.875000 +v 0.140625 0.687502 5.875000 +v 0.099437 0.786939 5.875000 +v -0.099437 0.786939 6.375000 +v 0.000000 0.828127 6.375000 +v -0.140625 0.687502 6.375000 +v -0.099437 0.588065 6.375000 +v 0.000000 0.546877 6.375000 +v 0.099437 0.588065 6.375000 +v 0.140625 0.687502 6.375000 +v 0.099437 0.786939 6.375000 +v -0.049718 0.737221 6.625000 +v 0.000000 0.757815 6.625000 +v -0.070312 0.687502 6.625000 +v -0.049718 0.637784 6.625000 +v 0.000000 0.617190 6.625000 +v 0.049718 0.637784 6.625000 +v 0.070312 0.687502 6.625000 +v 0.049718 0.737221 6.625000 +vt 0.023809 0.923983 +vt 0.015419 0.930330 +vt 0.011943 0.945652 +vt 0.015419 0.960974 +vt 0.023809 0.967321 +vt 0.032200 0.960974 +vt 0.035676 0.945652 +vt 0.032200 0.930330 +vt 0.023810 0.880435 +vt -0.000000 0.891304 +vt -0.000000 0.880435 +vt 0.071429 0.815217 +vt 0.023810 0.793478 +vt 0.071429 0.793478 +vt 0.071429 0.771739 +vt 0.023810 0.750000 +vt 0.071429 0.750000 +vt 0.071429 0.902174 +vt 0.071429 0.880435 +vt 0.071429 0.858696 +vt 0.023810 0.836957 +vt 0.071429 0.836957 +vt 0.023810 0.815217 +vt 0.023810 0.771739 +vt 0.071429 0.923913 +vt 0.023810 0.902174 +vt 0.023810 0.858696 +vt 0.011629 0.934783 +vt 0.009966 0.942113 +vt 0.005952 0.945149 +vt -0.000000 0.836957 +vt -0.000000 0.826087 +vt -0.000000 0.815217 +vt -0.000000 0.771739 +vt -0.000000 0.913043 +vt -0.000000 0.902174 +vt -0.000000 0.858696 +vt -0.000000 0.804348 +vt -0.000000 0.793478 +vt -0.000000 0.750000 +vt 0.023810 0.923913 +vt 0.001938 0.942113 +vt 0.000276 0.934783 +vt 0.001938 0.927453 +vt 0.005952 0.924417 +vt 0.009966 0.927453 +vt -0.000000 0.847826 +vt -0.000000 0.782609 +vt -0.000000 0.869565 +vt -0.000000 0.760870 +vn 0.0000 0.0000 -1.0000 +vn -0.9627 -0.0000 0.2707 +vn -0.4833 -0.4833 0.7300 +vn -0.6835 -0.0000 0.7300 +vn 0.7071 0.7071 0.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.7071 -0.7071 0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.7071 -0.7071 0.0000 +vn -1.0000 -0.0000 0.0000 +vn -0.7071 0.7071 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.6835 -0.0000 0.7300 +vn 0.4833 0.4833 0.7300 +vn 0.0000 0.6835 0.7300 +vn -0.6807 0.6807 0.2707 +vn 0.0000 0.9627 0.2707 +vn 0.6807 0.6807 0.2707 +vn 0.9627 0.0000 0.2707 +vn 0.4833 -0.4833 0.7300 +vn 0.6807 -0.6807 0.2707 +vn -0.6807 -0.6807 0.2707 +vn 0.0000 -0.6835 0.7300 +vn -0.4833 0.4833 0.7300 +vn 0.0000 -0.9627 0.2707 +s off +f 21/27/7 20/28/7 19/29/7 +f 19/29/7 17/30/7 18/31/7 +f 18/31/7 24/32/7 19/29/7 +f 24/32/7 23/33/7 19/29/7 +f 23/33/7 22/34/7 19/29/7 +f 22/34/7 21/27/7 19/29/7 +s 1 +f 27/35/8 36/36/9 35/37/10 +f 24/38/11 31/39/12 23/40/12 +f 22/41/13 29/42/14 21/43/14 +f 20/44/15 27/35/16 19/45/16 +f 17/46/17 26/47/18 18/48/18 +f 18/48/18 32/49/11 24/38/11 +f 23/40/12 30/50/13 22/41/13 +f 21/51/14 28/52/15 20/44/15 +f 19/45/16 25/53/17 17/46/17 +f 39/54/19 40/55/20 34/56/21 +f 25/53/22 34/57/21 26/47/23 +f 32/49/24 34/58/21 40/59/20 +f 31/39/25 38/60/26 30/50/27 +f 28/52/28 37/61/29 36/62/9 +f 27/35/8 33/63/30 25/53/22 +f 31/39/25 40/64/20 39/65/19 +f 30/50/27 37/66/29 29/42/31 +f 27/35/8 28/52/28 36/36/9 +f 24/38/11 32/49/11 31/39/12 +f 22/41/13 30/50/13 29/42/14 +f 20/44/15 28/52/15 27/35/16 +f 17/46/17 25/53/17 26/47/18 +f 18/48/18 26/47/18 32/49/11 +f 23/40/12 31/39/12 30/50/13 +f 21/51/14 29/67/14 28/52/15 +f 19/45/16 27/35/16 25/53/17 +f 34/56/21 33/68/30 35/69/10 +f 35/69/10 36/70/9 34/56/21 +f 36/70/9 37/71/29 34/56/21 +f 37/71/29 38/72/26 34/56/21 +f 38/72/26 39/54/19 34/56/21 +f 25/53/22 33/73/30 34/57/21 +f 32/49/24 26/47/23 34/58/21 +f 31/39/25 39/74/19 38/60/26 +f 28/52/28 29/67/31 37/61/29 +f 27/35/8 35/75/10 33/63/30 +f 31/39/25 32/49/24 40/64/20 +f 30/50/27 38/76/26 37/66/29 +o Front v 0.062500 1.187500 6.000000 v 0.187500 1.062500 6.000000 v -0.187500 1.062500 6.000000 @@ -9,22 +229,6 @@ v 0.187500 0.937500 6.000000 v 0.062500 0.812500 6.000000 v -0.062500 0.812500 6.000000 v -0.187500 0.937500 6.000000 -v -0.187500 0.937500 6.000000 -v -0.062500 0.812500 6.000000 -v 0.062500 0.812500 6.000000 -v 0.187500 0.937500 6.000000 -v -0.062500 1.187500 6.000000 -v -0.187500 1.062500 6.000000 -v 0.187500 1.062500 6.000000 -v 0.062500 1.187500 6.000000 -v 0.062500 1.187500 -0.625000 -v 0.187500 1.062500 -0.625000 -v -0.187500 1.062500 -0.625000 -v -0.062500 1.187500 -0.625000 -v 0.187500 0.937500 -0.625000 -v 0.062500 0.812500 -0.625000 -v -0.062500 0.812500 -0.625000 -v -0.187500 0.937500 -0.625000 v 0.062500 0.812499 8.000000 v -0.062500 0.812499 8.000000 v 0.187500 0.937499 8.000000 @@ -49,22 +253,6 @@ v 0.062500 1.124999 7.000000 v -0.062500 1.124999 7.000000 v 0.125000 0.937499 7.000000 v 0.125000 1.062499 7.000000 -v 0.000000 0.875000 -0.625000 -v -0.132582 0.820082 -0.625000 -v -0.187500 0.687500 -0.625000 -v -0.132582 0.554917 -0.625000 -v 0.000000 0.500000 -0.625000 -v 0.132582 0.554917 -0.625000 -v 0.187500 0.687500 -0.625000 -v 0.132582 0.820082 -0.625000 -v 0.000000 0.875000 5.937500 -v -0.132582 0.820082 5.937500 -v -0.187500 0.687500 5.937500 -v -0.132582 0.554917 5.937500 -v 0.000000 0.500000 5.937500 -v 0.132582 0.554917 5.937500 -v 0.187500 0.687500 5.937500 -v 0.132582 0.820082 5.937500 v 0.000000 0.875000 5.937500 v -0.132582 0.820082 5.937500 v -0.187500 0.687500 5.937500 @@ -81,6 +269,734 @@ v 0.000000 0.500002 7.875000 v 0.132582 0.554920 7.875000 v 0.187500 0.687502 7.875000 v 0.132582 0.820085 7.875000 +v -0.125000 1.062499 7.937500 +v -0.125000 1.312499 7.937500 +v -0.125000 1.062499 7.687500 +v -0.125000 1.312499 7.687500 +v 0.125000 1.062499 7.937500 +v 0.125000 1.312499 7.937500 +v 0.125000 1.062499 7.687500 +v 0.125000 1.312499 7.687500 +v 0.062500 1.124999 7.687500 +v -0.062500 1.124999 7.687500 +v -0.062500 1.124999 7.937500 +v 0.062500 1.124999 7.937500 +vt 0.238095 0.108696 +vt 0.267857 0.076087 +vt 0.285714 0.130435 +vt 0.029762 0.163043 +vt 0.041667 0.130435 +vt 0.047619 0.130435 +vt 0.238095 0.054348 +vt 0.047619 0.021739 +vt 0.238095 0.021739 +vt 0.238095 0.130435 +vt 0.047619 0.108696 +vt 0.238095 0.163043 +vt 0.047619 0.000000 +vt 0.238095 -0.000000 +vt 0.238095 0.217391 +vt 0.047619 0.184783 +vt 0.238095 0.184783 +vt 0.047619 0.163043 +vt 0.238095 0.076087 +vt 0.047619 0.054348 +vt 0.047619 0.076087 +vt 0.000000 0.130435 +vt 0.017857 0.152174 +vt 0.017857 0.163043 +vt 0.041667 0.108696 +vt 0.029762 0.152174 +vt 0.029762 0.086957 +vt 0.029762 0.076087 +vt 0.017857 0.086957 +vt 0.017857 0.076087 +vt 0.005952 0.108696 +vt 0.000000 0.108696 +vt 0.005952 0.130435 +vt 0.113095 0.293478 +vt 0.095238 0.282609 +vt 0.101190 0.250000 +vt 0.149477 0.292260 +vt 0.154684 0.315217 +vt 0.119125 0.315217 +vt 0.154685 0.250000 +vt 0.149477 0.272958 +vt 0.136905 0.282467 +vt 0.851190 0.434783 +vt 0.827381 0.478261 +vt 0.827381 0.434783 +vt 0.851190 0.478261 +vt 0.875000 0.478261 +vt 0.869048 0.510870 +vt 0.898810 0.434783 +vt 0.898810 0.478261 +vt 0.875000 0.434783 +vt 0.857143 0.402174 +vt 0.267857 0.163043 +vt 0.255952 0.163043 +vt 0.255952 0.076087 +vt 0.285714 0.108696 +vt 0.047619 0.217391 +vt 0.113095 0.250000 +vt 0.119048 0.260870 +vt 0.119048 0.282609 +vt 0.101190 0.293478 +vt 0.095238 0.260870 +vt 0.149477 0.338175 +vt 0.136905 0.347684 +vt 0.124333 0.338175 +vt 0.124333 0.292260 +vt 0.136905 0.282750 +vt 0.124333 0.272958 +vt 0.119125 0.250000 +vt 0.124333 0.227043 +vt 0.136905 0.217533 +vt 0.149477 0.227043 +vt 0.857143 0.510870 +vt 0.851190 0.521739 +vt 0.875000 0.521739 +vt 0.869048 0.402174 +vt 0.875000 0.391304 +vt 0.851190 0.391304 +vt -0.000000 0.315217 +vt 0.095238 0.326087 +vt 0.000000 0.326087 +vt -0.000000 0.260870 +vt 0.000000 0.282609 +vt 0.000000 0.228261 +vt 0.095238 0.250000 +vt 0.000000 0.250000 +vt 0.000000 0.217391 +vt 0.095238 0.228261 +vt -0.000000 0.293478 +vt 0.095238 0.315217 +vt 0.095238 0.347826 +vt 0.000000 0.347826 +vt 0.095238 0.293478 +vt 0.339286 0.369565 +vt 0.154762 0.391304 +vt 0.154762 0.369565 +vt 0.339286 0.326087 +vt 0.154762 0.347826 +vt 0.154762 0.326087 +vt 0.339286 0.282609 +vt 0.154762 0.260870 +vt 0.339286 0.260870 +vt 0.339286 0.239130 +vt 0.154762 0.217391 +vt 0.339286 0.217391 +vt 0.339286 0.347826 +vt 0.339286 0.304348 +vt 0.154762 0.304348 +vt 0.154762 0.282609 +vt 0.154762 0.239130 +vt 0.095238 0.217391 +vt 0.339286 0.391304 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 0.0000 1.0000 +vn 0.7071 -0.7071 -0.0000 +vn 0.0000 1.0000 0.0000 +vn -0.7071 0.7071 0.0000 +vn 0.0000 -1.0000 -0.0000 +vn -0.7071 -0.7071 -0.0000 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.7071 0.7071 0.0000 +vn -0.9239 0.3827 0.0000 +vn -0.3827 0.9239 0.0000 +vn 0.3827 -0.9239 0.0000 +vn -0.3827 -0.9239 0.0000 +vn 0.9239 0.3827 0.0000 +vn 0.9239 -0.3827 0.0000 +vn 0.3827 0.9239 0.0000 +vn -0.9239 -0.3827 0.0000 +s off +f 41/77/32 45/78/32 47/79/32 +f 56/80/33 62/81/33 54/82/33 +f 45/83/34 49/84/34 46/85/34 +f 44/86/35 53/87/35 41/77/35 +f 43/88/36 54/82/36 44/86/36 +f 46/85/37 50/89/37 47/90/37 +f 47/91/38 55/92/38 48/93/38 +f 48/93/39 56/94/39 43/88/39 +f 42/95/40 51/96/40 45/83/40 +f 41/77/41 52/97/41 42/95/41 +f 50/98/33 57/99/33 55/100/33 +f 54/82/33 61/101/33 53/87/33 +f 55/100/33 58/102/33 56/80/33 +f 53/87/33 64/103/33 52/104/33 +f 52/104/33 63/105/33 51/106/33 +f 51/106/33 59/107/33 49/108/33 +f 49/108/33 60/109/33 50/98/33 +f 71/110/33 69/111/33 66/112/33 +f 76/113/32 75/114/32 79/115/32 +f 87/116/33 88/117/33 82/118/33 +f 90/119/39 91/120/39 89/121/39 +f 92/122/32 96/123/32 97/124/32 +f 96/123/40 93/125/40 95/126/40 +f 94/127/33 90/119/33 99/128/33 +f 92/122/35 94/127/35 96/123/35 +f 47/79/32 48/129/32 43/130/32 +f 43/130/32 44/86/32 41/77/32 +f 41/77/32 42/131/32 45/78/32 +f 45/78/32 46/132/32 47/79/32 +f 47/79/32 43/130/32 41/77/32 +f 56/80/33 58/102/33 62/81/33 +f 45/83/34 51/96/34 49/84/34 +f 44/86/35 54/82/35 53/87/35 +f 43/88/36 56/94/36 54/82/36 +f 46/85/37 49/84/37 50/89/37 +f 47/91/38 50/133/38 55/92/38 +f 48/93/39 55/92/39 56/94/39 +f 42/95/40 52/97/40 51/96/40 +f 41/77/41 53/87/41 52/97/41 +f 50/98/33 60/109/33 57/99/33 +f 54/82/33 62/81/33 61/101/33 +f 55/100/33 57/99/33 58/102/33 +f 53/87/33 61/101/33 64/103/33 +f 52/104/33 64/103/33 63/105/33 +f 51/106/33 63/105/33 59/107/33 +f 49/108/33 59/107/33 60/109/33 +f 66/112/33 65/134/33 68/135/33 +f 68/135/33 67/136/33 71/110/33 +f 71/110/33 72/137/33 69/111/33 +f 69/111/33 70/138/33 66/112/33 +f 66/112/33 68/135/33 71/110/33 +f 75/114/32 74/139/32 73/140/32 +f 73/140/32 80/141/32 75/114/32 +f 80/141/32 79/115/32 75/114/32 +f 79/115/32 78/142/32 77/143/32 +f 77/143/32 76/113/32 79/115/32 +f 82/118/33 81/144/33 83/145/33 +f 83/145/33 84/146/33 82/118/33 +f 84/146/33 85/147/33 82/118/33 +f 85/147/33 86/148/33 82/118/33 +f 86/148/33 87/116/33 82/118/33 +f 90/119/39 92/122/39 91/120/39 +f 98/149/32 91/150/32 92/122/32 +f 96/123/32 95/151/32 97/124/32 +f 97/124/32 98/149/32 92/122/32 +f 96/123/40 94/127/40 93/125/40 +f 100/152/33 93/153/33 94/127/33 +f 90/119/33 89/154/33 99/128/33 +f 99/128/33 100/152/33 94/127/33 +f 92/122/35 90/119/35 94/127/35 +s 1 +f 63/155/42 67/156/43 59/157/43 +f 62/158/44 69/111/45 61/159/45 +f 57/160/46 66/161/47 58/162/47 +f 58/162/47 70/138/44 62/158/44 +f 60/163/48 65/164/46 57/160/46 +f 64/165/49 71/166/42 63/155/42 +f 59/157/43 68/167/48 60/168/48 +f 61/159/45 72/169/49 64/165/49 +f 76/170/38 85/171/37 84/172/38 +f 74/173/36 83/174/39 81/175/36 +f 80/176/41 87/177/40 79/178/40 +f 78/179/34 85/180/37 77/181/37 +f 75/182/39 84/172/38 83/174/39 +f 73/183/35 81/175/36 82/184/35 +f 73/183/35 88/185/41 80/176/41 +f 79/178/40 86/186/34 78/179/34 +f 63/155/42 71/166/42 67/156/43 +f 62/158/44 70/138/44 69/111/45 +f 57/160/46 65/164/46 66/161/47 +f 58/162/47 66/161/47 70/138/44 +f 60/163/48 68/187/48 65/164/46 +f 64/165/49 72/169/49 71/166/42 +f 59/157/43 67/156/43 68/167/48 +f 61/159/45 69/111/45 72/169/49 +f 76/170/38 77/188/37 85/171/37 +f 74/173/36 75/182/39 83/174/39 +f 80/176/41 88/185/41 87/177/40 +f 78/179/34 86/186/34 85/180/37 +f 75/182/39 76/170/38 84/172/38 +f 73/183/35 74/173/36 81/175/36 +f 73/183/35 82/184/35 88/185/41 +f 79/178/40 87/177/40 86/186/34 +o Hammer +v 0.000000 1.250000 -2.625000 +v -0.044194 1.231694 -2.625000 +v -0.062500 1.187500 -2.625000 +v -0.044194 1.143306 -2.625000 +v 0.000000 1.125000 -2.625000 +v 0.044194 1.143306 -2.625000 +v 0.062500 1.187500 -2.625000 +v 0.044194 1.231694 -2.625000 +v -0.044194 1.231694 -2.875000 +v 0.000000 1.250000 -2.875000 +v -0.062500 1.187500 -2.875000 +v -0.044194 1.143306 -2.875000 +v 0.000000 1.125000 -2.875000 +v 0.044194 1.143306 -2.875000 +v 0.062500 1.187500 -2.875000 +v 0.044194 1.231694 -2.875000 +v -0.062500 0.750000 -2.875000 +v 0.062500 0.750000 -2.875000 +v -0.062500 1.375000 -2.875000 +v 0.062500 1.375000 -2.875000 +v -0.062500 1.500000 -3.000000 +v 0.062500 1.500000 -3.000000 +v -0.062500 1.375000 -2.937500 +v 0.062500 1.375000 -2.937500 +v -0.062500 1.250000 -2.937500 +v 0.062500 1.250000 -2.937500 +v -0.062500 1.125000 -3.062500 +v 0.062500 1.125000 -3.062500 +v -0.062500 1.062500 -3.187500 +v 0.062500 1.062500 -3.187500 +v -0.062500 0.937500 -3.312500 +v 0.062500 0.937500 -3.312500 +v -0.062500 0.812500 -3.375000 +v 0.062500 0.812500 -3.375000 +v -0.062500 0.750000 -3.375000 +v 0.062500 0.750000 -3.375000 +vt 0.928571 0.478234 +vt 0.934539 0.489131 +vt 0.928571 0.500027 +vt 0.845238 0.630435 +vt 0.857143 0.608696 +vt 0.839286 0.543478 +vt 0.839286 0.543478 +vt 0.845238 0.630435 +vt 0.839286 0.652174 +vt 0.924352 0.496836 +vt 0.922604 0.489131 +vt 0.924352 0.481426 +vt 0.932791 0.481426 +vt 0.932791 0.496836 +vt 0.839286 0.652174 +vt 0.845238 0.673913 +vt 0.845238 0.652174 +vt 0.886905 0.554348 +vt 0.886905 0.543478 +vt 0.880952 0.576087 +vt 0.869048 0.597826 +vt 0.886905 0.543478 +vt 0.880952 0.576087 +vt 0.886905 0.554348 +vt 0.869048 0.597826 +vt 0.857143 0.608696 +vt 0.845238 0.652174 +vt 0.845238 0.673913 +vt 0.827381 0.673913 +vt 0.827381 0.652174 +vt 0.898810 0.532609 +vt 0.922619 0.521739 +vt 0.922619 0.532609 +vt 0.898810 0.510870 +vt 0.898810 0.521739 +vt 0.898810 0.489130 +vt 0.922619 0.500000 +vt 0.898810 0.500000 +vt 0.898810 0.565217 +vt 0.922619 0.554348 +vt 0.922619 0.565217 +vt 0.922619 0.543478 +vt 0.898810 0.543478 +vt 0.922619 0.510870 +vt 0.898810 0.478261 +vt 0.922619 0.489130 +vt 0.898810 0.554348 +vt 0.827381 0.543478 +vt 0.886905 0.684783 +vt 0.898810 0.663043 +vt 0.898810 0.684783 +vt 0.886905 0.663043 +vt 0.898810 0.641304 +vt 0.886905 0.641304 +vt 0.898810 0.619565 +vt 0.886905 0.619565 +vt 0.898810 0.597826 +vt 0.886905 0.597826 +vt 0.898810 0.576087 +vt 0.886905 0.576087 +vt 0.898810 0.554348 +vt 0.898810 0.543478 +vt 0.839286 0.673913 +vt 0.922619 0.478261 +vn 0.0000 0.0000 1.0000 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.3827 0.9239 +vn 0.0000 0.7071 0.7071 +vn -0.7071 0.7071 -0.0000 +vn 0.0000 1.0000 -0.0000 +vn 0.7071 0.7071 -0.0000 +vn 0.7071 -0.7071 0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.7071 -0.7071 0.0000 +vn 0.0000 -0.4472 -0.8944 +vn 0.0000 -0.2298 -0.9732 +vn 0.0000 0.3827 -0.9239 +vn 0.0000 0.8112 -0.5847 +vn 0.0000 0.5847 -0.8112 +vn 0.0000 0.2298 -0.9732 +vn 0.0000 0.0000 -1.0000 +s off +f 105/189/50 107/190/50 101/191/50 +f 125/192/51 127/193/51 117/194/51 +f 118/195/52 126/196/52 120/197/52 +f 101/191/50 102/198/50 103/199/50 +f 103/199/50 104/200/50 105/189/50 +f 105/189/50 106/201/50 107/190/50 +f 107/190/50 108/202/50 101/191/50 +f 101/191/50 103/199/50 105/189/50 +f 119/203/51 121/204/51 123/205/51 +f 119/203/51 123/205/51 125/192/51 +f 133/206/51 135/207/51 131/208/51 +f 135/207/51 117/194/51 131/208/51 +f 129/209/51 131/208/51 117/194/51 +f 127/193/51 129/209/51 117/194/51 +f 117/194/51 119/203/51 125/192/51 +f 118/195/52 136/210/52 132/211/52 +f 136/210/52 134/212/52 132/211/52 +f 132/211/52 130/213/52 118/195/52 +f 130/213/52 128/214/52 118/195/52 +f 124/215/52 122/216/52 120/197/52 +f 128/214/52 126/196/52 118/195/52 +f 126/196/52 124/215/52 120/197/52 +s 1 +f 120/197/53 121/217/54 119/218/53 +f 102/219/55 110/220/56 109/221/55 +f 108/222/57 110/220/56 101/223/56 +f 106/224/58 115/225/52 107/226/52 +f 105/227/59 112/228/60 113/229/59 +f 102/219/55 111/230/51 103/231/51 +f 107/226/52 116/232/57 108/222/57 +f 105/233/59 114/234/58 106/224/58 +f 103/231/51 112/228/60 104/235/60 +f 118/195/50 119/218/53 117/236/50 +f 122/237/61 123/238/62 121/239/61 +f 124/240/62 125/241/63 123/238/62 +f 126/242/63 127/243/64 125/241/63 +f 128/244/64 129/245/64 127/243/64 +f 130/246/64 131/247/65 129/245/64 +f 132/248/65 133/249/66 131/247/65 +f 134/212/66 135/250/67 133/249/66 +f 120/197/53 122/251/54 121/217/54 +f 102/219/55 101/223/56 110/220/56 +f 108/222/57 116/232/57 110/220/56 +f 106/224/58 114/234/58 115/225/52 +f 105/227/59 104/235/60 112/228/60 +f 102/219/55 109/221/55 111/230/51 +f 107/226/52 115/225/52 116/232/57 +f 105/233/59 113/252/59 114/234/58 +f 103/231/51 111/230/51 112/228/60 +f 118/195/50 120/197/53 119/218/53 +f 122/237/61 124/240/62 123/238/62 +f 124/240/62 126/242/63 125/241/63 +f 126/242/63 128/244/64 127/243/64 +f 128/244/64 130/246/64 129/245/64 +f 130/246/64 132/248/65 131/247/65 +f 132/248/65 134/212/66 133/249/66 +f 134/212/66 136/210/67 135/250/67 +o Lever +v -0.125000 0.198188 -2.345635 +v 0.125000 0.198188 -2.345635 +v -0.125000 -0.036735 -2.260129 +v 0.125000 -0.036735 -2.260129 +v -0.125000 -0.426690 -2.783309 +v 0.125000 -0.426690 -2.783309 +v -0.125000 0.176812 -2.404365 +v 0.125000 0.176812 -2.404365 +v -0.125000 -0.058111 -2.318860 +v 0.125000 -0.058111 -2.318860 +v -0.125000 -0.485421 -2.761932 +v 0.125000 -0.485421 -2.761932 +v 0.125000 -0.357163 -2.409548 +v -0.125000 -0.357163 -2.409548 +v 0.125000 -0.298432 -2.430924 +v -0.125000 -0.298432 -2.430924 +v -0.125000 -0.437486 -3.178446 +v 0.125000 -0.437486 -3.178446 +v -0.125000 -0.496217 -3.157070 +v 0.125000 -0.496217 -3.157070 +v -0.125000 -0.736754 -4.000677 +v 0.125000 -0.736754 -4.000677 +v -0.125000 -0.795484 -3.979300 +v 0.125000 -0.795484 -3.979300 +v -0.125000 -0.720741 -4.139421 +v 0.125000 -0.720741 -4.139421 +v -0.125000 -0.699365 -4.080690 +v 0.125000 -0.699365 -4.080690 +v -0.125000 -0.485818 -4.224926 +v 0.125000 -0.485818 -4.224926 +v -0.125000 -0.464442 -4.166195 +v 0.125000 -0.464442 -4.166195 +v -0.125000 -0.325638 -4.150311 +v 0.125000 -0.325638 -4.150311 +v -0.125000 -0.384369 -4.128934 +v 0.125000 -0.384369 -4.128934 +v -0.125000 -0.026370 -3.328080 +v 0.125000 -0.026370 -3.328080 +v -0.125000 -0.085101 -3.306704 +v 0.125000 -0.085101 -3.306704 +v -0.125000 -0.101079 -3.167866 +v 0.125000 -0.101079 -3.167866 +v -0.125000 -0.122456 -3.226596 +v 0.125000 -0.122456 -3.226596 +v -0.125000 -0.336003 -3.082361 +v 0.125000 -0.336003 -3.082361 +v -0.125000 -0.357379 -3.141091 +v 0.125000 -0.357379 -3.141091 +v -0.125000 -0.277272 -3.103737 +v 0.125000 -0.277272 -3.103737 +v -0.125000 -0.336003 -3.082361 +v 0.125000 -0.336003 -3.082361 +vt 0.827381 0.804348 +vt 0.851190 0.793478 +vt 0.851190 0.804348 +vt 0.851190 0.847826 +vt 0.827381 0.858696 +vt 0.827381 0.847826 +vt 0.886905 0.804348 +vt 0.922619 0.793478 +vt 0.922619 0.804348 +vt 0.886905 0.847826 +vt 0.922619 0.858696 +vt 0.886905 0.858696 +vt 0.880952 0.858696 +vt 0.857143 0.858696 +vt 0.880952 0.793478 +vt 0.857143 0.793478 +vt 0.958333 0.728261 +vt 0.970238 0.739130 +vt 0.952381 0.739130 +vt 0.970238 0.782609 +vt 0.958333 0.793478 +vt 0.952381 0.782609 +vt 0.952381 0.728261 +vt 0.869048 0.739130 +vt 0.869048 0.728261 +vt 0.952381 0.793478 +vt 0.869048 0.782609 +vt 0.863095 0.793478 +vt 0.851190 0.782609 +vt 0.851190 0.739130 +vt 0.863095 0.728261 +vt 0.827381 0.793478 +vt 0.827381 0.782609 +vt 0.827381 0.728261 +vt 0.851190 0.728261 +vt 0.970238 0.782609 +vt 0.958333 0.793478 +vt 0.952381 0.782609 +vt 0.970238 0.739130 +vt 0.958333 0.728261 +vt 0.964286 0.728261 +vt 0.952381 0.739130 +vt 0.869048 0.728261 +vt 0.952381 0.728261 +vt 0.869048 0.793478 +vt 0.869048 0.782609 +vt 0.869048 0.739130 +vt 0.857143 0.728261 +vt 0.863095 0.728261 +vt 0.857143 0.793478 +vt 0.851190 0.782609 +vt 0.851190 0.728261 +vt 0.827381 0.739130 +vt 0.827381 0.728261 +vt 0.851190 0.793478 +vt 0.827381 0.782609 +vt 0.958333 0.804348 +vt 0.958333 0.847826 +vt 0.958333 0.858696 +vt 0.827381 0.793478 +vt 0.851190 0.858696 +vt 0.886905 0.793478 +vt 0.922619 0.847826 +vt 0.964286 0.728261 +vt 0.964286 0.793478 +vt 0.869048 0.793478 +vt 0.857143 0.793478 +vt 0.857143 0.728261 +vt 0.851190 0.793478 +vt 0.827381 0.739130 +vt 0.964286 0.793478 +vt 0.952381 0.793478 +vt 0.851190 0.739130 +vt 0.863095 0.793478 +vt 0.827381 0.793478 +vt 0.958333 0.793478 +vt 0.922619 0.902174 +vt 0.886905 0.902174 +vt 0.851190 0.902174 +vt 0.880952 0.902174 +vt 0.857143 0.902174 +vt 0.952381 0.684783 +vt 0.958333 0.728261 +vt 0.869048 0.684783 +vt 0.863095 0.728261 +vt 0.839286 0.684783 +vt 0.863095 0.684783 +vt 0.958333 0.728261 +vt 0.952381 0.684783 +vt 0.958333 0.684783 +vt 0.869048 0.684783 +vt 0.863095 0.684783 +vt 0.863095 0.728261 +vt 0.839286 0.684783 +vt 0.958333 0.902174 +vt 0.827381 0.902174 +vt 0.958333 0.684783 +vt 0.839286 0.728261 +vt 0.839286 0.728261 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.3420 0.9397 +vn 0.0000 -0.0436 0.9990 +vn 0.0000 -0.7373 0.6756 +vn 0.0000 -0.9990 -0.0436 +vn 0.0000 0.7373 -0.6756 +vn 0.0000 0.9990 0.0436 +vn 0.0000 0.0436 -0.9990 +vn 0.0000 -0.3420 -0.9397 +vn 0.0000 -0.9990 -0.0438 +vn 0.0000 0.9990 0.0440 +vn 0.0000 -0.6754 -0.7374 +vn 0.0000 0.0434 -0.9991 +vn 0.0000 0.6753 0.7375 +vn 0.0000 -0.0432 0.9991 +vn 0.0000 -0.7370 0.6759 +vn 0.0000 0.7371 -0.6757 +vn 0.0000 -0.6756 -0.7373 +vn 0.0000 0.6756 0.7373 +vn 0.0000 0.9063 0.4226 +vn 0.0000 -0.9063 -0.4226 +s off +f 137/253/68 145/254/68 139/255/68 +f 140/256/69 144/257/69 138/258/69 +f 150/259/68 141/260/68 147/261/68 +f 149/262/69 142/263/69 151/264/69 +f 140/256/69 151/265/69 146/266/69 +f 152/267/68 139/255/68 145/268/68 +f 154/269/69 182/270/69 156/271/69 +f 181/272/68 153/273/68 155/274/68 +f 154/275/69 160/276/69 158/277/69 +f 153/278/68 159/279/68 155/274/68 +f 157/280/68 161/281/68 159/279/68 +f 162/282/69 158/283/69 160/276/69 +f 161/281/68 167/284/68 165/285/68 +f 162/282/69 168/286/69 164/287/69 +f 165/288/68 171/289/68 169/290/68 +f 166/291/69 172/292/69 168/293/69 +f 170/294/69 176/295/69 172/296/69 +f 169/290/68 175/297/68 173/298/68 +f 174/299/69 180/300/69 176/301/69 +f 173/298/68 179/302/68 177/303/68 +f 180/304/69 182/305/69 184/306/69 +f 179/307/68 181/308/68 177/303/68 +f 141/260/68 187/309/68 147/261/68 +f 142/263/69 188/310/69 186/311/69 +f 137/253/68 143/312/68 145/254/68 +f 140/256/69 146/313/69 144/257/69 +f 150/259/68 152/314/68 141/260/68 +f 149/262/69 148/315/69 142/263/69 +f 140/256/69 149/262/69 151/265/69 +f 152/267/68 150/259/68 139/255/68 +f 154/269/69 184/316/69 182/270/69 +f 181/272/68 183/317/68 153/273/68 +f 154/275/69 156/271/69 160/276/69 +f 153/278/68 157/318/68 159/279/68 +f 157/280/68 163/319/68 161/281/68 +f 162/282/69 164/320/69 158/283/69 +f 161/281/68 163/321/68 167/284/68 +f 162/282/69 166/322/69 168/286/69 +f 165/288/68 167/323/68 171/289/68 +f 166/291/69 170/294/69 172/292/69 +f 170/294/69 174/299/69 176/295/69 +f 169/290/68 171/324/68 175/297/68 +f 174/299/69 178/325/69 180/300/69 +f 173/298/68 175/326/68 179/302/68 +f 180/304/69 178/325/69 182/305/69 +f 179/307/68 183/327/68 181/308/68 +f 141/260/68 185/328/68 187/309/68 +f 142/263/69 148/315/69 188/310/69 +s 1 +f 137/253/70 140/256/71 138/258/70 +f 150/259/72 148/315/73 149/262/72 +f 151/264/74 141/329/75 152/330/74 +f 145/331/76 144/257/77 146/313/76 +f 139/255/71 149/262/72 140/256/71 +f 146/266/76 152/332/74 145/333/76 +f 182/270/71 155/274/72 156/271/72 +f 153/334/74 184/335/76 154/275/74 +f 155/274/72 160/276/78 156/271/72 +f 154/275/74 157/336/79 153/334/74 +f 159/279/78 162/282/80 160/276/78 +f 161/281/80 166/322/81 162/282/80 +f 164/337/82 157/336/79 158/277/79 +f 164/337/82 167/338/83 163/339/82 +f 168/340/83 171/341/84 167/342/83 +f 165/288/81 170/294/85 166/291/81 +f 169/290/85 174/299/75 170/294/85 +f 172/296/84 175/343/73 171/341/84 +f 176/295/73 179/344/86 175/343/73 +f 173/298/75 178/325/87 174/299/75 +f 180/345/86 183/346/76 179/344/86 +f 177/303/87 182/305/71 178/325/87 +f 142/263/75 185/347/88 141/329/75 +f 147/261/73 188/310/89 148/315/73 +f 137/253/70 139/255/71 140/256/71 +f 150/259/72 147/261/73 148/315/73 +f 151/264/74 142/263/75 141/329/75 +f 145/331/76 143/348/77 144/257/77 +f 139/255/71 150/259/72 149/262/72 +f 146/266/76 151/265/74 152/332/74 +f 182/270/71 181/272/71 155/274/72 +f 153/334/74 183/349/76 184/335/76 +f 155/274/72 159/279/78 160/276/78 +f 154/275/74 158/277/79 157/336/79 +f 159/279/78 161/281/80 162/282/80 +f 161/281/80 165/285/81 166/322/81 +f 164/337/82 163/339/82 157/336/79 +f 164/337/82 168/350/83 167/338/83 +f 168/340/83 172/296/84 171/341/84 +f 165/288/81 169/290/85 170/294/85 +f 169/290/85 173/298/75 174/299/75 +f 172/296/84 176/295/73 175/343/73 +f 176/295/73 180/345/86 179/344/86 +f 173/298/75 177/303/87 178/325/87 +f 180/345/86 184/351/76 183/346/76 +f 177/303/87 181/308/71 182/305/71 +f 142/263/75 186/311/88 185/347/88 +f 147/261/73 187/309/89 188/310/89 +o Gun +v -0.187500 0.937500 6.000000 +v -0.062500 0.812500 6.000000 +v 0.062500 0.812500 6.000000 +v 0.187500 0.937500 6.000000 +v -0.062500 1.187500 6.000000 +v -0.187500 1.062500 6.000000 +v 0.187500 1.062500 6.000000 +v 0.062500 1.187500 6.000000 +v 0.062500 1.187500 -0.625000 +v 0.187500 1.062500 -0.625000 +v -0.187500 1.062500 -0.625000 +v -0.062500 1.187500 -0.625000 +v 0.187500 0.937500 -0.625000 +v 0.062500 0.812500 -0.625000 +v -0.062500 0.812500 -0.625000 +v -0.187500 0.937500 -0.625000 +v 0.000000 0.875000 -0.625000 +v -0.132582 0.820082 -0.625000 +v -0.187500 0.687500 -0.625000 +v -0.132582 0.554917 -0.625000 +v 0.000000 0.500000 -0.625000 +v 0.132582 0.554917 -0.625000 +v 0.187500 0.687500 -0.625000 +v 0.132582 0.820082 -0.625000 +v 0.000000 0.875000 5.937500 +v -0.132582 0.820082 5.937500 +v -0.187500 0.687500 5.937500 +v -0.132582 0.554917 5.937500 +v 0.000000 0.500000 5.937500 +v 0.132582 0.554917 5.937500 +v 0.187500 0.687500 5.937500 +v 0.132582 0.820082 5.937500 v -0.250000 0.312500 -1.000000 v -0.125000 0.187500 -1.000000 v 0.125000 0.187500 -1.000000 @@ -155,42 +1071,6 @@ v -0.062500 1.250000 -2.625000 v 0.062500 1.125000 -2.687500 v 0.062500 1.125000 -2.625000 v -0.062500 1.125000 -2.687500 -v 0.000000 1.250000 -2.625000 -v -0.044194 1.231694 -2.625000 -v -0.062500 1.187500 -2.625000 -v -0.044194 1.143306 -2.625000 -v 0.000000 1.125000 -2.625000 -v 0.044194 1.143306 -2.625000 -v 0.062500 1.187500 -2.625000 -v 0.044194 1.231694 -2.625000 -v -0.044194 1.231694 -2.875000 -v 0.000000 1.250000 -2.875000 -v -0.062500 1.187500 -2.875000 -v -0.044194 1.143306 -2.875000 -v 0.000000 1.125000 -2.875000 -v 0.044194 1.143306 -2.875000 -v 0.062500 1.187500 -2.875000 -v 0.044194 1.231694 -2.875000 -v -0.062500 0.750000 -2.875000 -v 0.062500 0.750000 -2.875000 -v -0.062500 1.375000 -2.875000 -v 0.062500 1.375000 -2.875000 -v -0.062500 1.500000 -3.000000 -v 0.062500 1.500000 -3.000000 -v -0.062500 1.375000 -2.937500 -v 0.062500 1.375000 -2.937500 -v -0.062500 1.250000 -2.937500 -v 0.062500 1.250000 -2.937500 -v -0.062500 1.125000 -3.062500 -v 0.062500 1.125000 -3.062500 -v -0.062500 1.062500 -3.187500 -v 0.062500 1.062500 -3.187500 -v -0.062500 0.937500 -3.312500 -v 0.062500 0.937500 -3.312500 -v -0.062500 0.812500 -3.375000 -v 0.062500 0.812500 -3.375000 -v -0.062500 0.750000 -3.375000 -v 0.062500 0.750000 -3.375000 v -0.062500 0.187500 -2.750000 v 0.062500 0.187500 -2.750000 v -0.062500 0.187500 -2.812500 @@ -205,58 +1085,6 @@ v -0.062500 -0.063500 -2.875000 v 0.062500 -0.063500 -2.875000 v -0.062500 -0.188500 -2.750000 v 0.062500 -0.188500 -2.750000 -v -0.125000 0.198188 -2.345635 -v 0.125000 0.198188 -2.345635 -v -0.125000 -0.036735 -2.260129 -v 0.125000 -0.036735 -2.260129 -v -0.125000 -0.426690 -2.783309 -v 0.125000 -0.426690 -2.783309 -v -0.125000 0.176812 -2.404365 -v 0.125000 0.176812 -2.404365 -v -0.125000 -0.058111 -2.318860 -v 0.125000 -0.058111 -2.318860 -v -0.125000 -0.485421 -2.761932 -v 0.125000 -0.485421 -2.761932 -v 0.125000 -0.357163 -2.409548 -v -0.125000 -0.357163 -2.409548 -v 0.125000 -0.298432 -2.430924 -v -0.125000 -0.298432 -2.430924 -v -0.125000 -0.437486 -3.178446 -v 0.125000 -0.437486 -3.178446 -v -0.125000 -0.496217 -3.157070 -v 0.125000 -0.496217 -3.157070 -v -0.125000 -0.736754 -4.000677 -v 0.125000 -0.736754 -4.000677 -v -0.125000 -0.795484 -3.979300 -v 0.125000 -0.795484 -3.979300 -v -0.125000 -0.720741 -4.139421 -v 0.125000 -0.720741 -4.139421 -v -0.125000 -0.699365 -4.080690 -v 0.125000 -0.699365 -4.080690 -v -0.125000 -0.485818 -4.224926 -v 0.125000 -0.485818 -4.224926 -v -0.125000 -0.464442 -4.166195 -v 0.125000 -0.464442 -4.166195 -v -0.125000 -0.325638 -4.150311 -v 0.125000 -0.325638 -4.150311 -v -0.125000 -0.384369 -4.128934 -v 0.125000 -0.384369 -4.128934 -v -0.125000 -0.026370 -3.328080 -v 0.125000 -0.026370 -3.328080 -v -0.125000 -0.085101 -3.306704 -v 0.125000 -0.085101 -3.306704 -v -0.125000 -0.101079 -3.167866 -v 0.125000 -0.101079 -3.167866 -v -0.125000 -0.122456 -3.226596 -v 0.125000 -0.122456 -3.226596 -v -0.125000 -0.336003 -3.082361 -v 0.125000 -0.336003 -3.082361 -v -0.125000 -0.357379 -3.141091 -v 0.125000 -0.357379 -3.141091 -v -0.125000 -0.277272 -3.103737 -v 0.125000 -0.277272 -3.103737 -v -0.125000 -0.336003 -3.082361 -v 0.125000 -0.336003 -3.082361 v -0.125000 1.250000 -0.250000 v 0.125000 1.250000 -0.250000 v -0.125000 1.250000 -0.125000 @@ -281,58 +1109,6 @@ v -0.187500 1.343750 -0.187500 v 0.187500 1.343750 -0.187500 v -0.187500 1.316291 -0.253791 v 0.187500 1.316291 -0.253791 -v -0.125000 1.250000 -0.218750 -v 0.125000 1.250000 -0.218750 -v -0.125000 1.250000 -0.156250 -v 0.125000 1.250000 -0.156250 -v -0.125000 2.000000 -0.218750 -v 0.125000 2.000000 -0.218750 -v -0.125000 2.000000 -0.156250 -v 0.125000 2.000000 -0.156250 -v -0.062500 1.875000 -0.218750 -v 0.062500 1.875000 -0.218750 -v -0.062500 1.875000 -0.156250 -v 0.062500 1.875000 -0.156250 -v -0.062500 1.250000 -0.218750 -v 0.062500 1.250000 -0.218750 -v -0.062500 1.250000 -0.156250 -v 0.062500 1.250000 -0.156250 -v -0.125000 1.062499 7.937500 -v -0.125000 1.312499 7.937500 -v -0.125000 1.062499 7.687500 -v -0.125000 1.312499 7.687500 -v 0.125000 1.062499 7.937500 -v 0.125000 1.312499 7.937500 -v 0.125000 1.062499 7.687500 -v 0.125000 1.312499 7.687500 -v 0.062500 1.124999 7.687500 -v -0.062500 1.124999 7.687500 -v -0.062500 1.124999 7.937500 -v 0.062500 1.124999 7.937500 -v -0.099437 0.786939 5.875000 -v 0.000000 0.828127 5.875000 -v -0.140625 0.687502 5.875000 -v -0.099437 0.588065 5.875000 -v 0.000000 0.546877 5.875000 -v 0.099437 0.588065 5.875000 -v 0.140625 0.687502 5.875000 -v 0.099437 0.786939 5.875000 -v -0.099437 0.786939 6.375000 -v 0.000000 0.828127 6.375000 -v -0.140625 0.687502 6.375000 -v -0.099437 0.588065 6.375000 -v 0.000000 0.546877 6.375000 -v 0.099437 0.588065 6.375000 -v 0.140625 0.687502 6.375000 -v 0.099437 0.786939 6.375000 -v -0.049718 0.737221 6.625000 -v 0.000000 0.757815 6.625000 -v -0.070312 0.687502 6.625000 -v -0.049718 0.637784 6.625000 -v 0.000000 0.617190 6.625000 -v 0.049718 0.637784 6.625000 -v 0.070312 0.687502 6.625000 -v 0.049718 0.737221 6.625000 vt 0.964286 0.130435 vt 0.333333 0.108696 vt 0.964286 0.108696 @@ -344,57 +1120,15 @@ vt 0.964286 0.163043 vt 0.964286 0.076087 vt 0.333333 0.054348 vt 0.964286 0.054348 -vt 0.238095 0.108696 -vt 0.267857 0.076087 -vt 0.285714 0.130435 vt 0.333333 0.076087 vt 0.333333 0.217391 vt 0.333333 0.184783 vt 0.964286 0.021739 vt 0.333333 0.000000 vt 0.964286 0.000000 -vt 0.029762 0.163043 -vt 0.041667 0.130435 -vt 0.047619 0.130435 -vt 0.238095 0.054348 -vt 0.047619 0.021739 -vt 0.238095 0.021739 -vt 0.238095 0.130435 -vt 0.047619 0.108696 -vt 0.238095 0.163043 -vt 0.047619 0.000000 -vt 0.238095 -0.000000 -vt 0.238095 0.217391 -vt 0.047619 0.184783 -vt 0.238095 0.184783 -vt 0.047619 0.163043 -vt 0.238095 0.076087 -vt 0.047619 0.054348 -vt 0.047619 0.076087 -vt 0.000000 0.130435 -vt 0.017857 0.152174 -vt 0.017857 0.163043 -vt 0.041667 0.108696 -vt 0.029762 0.152174 -vt 0.029762 0.086957 -vt 0.029762 0.076087 -vt 0.017857 0.086957 -vt 0.017857 0.076087 -vt 0.005952 0.108696 -vt 0.000000 0.108696 -vt 0.005952 0.130435 -vt 0.113095 0.293478 -vt 0.095238 0.282609 -vt 0.101190 0.250000 vt 0.369715 0.272958 vt 0.357143 0.282467 vt 0.357143 0.217533 -vt 0.149477 0.292260 -vt 0.154684 0.315217 -vt 0.119125 0.315217 -vt 0.154685 0.250000 -vt 0.149477 0.272958 -vt 0.136905 0.282467 vt 0.238095 0.478261 vt 0.267857 0.521739 vt 0.208333 0.521739 @@ -425,80 +1159,12 @@ vt 0.071429 0.630435 vt 0.059524 0.641304 vt 0.059524 0.630435 vt 0.053571 0.641304 -vt 0.928571 0.478234 -vt 0.934539 0.489131 -vt 0.928571 0.500027 -vt 0.845238 0.630435 -vt 0.857143 0.608696 -vt 0.839286 0.543478 -vt 0.839286 0.543478 -vt 0.845238 0.630435 -vt 0.839286 0.652174 vt 0.970238 0.413043 vt 0.976190 0.413043 vt 0.976190 0.434783 vt 0.952381 0.413043 vt 0.958333 0.413043 vt 0.958333 0.434783 -vt 0.827381 0.804348 -vt 0.851190 0.793478 -vt 0.851190 0.804348 -vt 0.851190 0.847826 -vt 0.827381 0.858696 -vt 0.827381 0.847826 -vt 0.886905 0.804348 -vt 0.922619 0.793478 -vt 0.922619 0.804348 -vt 0.886905 0.847826 -vt 0.922619 0.858696 -vt 0.886905 0.858696 -vt 0.880952 0.858696 -vt 0.857143 0.858696 -vt 0.880952 0.793478 -vt 0.857143 0.793478 -vt 0.958333 0.728261 -vt 0.970238 0.739130 -vt 0.952381 0.739130 -vt 0.970238 0.782609 -vt 0.958333 0.793478 -vt 0.952381 0.782609 -vt 0.952381 0.728261 -vt 0.869048 0.739130 -vt 0.869048 0.728261 -vt 0.952381 0.793478 -vt 0.869048 0.782609 -vt 0.863095 0.793478 -vt 0.851190 0.782609 -vt 0.851190 0.739130 -vt 0.863095 0.728261 -vt 0.827381 0.793478 -vt 0.827381 0.782609 -vt 0.827381 0.728261 -vt 0.851190 0.728261 -vt 0.970238 0.782609 -vt 0.958333 0.793478 -vt 0.952381 0.782609 -vt 0.970238 0.739130 -vt 0.958333 0.728261 -vt 0.964286 0.728261 -vt 0.952381 0.739130 -vt 0.869048 0.728261 -vt 0.952381 0.728261 -vt 0.869048 0.793478 -vt 0.869048 0.782609 -vt 0.869048 0.739130 -vt 0.857143 0.728261 -vt 0.863095 0.728261 -vt 0.857143 0.793478 -vt 0.851190 0.782609 -vt 0.851190 0.728261 -vt 0.827381 0.739130 -vt 0.827381 0.728261 -vt 0.851190 0.793478 -vt 0.827381 0.782609 -vt 0.958333 0.804348 -vt 0.958333 0.847826 -vt 0.958333 0.858696 vt 0.886905 0.543478 vt 0.898810 0.521739 vt 0.898810 0.543478 @@ -514,71 +1180,18 @@ vt 0.943452 0.423842 vt 0.943453 0.456450 vt 0.937166 0.451696 vt 0.949738 0.428738 -vt 0.017857 0.456522 -vt -0.000000 0.478261 -vt 0.005952 0.456522 -vt 0.017857 0.445652 -vt 0.053571 0.489130 -vt 0.029762 0.478261 -vt 0.053571 0.478261 -vt 0.059524 0.478261 -vt 0.053571 0.347826 -vt 0.059524 0.347826 -vt 0.023810 0.347826 -vt 0.023810 0.478261 -vt 0.035714 0.456522 -vt 0.047619 0.456522 -vt 0.041667 0.456522 -vt 0.047619 0.347826 -vt 0.041667 0.347826 -vt 0.041667 0.456522 -vt 0.029762 0.347826 -vt -0.000000 0.347826 -vt 0.851190 0.434783 -vt 0.827381 0.478261 -vt 0.827381 0.434783 -vt 0.851190 0.478261 -vt 0.875000 0.478261 -vt 0.869048 0.510870 -vt 0.898810 0.434783 -vt 0.898810 0.478261 -vt 0.875000 0.434783 -vt 0.857143 0.402174 -vt 0.023809 0.923983 -vt 0.015419 0.930330 -vt 0.011943 0.945652 vt 0.333333 0.130435 vt 0.303571 0.163043 vt 0.285714 0.130435 vt 0.285714 0.108696 vt 0.315476 0.076087 -vt 0.267857 0.163043 -vt 0.255952 0.163043 -vt 0.255952 0.076087 -vt 0.285714 0.108696 vt 0.964286 0.217391 vt 0.333333 0.021739 -vt 0.047619 0.217391 -vt 0.113095 0.250000 -vt 0.119048 0.260870 -vt 0.119048 0.282609 -vt 0.101190 0.293478 -vt 0.095238 0.260870 vt 0.344571 0.272958 vt 0.339363 0.250000 vt 0.344571 0.227042 vt 0.369715 0.227042 vt 0.374922 0.250000 -vt 0.149477 0.338175 -vt 0.136905 0.347684 -vt 0.124333 0.338175 -vt 0.124333 0.292260 -vt 0.136905 0.282750 -vt 0.124333 0.272958 -vt 0.119125 0.250000 -vt 0.124333 0.227043 -vt 0.136905 0.217533 -vt 0.149477 0.227043 vt 0.011905 0.750000 vt 0.011905 0.663043 vt -0.000000 0.728261 @@ -589,25 +1202,6 @@ vt 0.077381 0.847826 vt 0.351190 0.478261 vt 0.113095 0.521739 vt 0.077381 0.565217 -vt 0.924352 0.496836 -vt 0.922604 0.489131 -vt 0.924352 0.481426 -vt 0.932791 0.481426 -vt 0.932791 0.496836 -vt 0.839286 0.652174 -vt 0.845238 0.673913 -vt 0.845238 0.652174 -vt 0.886905 0.554348 -vt 0.886905 0.543478 -vt 0.880952 0.576087 -vt 0.869048 0.597826 -vt 0.886905 0.543478 -vt 0.880952 0.576087 -vt 0.886905 0.554348 -vt 0.869048 0.597826 -vt 0.857143 0.608696 -vt 0.845238 0.652174 -vt 0.845238 0.673913 vt 0.970238 0.456522 vt 0.970238 0.434783 vt 0.976190 0.391304 @@ -616,23 +1210,6 @@ vt 0.958333 0.456522 vt 0.952381 0.434783 vt 0.952381 0.456522 vt 0.952381 0.391304 -vt 0.827381 0.793478 -vt 0.851190 0.858696 -vt 0.886905 0.793478 -vt 0.922619 0.847826 -vt 0.964286 0.728261 -vt 0.964286 0.793478 -vt 0.869048 0.793478 -vt 0.857143 0.793478 -vt 0.857143 0.728261 -vt 0.851190 0.793478 -vt 0.827381 0.739130 -vt 0.964286 0.793478 -vt 0.952381 0.793478 -vt 0.851190 0.739130 -vt 0.863095 0.793478 -vt 0.827381 0.793478 -vt 0.958333 0.793478 vt 0.827381 0.521739 vt 0.949738 0.396130 vt 0.952342 0.407609 @@ -644,38 +1221,6 @@ vt 0.937166 0.428738 vt 0.943453 0.423984 vt 0.952342 0.440217 vt 0.949738 0.451696 -vt 0.005952 0.445652 -vt 0.029762 0.489130 -vt 0.041667 0.347826 -vt 0.035714 0.347826 -vt 0.017857 0.347826 -vt 0.005952 0.347826 -vt 0.857143 0.510870 -vt 0.851190 0.521739 -vt 0.875000 0.521739 -vt 0.869048 0.402174 -vt 0.875000 0.391304 -vt 0.851190 0.391304 -vt 0.015419 0.960974 -vt 0.023809 0.967321 -vt 0.032200 0.960974 -vt 0.035676 0.945652 -vt 0.032200 0.930330 -vt -0.000000 0.315217 -vt 0.095238 0.326087 -vt 0.000000 0.326087 -vt -0.000000 0.260870 -vt 0.000000 0.282609 -vt 0.000000 0.228261 -vt 0.095238 0.250000 -vt 0.000000 0.250000 -vt 0.000000 0.217391 -vt 0.095238 0.228261 -vt -0.000000 0.293478 -vt 0.095238 0.315217 -vt 0.095238 0.347826 -vt 0.000000 0.347826 -vt 0.095238 0.293478 vt 1.000000 0.260870 vt 0.375000 0.239130 vt 1.000000 0.239130 @@ -693,23 +1238,6 @@ vt 0.375000 0.347826 vt 0.375000 0.304348 vt 1.000000 0.304348 vt 0.375000 0.282609 -vt 0.339286 0.369565 -vt 0.154762 0.391304 -vt 0.154762 0.369565 -vt 0.339286 0.326087 -vt 0.154762 0.347826 -vt 0.154762 0.326087 -vt 0.339286 0.282609 -vt 0.154762 0.260870 -vt 0.339286 0.260870 -vt 0.339286 0.239130 -vt 0.154762 0.217391 -vt 0.339286 0.217391 -vt 0.339286 0.347826 -vt 0.339286 0.304348 -vt 0.154762 0.304348 -vt 0.154762 0.282609 -vt 0.154762 0.239130 vt 0.095238 0.413043 vt 0.113095 0.456522 vt 0.095238 0.456522 @@ -788,64 +1316,11 @@ vt 0.351190 0.869565 vt 0.827381 0.478261 vt 0.767857 0.521739 vt 0.767857 0.652174 -vt 0.827381 0.673913 -vt 0.827381 0.652174 -vt 0.898810 0.532609 -vt 0.922619 0.521739 -vt 0.922619 0.532609 -vt 0.898810 0.510870 -vt 0.898810 0.521739 -vt 0.898810 0.489130 -vt 0.922619 0.500000 -vt 0.898810 0.500000 -vt 0.898810 0.565217 -vt 0.922619 0.554348 -vt 0.922619 0.565217 -vt 0.922619 0.543478 -vt 0.898810 0.543478 -vt 0.922619 0.510870 -vt 0.898810 0.478261 -vt 0.922619 0.489130 -vt 0.898810 0.554348 -vt 0.827381 0.543478 -vt 0.886905 0.684783 -vt 0.898810 0.663043 -vt 0.898810 0.684783 -vt 0.886905 0.663043 -vt 0.898810 0.641304 -vt 0.886905 0.641304 -vt 0.898810 0.619565 -vt 0.886905 0.619565 -vt 0.898810 0.597826 -vt 0.886905 0.597826 -vt 0.898810 0.576087 -vt 0.886905 0.576087 -vt 0.898810 0.554348 -vt 0.898810 0.543478 vt 0.988095 0.434783 vt 0.988095 0.456522 vt 0.988095 0.413043 vt 0.988095 0.391304 vt 0.958333 0.391304 -vt 0.922619 0.902174 -vt 0.886905 0.902174 -vt 0.851190 0.902174 -vt 0.880952 0.902174 -vt 0.857143 0.902174 -vt 0.952381 0.684783 -vt 0.958333 0.728261 -vt 0.869048 0.684783 -vt 0.863095 0.728261 -vt 0.839286 0.684783 -vt 0.863095 0.684783 -vt 0.958333 0.728261 -vt 0.952381 0.684783 -vt 0.958333 0.684783 -vt 0.869048 0.684783 -vt 0.863095 0.684783 -vt 0.863095 0.728261 -vt 0.839286 0.684783 -vt 0.958333 0.902174 vt 0.934524 0.456522 vt 0.898810 0.467391 vt 0.898810 0.456522 @@ -864,41 +1339,7 @@ vt 0.934524 0.434783 vt 0.898810 0.445652 vt 0.934524 0.445652 vt 0.827381 0.652174 -vt 0.023810 0.880435 -vt -0.000000 0.891304 -vt -0.000000 0.880435 -vt 0.071429 0.815217 -vt 0.023810 0.793478 -vt 0.071429 0.793478 -vt 0.071429 0.771739 -vt 0.023810 0.750000 -vt 0.071429 0.750000 -vt 0.071429 0.902174 -vt 0.071429 0.880435 -vt 0.071429 0.858696 -vt 0.023810 0.836957 -vt 0.071429 0.836957 -vt 0.023810 0.815217 -vt 0.023810 0.771739 -vt 0.071429 0.923913 -vt 0.023810 0.902174 -vt 0.023810 0.858696 -vt 0.011629 0.934783 -vt 0.009966 0.942113 -vt 0.005952 0.945149 -vt -0.000000 0.836957 -vt -0.000000 0.826087 -vt -0.000000 0.815217 -vt -0.000000 0.771739 -vt -0.000000 0.913043 -vt -0.000000 0.902174 -vt -0.000000 0.858696 -vt -0.000000 0.804348 -vt -0.000000 0.793478 -vt -0.000000 0.750000 -vt 0.095238 0.217391 vt 0.375000 0.391304 -vt 0.339286 0.391304 vt 0.071429 0.391304 vt 0.279762 0.717391 vt 0.351190 0.663043 @@ -908,42 +1349,18 @@ vt 0.827381 0.695652 vt 0.779762 0.978261 vt 0.779762 0.695652 vt 0.767857 0.521739 -vt 0.839286 0.673913 -vt 0.922619 0.478261 vt 0.970238 0.391304 -vt 0.827381 0.902174 -vt 0.958333 0.684783 -vt 0.839286 0.728261 -vt 0.839286 0.728261 vt 0.934524 0.478261 -vt 0.023810 0.923913 -vt 0.001938 0.942113 -vt 0.000276 0.934783 -vt 0.001938 0.927453 -vt 0.005952 0.924417 -vt 0.009966 0.927453 -vt -0.000000 0.847826 -vt -0.000000 0.782609 -vt -0.000000 0.869565 -vt -0.000000 0.760870 vn 0.0000 1.0000 0.0000 vn 0.0000 0.0000 1.0000 vn -1.0000 0.0000 0.0000 vn 1.0000 0.0000 0.0000 -vn 0.0000 0.0000 -1.0000 vn 0.7071 0.7071 0.0000 vn -0.7071 0.7071 0.0000 vn -0.7071 -0.7071 0.0000 vn 0.7071 -0.7071 0.0000 vn 0.0000 -1.0000 0.0000 -vn -0.9239 0.3827 0.0000 -vn -0.3827 0.9239 0.0000 -vn 0.3827 -0.9239 0.0000 -vn -0.3827 -0.9239 0.0000 -vn 0.9239 0.3827 0.0000 -vn 0.9239 -0.3827 0.0000 -vn 0.3827 0.9239 0.0000 -vn -0.9239 -0.3827 0.0000 +vn 0.0000 0.0000 -1.0000 vn 0.0000 -0.8174 0.5760 vn 0.0000 -0.5547 0.8321 vn -0.6912 -0.6912 0.2110 @@ -1013,12 +1430,6 @@ vn 0.0000 0.2298 -0.9732 vn 0.0000 -0.2298 -0.9732 vn 0.9668 0.2515 0.0444 vn 0.0000 0.7181 -0.6960 -vn 0.0000 0.3827 0.9239 -vn 0.0000 0.7071 0.7071 -vn 0.0000 -0.4472 -0.8944 -vn 0.0000 0.3827 -0.9239 -vn 0.0000 0.8112 -0.5847 -vn 0.0000 0.5847 -0.8112 vn 0.0000 0.2282 -0.9736 vn 0.0000 0.4444 -0.8958 vn 0.0000 -0.4444 0.8958 @@ -1027,614 +1438,257 @@ vn 0.0000 -0.3827 -0.9239 vn 0.0000 0.2298 0.9732 vn 0.0000 0.4472 0.8944 vn 0.0000 -0.7071 -0.7071 -vn 0.0000 0.3420 0.9397 -vn 0.0000 -0.0436 0.9990 -vn 0.0000 -0.7373 0.6756 -vn 0.0000 -0.9990 -0.0436 -vn 0.0000 0.7373 -0.6756 -vn 0.0000 0.9990 0.0436 -vn 0.0000 0.0436 -0.9990 -vn 0.0000 -0.3420 -0.9397 -vn 0.0000 -0.9990 -0.0438 -vn 0.0000 0.9990 0.0440 -vn 0.0000 -0.6754 -0.7374 -vn 0.0000 0.0434 -0.9991 -vn 0.0000 0.6753 0.7375 -vn 0.0000 -0.0432 0.9991 -vn 0.0000 -0.7370 0.6759 -vn 0.0000 0.7371 -0.6757 -vn 0.0000 -0.6756 -0.7373 -vn 0.0000 0.6756 0.7373 -vn 0.0000 0.9063 0.4226 -vn 0.0000 -0.9063 -0.4226 vn 0.0000 -0.7071 0.7071 +vn 0.0000 0.7071 0.7071 vn 0.0000 0.7071 -0.7071 -vn -0.9627 -0.0000 0.2707 -vn -0.4833 -0.4833 0.7300 -vn -0.6835 -0.0000 0.7300 -vn 0.6835 -0.0000 0.7300 -vn 0.4833 0.4833 0.7300 -vn 0.0000 0.6835 0.7300 -vn -0.6807 0.6807 0.2707 -vn 0.0000 0.9627 0.2707 -vn 0.6807 0.6807 0.2707 -vn 0.9627 0.0000 0.2707 -vn 0.4833 -0.4833 0.7300 -vn 0.6807 -0.6807 0.2707 -vn -0.6807 -0.6807 0.2707 -vn 0.0000 -0.6835 0.7300 -vn -0.4833 0.4833 0.7300 -vn 0.0000 -0.9627 0.2707 vn -0.7016 -0.7016 0.1247 vn -0.9263 0.3529 -0.1323 vn -0.2418 0.6861 0.6861 s off -f 20/1/1 16/2/1 17/3/1 -f 12/4/2 16/2/2 14/5/2 -f 24/6/3 14/7/3 19/8/3 -f 18/9/4 12/10/4 21/11/4 -f 1/12/5 5/13/5 7/14/5 -f 18/9/6 16/2/6 15/15/6 -f 14/7/7 20/1/7 19/8/7 -f 24/6/8 10/16/8 9/17/8 -f 12/10/9 22/18/9 21/11/9 -f 22/18/10 10/19/10 23/20/10 -f 32/21/2 38/22/2 30/23/2 -f 5/24/9 25/25/9 6/26/9 -f 4/27/1 29/28/1 1/12/1 -f 3/29/7 30/23/7 4/27/7 -f 6/26/10 26/30/10 7/31/10 -f 7/32/8 31/33/8 8/34/8 -f 8/34/3 32/35/3 3/29/3 -f 2/36/4 27/37/4 5/24/4 -f 1/12/6 28/38/6 2/36/6 -f 26/39/2 33/40/2 31/41/2 -f 30/23/2 37/42/2 29/28/2 -f 31/41/2 34/43/2 32/21/2 -f 29/28/2 40/44/2 28/45/2 -f 28/45/2 39/46/2 27/47/2 -f 27/47/2 35/48/2 25/49/2 -f 25/49/2 36/50/2 26/39/2 -f 47/51/2 45/52/2 42/53/2 -f 64/54/2 57/55/2 61/56/2 -f 68/57/5 67/58/5 71/59/5 -f 79/60/2 80/61/2 74/62/2 -f 110/63/4 100/64/4 106/65/4 -f 96/66/2 93/67/2 94/68/2 -f 107/69/3 103/70/3 99/71/3 -f 103/70/3 88/72/3 94/73/3 -f 122/74/4 120/75/4 116/76/4 -f 117/77/3 125/78/3 121/79/3 -f 116/76/4 102/80/4 100/64/4 -f 113/81/3 99/71/3 97/82/3 -f 106/65/4 95/83/4 85/84/4 -f 149/85/5 150/86/5 151/87/5 -f 154/88/4 151/87/4 150/86/4 -f 154/89/1 153/90/1 152/91/1 -f 153/90/3 149/85/3 152/92/3 -f 159/93/2 161/94/2 155/95/2 -f 179/96/3 181/97/3 171/98/3 -f 172/99/4 180/100/4 174/101/4 -f 201/102/3 199/103/3 195/104/3 -f 200/105/4 202/106/4 198/107/4 -f 205/108/3 213/109/3 207/110/3 -f 208/111/4 212/112/4 206/113/4 -f 218/114/3 209/115/3 215/116/3 -f 217/117/4 210/118/4 219/119/4 -f 208/111/4 219/120/4 214/121/4 -f 220/122/3 207/110/3 213/123/3 -f 222/124/4 250/125/4 224/126/4 -f 249/127/3 221/128/3 223/129/3 -f 222/130/4 228/131/4 226/132/4 -f 221/133/3 227/134/3 223/129/3 -f 225/135/3 229/136/3 227/134/3 -f 230/137/4 226/138/4 228/131/4 -f 229/136/3 235/139/3 233/140/3 -f 230/137/4 236/141/4 232/142/4 -f 233/143/3 239/144/3 237/145/3 -f 234/146/4 240/147/4 236/148/4 -f 238/149/4 244/150/4 240/151/4 -f 237/145/3 243/152/3 241/153/3 -f 242/154/4 248/155/4 244/156/4 -f 241/153/3 247/157/3 245/158/3 -f 248/159/4 250/160/4 252/161/4 -f 247/162/3 249/163/3 245/158/3 -f 209/115/3 255/164/3 215/116/3 -f 210/118/4 256/165/4 254/166/4 -f 257/167/3 264/168/3 259/169/3 -f 258/170/5 262/171/5 257/167/5 -f 260/172/4 261/173/4 258/170/4 -f 259/174/2 263/175/2 260/172/2 -f 272/176/4 270/177/4 278/178/4 -f 277/179/3 279/180/3 271/181/3 -f 292/182/2 287/183/2 291/184/2 -f 291/184/10 290/185/10 292/182/10 -f 287/186/1 286/187/1 285/188/1 -f 287/189/3 281/190/3 283/191/3 -f 284/192/4 286/187/4 288/193/4 -f 285/188/5 290/194/5 289/195/5 -f 291/196/4 293/197/4 289/195/4 -f 290/194/3 296/198/3 292/199/3 -f 292/182/2 284/192/2 288/193/2 -f 282/200/5 290/194/5 286/187/5 -f 283/201/2 291/184/2 287/183/2 -f 289/195/5 281/190/5 285/188/5 -f 298/202/3 299/203/3 297/204/3 -f 300/205/5 304/206/5 305/207/5 -f 304/206/4 301/208/4 303/209/4 -f 302/210/2 298/202/2 307/211/2 -f 300/205/1 302/210/1 304/206/1 -f 313/212/5 312/213/5 311/214/5 -f 20/1/1 13/215/1 16/2/1 -f 14/5/2 9/216/2 10/217/2 -f 10/217/2 11/218/2 12/4/2 -f 12/4/2 15/219/2 16/2/2 -f 16/2/2 13/215/2 14/5/2 -f 14/5/2 10/217/2 12/4/2 -f 24/6/3 9/17/3 14/7/3 -f 18/9/4 15/15/4 12/10/4 -f 7/14/5 8/220/5 3/221/5 -f 3/221/5 4/27/5 1/12/5 -f 1/12/5 2/222/5 5/13/5 -f 5/13/5 6/223/5 7/14/5 -f 7/14/5 3/221/5 1/12/5 -f 18/9/6 17/3/6 16/2/6 -f 14/7/7 13/215/7 20/1/7 -f 24/6/8 23/224/8 10/16/8 -f 12/10/9 11/225/9 22/18/9 -f 22/18/10 11/225/10 10/19/10 -f 32/21/2 34/43/2 38/22/2 -f 5/24/9 27/37/9 25/25/9 -f 4/27/1 30/23/1 29/28/1 -f 3/29/7 32/35/7 30/23/7 -f 6/26/10 25/25/10 26/30/10 -f 7/32/8 26/226/8 31/33/8 -f 8/34/3 31/33/3 32/35/3 -f 2/36/4 28/38/4 27/37/4 -f 1/12/6 29/28/6 28/38/6 -f 26/39/2 36/50/2 33/40/2 -f 30/23/2 38/22/2 37/42/2 -f 31/41/2 33/40/2 34/43/2 -f 29/28/2 37/42/2 40/44/2 -f 28/45/2 40/44/2 39/46/2 -f 27/47/2 39/46/2 35/48/2 -f 25/49/2 35/48/2 36/50/2 -f 42/53/2 41/227/2 44/228/2 -f 44/228/2 43/229/2 47/51/2 -f 47/51/2 48/230/2 45/52/2 -f 45/52/2 46/231/2 42/53/2 -f 42/53/2 44/228/2 47/51/2 -f 57/55/2 58/232/2 59/233/2 -f 59/233/2 60/234/2 57/55/2 -f 60/234/2 61/56/2 57/55/2 -f 61/56/2 62/235/2 63/236/2 -f 63/236/2 64/54/2 61/56/2 -f 67/58/5 66/237/5 65/238/5 -f 65/238/5 72/239/5 67/58/5 -f 72/239/5 71/59/5 67/58/5 -f 71/59/5 70/240/5 69/241/5 -f 69/241/5 68/57/5 71/59/5 -f 74/62/2 73/242/2 75/243/2 -f 75/243/2 76/244/2 74/62/2 -f 76/244/2 77/245/2 74/62/2 -f 77/245/2 78/246/2 74/62/2 -f 78/246/2 79/60/2 74/62/2 -f 94/68/2 89/247/2 92/248/2 -f 89/247/2 90/249/2 92/248/2 -f 90/249/2 91/250/2 92/248/2 -f 92/248/2 95/251/2 94/68/2 -f 95/251/2 96/66/2 94/68/2 -f 103/70/3 81/252/3 88/72/3 -f 88/72/3 89/253/3 94/73/3 -f 94/73/3 97/82/3 103/70/3 -f 97/82/3 99/71/3 103/70/3 -f 116/76/4 100/64/4 122/74/4 -f 122/74/4 126/254/4 120/75/4 -f 121/79/3 99/71/3 113/81/3 -f 113/81/3 117/77/3 121/79/3 -f 85/84/4 84/255/4 106/65/4 -f 106/65/4 100/64/4 102/80/4 -f 102/80/4 95/83/4 106/65/4 -f 95/83/4 92/256/4 85/84/4 -f 149/85/5 153/90/5 150/86/5 -f 154/89/1 150/86/1 153/90/1 -f 155/95/2 156/257/2 157/258/2 -f 157/258/2 158/259/2 159/93/2 -f 159/93/2 160/260/2 161/94/2 -f 161/94/2 162/261/2 155/95/2 -f 155/95/2 157/258/2 159/93/2 -f 173/262/3 175/263/3 177/264/3 -f 173/262/3 177/264/3 179/96/3 -f 187/265/3 189/266/3 185/267/3 -f 189/266/3 171/98/3 185/267/3 -f 183/268/3 185/267/3 171/98/3 -f 181/97/3 183/268/3 171/98/3 -f 171/98/3 173/262/3 179/96/3 -f 172/99/4 190/269/4 186/270/4 -f 190/269/4 188/271/4 186/270/4 -f 186/270/4 184/272/4 172/99/4 -f 184/272/4 182/273/4 172/99/4 -f 178/274/4 176/275/4 174/101/4 -f 182/273/4 180/100/4 172/99/4 -f 180/100/4 178/274/4 174/101/4 -f 193/276/3 197/277/3 195/104/3 -f 197/277/3 201/102/3 195/104/3 -f 201/102/3 203/278/3 199/103/3 -f 195/104/3 191/279/3 193/276/3 -f 198/107/4 194/280/4 196/281/4 -f 194/280/4 192/282/4 196/281/4 -f 200/105/4 204/283/4 202/106/4 -f 198/107/4 196/281/4 200/105/4 -f 205/108/3 211/284/3 213/109/3 -f 208/111/4 214/285/4 212/112/4 -f 218/114/3 220/286/3 209/115/3 -f 217/117/4 216/287/4 210/118/4 -f 208/111/4 217/117/4 219/120/4 -f 220/122/3 218/114/3 207/110/3 -f 222/124/4 252/288/4 250/125/4 -f 249/127/3 251/289/3 221/128/3 -f 222/130/4 224/126/4 228/131/4 -f 221/133/3 225/290/3 227/134/3 -f 225/135/3 231/291/3 229/136/3 -f 230/137/4 232/292/4 226/138/4 -f 229/136/3 231/293/3 235/139/3 -f 230/137/4 234/294/4 236/141/4 -f 233/143/3 235/295/3 239/144/3 -f 234/146/4 238/149/4 240/147/4 -f 238/149/4 242/154/4 244/150/4 -f 237/145/3 239/296/3 243/152/3 -f 242/154/4 246/297/4 248/155/4 -f 241/153/3 243/298/3 247/157/3 -f 248/159/4 246/297/4 250/160/4 -f 247/162/3 251/299/3 249/163/3 -f 209/115/3 253/300/3 255/164/3 -f 210/118/4 216/287/4 256/165/4 -f 257/167/3 262/171/3 264/168/3 -f 258/170/5 261/173/5 262/171/5 -f 260/172/4 263/175/4 261/173/4 -f 259/174/2 264/301/2 263/175/2 -f 270/177/4 268/302/4 278/178/4 -f 268/302/4 266/303/4 278/178/4 -f 266/303/4 280/304/4 278/178/4 -f 278/178/4 276/305/4 274/306/4 -f 274/306/4 272/176/4 278/178/4 -f 279/180/3 265/307/3 271/181/3 -f 265/307/3 267/308/3 271/181/3 -f 267/308/3 269/309/3 271/181/3 -f 271/181/3 273/310/3 275/311/3 -f 275/311/3 277/179/3 271/181/3 -f 292/182/2 288/193/2 287/183/2 -f 291/184/10 289/312/10 290/185/10 -f 287/186/1 288/313/1 286/187/1 -f 287/189/3 285/188/3 281/190/3 -f 284/192/4 282/200/4 286/187/4 -f 285/188/5 286/187/5 290/194/5 -f 291/196/4 295/314/4 293/197/4 -f 290/194/3 294/315/3 296/198/3 -f 292/182/2 296/316/2 284/192/2 -f 282/200/5 294/315/5 290/194/5 -f 283/201/2 295/317/2 291/184/2 -f 289/195/5 293/197/5 281/190/5 -f 298/202/3 300/205/3 299/203/3 -f 306/318/5 299/319/5 300/205/5 -f 304/206/5 303/320/5 305/207/5 -f 305/207/5 306/318/5 300/205/5 -f 304/206/4 302/210/4 301/208/4 -f 308/321/2 301/322/2 302/210/2 -f 298/202/2 297/323/2 307/211/2 -f 307/211/2 308/321/2 302/210/2 -f 300/205/1 298/202/1 302/210/1 -f 311/214/5 309/324/5 310/325/5 -f 310/325/5 316/326/5 311/214/5 -f 316/326/5 315/327/5 311/214/5 -f 315/327/5 314/328/5 311/214/5 -f 314/328/5 313/212/5 311/214/5 +f 200/352/90 196/353/90 197/354/90 +f 192/355/91 196/353/91 194/356/91 +f 204/357/92 194/358/92 199/359/92 +f 198/360/93 192/361/93 201/362/93 +f 198/360/94 196/353/94 195/363/94 +f 194/358/95 200/352/95 199/359/95 +f 204/357/96 190/364/96 189/365/96 +f 192/361/97 202/366/97 201/362/97 +f 202/366/98 190/367/98 203/368/98 +f 220/369/91 213/370/91 217/371/91 +f 250/372/93 240/373/93 246/374/93 +f 236/375/91 233/376/91 234/377/91 +f 247/378/92 243/379/92 239/380/92 +f 243/379/92 228/381/92 234/382/92 +f 262/383/93 260/384/93 256/385/93 +f 257/386/92 265/387/92 261/388/92 +f 256/385/93 242/389/93 240/373/93 +f 253/390/92 239/380/92 237/391/92 +f 246/374/93 235/392/93 225/393/93 +f 289/394/99 290/395/99 291/396/99 +f 294/397/93 291/396/93 290/395/93 +f 294/398/90 293/399/90 292/400/90 +f 293/399/92 289/394/92 292/401/92 +f 305/402/92 303/403/92 299/404/92 +f 304/405/93 306/406/93 302/407/93 +f 309/408/92 316/409/92 311/410/92 +f 310/411/99 314/412/99 309/408/99 +f 312/413/93 313/414/93 310/411/93 +f 311/415/91 315/416/91 312/413/91 +f 324/417/93 322/418/93 330/419/93 +f 329/420/92 331/421/92 323/422/92 +f 200/352/90 193/423/90 196/353/90 +f 194/356/91 189/424/91 190/425/91 +f 190/425/91 191/426/91 192/355/91 +f 192/355/91 195/427/91 196/353/91 +f 196/353/91 193/423/91 194/356/91 +f 194/356/91 190/425/91 192/355/91 +f 204/357/92 189/365/92 194/358/92 +f 198/360/93 195/363/93 192/361/93 +f 198/360/94 197/354/94 196/353/94 +f 194/358/95 193/423/95 200/352/95 +f 204/357/96 203/428/96 190/364/96 +f 192/361/97 191/429/97 202/366/97 +f 202/366/98 191/429/98 190/367/98 +f 213/370/91 214/430/91 215/431/91 +f 215/431/91 216/432/91 213/370/91 +f 216/432/91 217/371/91 213/370/91 +f 217/371/91 218/433/91 219/434/91 +f 219/434/91 220/369/91 217/371/91 +f 234/377/91 229/435/91 232/436/91 +f 229/435/91 230/437/91 232/436/91 +f 230/437/91 231/438/91 232/436/91 +f 232/436/91 235/439/91 234/377/91 +f 235/439/91 236/375/91 234/377/91 +f 243/379/92 221/440/92 228/381/92 +f 228/381/92 229/441/92 234/382/92 +f 234/382/92 237/391/92 243/379/92 +f 237/391/92 239/380/92 243/379/92 +f 256/385/93 240/373/93 262/383/93 +f 262/383/93 266/442/93 260/384/93 +f 261/388/92 239/380/92 253/390/92 +f 253/390/92 257/386/92 261/388/92 +f 225/393/93 224/443/93 246/374/93 +f 246/374/93 240/373/93 242/389/93 +f 242/389/93 235/392/93 246/374/93 +f 235/392/93 232/444/93 225/393/93 +f 289/394/99 293/399/99 290/395/99 +f 294/398/90 290/395/90 293/399/90 +f 297/445/92 301/446/92 299/404/92 +f 301/446/92 305/402/92 299/404/92 +f 305/402/92 307/447/92 303/403/92 +f 299/404/92 295/448/92 297/445/92 +f 302/407/93 298/449/93 300/450/93 +f 298/449/93 296/451/93 300/450/93 +f 304/405/93 308/452/93 306/406/93 +f 302/407/93 300/450/93 304/405/93 +f 309/408/92 314/412/92 316/409/92 +f 310/411/99 313/414/99 314/412/99 +f 312/413/93 315/416/93 313/414/93 +f 311/415/91 316/453/91 315/416/91 +f 322/418/93 320/454/93 330/419/93 +f 320/454/93 318/455/93 330/419/93 +f 318/455/93 332/456/93 330/419/93 +f 330/419/93 328/457/93 326/458/93 +f 326/458/93 324/417/93 330/419/93 +f 331/421/92 317/459/92 323/422/92 +f 317/459/92 319/460/92 323/422/92 +f 319/460/92 321/461/92 323/422/92 +f 323/422/92 325/462/92 327/463/92 +f 327/463/92 329/420/92 323/422/92 s 1 -f 39/329/11 43/330/12 35/331/12 -f 38/332/13 45/52/14 37/333/14 -f 33/334/15 42/335/16 34/336/16 -f 34/336/16 46/231/13 38/332/13 -f 36/337/17 41/338/15 33/334/15 -f 40/339/18 47/340/11 39/329/11 -f 35/331/12 44/341/17 36/342/17 -f 37/333/14 48/343/18 40/339/18 -f 55/344/4 62/345/9 54/346/9 -f 53/347/10 60/348/8 52/349/8 -f 51/350/3 58/351/7 50/352/7 -f 56/353/6 63/354/4 55/344/4 -f 54/346/9 61/355/10 53/356/10 -f 52/349/8 59/357/3 51/350/3 -f 50/352/7 57/358/1 49/359/1 -f 49/359/1 64/360/6 56/353/6 -f 68/361/8 77/362/10 76/363/8 -f 66/364/7 75/365/3 73/366/7 -f 72/367/6 79/368/4 71/369/4 -f 70/370/9 77/371/10 69/372/10 -f 67/373/3 76/363/8 75/365/3 -f 65/374/1 73/366/7 74/375/1 -f 65/374/1 80/376/6 72/367/6 -f 71/369/4 78/377/9 70/370/9 -f 87/378/19 83/379/20 86/380/19 -f 103/381/21 82/382/8 81/383/8 -f 86/380/22 84/384/23 85/385/24 -f 87/378/25 81/383/26 82/382/26 -f 90/386/27 88/387/28 87/378/25 -f 91/388/29 85/385/24 92/389/29 -f 90/386/30 86/380/19 91/388/30 -f 105/390/31 84/384/9 83/379/9 -f 82/382/10 105/390/32 83/379/10 -f 93/67/1 151/391/33 98/392/34 -f 94/73/7 98/392/35 97/82/36 -f 102/80/37 96/66/6 95/83/6 -f 111/393/38 107/394/8 99/395/39 -f 101/396/34 152/397/40 149/398/33 -f 104/399/32 109/400/10 105/390/32 -f 105/390/31 110/63/9 106/401/41 -f 107/394/8 104/399/42 103/381/21 -f 108/402/10 112/403/43 109/400/10 -f 110/63/9 112/403/44 100/404/45 -f 97/82/36 114/405/46 113/406/47 -f 101/396/48 102/80/37 115/407/49 -f 152/397/40 119/408/50 118/409/50 -f 113/406/47 118/409/51 117/410/51 -f 116/411/52 119/408/53 115/407/49 -f 111/393/43 124/412/54 112/403/43 -f 99/395/39 123/413/55 111/393/38 -f 112/403/44 122/414/56 100/404/45 -f 123/413/54 128/415/57 124/412/54 -f 123/413/55 125/416/58 127/417/58 -f 124/412/59 126/254/60 122/414/56 -f 119/418/61 130/419/62 118/420/63 -f 117/421/64 130/419/62 129/422/65 -f 120/423/66 131/424/67 119/418/61 -f 127/417/68 136/425/69 128/415/70 -f 127/417/68 133/426/71 135/427/72 -f 128/415/70 134/428/73 126/254/74 -f 135/429/5 134/428/75 136/430/5 -f 140/431/76 137/432/5 138/433/5 -f 138/434/67 144/435/77 140/436/78 -f 137/437/62 143/438/79 141/439/63 -f 137/437/62 142/440/61 138/434/67 -f 131/424/80 144/435/77 142/440/81 -f 142/440/81 130/419/82 131/424/80 -f 130/419/82 143/438/79 129/422/65 -f 146/441/3 129/442/65 143/443/79 -f 129/442/65 133/444/71 125/445/83 -f 117/446/64 129/442/65 125/445/83 -f 145/447/84 148/448/85 147/449/84 -f 134/428/73 132/450/86 126/451/74 -f 132/450/86 120/452/66 126/451/74 -f 133/453/75 147/449/84 134/428/75 -f 132/450/86 147/454/4 148/455/4 -f 115/407/49 102/80/37 116/411/52 -f 114/405/46 97/82/36 98/392/35 -f 151/391/33 114/405/87 98/392/34 -f 174/101/88 175/456/89 173/457/88 -f 156/458/7 164/459/1 163/460/7 -f 162/461/6 164/459/1 155/462/1 -f 160/463/9 169/464/4 161/465/4 -f 159/466/10 166/467/8 167/468/10 -f 156/458/7 165/469/3 157/470/3 -f 161/465/4 170/471/6 162/461/6 -f 159/472/10 168/473/9 160/463/9 -f 157/470/3 166/467/8 158/474/8 -f 172/99/2 173/457/88 171/475/2 -f 176/476/90 177/477/85 175/478/90 -f 178/479/85 179/480/91 177/477/85 -f 180/481/91 181/482/92 179/480/91 -f 182/483/92 183/484/92 181/482/92 -f 184/485/92 185/486/93 183/484/92 -f 186/487/93 187/488/84 185/486/93 -f 188/271/84 189/489/5 187/488/84 -f 198/107/94 193/276/95 194/280/95 -f 191/279/96 196/490/97 192/491/96 -f 202/106/98 197/277/94 198/107/94 -f 195/104/97 200/492/99 196/490/97 -f 199/103/99 204/493/100 200/492/99 -f 204/494/101 201/102/98 202/106/98 -f 205/108/102 208/111/103 206/113/102 -f 218/114/104 216/287/105 217/117/104 -f 219/119/106 209/495/107 220/496/106 -f 213/497/108 212/112/109 214/285/108 -f 207/110/103 217/117/104 208/111/103 -f 214/121/108 220/498/106 213/499/108 -f 250/125/103 223/129/104 224/126/104 -f 221/500/106 252/501/108 222/130/106 -f 223/129/104 228/131/110 224/126/104 -f 222/130/106 225/502/111 221/500/106 -f 227/134/110 230/137/112 228/131/110 -f 229/136/112 234/294/113 230/137/112 -f 232/503/114 225/502/111 226/132/111 -f 232/503/114 235/504/115 231/505/114 -f 236/506/115 239/507/116 235/508/115 -f 233/143/113 238/149/117 234/146/113 -f 237/145/117 242/154/107 238/149/117 -f 240/151/116 243/509/105 239/507/116 -f 244/150/105 247/510/118 243/509/105 -f 241/153/107 246/297/119 242/154/107 -f 248/511/118 251/512/108 247/510/118 -f 245/158/119 250/160/103 246/297/119 -f 210/118/107 253/513/120 209/495/107 -f 215/116/105 256/165/121 216/287/105 -f 149/398/33 96/66/1 101/396/34 -f 93/67/1 149/398/33 151/391/33 -f 266/514/5 267/515/101 265/516/5 -f 268/517/101 269/518/10 267/515/101 -f 270/519/10 271/520/122 269/521/10 -f 272/522/122 273/523/2 271/520/122 -f 274/524/2 275/525/89 273/523/2 -f 276/526/89 277/527/1 275/525/89 -f 278/528/1 279/529/123 277/527/1 -f 280/530/123 265/516/5 279/529/123 -f 96/66/6 102/80/37 101/396/48 -f 98/392/35 94/73/7 93/67/7 -f 146/531/85 140/431/76 148/448/85 -f 319/532/124 328/533/125 327/534/126 -f 316/535/6 323/536/4 315/537/4 -f 314/538/9 321/539/10 313/540/10 -f 312/541/8 319/532/3 311/542/3 -f 309/543/7 318/544/1 310/545/1 -f 310/545/1 324/546/6 316/535/6 -f 315/537/4 322/547/9 314/538/9 -f 313/548/10 320/549/8 312/541/8 -f 311/542/3 317/550/7 309/543/7 -f 331/551/127 332/552/128 326/553/129 -f 317/550/130 326/554/129 318/544/131 -f 324/546/132 326/555/129 332/556/128 -f 323/536/133 330/557/134 322/547/135 -f 320/549/136 329/558/137 328/559/125 -f 319/532/124 325/560/138 317/550/130 -f 323/536/133 332/561/128 331/562/127 -f 322/547/135 329/563/137 321/539/139 -f 39/329/11 47/340/11 43/330/12 -f 38/332/13 46/231/13 45/52/14 -f 33/334/15 41/338/15 42/335/16 -f 34/336/16 42/335/16 46/231/13 -f 36/337/17 44/564/17 41/338/15 -f 40/339/18 48/343/18 47/340/11 -f 35/331/12 43/330/12 44/341/17 -f 37/333/14 45/52/14 48/343/18 -f 55/344/4 63/354/4 62/345/9 -f 53/347/10 61/565/10 60/348/8 -f 51/350/3 59/357/3 58/351/7 -f 56/353/6 64/360/6 63/354/4 -f 54/346/9 62/345/9 61/355/10 -f 52/349/8 60/348/8 59/357/3 -f 50/352/7 58/351/7 57/358/1 -f 49/359/1 57/358/1 64/360/6 -f 68/361/8 69/566/10 77/362/10 -f 66/364/7 67/373/3 75/365/3 -f 72/367/6 80/376/6 79/368/4 -f 70/370/9 78/377/9 77/371/10 -f 67/373/3 68/361/8 76/363/8 -f 65/374/1 66/364/7 73/366/7 -f 65/374/1 74/375/1 80/376/6 -f 71/369/4 79/368/4 78/377/9 -f 87/378/19 82/382/20 83/379/20 -f 103/381/21 104/399/42 82/382/8 -f 86/380/22 83/379/23 84/384/23 -f 87/378/25 88/387/28 81/383/26 -f 90/386/27 89/567/27 88/387/28 -f 91/388/29 86/380/22 85/385/24 -f 90/386/30 87/378/19 86/380/19 -f 105/390/31 106/401/41 84/384/9 -f 82/382/10 104/399/32 105/390/32 -f 111/393/38 108/402/8 107/394/8 -f 101/396/34 115/407/87 152/397/40 -f 104/399/32 108/402/10 109/400/10 -f 105/390/31 109/400/9 110/63/9 -f 107/394/8 108/402/8 104/399/42 -f 108/402/10 111/393/43 112/403/43 -f 110/63/9 109/400/9 112/403/44 -f 118/409/50 114/405/87 154/568/40 -f 152/397/40 115/407/87 119/408/50 -f 118/409/50 154/568/40 152/397/40 -f 113/406/47 114/405/46 118/409/51 -f 116/411/52 120/569/53 119/408/53 -f 111/393/43 123/413/54 124/412/54 -f 99/395/39 121/570/140 123/413/55 -f 112/403/44 124/412/59 122/414/56 -f 123/413/54 127/417/57 128/415/57 -f 123/413/55 121/570/140 125/416/58 -f 124/412/59 128/415/60 126/254/60 -f 119/418/61 131/424/67 130/419/62 -f 117/421/64 118/420/63 130/419/62 -f 120/423/66 132/571/86 131/424/67 -f 127/417/68 135/427/72 136/425/69 -f 127/417/68 125/416/83 133/426/71 -f 128/415/70 136/425/69 134/428/73 -f 135/429/5 133/453/75 134/428/75 -f 140/431/76 139/572/76 137/432/5 -f 138/434/67 142/440/61 144/435/77 -f 137/437/62 139/573/141 143/438/79 -f 137/437/62 141/439/63 142/440/61 -f 131/424/80 132/571/86 144/435/77 -f 142/440/81 141/439/142 130/419/82 -f 130/419/82 141/439/142 143/438/79 -f 143/443/79 139/574/141 146/441/3 -f 146/441/3 145/575/3 129/442/65 -f 129/442/65 145/575/3 133/444/71 -f 145/447/84 146/531/85 148/448/85 -f 134/428/73 147/454/4 132/450/86 -f 133/453/75 145/447/84 147/449/84 -f 148/455/4 140/431/78 144/435/77 -f 144/435/77 132/450/86 148/455/4 -f 151/391/33 154/568/40 114/405/87 -f 174/101/88 176/576/89 175/456/89 -f 156/458/7 155/462/1 164/459/1 -f 162/461/6 170/471/6 164/459/1 -f 160/463/9 168/473/9 169/464/4 -f 159/466/10 158/474/8 166/467/8 -f 156/458/7 163/460/7 165/469/3 -f 161/465/4 169/464/4 170/471/6 -f 159/472/10 167/577/10 168/473/9 -f 157/470/3 165/469/3 166/467/8 -f 172/99/2 174/101/88 173/457/88 -f 176/476/90 178/479/85 177/477/85 -f 178/479/85 180/481/91 179/480/91 -f 180/481/91 182/483/92 181/482/92 -f 182/483/92 184/485/92 183/484/92 -f 184/485/92 186/487/93 185/486/93 -f 186/487/93 188/271/84 187/488/84 -f 188/271/84 190/269/5 189/489/5 -f 198/107/94 197/277/94 193/276/95 -f 191/279/96 195/104/97 196/490/97 -f 202/106/98 201/102/98 197/277/94 -f 195/104/97 199/103/99 200/492/99 -f 199/103/99 203/278/100 204/493/100 -f 204/494/101 203/578/101 201/102/98 -f 205/108/102 207/110/103 208/111/103 -f 218/114/104 215/116/105 216/287/105 -f 219/119/106 210/118/107 209/495/107 -f 213/497/108 211/579/109 212/112/109 -f 207/110/103 218/114/104 217/117/104 -f 214/121/108 219/120/106 220/498/106 -f 250/125/103 249/127/103 223/129/104 -f 221/500/106 251/580/108 252/501/108 -f 223/129/104 227/134/110 228/131/110 -f 222/130/106 226/132/111 225/502/111 -f 227/134/110 229/136/112 230/137/112 -f 229/136/112 233/140/113 234/294/113 -f 232/503/114 231/505/114 225/502/111 -f 232/503/114 236/581/115 235/504/115 -f 236/506/115 240/151/116 239/507/116 -f 233/143/113 237/145/117 238/149/117 -f 237/145/117 241/153/107 242/154/107 -f 240/151/116 244/150/105 243/509/105 -f 244/150/105 248/511/118 247/510/118 -f 241/153/107 245/158/119 246/297/119 -f 248/511/118 252/582/108 251/512/108 -f 245/158/119 249/163/103 250/160/103 -f 210/118/107 254/166/120 253/513/120 -f 215/116/105 255/164/121 256/165/121 -f 93/67/1 96/66/1 149/398/33 -f 266/514/5 268/517/101 267/515/101 -f 268/517/101 270/583/10 269/518/10 -f 270/519/10 272/522/122 271/520/122 -f 272/522/122 274/524/2 273/523/2 -f 274/524/2 276/526/89 275/525/89 -f 276/526/89 278/528/1 277/527/1 -f 278/528/1 280/530/123 279/529/123 -f 280/530/123 266/514/5 265/516/5 -f 146/531/85 139/572/76 140/431/76 -f 319/532/124 320/549/136 328/533/125 -f 316/535/6 324/546/6 323/536/4 -f 314/538/9 322/547/9 321/539/10 -f 312/541/8 320/549/8 319/532/3 -f 309/543/7 317/550/7 318/544/1 -f 310/545/1 318/544/1 324/546/6 -f 315/537/4 323/536/4 322/547/9 -f 313/548/10 321/584/10 320/549/8 -f 311/542/3 319/532/3 317/550/7 -f 326/553/129 325/585/138 327/586/126 -f 327/586/126 328/587/125 326/553/129 -f 328/587/125 329/588/137 326/553/129 -f 329/588/137 330/589/134 326/553/129 -f 330/589/134 331/551/127 326/553/129 -f 317/550/130 325/590/138 326/554/129 -f 324/546/132 318/544/131 326/555/129 -f 323/536/133 331/591/127 330/557/134 -f 320/549/136 321/584/139 329/558/137 -f 319/532/124 327/592/126 325/560/138 -f 323/536/133 324/546/132 332/561/128 -f 322/547/135 330/593/134 329/563/137 +f 211/464/93 218/465/97 210/466/97 +f 209/467/98 216/468/96 208/469/96 +f 207/470/92 214/471/95 206/472/95 +f 212/473/94 219/474/93 211/464/93 +f 210/466/97 217/475/98 209/476/98 +f 208/469/96 215/477/92 207/470/92 +f 206/472/95 213/478/90 205/479/90 +f 205/479/90 220/480/94 212/473/94 +f 227/481/100 223/482/101 226/483/100 +f 243/484/102 222/485/96 221/486/96 +f 226/483/103 224/487/104 225/488/105 +f 227/481/106 221/486/107 222/485/107 +f 230/489/108 228/490/109 227/481/106 +f 231/491/110 225/488/105 232/492/110 +f 230/489/111 226/483/100 231/491/111 +f 245/493/112 224/487/97 223/482/97 +f 222/485/98 245/493/113 223/482/98 +f 233/376/90 291/494/114 238/495/115 +f 234/382/95 238/495/116 237/391/117 +f 242/389/118 236/375/94 235/392/94 +f 251/496/119 247/497/96 239/498/120 +f 241/499/115 292/500/121 289/501/114 +f 244/502/113 249/503/98 245/493/113 +f 245/493/112 250/372/97 246/504/122 +f 247/497/96 244/502/123 243/484/102 +f 248/505/98 252/506/124 249/503/98 +f 250/372/97 252/506/125 240/507/126 +f 237/391/117 254/508/127 253/509/128 +f 241/499/129 242/389/118 255/510/130 +f 292/500/121 259/511/131 258/512/131 +f 253/509/128 258/512/132 257/513/132 +f 256/514/133 259/511/134 255/510/130 +f 251/496/124 264/515/135 252/506/124 +f 239/498/120 263/516/136 251/496/119 +f 252/506/125 262/517/137 240/507/126 +f 263/516/135 268/518/138 264/515/135 +f 263/516/136 265/519/139 267/520/139 +f 264/515/140 266/442/141 262/517/137 +f 259/521/142 270/522/143 258/523/144 +f 257/524/145 270/522/143 269/525/146 +f 260/526/147 271/527/148 259/521/142 +f 267/520/149 276/528/150 268/518/151 +f 267/520/149 273/529/152 275/530/153 +f 268/518/151 274/531/154 266/442/155 +f 275/532/99 274/531/156 276/533/99 +f 280/534/157 277/535/99 278/536/99 +f 278/537/148 284/538/158 280/539/159 +f 277/540/143 283/541/160 281/542/144 +f 277/540/143 282/543/142 278/537/148 +f 271/527/161 284/538/158 282/543/162 +f 282/543/162 270/522/163 271/527/161 +f 270/522/163 283/541/160 269/525/146 +f 286/544/92 269/545/146 283/546/160 +f 269/545/146 273/547/152 265/548/164 +f 257/549/145 269/545/146 265/548/164 +f 285/550/165 288/551/166 287/552/165 +f 274/531/154 272/553/167 266/554/155 +f 272/553/167 260/555/147 266/554/155 +f 273/556/156 287/552/165 274/531/156 +f 272/553/167 287/557/93 288/558/93 +f 255/510/130 242/389/118 256/514/133 +f 254/508/127 237/391/117 238/495/116 +f 291/494/114 254/508/168 238/495/115 +f 302/407/169 297/445/170 298/449/170 +f 295/448/171 300/559/172 296/560/171 +f 306/406/173 301/446/169 302/407/169 +f 299/404/172 304/561/174 300/559/172 +f 303/403/174 308/562/175 304/561/174 +f 308/563/176 305/402/173 306/406/173 +f 289/501/114 236/375/90 241/499/115 +f 233/376/90 289/501/114 291/494/114 +f 318/564/99 319/565/176 317/566/99 +f 320/567/176 321/568/98 319/565/176 +f 322/569/98 323/570/177 321/571/98 +f 324/572/177 325/573/91 323/570/177 +f 326/574/91 327/575/178 325/573/91 +f 328/576/178 329/577/90 327/575/178 +f 330/578/90 331/579/179 329/577/90 +f 332/580/179 317/566/99 331/579/179 +f 236/375/94 242/389/118 241/499/129 +f 238/495/116 234/382/95 233/376/95 +f 286/581/166 280/534/157 288/551/166 +f 211/464/93 219/474/93 218/465/97 +f 209/467/98 217/582/98 216/468/96 +f 207/470/92 215/477/92 214/471/95 +f 212/473/94 220/480/94 219/474/93 +f 210/466/97 218/465/97 217/475/98 +f 208/469/96 216/468/96 215/477/92 +f 206/472/95 214/471/95 213/478/90 +f 205/479/90 213/478/90 220/480/94 +f 227/481/100 222/485/101 223/482/101 +f 243/484/102 244/502/123 222/485/96 +f 226/483/103 223/482/104 224/487/104 +f 227/481/106 228/490/109 221/486/107 +f 230/489/108 229/583/108 228/490/109 +f 231/491/110 226/483/103 225/488/105 +f 230/489/111 227/481/100 226/483/100 +f 245/493/112 246/504/122 224/487/97 +f 222/485/98 244/502/113 245/493/113 +f 251/496/119 248/505/96 247/497/96 +f 241/499/115 255/510/168 292/500/121 +f 244/502/113 248/505/98 249/503/98 +f 245/493/112 249/503/97 250/372/97 +f 247/497/96 248/505/96 244/502/123 +f 248/505/98 251/496/124 252/506/124 +f 250/372/97 249/503/97 252/506/125 +f 258/512/131 254/508/168 294/584/121 +f 292/500/121 255/510/168 259/511/131 +f 258/512/131 294/584/121 292/500/121 +f 253/509/128 254/508/127 258/512/132 +f 256/514/133 260/585/134 259/511/134 +f 251/496/124 263/516/135 264/515/135 +f 239/498/120 261/586/180 263/516/136 +f 252/506/125 264/515/140 262/517/137 +f 263/516/135 267/520/138 268/518/138 +f 263/516/136 261/586/180 265/519/139 +f 264/515/140 268/518/141 266/442/141 +f 259/521/142 271/527/148 270/522/143 +f 257/524/145 258/523/144 270/522/143 +f 260/526/147 272/587/167 271/527/148 +f 267/520/149 275/530/153 276/528/150 +f 267/520/149 265/519/164 273/529/152 +f 268/518/151 276/528/150 274/531/154 +f 275/532/99 273/556/156 274/531/156 +f 280/534/157 279/588/157 277/535/99 +f 278/537/148 282/543/142 284/538/158 +f 277/540/143 279/589/181 283/541/160 +f 277/540/143 281/542/144 282/543/142 +f 271/527/161 272/587/167 284/538/158 +f 282/543/162 281/542/182 270/522/163 +f 270/522/163 281/542/182 283/541/160 +f 283/546/160 279/590/181 286/544/92 +f 286/544/92 285/591/92 269/545/146 +f 269/545/146 285/591/92 273/547/152 +f 285/550/165 286/581/166 288/551/166 +f 274/531/154 287/557/93 272/553/167 +f 273/556/156 285/550/165 287/552/165 +f 288/558/93 280/534/159 284/538/158 +f 284/538/158 272/553/167 288/558/93 +f 291/494/114 294/584/121 254/508/168 +f 302/407/169 301/446/169 297/445/170 +f 295/448/171 299/404/172 300/559/172 +f 306/406/173 305/402/173 301/446/169 +f 299/404/172 303/403/174 304/561/174 +f 303/403/174 307/447/175 308/562/175 +f 308/563/176 307/592/176 305/402/173 +f 233/376/90 236/375/90 289/501/114 +f 318/564/99 320/567/176 319/565/176 +f 320/567/176 322/593/98 321/568/98 +f 322/569/98 324/572/177 323/570/177 +f 324/572/177 326/574/91 325/573/91 +f 326/574/91 328/576/178 327/575/178 +f 328/576/178 330/578/90 329/577/90 +f 330/578/90 332/580/179 331/579/179 +f 332/580/179 318/564/99 317/566/99 +f 286/581/166 279/588/157 280/534/157 diff --git a/src/main/resources/assets/hbm/models/weapons/liberator.obj b/src/main/resources/assets/hbm/models/weapons/liberator.obj index c78b00ba7..c98168d16 100644 --- a/src/main/resources/assets/hbm/models/weapons/liberator.obj +++ b/src/main/resources/assets/hbm/models/weapons/liberator.obj @@ -1,6 +1,938 @@ # Blender v2.79 (sub 0) OBJ File: 'liberator.blend' # www.blender.org -o Cube_Cube.001 +o Shell4 +v -0.250000 0.437500 0.000000 +v -0.343750 0.412380 0.000000 +v -0.412380 0.343750 0.000000 +v -0.437500 0.250000 0.000000 +v -0.412380 0.156250 0.000000 +v -0.343750 0.087620 0.000000 +v -0.250000 0.062500 0.000000 +v -0.156250 0.087620 0.000000 +v -0.087620 0.156250 0.000000 +v -0.062500 0.250000 0.000000 +v -0.087620 0.343750 0.000000 +v -0.156250 0.412380 0.000000 +v -0.250000 0.437500 1.000000 +v -0.343750 0.412380 1.000000 +v -0.412380 0.343750 1.000000 +v -0.437500 0.250000 1.000000 +v -0.412380 0.156250 1.000000 +v -0.343750 0.087620 1.000000 +v -0.250000 0.062500 1.000000 +v -0.156250 0.087620 1.000000 +v -0.087620 0.156250 1.000000 +v -0.062500 0.250000 1.000000 +v -0.087620 0.343750 1.000000 +v -0.156250 0.412380 1.000000 +v -0.250000 0.460938 0.000000 +v -0.355469 0.432677 0.000000 +v -0.432677 0.355469 0.000000 +v -0.460938 0.250000 0.000000 +v -0.432677 0.144531 0.000000 +v -0.355469 0.067323 0.000000 +v -0.250000 0.039062 0.000000 +v -0.144531 0.067322 0.000000 +v -0.067323 0.144531 0.000000 +v -0.039062 0.250000 0.000000 +v -0.067323 0.355469 0.000000 +v -0.144531 0.432677 0.000000 +v -0.250000 0.460938 -0.062500 +v -0.355469 0.432677 -0.062500 +v -0.432677 0.355469 -0.062500 +v -0.460938 0.250000 -0.062500 +v -0.432677 0.144531 -0.062500 +v -0.355469 0.067323 -0.062500 +v -0.250000 0.039062 -0.062500 +v -0.144531 0.067322 -0.062500 +v -0.067323 0.144531 -0.062500 +v -0.039062 0.250000 -0.062500 +v -0.067323 0.355469 -0.062500 +v -0.144531 0.432677 -0.062500 +vt 0.185185 0.500000 +vt 0.189815 0.488636 +vt 0.189815 0.500000 +vt 0.185185 0.431818 +vt 0.189815 0.443182 +vt 0.185185 0.443182 +vt 0.185185 0.409091 +vt 0.189815 0.397727 +vt 0.189815 0.409091 +vt 0.189815 0.511364 +vt 0.185185 0.511364 +vt 0.189815 0.454545 +vt 0.185185 0.454545 +vt 0.185185 0.465909 +vt 0.189815 0.477273 +vt 0.185185 0.477273 +vt 0.189815 0.420455 +vt 0.185185 0.420455 +vt 0.189815 0.522727 +vt 0.185185 0.522727 +vt 0.189815 0.465909 +vt 0.185185 0.488636 +vt 0.189815 0.431818 +vt 0.185185 0.534091 +vt 0.189815 0.534091 +vt 0.210648 0.437320 +vt 0.196742 0.427467 +vt 0.210648 0.397907 +vt 0.196303 0.446021 +vt 0.220365 0.446021 +vt 0.208334 0.471595 +vt 0.185185 0.397727 +vt 0.224554 0.427467 +vt 0.218677 0.434680 +vt 0.202619 0.434680 +vt 0.194591 0.417614 +vt 0.196742 0.407760 +vt 0.202619 0.400547 +vt 0.218677 0.400547 +vt 0.224554 0.407760 +vt 0.226705 0.417614 +vt 0.201388 0.469311 +vt 0.196303 0.463070 +vt 0.194441 0.454545 +vt 0.201388 0.439780 +vt 0.208334 0.437496 +vt 0.215280 0.439780 +vt 0.222226 0.454545 +vt 0.220365 0.463070 +vt 0.215280 0.469311 +vt 0.111111 0.488636 +vt 0.111111 0.431818 +vt 0.111111 0.397727 +vt 0.111111 0.500000 +vt 0.111111 0.443182 +vt 0.111111 0.465909 +vt 0.111111 0.409091 +vt 0.111111 0.511364 +vt 0.111111 0.454545 +vt 0.111111 0.477273 +vt 0.111111 0.420455 +vt 0.111111 0.522727 +vt 0.194444 0.454545 +vt 0.194444 0.477273 +vt 0.194444 0.420455 +vt 0.194444 0.522727 +vt 0.194444 0.465909 +vt 0.194444 0.488636 +vt 0.194444 0.431818 +vt 0.194444 0.534091 +vt 0.194444 0.500000 +vt 0.194444 0.443182 +vt 0.194444 0.409091 +vt 0.194444 0.511364 +vt 0.111111 0.534091 +vt 0.194444 0.397727 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn -1.0000 -0.0000 0.0000 +vn -0.8660 0.5000 0.0000 +vn 0.8660 0.5000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.5000 -0.8660 0.0000 +vn -0.0000 -1.0000 0.0000 +vn -0.8660 -0.5000 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn -0.5000 -0.8660 0.0000 +s off +f 4/1/1 27/2/1 28/3/1 +f 10/4/1 35/5/1 11/6/1 +f 8/7/1 31/8/1 32/9/1 +f 4/1/1 29/10/1 5/11/1 +f 11/6/1 36/12/1 12/13/1 +f 1/14/1 26/15/1 2/16/1 +f 8/7/1 33/17/1 9/18/1 +f 5/11/1 30/19/1 6/20/1 +f 1/14/1 36/12/1 25/21/1 +f 2/16/1 27/2/1 3/22/1 +f 10/4/1 33/17/1 34/23/1 +f 7/24/1 30/19/1 31/25/1 +f 37/26/2 47/27/2 43/28/2 +f 17/29/1 21/30/1 13/31/1 +f 4/1/1 3/22/1 27/2/1 +f 10/4/1 34/23/1 35/5/1 +f 8/7/1 7/32/1 31/8/1 +f 4/1/1 28/3/1 29/10/1 +f 11/6/1 35/5/1 36/12/1 +f 1/14/1 25/21/1 26/15/1 +f 8/7/1 32/9/1 33/17/1 +f 5/11/1 29/10/1 30/19/1 +f 1/14/1 12/13/1 36/12/1 +f 2/16/1 26/15/1 27/2/1 +f 10/4/1 9/18/1 33/17/1 +f 7/24/1 6/20/1 30/19/1 +f 39/33/2 38/34/2 37/26/2 +f 37/26/2 48/35/2 47/27/2 +f 47/27/2 46/36/2 43/28/2 +f 46/36/2 45/37/2 43/28/2 +f 45/37/2 44/38/2 43/28/2 +f 43/28/2 42/39/2 41/40/2 +f 41/40/2 40/41/2 43/28/2 +f 40/41/2 39/33/2 43/28/2 +f 39/33/2 37/26/2 43/28/2 +f 13/31/1 14/42/1 15/43/1 +f 15/43/1 16/44/1 17/29/1 +f 17/29/1 18/45/1 21/30/1 +f 18/45/1 19/46/1 21/30/1 +f 19/46/1 20/47/1 21/30/1 +f 21/30/1 22/48/1 23/49/1 +f 23/49/1 24/50/1 13/31/1 +f 13/31/1 15/43/1 17/29/1 +f 21/30/1 23/49/1 13/31/1 +s 1 +f 4/1/3 15/51/4 3/22/4 +f 11/6/5 22/52/6 10/4/6 +f 8/7/7 19/53/8 7/32/8 +f 5/11/9 16/54/3 4/1/3 +f 12/13/10 23/55/5 11/6/5 +f 2/16/11 13/56/12 1/14/12 +f 9/18/13 20/57/7 8/7/7 +f 6/20/14 17/58/9 5/11/9 +f 1/14/12 24/59/10 12/13/10 +f 3/22/4 14/60/11 2/16/11 +f 10/4/6 21/61/13 9/18/13 +f 7/24/8 18/62/14 6/20/14 +f 35/5/5 48/63/10 36/12/10 +f 25/21/12 38/64/11 26/15/11 +f 32/9/7 45/65/13 33/17/13 +f 29/10/9 42/66/14 30/19/14 +f 36/12/10 37/67/12 25/21/12 +f 26/15/11 39/68/4 27/2/4 +f 33/17/13 46/69/6 34/23/6 +f 30/19/14 43/70/8 31/25/8 +f 27/2/4 40/71/3 28/3/3 +f 34/23/6 47/72/5 35/5/5 +f 31/8/8 44/73/7 32/9/7 +f 28/3/3 41/74/9 29/10/9 +f 4/1/3 16/54/3 15/51/4 +f 11/6/5 23/55/5 22/52/6 +f 8/7/7 20/57/7 19/53/8 +f 5/11/9 17/58/9 16/54/3 +f 12/13/10 24/59/10 23/55/5 +f 2/16/11 14/60/11 13/56/12 +f 9/18/13 21/61/13 20/57/7 +f 6/20/14 18/62/14 17/58/9 +f 1/14/12 13/56/12 24/59/10 +f 3/22/4 15/51/4 14/60/11 +f 10/4/6 22/52/6 21/61/13 +f 7/24/8 19/75/8 18/62/14 +f 35/5/5 47/72/5 48/63/10 +f 25/21/12 37/67/12 38/64/11 +f 32/9/7 44/73/7 45/65/13 +f 29/10/9 41/74/9 42/66/14 +f 36/12/10 48/63/10 37/67/12 +f 26/15/11 38/64/11 39/68/4 +f 33/17/13 45/65/13 46/69/6 +f 30/19/14 42/66/14 43/70/8 +f 27/2/4 39/68/4 40/71/3 +f 34/23/6 46/69/6 47/72/5 +f 31/8/8 43/76/8 44/73/7 +f 28/3/3 40/71/3 41/74/9 +o Shell2 +v -0.250000 0.937500 0.000000 +v -0.343750 0.912380 0.000000 +v -0.412380 0.843750 0.000000 +v -0.437500 0.750000 0.000000 +v -0.412380 0.656250 0.000000 +v -0.343750 0.587620 0.000000 +v -0.250000 0.562500 0.000000 +v -0.156250 0.587620 0.000000 +v -0.087620 0.656250 0.000000 +v -0.062500 0.750000 0.000000 +v -0.087620 0.843750 0.000000 +v -0.156250 0.912380 0.000000 +v -0.250000 0.937500 1.000000 +v -0.343750 0.912380 1.000000 +v -0.412380 0.843750 1.000000 +v -0.437500 0.750000 1.000000 +v -0.412380 0.656250 1.000000 +v -0.343750 0.587620 1.000000 +v -0.250000 0.562500 1.000000 +v -0.156250 0.587620 1.000000 +v -0.087620 0.656250 1.000000 +v -0.062500 0.750000 1.000000 +v -0.087620 0.843750 1.000000 +v -0.156250 0.912380 1.000000 +v -0.250000 0.960938 0.000000 +v -0.355469 0.932677 0.000000 +v -0.432677 0.855469 0.000000 +v -0.460938 0.750000 0.000000 +v -0.432677 0.644531 0.000000 +v -0.355469 0.567323 0.000000 +v -0.250000 0.539062 0.000000 +v -0.144531 0.567322 0.000000 +v -0.067323 0.644531 0.000000 +v -0.039062 0.750000 0.000000 +v -0.067323 0.855469 0.000000 +v -0.144531 0.932677 0.000000 +v -0.250000 0.960938 -0.062500 +v -0.355469 0.932677 -0.062500 +v -0.432677 0.855469 -0.062500 +v -0.460938 0.750000 -0.062500 +v -0.432677 0.644531 -0.062500 +v -0.355469 0.567323 -0.062500 +v -0.250000 0.539062 -0.062500 +v -0.144531 0.567322 -0.062500 +v -0.067323 0.644531 -0.062500 +v -0.039062 0.750000 -0.062500 +v -0.067323 0.855469 -0.062500 +v -0.144531 0.932677 -0.062500 +vt 0.185185 0.500000 +vt 0.189815 0.488636 +vt 0.189815 0.500000 +vt 0.185185 0.431818 +vt 0.189815 0.443182 +vt 0.185185 0.443182 +vt 0.185185 0.409091 +vt 0.189815 0.397727 +vt 0.189815 0.409091 +vt 0.189815 0.511364 +vt 0.185185 0.511364 +vt 0.189815 0.454545 +vt 0.185185 0.454545 +vt 0.185185 0.465909 +vt 0.189815 0.477273 +vt 0.185185 0.477273 +vt 0.189815 0.420455 +vt 0.185185 0.420455 +vt 0.189815 0.522727 +vt 0.185185 0.522727 +vt 0.189815 0.465909 +vt 0.185185 0.488636 +vt 0.189815 0.431818 +vt 0.185185 0.534091 +vt 0.189815 0.534091 +vt 0.210648 0.437320 +vt 0.196742 0.427467 +vt 0.210648 0.397907 +vt 0.196303 0.446021 +vt 0.220365 0.446021 +vt 0.208334 0.471595 +vt 0.185185 0.397727 +vt 0.224554 0.427467 +vt 0.218677 0.434680 +vt 0.202619 0.434680 +vt 0.194591 0.417614 +vt 0.196742 0.407760 +vt 0.202619 0.400547 +vt 0.218677 0.400547 +vt 0.224554 0.407760 +vt 0.226705 0.417614 +vt 0.201388 0.469311 +vt 0.196303 0.463070 +vt 0.194441 0.454545 +vt 0.201388 0.439780 +vt 0.208334 0.437496 +vt 0.215280 0.439780 +vt 0.222226 0.454545 +vt 0.220365 0.463070 +vt 0.215280 0.469311 +vt 0.111111 0.488636 +vt 0.111111 0.431818 +vt 0.111111 0.397727 +vt 0.111111 0.500000 +vt 0.111111 0.443182 +vt 0.111111 0.465909 +vt 0.111111 0.409091 +vt 0.111111 0.511364 +vt 0.111111 0.454545 +vt 0.111111 0.477273 +vt 0.111111 0.420455 +vt 0.111111 0.522727 +vt 0.194444 0.454545 +vt 0.194444 0.477273 +vt 0.194444 0.420455 +vt 0.194444 0.522727 +vt 0.194444 0.465909 +vt 0.194444 0.488636 +vt 0.194444 0.431818 +vt 0.194444 0.534091 +vt 0.194444 0.500000 +vt 0.194444 0.443182 +vt 0.194444 0.409091 +vt 0.194444 0.511364 +vt 0.111111 0.534091 +vt 0.194444 0.397727 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn -1.0000 -0.0000 0.0000 +vn -0.8660 0.5000 0.0000 +vn 0.8660 0.5000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.5000 -0.8660 0.0000 +vn -0.0000 -1.0000 0.0000 +vn -0.8660 -0.5000 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn -0.5000 -0.8660 0.0000 +s off +f 52/77/15 75/78/15 76/79/15 +f 58/80/15 83/81/15 59/82/15 +f 56/83/15 79/84/15 80/85/15 +f 52/77/15 77/86/15 53/87/15 +f 59/82/15 84/88/15 60/89/15 +f 49/90/15 74/91/15 50/92/15 +f 56/83/15 81/93/15 57/94/15 +f 53/87/15 78/95/15 54/96/15 +f 49/90/15 84/88/15 73/97/15 +f 50/92/15 75/78/15 51/98/15 +f 58/80/15 81/93/15 82/99/15 +f 55/100/15 78/95/15 79/101/15 +f 85/102/16 95/103/16 91/104/16 +f 65/105/15 69/106/15 61/107/15 +f 52/77/15 51/98/15 75/78/15 +f 58/80/15 82/99/15 83/81/15 +f 56/83/15 55/108/15 79/84/15 +f 52/77/15 76/79/15 77/86/15 +f 59/82/15 83/81/15 84/88/15 +f 49/90/15 73/97/15 74/91/15 +f 56/83/15 80/85/15 81/93/15 +f 53/87/15 77/86/15 78/95/15 +f 49/90/15 60/89/15 84/88/15 +f 50/92/15 74/91/15 75/78/15 +f 58/80/15 57/94/15 81/93/15 +f 55/100/15 54/96/15 78/95/15 +f 87/109/16 86/110/16 85/102/16 +f 85/102/16 96/111/16 95/103/16 +f 95/103/16 94/112/16 91/104/16 +f 94/112/16 93/113/16 91/104/16 +f 93/113/16 92/114/16 91/104/16 +f 91/104/16 90/115/16 89/116/16 +f 89/116/16 88/117/16 91/104/16 +f 88/117/16 87/109/16 91/104/16 +f 87/109/16 85/102/16 91/104/16 +f 61/107/15 62/118/15 63/119/15 +f 63/119/15 64/120/15 65/105/15 +f 65/105/15 66/121/15 69/106/15 +f 66/121/15 67/122/15 69/106/15 +f 67/122/15 68/123/15 69/106/15 +f 69/106/15 70/124/15 71/125/15 +f 71/125/15 72/126/15 61/107/15 +f 61/107/15 63/119/15 65/105/15 +f 69/106/15 71/125/15 61/107/15 +s 1 +f 52/77/17 63/127/18 51/98/18 +f 59/82/19 70/128/20 58/80/20 +f 56/83/21 67/129/22 55/108/22 +f 53/87/23 64/130/17 52/77/17 +f 60/89/24 71/131/19 59/82/19 +f 50/92/25 61/132/26 49/90/26 +f 57/94/27 68/133/21 56/83/21 +f 54/96/28 65/134/23 53/87/23 +f 49/90/26 72/135/24 60/89/24 +f 51/98/18 62/136/25 50/92/25 +f 58/80/20 69/137/27 57/94/27 +f 55/100/22 66/138/28 54/96/28 +f 83/81/19 96/139/24 84/88/24 +f 73/97/26 86/140/25 74/91/25 +f 80/85/21 93/141/27 81/93/27 +f 77/86/23 90/142/28 78/95/28 +f 84/88/24 85/143/26 73/97/26 +f 74/91/25 87/144/18 75/78/18 +f 81/93/27 94/145/20 82/99/20 +f 78/95/28 91/146/22 79/101/22 +f 75/78/18 88/147/17 76/79/17 +f 82/99/20 95/148/19 83/81/19 +f 79/84/22 92/149/21 80/85/21 +f 76/79/17 89/150/23 77/86/23 +f 52/77/17 64/130/17 63/127/18 +f 59/82/19 71/131/19 70/128/20 +f 56/83/21 68/133/21 67/129/22 +f 53/87/23 65/134/23 64/130/17 +f 60/89/24 72/135/24 71/131/19 +f 50/92/25 62/136/25 61/132/26 +f 57/94/27 69/137/27 68/133/21 +f 54/96/28 66/138/28 65/134/23 +f 49/90/26 61/132/26 72/135/24 +f 51/98/18 63/127/18 62/136/25 +f 58/80/20 70/128/20 69/137/27 +f 55/100/22 67/151/22 66/138/28 +f 83/81/19 95/148/19 96/139/24 +f 73/97/26 85/143/26 86/140/25 +f 80/85/21 92/149/21 93/141/27 +f 77/86/23 89/150/23 90/142/28 +f 84/88/24 96/139/24 85/143/26 +f 74/91/25 86/140/25 87/144/18 +f 81/93/27 93/141/27 94/145/20 +f 78/95/28 90/142/28 91/146/22 +f 75/78/18 87/144/18 88/147/17 +f 82/99/20 94/145/20 95/148/19 +f 79/84/22 91/152/22 92/149/21 +f 76/79/17 88/147/17 89/150/23 +o Shell1 +v 0.250000 0.937500 0.000000 +v 0.156250 0.912380 0.000000 +v 0.087620 0.843750 0.000000 +v 0.062500 0.750000 0.000000 +v 0.087620 0.656250 0.000000 +v 0.156250 0.587620 0.000000 +v 0.250000 0.562500 0.000000 +v 0.343750 0.587620 0.000000 +v 0.412380 0.656250 0.000000 +v 0.437500 0.750000 0.000000 +v 0.412380 0.843750 0.000000 +v 0.343750 0.912380 0.000000 +v 0.250000 0.937500 1.000000 +v 0.156250 0.912380 1.000000 +v 0.087620 0.843750 1.000000 +v 0.062500 0.750000 1.000000 +v 0.087620 0.656250 1.000000 +v 0.156250 0.587620 1.000000 +v 0.250000 0.562500 1.000000 +v 0.343750 0.587620 1.000000 +v 0.412380 0.656250 1.000000 +v 0.437500 0.750000 1.000000 +v 0.412380 0.843750 1.000000 +v 0.343750 0.912380 1.000000 +v 0.250000 0.960938 0.000000 +v 0.144531 0.932677 0.000000 +v 0.067323 0.855469 0.000000 +v 0.039062 0.750000 0.000000 +v 0.067323 0.644531 0.000000 +v 0.144531 0.567323 0.000000 +v 0.250000 0.539062 0.000000 +v 0.355469 0.567322 0.000000 +v 0.432677 0.644531 0.000000 +v 0.460938 0.750000 0.000000 +v 0.432677 0.855469 0.000000 +v 0.355469 0.932677 0.000000 +v 0.250000 0.960938 -0.062500 +v 0.144531 0.932677 -0.062500 +v 0.067323 0.855469 -0.062500 +v 0.039062 0.750000 -0.062500 +v 0.067323 0.644531 -0.062500 +v 0.144531 0.567323 -0.062500 +v 0.250000 0.539062 -0.062500 +v 0.355469 0.567322 -0.062500 +v 0.432677 0.644531 -0.062500 +v 0.460938 0.750000 -0.062500 +v 0.432677 0.855469 -0.062500 +v 0.355469 0.932677 -0.062500 +vt 0.185185 0.500000 +vt 0.189815 0.488636 +vt 0.189815 0.500000 +vt 0.185185 0.431818 +vt 0.189815 0.443182 +vt 0.185185 0.443182 +vt 0.185185 0.409091 +vt 0.189815 0.397727 +vt 0.189815 0.409091 +vt 0.189815 0.511364 +vt 0.185185 0.511364 +vt 0.189815 0.454545 +vt 0.185185 0.454545 +vt 0.185185 0.465909 +vt 0.189815 0.477273 +vt 0.185185 0.477273 +vt 0.189815 0.420455 +vt 0.185185 0.420455 +vt 0.189815 0.522727 +vt 0.185185 0.522727 +vt 0.189815 0.465909 +vt 0.185185 0.488636 +vt 0.189815 0.431818 +vt 0.185185 0.534091 +vt 0.189815 0.534091 +vt 0.210648 0.437320 +vt 0.196742 0.427467 +vt 0.210648 0.397907 +vt 0.196303 0.446021 +vt 0.220365 0.446021 +vt 0.208334 0.471595 +vt 0.185185 0.397727 +vt 0.224554 0.427467 +vt 0.218677 0.434680 +vt 0.202619 0.434680 +vt 0.194591 0.417614 +vt 0.196742 0.407760 +vt 0.202619 0.400547 +vt 0.218677 0.400547 +vt 0.224554 0.407760 +vt 0.226705 0.417614 +vt 0.201388 0.469311 +vt 0.196303 0.463070 +vt 0.194441 0.454545 +vt 0.201388 0.439780 +vt 0.208334 0.437496 +vt 0.215280 0.439780 +vt 0.222226 0.454545 +vt 0.220365 0.463070 +vt 0.215280 0.469311 +vt 0.111111 0.488636 +vt 0.111111 0.431818 +vt 0.111111 0.397727 +vt 0.111111 0.500000 +vt 0.111111 0.443182 +vt 0.111111 0.465909 +vt 0.111111 0.409091 +vt 0.111111 0.511364 +vt 0.111111 0.454545 +vt 0.111111 0.477273 +vt 0.111111 0.420455 +vt 0.111111 0.522727 +vt 0.194444 0.454545 +vt 0.194444 0.477273 +vt 0.194444 0.420455 +vt 0.194444 0.522727 +vt 0.194444 0.465909 +vt 0.194444 0.488636 +vt 0.194444 0.431818 +vt 0.194444 0.534091 +vt 0.194444 0.500000 +vt 0.194444 0.443182 +vt 0.194444 0.409091 +vt 0.194444 0.511364 +vt 0.111111 0.534091 +vt 0.194444 0.397727 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn -1.0000 -0.0000 0.0000 +vn -0.8660 0.5000 0.0000 +vn 0.8660 0.5000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.5000 -0.8660 0.0000 +vn -0.0000 -1.0000 0.0000 +vn -0.8660 -0.5000 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn -0.5000 -0.8660 0.0000 +s off +f 100/153/29 123/154/29 124/155/29 +f 106/156/29 131/157/29 107/158/29 +f 104/159/29 127/160/29 128/161/29 +f 100/153/29 125/162/29 101/163/29 +f 107/158/29 132/164/29 108/165/29 +f 97/166/29 122/167/29 98/168/29 +f 104/159/29 129/169/29 105/170/29 +f 101/163/29 126/171/29 102/172/29 +f 97/166/29 132/164/29 121/173/29 +f 98/168/29 123/154/29 99/174/29 +f 106/156/29 129/169/29 130/175/29 +f 103/176/29 126/171/29 127/177/29 +f 133/178/30 143/179/30 139/180/30 +f 113/181/29 117/182/29 109/183/29 +f 100/153/29 99/174/29 123/154/29 +f 106/156/29 130/175/29 131/157/29 +f 104/159/29 103/184/29 127/160/29 +f 100/153/29 124/155/29 125/162/29 +f 107/158/29 131/157/29 132/164/29 +f 97/166/29 121/173/29 122/167/29 +f 104/159/29 128/161/29 129/169/29 +f 101/163/29 125/162/29 126/171/29 +f 97/166/29 108/165/29 132/164/29 +f 98/168/29 122/167/29 123/154/29 +f 106/156/29 105/170/29 129/169/29 +f 103/176/29 102/172/29 126/171/29 +f 135/185/30 134/186/30 133/178/30 +f 133/178/30 144/187/30 143/179/30 +f 143/179/30 142/188/30 139/180/30 +f 142/188/30 141/189/30 139/180/30 +f 141/189/30 140/190/30 139/180/30 +f 139/180/30 138/191/30 137/192/30 +f 137/192/30 136/193/30 139/180/30 +f 136/193/30 135/185/30 139/180/30 +f 135/185/30 133/178/30 139/180/30 +f 109/183/29 110/194/29 111/195/29 +f 111/195/29 112/196/29 113/181/29 +f 113/181/29 114/197/29 117/182/29 +f 114/197/29 115/198/29 117/182/29 +f 115/198/29 116/199/29 117/182/29 +f 117/182/29 118/200/29 119/201/29 +f 119/201/29 120/202/29 109/183/29 +f 109/183/29 111/195/29 113/181/29 +f 117/182/29 119/201/29 109/183/29 +s 1 +f 100/153/31 111/203/32 99/174/32 +f 107/158/33 118/204/34 106/156/34 +f 104/159/35 115/205/36 103/184/36 +f 101/163/37 112/206/31 100/153/31 +f 108/165/38 119/207/33 107/158/33 +f 98/168/39 109/208/40 97/166/40 +f 105/170/41 116/209/35 104/159/35 +f 102/172/42 113/210/37 101/163/37 +f 97/166/40 120/211/38 108/165/38 +f 99/174/32 110/212/39 98/168/39 +f 106/156/34 117/213/41 105/170/41 +f 103/176/36 114/214/42 102/172/42 +f 131/157/33 144/215/38 132/164/38 +f 121/173/40 134/216/39 122/167/39 +f 128/161/35 141/217/41 129/169/41 +f 125/162/37 138/218/42 126/171/42 +f 132/164/38 133/219/40 121/173/40 +f 122/167/39 135/220/32 123/154/32 +f 129/169/41 142/221/34 130/175/34 +f 126/171/42 139/222/36 127/177/36 +f 123/154/32 136/223/31 124/155/31 +f 130/175/34 143/224/33 131/157/33 +f 127/160/36 140/225/35 128/161/35 +f 124/155/31 137/226/37 125/162/37 +f 100/153/31 112/206/31 111/203/32 +f 107/158/33 119/207/33 118/204/34 +f 104/159/35 116/209/35 115/205/36 +f 101/163/37 113/210/37 112/206/31 +f 108/165/38 120/211/38 119/207/33 +f 98/168/39 110/212/39 109/208/40 +f 105/170/41 117/213/41 116/209/35 +f 102/172/42 114/214/42 113/210/37 +f 97/166/40 109/208/40 120/211/38 +f 99/174/32 111/203/32 110/212/39 +f 106/156/34 118/204/34 117/213/41 +f 103/176/36 115/227/36 114/214/42 +f 131/157/33 143/224/33 144/215/38 +f 121/173/40 133/219/40 134/216/39 +f 128/161/35 140/225/35 141/217/41 +f 125/162/37 137/226/37 138/218/42 +f 132/164/38 144/215/38 133/219/40 +f 122/167/39 134/216/39 135/220/32 +f 129/169/41 141/217/41 142/221/34 +f 126/171/42 138/218/42 139/222/36 +f 123/154/32 135/220/32 136/223/31 +f 130/175/34 142/221/34 143/224/33 +f 127/160/36 139/228/36 140/225/35 +f 124/155/31 136/223/31 137/226/37 +o Shell3 +v 0.250000 0.437500 0.000000 +v 0.156250 0.412380 0.000000 +v 0.087620 0.343750 0.000000 +v 0.062500 0.250000 0.000000 +v 0.087620 0.156250 0.000000 +v 0.156250 0.087620 0.000000 +v 0.250000 0.062500 0.000000 +v 0.343750 0.087620 0.000000 +v 0.412380 0.156250 0.000000 +v 0.437500 0.250000 0.000000 +v 0.412380 0.343750 0.000000 +v 0.343750 0.412380 0.000000 +v 0.250000 0.437500 1.000000 +v 0.156250 0.412380 1.000000 +v 0.087620 0.343750 1.000000 +v 0.062500 0.250000 1.000000 +v 0.087620 0.156250 1.000000 +v 0.156250 0.087620 1.000000 +v 0.250000 0.062500 1.000000 +v 0.343750 0.087620 1.000000 +v 0.412380 0.156250 1.000000 +v 0.437500 0.250000 1.000000 +v 0.412380 0.343750 1.000000 +v 0.343750 0.412380 1.000000 +v 0.250000 0.460938 0.000000 +v 0.144531 0.432677 0.000000 +v 0.067323 0.355469 0.000000 +v 0.039062 0.250000 0.000000 +v 0.067323 0.144531 0.000000 +v 0.144531 0.067323 0.000000 +v 0.250000 0.039062 0.000000 +v 0.355469 0.067322 0.000000 +v 0.432677 0.144531 0.000000 +v 0.460938 0.250000 0.000000 +v 0.432677 0.355469 0.000000 +v 0.355469 0.432677 0.000000 +v 0.250000 0.460938 -0.062500 +v 0.144531 0.432677 -0.062500 +v 0.067323 0.355469 -0.062500 +v 0.039062 0.250000 -0.062500 +v 0.067323 0.144531 -0.062500 +v 0.144531 0.067323 -0.062500 +v 0.250000 0.039062 -0.062500 +v 0.355469 0.067322 -0.062500 +v 0.432677 0.144531 -0.062500 +v 0.460938 0.250000 -0.062500 +v 0.432677 0.355469 -0.062500 +v 0.355469 0.432677 -0.062500 +vt 0.185185 0.500000 +vt 0.189815 0.488636 +vt 0.189815 0.500000 +vt 0.185185 0.431818 +vt 0.189815 0.443182 +vt 0.185185 0.443182 +vt 0.185185 0.409091 +vt 0.189815 0.397727 +vt 0.189815 0.409091 +vt 0.189815 0.511364 +vt 0.185185 0.511364 +vt 0.189815 0.454545 +vt 0.185185 0.454545 +vt 0.185185 0.465909 +vt 0.189815 0.477273 +vt 0.185185 0.477273 +vt 0.189815 0.420455 +vt 0.185185 0.420455 +vt 0.189815 0.522727 +vt 0.185185 0.522727 +vt 0.189815 0.465909 +vt 0.185185 0.488636 +vt 0.189815 0.431818 +vt 0.185185 0.534091 +vt 0.189815 0.534091 +vt 0.210648 0.437320 +vt 0.196742 0.427467 +vt 0.210648 0.397907 +vt 0.196303 0.446021 +vt 0.220365 0.446021 +vt 0.208334 0.471595 +vt 0.185185 0.397727 +vt 0.224554 0.427467 +vt 0.218677 0.434680 +vt 0.202619 0.434680 +vt 0.194591 0.417614 +vt 0.196742 0.407760 +vt 0.202619 0.400547 +vt 0.218677 0.400547 +vt 0.224554 0.407760 +vt 0.226705 0.417614 +vt 0.201388 0.469311 +vt 0.196303 0.463070 +vt 0.194441 0.454545 +vt 0.201388 0.439780 +vt 0.208334 0.437496 +vt 0.215280 0.439780 +vt 0.222226 0.454545 +vt 0.220365 0.463070 +vt 0.215280 0.469311 +vt 0.111111 0.488636 +vt 0.111111 0.431818 +vt 0.111111 0.397727 +vt 0.111111 0.500000 +vt 0.111111 0.443182 +vt 0.111111 0.465909 +vt 0.111111 0.409091 +vt 0.111111 0.511364 +vt 0.111111 0.454545 +vt 0.111111 0.477273 +vt 0.111111 0.420455 +vt 0.111111 0.522727 +vt 0.194444 0.454545 +vt 0.194444 0.477273 +vt 0.194444 0.420455 +vt 0.194444 0.522727 +vt 0.194444 0.465909 +vt 0.194444 0.488636 +vt 0.194444 0.431818 +vt 0.194444 0.534091 +vt 0.194444 0.500000 +vt 0.194444 0.443182 +vt 0.194444 0.409091 +vt 0.194444 0.511364 +vt 0.111111 0.534091 +vt 0.194444 0.397727 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn -1.0000 -0.0000 0.0000 +vn -0.8660 0.5000 0.0000 +vn 0.8660 0.5000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.5000 -0.8660 0.0000 +vn -0.0000 -1.0000 0.0000 +vn -0.8660 -0.5000 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn -0.5000 -0.8660 0.0000 +s off +f 148/229/43 171/230/43 172/231/43 +f 154/232/43 179/233/43 155/234/43 +f 152/235/43 175/236/43 176/237/43 +f 148/229/43 173/238/43 149/239/43 +f 155/234/43 180/240/43 156/241/43 +f 145/242/43 170/243/43 146/244/43 +f 152/235/43 177/245/43 153/246/43 +f 149/239/43 174/247/43 150/248/43 +f 145/242/43 180/240/43 169/249/43 +f 146/244/43 171/230/43 147/250/43 +f 154/232/43 177/245/43 178/251/43 +f 151/252/43 174/247/43 175/253/43 +f 181/254/44 191/255/44 187/256/44 +f 161/257/43 165/258/43 157/259/43 +f 148/229/43 147/250/43 171/230/43 +f 154/232/43 178/251/43 179/233/43 +f 152/235/43 151/260/43 175/236/43 +f 148/229/43 172/231/43 173/238/43 +f 155/234/43 179/233/43 180/240/43 +f 145/242/43 169/249/43 170/243/43 +f 152/235/43 176/237/43 177/245/43 +f 149/239/43 173/238/43 174/247/43 +f 145/242/43 156/241/43 180/240/43 +f 146/244/43 170/243/43 171/230/43 +f 154/232/43 153/246/43 177/245/43 +f 151/252/43 150/248/43 174/247/43 +f 183/261/44 182/262/44 181/254/44 +f 181/254/44 192/263/44 191/255/44 +f 191/255/44 190/264/44 187/256/44 +f 190/264/44 189/265/44 187/256/44 +f 189/265/44 188/266/44 187/256/44 +f 187/256/44 186/267/44 185/268/44 +f 185/268/44 184/269/44 187/256/44 +f 184/269/44 183/261/44 187/256/44 +f 183/261/44 181/254/44 187/256/44 +f 157/259/43 158/270/43 159/271/43 +f 159/271/43 160/272/43 161/257/43 +f 161/257/43 162/273/43 165/258/43 +f 162/273/43 163/274/43 165/258/43 +f 163/274/43 164/275/43 165/258/43 +f 165/258/43 166/276/43 167/277/43 +f 167/277/43 168/278/43 157/259/43 +f 157/259/43 159/271/43 161/257/43 +f 165/258/43 167/277/43 157/259/43 +s 1 +f 148/229/45 159/279/46 147/250/46 +f 155/234/47 166/280/48 154/232/48 +f 152/235/49 163/281/50 151/260/50 +f 149/239/51 160/282/45 148/229/45 +f 156/241/52 167/283/47 155/234/47 +f 146/244/53 157/284/54 145/242/54 +f 153/246/55 164/285/49 152/235/49 +f 150/248/56 161/286/51 149/239/51 +f 145/242/54 168/287/52 156/241/52 +f 147/250/46 158/288/53 146/244/53 +f 154/232/48 165/289/55 153/246/55 +f 151/252/50 162/290/56 150/248/56 +f 179/233/47 192/291/52 180/240/52 +f 169/249/54 182/292/53 170/243/53 +f 176/237/49 189/293/55 177/245/55 +f 173/238/51 186/294/56 174/247/56 +f 180/240/52 181/295/54 169/249/54 +f 170/243/53 183/296/46 171/230/46 +f 177/245/55 190/297/48 178/251/48 +f 174/247/56 187/298/50 175/253/50 +f 171/230/46 184/299/45 172/231/45 +f 178/251/48 191/300/47 179/233/47 +f 175/236/50 188/301/49 176/237/49 +f 172/231/45 185/302/51 173/238/51 +f 148/229/45 160/282/45 159/279/46 +f 155/234/47 167/283/47 166/280/48 +f 152/235/49 164/285/49 163/281/50 +f 149/239/51 161/286/51 160/282/45 +f 156/241/52 168/287/52 167/283/47 +f 146/244/53 158/288/53 157/284/54 +f 153/246/55 165/289/55 164/285/49 +f 150/248/56 162/290/56 161/286/51 +f 145/242/54 157/284/54 168/287/52 +f 147/250/46 159/279/46 158/288/53 +f 154/232/48 166/280/48 165/289/55 +f 151/252/50 163/303/50 162/290/56 +f 179/233/47 191/300/47 192/291/52 +f 169/249/54 181/295/54 182/292/53 +f 176/237/49 188/301/49 189/293/55 +f 173/238/51 185/302/51 186/294/56 +f 180/240/52 192/291/52 181/295/54 +f 170/243/53 182/292/53 183/296/46 +f 177/245/55 189/293/55 190/297/48 +f 174/247/56 186/294/56 187/298/50 +f 171/230/46 183/296/46 184/299/45 +f 178/251/48 190/297/48 191/300/47 +f 175/236/50 187/304/50 188/301/49 +f 172/231/45 184/299/45 185/302/51 +o Barrel v 0.466506 0.375000 0.000000 v 0.466506 0.375000 7.250000 v 0.500000 0.250000 0.000000 @@ -141,12 +1073,6 @@ v 0.375000 0.500000 0.000000 v 0.375000 0.500000 7.250000 v -0.375000 0.500000 0.000000 v -0.375000 0.500000 7.250000 -v -0.500000 0.000000 0.000000 -v 0.500000 0.000000 0.000000 -v -0.500000 1.000000 -0.750000 -v -0.500000 1.000000 0.000000 -v 0.500000 1.000000 0.000000 -v 0.500000 1.000000 -0.750000 v 0.187500 -0.750000 0.500000 v -0.187500 -0.750000 0.500000 v -0.625000 -0.500000 0.656250 @@ -173,32 +1099,6 @@ v 0.187500 -0.250000 1.375000 v -0.187500 -0.250000 1.375000 v 0.187500 0.000000 1.875000 v -0.187500 0.000000 1.875000 -v 0.500000 0.500000 0.000000 -v 0.500000 0.500000 -0.750000 -v 0.500000 0.000000 1.000000 -v -0.500000 0.000000 1.000000 -v -0.500000 0.500000 0.000000 -v -0.500000 0.500000 -0.750000 -v 0.625000 0.500000 0.000000 -v 0.625000 0.500000 -0.750000 -v 0.625000 0.000000 1.000000 -v -0.625000 0.000000 1.000000 -v -0.625000 0.500000 0.000000 -v -0.625000 0.500000 -0.750000 -v 0.500000 -0.125000 1.000000 -v -0.500000 -0.125000 1.000000 -v 0.625000 0.000000 -0.750000 -v -0.625000 0.000000 -0.750000 -v 0.500000 -0.125000 -0.750000 -v -0.500000 -0.125000 -0.750000 -v 0.500000 1.000000 0.000000 -v 0.125000 1.000000 0.000000 -v 0.500000 1.312500 -0.312500 -v 0.125000 1.312500 -0.312500 -v 0.500000 1.312500 -0.625000 -v 0.125000 1.312500 -0.625000 -v 0.500000 1.000000 -0.625000 -v 0.125000 1.000000 -0.625000 v -0.500000 1.000000 1.000000 v -0.500000 1.000000 0.000000 v -0.250000 1.000000 1.000000 @@ -227,50 +1127,6 @@ v 0.250000 1.000000 0.500000 v 0.250000 1.312500 0.500000 v 0.250000 1.000000 0.000000 v 0.250000 1.312500 0.000000 -v 0.125000 1.000000 1.000000 -v -0.125000 1.000000 1.000000 -v 0.125000 1.000000 -0.625000 -v -0.125000 1.000000 -0.625000 -v 0.125000 1.312500 1.000000 -v -0.125000 1.312500 1.000000 -v 0.125000 1.312500 -0.625000 -v -0.125000 1.312500 -0.625000 -v 0.500000 1.312500 -0.625000 -v 0.500000 1.000000 -0.625000 -v -0.500000 1.312500 -0.625000 -v -0.500000 1.000000 -0.625000 -v 0.500000 1.000000 -0.875000 -v 0.500000 1.312500 -0.875000 -v -0.500000 1.312500 -0.875000 -v -0.500000 1.000000 -0.875000 -v 0.500000 1.062500 -0.937500 -v 0.500000 1.250000 -0.937500 -v -0.500000 1.250000 -0.937500 -v -0.500000 1.062500 -0.937500 -v 0.187500 -0.750000 0.500000 -v 0.187500 -0.125000 0.250000 -v 0.187500 -0.750000 1.000000 -v 0.187500 -0.125000 1.000000 -v 0.437500 -0.750000 0.500000 -v 0.437500 -0.125000 0.250000 -v 0.437500 -0.750000 1.000000 -v 0.437500 -0.125000 1.000000 -v 0.437500 -0.500000 0.500000 -v 0.437500 -0.323223 0.573223 -v 0.437500 -0.250000 0.750000 -v 0.437500 -0.323223 0.926777 -v 0.437500 -0.500000 1.000000 -v 0.437500 -0.676777 0.926777 -v 0.437500 -0.750000 0.750000 -v 0.437500 -0.676777 0.573223 -v 0.559000 -0.323223 0.573223 -v 0.559000 -0.500000 0.500000 -v 0.559000 -0.250000 0.750000 -v 0.559000 -0.323223 0.926777 -v 0.559000 -0.500000 1.000000 -v 0.559000 -0.676777 0.926777 -v 0.559000 -0.750000 0.750000 -v 0.559000 -0.676777 0.573223 v 0.250000 1.000000 1.000000 v 0.250000 1.312500 1.000000 v 0.250000 1.000000 2.000000 @@ -333,38 +1189,6 @@ v -0.250000 0.000000 4.875000 v -0.250000 -0.250000 6.125000 v -0.250000 -0.250000 6.000000 v -0.250000 0.000000 6.000000 -v -0.500000 0.125000 -0.750000 -v -0.250000 -0.125000 -0.750000 -v 0.250000 -0.125000 -0.750000 -v 0.500000 0.125000 -0.750000 -v -0.250000 0.875000 -0.750000 -v -0.500000 0.625000 -0.750000 -v 0.500000 0.625000 -0.750000 -v 0.250000 0.875000 -0.750000 -v -0.250000 -0.125000 -2.500000 -v -0.500000 0.125000 -2.500000 -v 0.500000 0.125000 -2.500000 -v 0.250000 -0.125000 -2.500000 -v -0.500000 0.625000 -2.500000 -v -0.250000 0.875000 -2.500000 -v 0.250000 0.875000 -2.500000 -v 0.500000 0.625000 -2.500000 -v 0.695083 0.632582 -0.687500 -v 0.750000 0.500000 -0.687500 -v 0.695083 0.367418 -0.687500 -v 0.562500 0.312500 -0.687500 -v 0.429917 0.367417 -0.687500 -v 0.375000 0.500000 -0.687500 -v 0.429917 0.632583 -0.687500 -v 0.562500 0.687500 -0.687500 -v 0.695083 0.632582 -2.562500 -v 0.750000 0.500000 -2.562500 -v 0.562500 0.312500 -2.562500 -v 0.429917 0.367417 -2.562500 -v 0.375000 0.500000 -2.562500 -v 0.429917 0.632583 -2.562500 -v 0.562500 0.687500 -2.562500 -v 0.695083 0.367418 -2.562500 v -0.536612 1.062500 1.224112 v -0.500000 1.062500 1.312500 v -0.536612 1.062500 1.400888 @@ -397,58 +1221,6 @@ v -0.757583 0.187500 1.445082 v -0.812500 0.187500 1.312500 v -0.757583 0.187500 1.179918 v -0.625000 0.187500 1.125000 -v 0.125000 -0.125000 -0.500000 -v -0.125000 -0.125000 -0.500000 -v 0.125000 -2.125000 -1.250000 -v -0.125000 -2.125000 -1.250000 -v 0.125000 -2.125000 -2.000000 -v -0.125000 -2.125000 -2.000000 -v 0.125000 -1.875000 -2.250000 -v -0.125000 -1.875000 -2.250000 -v 0.125000 -0.500000 -1.625000 -v -0.125000 -0.500000 -1.625000 -v 0.125000 -0.250000 -1.625000 -v -0.125000 -0.250000 -1.625000 -v 0.125000 -0.250000 -2.500000 -v -0.125000 -0.250000 -2.500000 -v 0.125000 -0.125000 -2.500000 -v -0.125000 -0.125000 -2.500000 -v 0.125000 -0.125000 -1.500000 -v -0.125000 -0.125000 -1.500000 -v 0.250000 -0.125000 -0.625000 -v 0.250000 -2.125000 -1.375000 -v 0.250000 -2.125000 -1.875000 -v 0.250000 -1.875000 -2.125000 -v 0.250000 -0.500000 -1.500000 -v 0.250000 -0.250000 -1.500000 -v 0.250000 -0.125000 -1.375000 -v -0.250000 -2.125000 -1.375000 -v -0.250000 -0.125000 -0.625000 -v -0.250000 -2.125000 -1.875000 -v -0.250000 -1.875000 -2.125000 -v -0.250000 -0.500000 -1.500000 -v -0.250000 -0.250000 -1.500000 -v -0.250000 -0.125000 -1.375000 -v 0.062500 -2.125000 -1.250000 -v -0.062500 -2.125000 -1.250000 -v 0.062500 -0.375000 0.250000 -v -0.062500 -0.375000 0.250000 -v 0.062500 -0.125000 0.250000 -v -0.062500 -0.125000 0.250000 -v 0.062500 -0.125000 -0.500000 -v -0.062500 -0.125000 -0.500000 -v 0.093750 -0.750000 0.875000 -v -0.093750 -0.750000 0.875000 -v 0.093750 -0.750000 0.687500 -v -0.093750 -0.750000 0.687500 -v 0.093750 -1.750000 0.375000 -v -0.093750 -1.750000 0.375000 -v 0.093750 -1.625000 0.250000 -v -0.093750 -1.625000 0.250000 -v 0.093750 -2.125000 -1.250000 -v -0.093750 -2.125000 -1.250000 -v 0.093750 -2.000000 -1.250000 -v -0.093750 -2.000000 -1.250000 v 0.125000 0.000000 4.750000 v -0.125000 0.000000 4.750000 v 0.125000 -0.750000 3.500000 @@ -459,30 +1231,6 @@ v 0.125000 -0.375000 3.250000 v -0.125000 -0.375000 3.250000 v 0.125000 -0.375000 3.750000 v -0.125000 -0.375000 3.750000 -v 0.000000 0.687500 0.000000 -v -0.093750 0.662380 0.000000 -v -0.162380 0.593750 0.000000 -v -0.187500 0.500000 0.000000 -v -0.162380 0.406250 0.000000 -v -0.093750 0.337620 0.000000 -v 0.000000 0.312500 0.000000 -v 0.093750 0.337620 0.000000 -v 0.162380 0.406250 0.000000 -v 0.187500 0.500000 0.000000 -v 0.162380 0.593750 0.000000 -v 0.093750 0.662380 0.000000 -v 0.062500 0.608253 -0.062500 -v 0.108253 0.562500 -0.062500 -v 0.125000 0.500000 -0.062500 -v 0.108253 0.437500 -0.062500 -v 0.062500 0.391747 -0.062500 -v 0.000000 0.375000 -0.062500 -v -0.062500 0.391747 -0.062500 -v -0.108253 0.437500 -0.062500 -v -0.125000 0.500000 -0.062500 -v -0.108253 0.562500 -0.062500 -v -0.062500 0.608253 -0.062500 -v 0.000000 0.625000 -0.062500 v 0.625000 0.187500 1.125000 v 0.492417 0.187500 1.179918 v 0.437500 0.187500 1.312500 @@ -555,6 +1303,1919 @@ v 0.125000 1.187500 7.000000 v 0.125000 1.187500 6.500000 v -0.125000 1.187500 6.500000 v -0.125000 1.187500 7.000000 +v 0.510000 1.000000 1.000000 +v 0.510000 0.750000 0.000000 +v 0.510000 0.750000 1.000000 +v 0.510000 1.000000 0.000000 +v -0.510000 1.000000 1.000000 +v -0.510000 1.000000 0.000000 +v -0.510000 0.750000 1.000000 +v -0.510000 0.750000 0.000000 +v -0.125000 1.000000 1.000000 +v -0.125000 1.312500 1.000000 +v -0.125000 1.000000 2.000000 +v -0.125000 1.312500 1.250000 +v -0.250000 1.312500 1.000000 +v -0.250000 1.000000 2.000000 +v -0.250000 1.312500 1.250000 +v -0.250000 1.000000 1.000000 +v -0.125000 1.000000 1.000000 +v -0.500000 1.000000 1.000000 +v -0.125000 1.312500 1.000000 +v -0.500000 1.312500 1.000000 +v -0.125000 1.437500 0.875000 +v -0.500000 1.437500 0.875000 +v -0.125000 1.437500 0.625000 +v -0.500000 1.437500 0.625000 +v -0.125000 1.312500 0.500000 +v -0.500000 1.312500 0.500000 +v -0.125000 1.000000 0.500000 +v -0.500000 1.000000 0.500000 +v -0.187500 1.437500 0.875000 +v -0.187500 1.437500 0.625000 +v -0.187500 1.562500 0.875000 +v -0.187500 1.562500 0.625000 +v -0.125000 1.437500 0.625000 +v -0.125000 1.437500 0.875000 +v -0.125000 1.562500 0.625000 +v -0.125000 1.562500 0.875000 +v -0.250000 1.312500 0.500000 +v -0.250000 1.000000 0.500000 +v -0.250000 1.312500 0.000000 +v -0.250000 1.000000 0.000000 +v -0.125000 1.000000 0.500000 +v -0.125000 1.312500 0.500000 +v -0.125000 1.000000 0.000000 +v -0.125000 1.312500 0.000000 +v 0.000000 0.687500 0.000000 +v -0.093750 0.662380 0.000000 +v -0.162380 0.593750 0.000000 +v -0.187500 0.500000 0.000000 +v -0.162380 0.406250 0.000000 +v -0.093750 0.337620 0.000000 +v 0.000000 0.312500 0.000000 +v 0.093750 0.337620 0.000000 +v 0.162380 0.406250 0.000000 +v 0.187500 0.500000 0.000000 +v 0.162380 0.593750 0.000000 +v 0.093750 0.662380 0.000000 +v 0.062500 0.608253 -0.062500 +v 0.108253 0.562500 -0.062500 +v 0.125000 0.500000 -0.062500 +v 0.108253 0.437500 -0.062500 +v 0.062500 0.391747 -0.062500 +v 0.000000 0.375000 -0.062500 +v -0.062500 0.391747 -0.062500 +v -0.108253 0.437500 -0.062500 +v -0.125000 0.500000 -0.062500 +v -0.108253 0.562500 -0.062500 +v -0.062500 0.608253 -0.062500 +v 0.000000 0.625000 -0.062500 +vt 0.055443 0.000276 +vt 0.062346 0.008193 +vt 0.055443 0.005923 +vt 0.071383 0.011570 +vt 0.064646 0.003302 +vt 0.069248 0.022865 +vt 0.067398 0.014394 +vt 0.071383 0.034160 +vt 0.073849 0.022865 +vt 0.002691 0.102479 +vt 0.004826 0.113774 +vt 0.000225 0.113774 +vt 0.002691 0.125069 +vt 0.018631 0.091185 +vt 0.011729 0.099102 +vt 0.009428 0.094211 +vt 0.006676 0.105303 +vt 0.009428 0.003302 +vt 0.006676 0.014394 +vt 0.002691 0.011570 +vt 0.018631 0.005923 +vt 0.011729 0.008193 +vt 0.002691 0.034160 +vt 0.004826 0.022865 +vt 0.006676 0.031336 +vt 0.000225 0.022865 +vt 0.071383 0.125069 +vt 0.069248 0.113774 +vt 0.073849 0.113774 +vt 0.071383 0.102479 +vt 0.067398 0.105303 +vt 0.064646 0.094211 +vt 0.055443 0.096832 +vt 0.055443 0.091185 +vt 0.087963 0.329545 +vt 0.092593 0.340909 +vt 0.083333 0.335227 +vt 0.071383 0.056749 +vt 0.069248 0.068044 +vt 0.067398 0.059573 +vt 0.071383 0.079339 +vt 0.073849 0.068044 +vt 0.064646 0.087607 +vt 0.067398 0.076515 +vt 0.055443 0.084986 +vt 0.062346 0.082716 +vt 0.002691 0.147658 +vt 0.004826 0.158953 +vt 0.000225 0.158953 +vt 0.111111 0.431818 +vt 0.111111 0.340909 +vt 0.074074 0.340909 +vt 0.092593 0.431818 +vt 0.074074 0.431818 +vt 0.037037 0.431818 +vt 0.037037 0.340909 +vt 0.018631 0.181542 +vt 0.025533 0.173625 +vt 0.048541 0.173625 +vt 0.069248 0.158953 +vt 0.071383 0.147658 +vt 0.073849 0.158953 +vt 0.073849 0.181542 +vt 0.062346 0.173625 +vt 0.067398 0.167424 +vt 0.009428 0.087607 +vt 0.018631 0.084986 +vt 0.018631 0.090633 +vt 0.006676 0.076515 +vt 0.011729 0.082716 +vt 0.002691 0.079339 +vt 0.004826 0.068044 +vt 0.002691 0.056749 +vt 0.000225 0.068044 +vt 0.000225 0.181542 +vt 0.006676 0.167424 +vt 0.011729 0.173625 +vt 0.011729 0.053372 +vt 0.009428 0.045455 +vt 0.011729 0.037537 +vt 0.048541 0.037537 +vt 0.043488 0.059573 +vt 0.025533 0.053372 +vt 0.018631 0.039807 +vt 0.018631 0.051102 +vt 0.041639 0.068044 +vt 0.030586 0.059573 +vt 0.055443 0.039807 +vt 0.048541 0.053372 +vt 0.043488 0.031336 +vt 0.032436 0.022865 +vt 0.041639 0.022865 +vt 0.062346 0.053372 +vt 0.062346 0.037537 +vt 0.064646 0.045455 +vt 0.055443 0.051102 +vt 0.030586 0.014394 +vt 0.043488 0.014394 +vt 0.025533 0.008193 +vt 0.048541 0.008193 +vt 0.043488 0.076515 +vt 0.032436 0.068044 +vt 0.048541 0.082716 +vt 0.055443 0.090633 +vt 0.025533 0.082716 +vt 0.011729 0.128446 +vt 0.006676 0.122245 +vt 0.011729 0.144281 +vt 0.009428 0.136364 +vt 0.062346 0.144281 +vt 0.064646 0.136364 +vt 0.062346 0.128446 +vt 0.018631 0.142011 +vt 0.055443 0.142011 +vt 0.055443 0.130716 +vt 0.043488 0.105303 +vt 0.032435 0.113774 +vt 0.030586 0.105303 +vt 0.025533 0.099102 +vt 0.048541 0.099102 +vt 0.041639 0.158953 +vt 0.030586 0.167424 +vt 0.032435 0.158953 +vt 0.043488 0.150482 +vt 0.030586 0.150482 +vt 0.048541 0.144281 +vt 0.048541 0.128446 +vt 0.041639 0.113774 +vt 0.030586 0.122245 +vt 0.025533 0.144281 +vt 0.018631 0.130716 +vt 0.025533 0.128446 +vt 0.502268 0.673238 +vt 0.506944 0.670861 +vt 0.506944 0.687094 +vt 0.486111 0.670455 +vt 0.430556 0.704545 +vt 0.430556 0.670455 +vt 0.497732 0.673238 +vt 0.497732 0.684717 +vt 0.488379 0.684717 +vt 0.384259 0.704545 +vt 0.347222 0.704545 +vt 0.384259 0.670455 +vt 0.310185 0.704545 +vt 0.347222 0.670455 +vt 0.365741 0.625000 +vt 0.328704 0.602273 +vt 0.467593 0.602273 +vt 0.467593 0.772727 +vt 0.328704 0.772727 +vt 0.365741 0.750000 +vt 0.018519 0.340909 +vt 0.018519 0.431818 +vt 0.000000 0.340909 +vt 0.023148 0.329545 +vt 0.027778 0.335227 +vt -0.000000 0.607955 +vt 0.023148 0.642045 +vt -0.000000 0.642045 +vt 0.023148 0.607955 +vt 0.032407 0.642045 +vt 0.032407 0.607955 +vt 0.050926 0.642045 +vt 0.050926 0.607955 +vt 0.060185 0.642045 +vt 0.060185 0.607955 +vt 0.083333 0.642045 +vt 0.060185 0.653409 +vt 0.060185 0.681818 +vt 0.023148 0.681818 +vt 0.023148 0.596591 +vt 0.120370 0.642045 +vt 0.083333 0.670455 +vt 0.083333 0.642045 +vt 0.083333 0.602273 +vt 0.120370 0.630682 +vt 0.083333 0.630682 +vt 0.143519 0.630682 +vt 0.143519 0.642045 +vt 0.166667 0.562500 +vt 0.185185 0.534091 +vt 0.185185 0.562500 +vt 0.185185 0.573864 +vt 0.166667 0.573864 +vt 0.111111 0.562500 +vt 0.185185 0.602273 +vt 0.648148 0.329545 +vt 0.611111 0.352273 +vt 0.611111 0.329545 +vt 0.134259 0.369318 +vt 0.555556 0.346591 +vt 0.555556 0.369318 +vt 0.555556 0.318182 +vt 0.134259 0.346591 +vt 0.111111 0.318182 +vt 0.111111 0.346591 +vt 0.111111 0.369318 +vt 0.555556 0.397727 +vt 0.578704 0.369318 +vt 0.578704 0.346591 +vt 0.722222 0.375000 +vt 0.722222 0.397727 +vt 0.648148 0.397727 +vt 0.722222 0.306818 +vt 0.722222 0.329545 +vt 0.648148 0.352273 +vt 0.907407 0.034091 +vt 0.916667 0.000000 +vt 0.944444 0.011364 +vt 0.740741 0.284091 +vt 0.722222 0.284091 +vt 0.740741 0.375000 +vt 0.740741 0.397727 +vt 0.750000 0.397727 +vt 0.731481 0.363636 +vt 0.740741 0.363636 +vt 0.750000 0.306818 +vt 0.740741 0.306818 +vt 0.731481 0.318182 +vt 0.805556 0.601731 +vt 0.796738 0.590909 +vt 0.805556 0.580087 +vt 0.736111 0.669642 +vt 0.722884 0.653409 +vt 0.736111 0.637176 +vt 0.777277 0.653381 +vt 0.764050 0.669614 +vt 0.750823 0.653381 +vt 0.726852 0.534091 +vt 0.837963 0.568182 +vt 0.763889 0.534091 +vt 0.763889 0.534091 +vt 0.652778 0.568182 +vt 0.726852 0.534091 +vt 0.777277 0.653381 +vt 0.764050 0.669614 +vt 0.750823 0.653381 +vt 0.736111 0.669642 +vt 0.722884 0.653409 +vt 0.736111 0.637176 +vt 0.805556 0.601731 +vt 0.796738 0.590909 +vt 0.805556 0.580087 +vt 0.069444 0.585227 +vt 0.087963 0.596591 +vt 0.069444 0.596591 +vt 0.087963 0.568182 +vt 0.069444 0.579545 +vt 0.069444 0.568182 +vt 0.087963 0.585227 +vt 0.097222 0.579545 +vt 0.097222 0.585227 +vt 0.087963 0.579545 +vt 0.060185 0.585227 +vt 0.083333 0.477273 +vt 0.101852 0.488636 +vt 0.083333 0.488636 +vt 0.083333 0.443182 +vt 0.101852 0.454545 +vt 0.083333 0.454545 +vt 0.101852 0.477273 +vt 0.111111 0.488636 +vt 0.074074 0.477273 +vt 0.101852 0.465909 +vt 0.083333 0.500000 +vt 0.101852 0.443182 +vt 0.111111 0.454545 +vt 0.074074 0.443182 +vt 0.101852 0.431818 +vt 0.083333 0.465909 +vt 0.083333 0.443182 +vt 0.101852 0.454545 +vt 0.083333 0.454545 +vt 0.101852 0.443182 +vt 0.111111 0.454545 +vt 0.074074 0.443182 +vt 0.101852 0.431818 +vt 0.083333 0.465909 +vt 0.055556 0.562500 +vt 0.037037 0.505682 +vt 0.055556 0.505682 +vt 0.111111 0.522727 +vt 0.074074 0.545455 +vt 0.074074 0.522727 +vt 0.018519 0.545455 +vt 0.018519 0.522727 +vt 0.092593 0.500000 +vt 0.074074 0.500000 +vt 0.092593 0.568182 +vt 0.111111 0.545455 +vt 1.000000 0.863636 +vt 0.555556 1.000000 +vt 0.555556 0.863636 +vt 0.555556 1.000000 +vt 1.000000 0.863636 +vt 1.000000 1.000000 +vt 0.166667 0.562500 +vt 0.185185 0.534091 +vt 0.185185 0.562500 +vt 0.185185 0.573864 +vt 0.166667 0.573864 +vt 0.111111 0.562500 +vt 0.185185 0.602273 +vt -0.000000 0.607955 +vt 0.023148 0.642045 +vt -0.000000 0.642045 +vt 0.023148 0.607955 +vt 0.032407 0.642045 +vt 0.032407 0.607955 +vt 0.050926 0.642045 +vt 0.050926 0.607955 +vt 0.060185 0.642045 +vt 0.060185 0.607955 +vt 0.083333 0.642045 +vt 0.060185 0.653409 +vt 0.060185 0.681818 +vt 0.023148 0.681818 +vt 0.023148 0.596591 +vt 0.069444 0.585227 +vt 0.087963 0.596591 +vt 0.069444 0.596591 +vt 0.087963 0.568182 +vt 0.069444 0.579545 +vt 0.069444 0.568182 +vt 0.087963 0.585227 +vt 0.097222 0.579545 +vt 0.097222 0.585227 +vt 0.087963 0.579545 +vt 0.060185 0.585227 +vt 0.120370 0.642045 +vt 0.083333 0.670455 +vt 0.083333 0.642045 +vt 0.083333 0.602273 +vt 0.120370 0.630682 +vt 0.083333 0.630682 +vt 0.143519 0.630682 +vt 0.143519 0.642045 +vt 0.196368 0.480158 +vt 0.220299 0.480158 +vt 0.208333 0.505593 +vt 0.211665 0.522687 +vt 0.203704 0.528328 +vt 0.195742 0.511404 +vt 0.067398 0.031336 +vt 0.018631 0.096832 +vt 0.018631 0.000276 +vt 0.067398 0.122245 +vt 0.062346 0.099102 +vt 0.092593 0.318182 +vt 0.006676 0.150482 +vt 0.055443 0.175895 +vt 0.055443 0.181542 +vt 0.018631 0.175895 +vt 0.043488 0.167424 +vt 0.067398 0.150482 +vt 0.006676 0.059573 +vt 0.030586 0.031336 +vt 0.025533 0.037537 +vt 0.030586 0.076515 +vt 0.043488 0.122245 +vt 0.511621 0.673238 +vt 0.513558 0.678977 +vt 0.511621 0.684717 +vt 0.502268 0.684717 +vt 0.500331 0.678977 +vt 0.486111 0.704545 +vt 0.486442 0.678978 +vt 0.488379 0.673238 +vt 0.493056 0.670861 +vt 0.499669 0.678978 +vt 0.493056 0.687094 +vt 0.310185 0.670455 +vt 0.000000 0.431818 +vt 0.018519 0.318182 +vt 0.083333 0.607955 +vt 0.023148 0.653409 +vt 0.023148 0.568182 +vt 0.060185 0.568182 +vt 0.060185 0.596591 +vt 0.120370 0.670455 +vt 0.120370 0.602273 +vt 0.111111 0.534091 +vt 0.111111 0.573864 +vt 0.111111 0.602273 +vt 0.111111 0.397727 +vt 0.722222 0.352273 +vt 0.648148 0.284091 +vt 0.944444 0.034091 +vt 0.935185 0.045455 +vt 0.916667 0.045455 +vt 0.907407 0.011364 +vt 0.935185 0.000000 +vt 0.750000 0.375000 +vt 0.750000 0.284091 +vt 0.740741 0.318182 +vt 0.811791 0.583257 +vt 0.814373 0.590909 +vt 0.811791 0.598561 +vt 0.799320 0.598561 +vt 0.799320 0.583257 +vt 0.745464 0.641931 +vt 0.749338 0.653409 +vt 0.745464 0.664888 +vt 0.726758 0.664888 +vt 0.726758 0.641931 +vt 0.754698 0.641903 +vt 0.764050 0.637148 +vt 0.773403 0.641903 +vt 0.773403 0.664860 +vt 0.754698 0.664860 +vt 0.745370 0.500000 +vt 0.652778 0.568182 +vt 0.745370 0.500000 +vt 0.837963 0.568182 +vt 0.754698 0.641903 +vt 0.764050 0.637148 +vt 0.773403 0.641903 +vt 0.773403 0.664860 +vt 0.754698 0.664860 +vt 0.745464 0.641931 +vt 0.749338 0.653409 +vt 0.745464 0.664888 +vt 0.726758 0.664888 +vt 0.726758 0.641931 +vt 0.811791 0.583257 +vt 0.814373 0.590909 +vt 0.811791 0.598561 +vt 0.799320 0.598561 +vt 0.799320 0.583257 +vt 0.060185 0.579545 +vt 0.111111 0.477273 +vt 0.074074 0.488636 +vt 0.083333 0.465909 +vt 0.101852 0.500000 +vt 0.111111 0.443182 +vt 0.074074 0.454545 +vt 0.083333 0.431818 +vt 0.101852 0.465909 +vt 0.111111 0.443182 +vt 0.074074 0.454545 +vt 0.083333 0.431818 +vt 0.101852 0.465909 +vt 0.037037 0.562500 +vt 0.074074 0.568182 +vt 1.000000 1.000000 +vt 0.555556 0.863636 +vt 0.111111 0.534091 +vt 0.111111 0.573864 +vt 0.111111 0.602273 +vt 0.083333 0.607955 +vt 0.023148 0.653409 +vt 0.023148 0.568182 +vt 0.060185 0.568182 +vt 0.060185 0.596591 +vt 0.060185 0.579545 +vt 0.120370 0.670455 +vt 0.120370 0.602273 +vt 0.201425 0.503321 +vt 0.196368 0.497115 +vt 0.194517 0.488636 +vt 0.201425 0.473951 +vt 0.208333 0.471680 +vt 0.215242 0.473951 +vt 0.222150 0.488636 +vt 0.220299 0.497115 +vt 0.215242 0.503321 +vt 0.199107 0.526816 +vt 0.195742 0.522687 +vt 0.194510 0.517045 +vt 0.199107 0.507274 +vt 0.203704 0.505763 +vt 0.208300 0.507274 +vt 0.211665 0.511404 +vt 0.212897 0.517045 +vt 0.208300 0.526816 +vt 0.074074 0.090909 +vt 0.611111 0.079545 +vt 0.611111 0.090909 +vt 0.074074 0.079545 +vt 0.611111 0.068182 +vt 0.074074 0.068182 +vt 0.611111 0.056818 +vt 0.074074 0.056818 +vt 0.611111 0.045455 +vt -0.000000 0.863636 +vt 0.532407 0.869318 +vt -0.000000 0.869318 +vt -0.000000 0.880682 +vt 0.532407 0.886364 +vt -0.000000 0.886364 +vt -0.000000 0.909091 +vt 0.532407 0.914773 +vt -0.000000 0.914773 +vt -0.000000 0.926136 +vt 0.532407 0.931818 +vt -0.000000 0.931818 +vt -0.000000 0.875000 +vt 0.532407 0.880682 +vt -0.000000 0.903409 +vt 0.532407 0.909091 +vt -0.000000 0.892045 +vt 0.532407 0.897727 +vt -0.000000 0.897727 +vt -0.000000 0.920455 +vt 0.532407 0.926136 +vt 0.532407 0.875000 +vt 0.532407 0.903409 +vt 0.532407 0.892045 +vt 0.532407 0.920455 +vt 0.074074 0.318182 +vt 0.611111 0.306818 +vt 0.611111 0.318182 +vt 0.074074 0.306818 +vt 0.611111 0.295455 +vt 0.074074 0.295455 +vt 0.611111 0.284091 +vt 0.074074 0.284091 +vt 0.611111 0.272727 +vt -0.000000 0.863636 +vt 0.532407 0.869318 +vt -0.000000 0.869318 +vt -0.000000 0.880682 +vt 0.532407 0.886364 +vt -0.000000 0.886364 +vt -0.000000 0.909091 +vt 0.532407 0.914773 +vt -0.000000 0.914773 +vt -0.000000 0.926136 +vt 0.532407 0.931818 +vt -0.000000 0.931818 +vt -0.000000 0.875000 +vt 0.532407 0.880682 +vt -0.000000 0.903409 +vt 0.532407 0.909091 +vt -0.000000 0.892045 +vt 0.532407 0.897727 +vt -0.000000 0.897727 +vt -0.000000 0.920455 +vt 0.532407 0.926136 +vt 0.532407 0.875000 +vt 0.532407 0.903409 +vt 0.532407 0.892045 +vt 0.532407 0.920455 +vt 0.074074 0.136364 +vt 0.537037 0.147727 +vt 0.074074 0.147727 +vt 0.074074 0.159091 +vt 0.537037 0.159091 +vt 0.074074 0.204545 +vt 0.074074 0.113636 +vt 0.611111 0.102273 +vt 0.611111 0.113636 +vt 0.074074 0.045455 +vt 0.611111 0.000000 +vt -0.000000 0.863636 +vt 0.532407 0.869318 +vt -0.000000 0.869318 +vt -0.000000 0.880682 +vt 0.532407 0.886364 +vt -0.000000 0.886364 +vt -0.000000 0.909091 +vt 0.532407 0.914773 +vt -0.000000 0.914773 +vt -0.000000 0.926136 +vt 0.532407 0.931818 +vt -0.000000 0.931818 +vt -0.000000 0.875000 +vt 0.532407 0.880682 +vt -0.000000 0.903409 +vt 0.532407 0.909091 +vt -0.000000 0.892045 +vt 0.532407 0.897727 +vt -0.000000 0.897727 +vt -0.000000 0.920455 +vt 0.532407 0.926136 +vt 0.532407 0.875000 +vt 0.532407 0.903409 +vt 0.532407 0.892045 +vt 0.532407 0.920455 +vt 0.611111 0.261364 +vt 0.074074 0.250000 +vt 0.611111 0.250000 +vt 0.074074 0.272727 +vt -0.000000 0.863636 +vt 0.532407 0.869318 +vt -0.000000 0.869318 +vt -0.000000 0.880682 +vt 0.532407 0.886364 +vt -0.000000 0.886364 +vt -0.000000 0.909091 +vt 0.532407 0.914773 +vt -0.000000 0.914773 +vt -0.000000 0.926136 +vt 0.532407 0.931818 +vt -0.000000 0.931818 +vt -0.000000 0.875000 +vt 0.532407 0.880682 +vt -0.000000 0.903409 +vt 0.532407 0.909091 +vt -0.000000 0.892045 +vt 0.532407 0.897727 +vt -0.000000 0.897727 +vt -0.000000 0.920455 +vt 0.532407 0.926136 +vt 0.532407 0.875000 +vt 0.532407 0.903409 +vt 0.532407 0.892045 +vt 0.532407 0.920455 +vt 0.537037 0.125000 +vt 0.074074 0.125000 +vt 0.537037 0.215909 +vt 0.074074 0.215909 +vt 0.537037 0.227273 +vt 0.074074 0.227273 +vt 0.074074 0.238636 +vt 0.560185 0.659091 +vt 0.467593 0.664773 +vt 0.467593 0.659091 +vt 0.560185 0.664773 +vt 0.467593 0.670455 +vt 0.560185 0.625000 +vt 0.467593 0.630682 +vt 0.467593 0.625000 +vt 0.560185 0.630682 +vt 0.467593 0.636364 +vt 0.560185 0.636364 +vt 0.467593 0.642045 +vt 0.560185 0.642045 +vt 0.467593 0.647727 +vt 0.560185 0.647727 +vt 0.467593 0.653409 +vt 0.560185 0.653409 +vt 0.537037 0.238636 +vt 0.611111 0.238636 +vt 0.833333 0.204545 +vt 0.851852 0.045455 +vt 0.851852 0.204545 +vt 0.981481 0.045455 +vt 0.962963 0.068182 +vt 0.962963 0.045455 +vt 0.981481 0.068182 +vt 0.962963 0.181818 +vt 0.981481 0.181818 +vt 0.962963 0.204545 +vt 0.981481 0.204545 +vt 0.962963 0.250000 +vt 0.925926 0.181818 +vt 0.953704 0.068182 +vt 0.916667 0.181818 +vt 0.907407 0.045455 +vt 0.861111 0.204545 +vt 0.953704 0.068182 +vt 0.916667 0.181818 +vt 0.861111 0.227273 +vt 0.851852 0.227273 +vt 0.925926 0.204545 +vt 0.953704 0.250000 +vt 0.916667 0.204545 +vt 0.925926 0.181818 +vt 0.944444 0.045455 +vt 0.935185 0.045455 +vt 0.916667 0.045455 +vt 0.861111 0.204545 +vt 0.861111 0.227273 +vt 0.870370 0.227273 +vt 0.851852 0.227273 +vt 0.851852 0.204545 +vt 0.944444 0.045455 +vt 0.962963 0.068182 +vt 0.907407 0.045455 +vt 0.925926 0.204545 +vt 0.953704 0.250000 +vt 0.962963 0.250000 +vt 0.916667 0.204545 +vt 0.870370 0.250000 +vt 0.870370 0.227273 +vt 0.870370 0.250000 +vt 0.870370 0.568182 +vt 0.861111 0.579545 +vt 0.861111 0.568182 +vt 0.814815 0.568182 +vt 0.805556 0.579545 +vt 0.805556 0.568182 +vt 0.833333 0.568182 +vt 0.824074 0.579545 +vt 0.824074 0.568182 +vt 0.851852 0.568182 +vt 0.842593 0.579545 +vt 0.842593 0.568182 +vt 0.851852 0.579545 +vt 0.796296 0.579545 +vt 0.796296 0.568182 +vt 0.814815 0.579545 +vt 0.833333 0.579545 +vt 0.796296 0.568182 +vt 0.787037 0.636364 +vt 0.787037 0.568182 +vt 0.740741 0.568182 +vt 0.731481 0.636364 +vt 0.731481 0.568182 +vt 0.759259 0.568182 +vt 0.750000 0.636364 +vt 0.750000 0.568182 +vt 0.777778 0.568182 +vt 0.768519 0.636364 +vt 0.768519 0.568182 +vt 0.777778 0.636364 +vt 0.722222 0.636364 +vt 0.722222 0.568182 +vt 0.740741 0.636364 +vt 0.759259 0.636364 +vt 0.726852 0.477273 +vt 0.745370 0.477273 +vt 0.652778 0.500000 +vt 0.652778 0.477273 +vt 0.763889 0.477273 +vt 0.837963 0.500000 +vt 0.837963 0.477273 +vt 0.768519 0.568182 +vt 0.759259 0.636364 +vt 0.759259 0.568182 +vt 0.750000 0.568182 +vt 0.740741 0.636364 +vt 0.740741 0.568182 +vt 0.731481 0.568182 +vt 0.722222 0.636364 +vt 0.722222 0.568182 +vt 0.787037 0.568182 +vt 0.777778 0.636364 +vt 0.777778 0.568182 +vt 0.768519 0.636364 +vt 0.750000 0.636364 +vt 0.731481 0.636364 +vt 0.796296 0.568182 +vt 0.787037 0.636364 +vt 0.842593 0.568182 +vt 0.833333 0.579545 +vt 0.833333 0.568182 +vt 0.824074 0.568182 +vt 0.814815 0.579545 +vt 0.814815 0.568182 +vt 0.805556 0.568182 +vt 0.796296 0.579545 +vt 0.796296 0.568182 +vt 0.861111 0.568182 +vt 0.851852 0.579545 +vt 0.851852 0.568182 +vt 0.842593 0.579545 +vt 0.824074 0.579545 +vt 0.805556 0.579545 +vt 0.870370 0.568182 +vt 0.861111 0.579545 +vt 0.226852 0.488636 +vt 0.222222 0.494318 +vt 0.222222 0.488636 +vt 0.222222 0.448864 +vt 0.226852 0.454545 +vt 0.222222 0.454545 +vt 0.222222 0.500000 +vt 0.226852 0.505682 +vt 0.222222 0.505682 +vt 0.226852 0.500000 +vt 0.226852 0.471591 +vt 0.222222 0.477273 +vt 0.222222 0.471591 +vt 0.222222 0.460227 +vt 0.226852 0.437500 +vt 0.222222 0.443182 +vt 0.222222 0.437500 +vt 0.226852 0.477273 +vt 0.222222 0.482955 +vt 0.226852 0.465909 +vt 0.222222 0.465909 +vt 0.226852 0.443182 +vt 0.532407 0.863636 +vt 0.532407 0.863636 +vt 0.537037 0.136364 +vt 0.537037 0.204545 +vt 0.074074 0.102273 +vt 0.074074 0.000000 +vt 0.532407 0.863636 +vt 0.074074 0.261364 +vt 0.532407 0.863636 +vt 0.560185 0.670455 +vt 0.611111 0.125000 +vt 0.833333 0.045455 +vt 0.981481 0.250000 +vt 0.870370 0.579545 +vt 0.796296 0.636364 +vt 0.726852 0.500000 +vt 0.763889 0.500000 +vt 0.796296 0.636364 +vt 0.870370 0.579545 +vt 0.226852 0.494318 +vt 0.226852 0.448864 +vt 0.226852 0.460227 +vt 0.226852 0.482955 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -0.5547 -0.8321 +vn -1.0000 0.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 -0.4472 0.8944 +vn 0.0000 -0.8944 0.4472 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 0.9231 0.3846 +vn 0.0000 0.7085 0.7057 +vn 0.8000 -0.6000 0.0000 +vn -0.8000 -0.6000 0.0000 +vn 0.9018 0.4321 0.0000 +vn 0.8660 -0.5000 0.0000 +vn 0.5000 -0.8660 -0.0000 +vn 0.1305 -0.9914 -0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.8660 -0.5000 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.8660 0.5000 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.8660 0.5000 0.0000 +vn -0.1305 -0.9914 -0.0000 +vn -0.9018 0.4321 0.0000 +vn 0.1305 0.9914 0.0000 +vn -0.1305 0.9914 0.0000 +vn 0.9018 -0.4321 0.0000 +vn 0.8069 -0.5907 0.0000 +vn 0.8069 0.5907 0.0000 +vn -0.8069 -0.5907 0.0000 +vn -0.9018 -0.4321 0.0000 +vn -0.8069 0.5907 0.0000 +vn 0.9960 -0.0890 0.0000 +vn 0.0000 -0.7071 -0.7071 +vn -0.0000 -0.7071 0.7071 +vn -0.9960 -0.0890 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.4858 -0.2432 0.8396 +vn 0.3929 -0.3622 0.8452 +vn 0.4858 -0.2432 0.8396 +vn -0.3458 -0.6635 -0.6635 +vn 0.3395 -0.1767 -0.9239 +vn 0.3458 -0.6635 -0.6635 +vn -0.3395 -0.1767 -0.9239 +vn 0.3945 0.1811 -0.9009 +vn -0.3945 0.1811 -0.9009 +vn 0.3878 -0.3878 -0.8361 +vn -0.3878 -0.3878 -0.8361 +vn 0.2418 -0.6861 -0.6861 +vn -0.8661 -0.1385 -0.4802 +vn -0.9386 0.0604 -0.3398 +vn 0.9032 -0.0951 0.4186 +vn 0.9487 -0.1245 0.2905 +vn 0.8661 -0.1385 -0.4802 +vn 0.9386 0.0604 -0.3398 +vn 0.9239 0.0000 0.3827 +vn 0.7071 0.0000 0.7071 +vn 0.7592 -0.4602 -0.4602 +vn 0.9518 -0.1020 -0.2893 +vn 0.9607 -0.1962 -0.1962 +vn -0.9607 -0.1962 -0.1962 +vn -0.9487 -0.1245 0.2905 +vn -0.9032 -0.0951 0.4186 +vn -0.9239 0.0000 0.3827 +vn -0.7071 0.0000 0.7071 +vn -0.3929 -0.3622 0.8452 +vn -0.7592 -0.4602 -0.4602 +vn -0.2418 -0.6861 -0.6861 +vn -0.9518 -0.1020 -0.2893 +vn -0.7071 0.0000 -0.7071 +vn 0.7071 0.0000 -0.7071 +vn 0.0000 -0.5547 0.8321 +vn 0.0000 -0.7833 0.6216 +vn 0.0000 -0.9363 0.3511 +vn 0.0000 -0.7833 -0.6216 +vn 0.0000 -0.9363 -0.3511 +vn -0.6124 -0.3536 -0.7071 +vn 0.6124 -0.3536 -0.7071 +vn -0.3536 -0.6124 -0.7071 +vn -0.3536 0.6124 -0.7071 +vn 0.6124 0.3536 -0.7071 +vn 0.3536 -0.6124 -0.7071 +vn -0.6124 0.3536 -0.7071 +vn 0.3536 0.6124 -0.7071 +vn 0.9659 -0.2588 0.0000 +s off +f 202/305/57 210/306/57 209/307/57 +f 198/308/57 210/306/57 200/309/57 +f 198/308/57 212/310/57 211/311/57 +f 194/312/57 212/310/57 196/313/57 +f 197/314/58 224/315/58 195/316/58 +f 224/315/58 193/317/58 195/316/58 +f 201/318/58 222/319/58 199/320/58 +f 199/320/58 223/321/58 197/314/58 +f 230/322/57 241/323/57 232/324/57 +f 230/322/57 243/325/57 242/326/57 +f 236/327/57 240/328/57 239/329/57 +f 232/324/57 240/328/57 234/330/57 +f 235/331/58 252/332/58 233/333/58 +f 252/332/58 231/334/58 233/333/58 +f 253/335/58 229/336/58 231/334/58 +f 229/336/58 255/337/58 227/338/58 +f 295/339/57 261/340/57 299/341/57 +f 270/342/57 280/343/57 279/344/57 +f 266/345/57 280/343/57 268/346/57 +f 264/347/57 281/348/57 266/345/57 +f 264/347/57 271/349/57 282/350/57 +f 269/351/58 292/352/58 267/353/58 +f 267/354/59 261/340/59 301/355/59 +f 265/356/60 303/357/60 263/358/60 +f 265/356/60 362/359/60 361/360/60 +f 263/361/58 284/362/58 328/363/58 +f 320/364/58 297/365/58 364/366/58 +f 360/367/58 318/368/58 319/369/58 +f 304/370/57 305/371/57 296/372/57 +f 304/370/57 307/373/57 306/374/57 +f 302/375/57 308/376/57 307/373/57 +f 298/377/57 308/376/57 300/378/57 +f 303/379/58 293/380/58 294/381/58 +f 310/382/57 298/377/57 332/383/57 +f 238/384/57 236/327/57 239/329/57 +f 204/385/57 275/386/57 312/387/57 +f 237/388/57 312/387/57 311/389/57 +f 311/389/57 310/382/57 332/383/57 +f 274/390/57 313/391/57 275/386/57 +f 203/392/57 276/393/57 204/385/57 +f 205/394/57 246/395/57 206/396/57 +f 278/397/57 270/342/57 279/344/57 +f 214/398/57 194/312/57 330/399/57 +f 330/399/57 277/400/57 203/392/57 +f 206/396/57 245/401/57 207/402/57 +f 244/403/57 202/305/57 208/404/57 +f 273/405/57 314/406/57 274/390/57 +f 272/407/57 262/408/57 316/409/57 +f 226/410/58 193/317/58 225/411/58 +f 290/412/58 269/351/58 329/413/58 +f 297/365/58 322/414/58 331/415/58 +f 250/416/58 235/331/58 331/415/58 +f 289/417/58 290/412/58 329/413/58 +f 331/415/58 323/418/58 249/419/58 +f 257/420/58 218/421/58 219/422/58 +f 220/423/58 201/318/58 256/424/58 +f 326/425/58 285/426/58 286/427/58 +f 325/428/58 286/427/58 287/429/58 +f 249/419/58 324/430/58 260/431/58 +f 258/432/58 217/433/58 218/421/58 +f 288/434/58 215/435/58 216/436/58 +f 288/434/58 216/436/58 324/430/58 +f 342/437/59 340/438/59 348/439/59 +f 351/440/61 333/441/61 334/442/61 +f 341/443/62 345/444/62 349/445/62 +f 353/446/63 334/442/63 333/441/63 +f 355/447/64 354/448/64 353/446/64 +f 357/449/65 356/450/65 355/447/65 +f 356/451/62 358/452/62 351/453/62 +f 352/454/59 357/455/59 355/456/59 +f 359/457/60 362/359/60 360/458/60 +f 360/458/62 363/459/62 359/457/62 +f 366/460/57 365/461/57 359/457/57 +f 367/462/57 370/463/57 368/464/57 +f 369/465/66 372/466/66 370/463/66 +f 371/467/60 374/468/60 372/466/60 +f 373/469/67 376/470/67 374/468/67 +f 375/471/58 378/472/58 376/470/58 +f 376/473/62 378/474/62 368/475/62 +f 373/469/59 371/467/59 369/476/59 +f 381/477/62 380/478/62 379/479/62 +f 383/480/59 386/481/59 384/482/59 +f 381/477/58 385/483/58 382/484/58 +f 379/479/60 386/481/60 381/477/60 +f 390/485/59 387/486/59 388/487/59 +f 391/488/60 390/485/60 388/487/60 +f 393/489/68 389/490/68 390/485/68 +f 394/491/62 393/489/62 391/488/62 +f 406/492/57 403/493/57 404/494/57 +f 402/495/60 399/496/60 400/497/60 +f 395/498/59 401/499/59 397/500/59 +f 397/501/69 402/495/69 398/502/69 +f 396/503/62 402/495/62 400/497/62 +f 396/504/58 399/496/58 395/505/58 +f 424/506/59 407/507/59 403/508/59 +f 423/509/62 410/510/62 406/492/62 +f 410/510/63 405/511/63 406/492/63 +f 411/512/63 440/513/63 414/514/63 +f 427/515/62 423/509/62 408/516/62 +f 407/507/59 426/517/59 428/518/59 +f 426/517/57 438/519/57 428/518/57 +f 426/517/60 429/520/60 437/521/60 +f 427/515/57 447/522/57 425/523/57 +f 425/523/60 446/524/60 423/509/60 +f 452/525/60 450/526/60 456/527/60 +f 468/528/60 466/529/60 472/530/60 +f 474/531/63 476/532/63 478/533/63 +f 490/534/62 486/535/62 488/536/62 +f 487/537/59 481/538/59 489/539/59 +f 497/540/63 495/541/63 493/542/63 +f 503/543/60 505/544/60 499/545/60 +f 519/546/60 521/547/60 515/548/60 +f 525/549/62 524/550/62 523/551/62 +f 527/552/59 530/553/59 528/554/59 +f 526/555/58 527/556/58 524/557/58 +f 525/549/60 529/558/60 526/555/60 +f 523/559/57 530/553/57 525/549/57 +f 532/560/60 533/561/60 531/562/60 +f 540/563/60 541/564/60 539/565/60 +f 534/566/58 535/567/58 533/561/58 +f 531/562/57 537/568/57 532/560/57 +f 532/560/59 538/569/59 534/566/59 +f 533/561/62 536/570/62 531/562/62 +f 542/571/58 543/572/58 541/564/58 +f 539/565/57 545/573/57 540/563/57 +f 540/563/59 546/574/59 542/571/59 +f 541/564/62 544/575/62 539/565/62 +f 548/576/60 549/577/60 547/578/60 +f 550/579/58 551/580/58 549/577/58 +f 547/578/57 553/581/57 548/576/57 +f 548/576/59 554/582/59 550/579/59 +f 549/577/62 552/583/62 547/578/62 +f 557/584/60 555/585/60 556/586/60 +f 559/587/63 561/588/63 560/589/63 +f 555/585/66 562/590/66 559/591/66 +f 555/592/70 560/589/70 556/593/70 +f 556/586/58 561/588/58 557/584/58 +f 558/594/71 561/588/71 562/595/71 +f 564/596/59 563/597/59 565/598/59 +f 568/599/62 569/600/62 567/601/62 +f 574/602/59 571/603/59 572/604/59 +f 575/605/60 574/602/60 572/604/60 +f 577/606/68 573/607/68 574/602/68 +f 578/608/62 577/606/62 575/605/62 +f 579/609/57 582/610/57 580/611/57 +f 581/612/66 584/613/66 582/610/66 +f 583/614/60 586/615/60 584/613/60 +f 585/616/67 588/617/67 586/615/67 +f 587/618/58 590/619/58 588/617/58 +f 588/620/62 590/621/62 580/622/62 +f 585/616/59 583/614/59 581/623/59 +f 593/624/62 592/625/62 591/626/62 +f 595/627/59 598/628/59 596/629/59 +f 594/630/58 595/631/58 592/632/58 +f 593/624/60 597/633/60 594/630/60 +f 591/634/57 598/628/57 593/624/57 +f 601/635/62 600/636/62 599/637/62 +f 603/638/59 606/639/59 604/640/59 +f 601/635/58 605/641/58 602/642/58 +f 599/637/60 606/639/60 601/635/60 +f 611/643/57 615/644/57 607/645/57 +f 628/646/58 630/647/58 622/648/58 +f 202/305/57 200/309/57 210/306/57 +f 198/308/57 211/311/57 210/306/57 +f 198/308/57 196/313/57 212/310/57 +f 194/312/57 213/649/57 212/310/57 +f 197/314/58 223/321/58 224/315/58 +f 224/315/58 225/411/58 193/317/58 +f 201/318/58 221/650/58 222/319/58 +f 199/320/58 222/319/58 223/321/58 +f 230/322/57 242/326/57 241/323/57 +f 230/322/57 228/651/57 243/325/57 +f 236/327/57 234/330/57 240/328/57 +f 232/324/57 241/323/57 240/328/57 +f 235/331/58 251/652/58 252/332/58 +f 252/332/58 253/335/58 231/334/58 +f 253/335/58 254/653/58 229/336/58 +f 229/336/58 254/653/58 255/337/58 +f 295/339/57 301/654/57 261/340/57 +f 261/340/57 265/356/57 299/341/57 +f 270/342/57 268/346/57 280/343/57 +f 266/345/57 281/348/57 280/343/57 +f 264/347/57 282/350/57 281/348/57 +f 264/347/57 262/408/57 271/349/57 +f 269/351/58 291/655/58 292/352/58 +f 267/354/59 303/357/59 261/340/59 +f 265/356/60 261/340/60 303/357/60 +f 265/356/60 263/358/60 362/359/60 +f 317/656/58 362/657/58 328/363/58 +f 362/657/58 263/361/58 328/363/58 +f 263/361/58 283/658/58 284/362/58 +f 284/362/58 285/426/58 327/659/58 +f 284/362/58 327/659/58 328/363/58 +f 320/364/58 321/660/58 297/365/58 +f 320/364/58 364/366/58 319/369/58 +f 364/366/58 360/367/58 319/369/58 +f 360/367/58 362/657/58 318/368/58 +f 362/657/58 317/656/58 318/368/58 +f 304/370/57 306/374/57 305/371/57 +f 304/370/57 302/375/57 307/373/57 +f 302/375/57 300/378/57 308/376/57 +f 298/377/57 309/661/57 308/376/57 +f 303/379/58 267/353/58 293/380/58 +f 267/353/58 292/352/58 293/380/58 +f 283/658/58 263/361/58 294/381/58 +f 263/361/58 303/379/58 294/381/58 +f 310/382/57 309/661/57 298/377/57 +f 238/384/57 332/383/57 236/327/57 +f 247/662/57 205/394/57 204/385/57 +f 204/385/57 276/393/57 275/386/57 +f 275/386/57 313/391/57 312/387/57 +f 312/387/57 248/663/57 247/662/57 +f 247/662/57 204/385/57 312/387/57 +f 237/388/57 248/663/57 312/387/57 +f 332/383/57 238/384/57 237/388/57 +f 237/388/57 311/389/57 332/383/57 +f 274/390/57 314/406/57 313/391/57 +f 203/392/57 277/400/57 276/393/57 +f 205/394/57 247/662/57 246/395/57 +f 278/397/57 330/399/57 270/342/57 +f 214/398/57 213/649/57 194/312/57 +f 203/392/57 214/398/57 330/399/57 +f 330/399/57 278/397/57 277/400/57 +f 206/396/57 246/395/57 245/401/57 +f 208/404/57 207/402/57 244/403/57 +f 207/402/57 245/401/57 244/403/57 +f 244/403/57 243/325/57 228/651/57 +f 202/305/57 209/307/57 208/404/57 +f 244/403/57 228/651/57 202/305/57 +f 273/405/57 315/664/57 314/406/57 +f 272/407/57 271/349/57 262/408/57 +f 262/408/57 296/372/57 316/409/57 +f 296/372/57 305/371/57 316/409/57 +f 316/409/57 315/664/57 273/405/57 +f 316/409/57 273/405/57 272/407/57 +f 226/410/58 329/413/58 193/317/58 +f 290/412/58 291/655/58 269/351/58 +f 297/365/58 321/660/58 322/414/58 +f 250/416/58 251/652/58 235/331/58 +f 226/410/58 215/435/58 329/413/58 +f 215/435/58 289/417/58 329/413/58 +f 249/419/58 250/416/58 331/415/58 +f 331/415/58 322/414/58 323/418/58 +f 257/420/58 258/432/58 218/421/58 +f 257/420/58 219/422/58 256/424/58 +f 219/422/58 220/423/58 256/424/58 +f 220/423/58 221/650/58 201/318/58 +f 201/318/58 227/338/58 256/424/58 +f 227/338/58 255/337/58 256/424/58 +f 326/425/58 327/659/58 285/426/58 +f 325/428/58 326/425/58 286/427/58 +f 249/419/58 323/418/58 324/430/58 +f 258/432/58 259/665/58 217/433/58 +f 288/434/58 289/417/58 215/435/58 +f 216/436/58 217/433/58 324/430/58 +f 217/433/58 259/665/58 324/430/58 +f 259/665/58 260/431/58 324/430/58 +f 324/430/58 325/428/58 287/429/58 +f 287/429/58 288/434/58 324/430/58 +f 340/438/59 338/666/59 336/667/59 +f 336/667/59 350/668/59 340/438/59 +f 350/668/59 348/439/59 340/438/59 +f 348/439/59 346/669/59 344/670/59 +f 344/670/59 342/437/59 348/439/59 +f 351/440/61 352/671/61 333/441/61 +f 349/445/62 335/672/62 337/673/62 +f 337/673/62 339/674/62 349/445/62 +f 339/674/62 341/443/62 349/445/62 +f 341/443/62 343/675/62 345/444/62 +f 345/444/62 347/676/62 349/445/62 +f 353/446/63 354/448/63 334/442/63 +f 355/447/64 356/450/64 354/448/64 +f 357/449/65 358/677/65 356/450/65 +f 351/453/62 334/442/62 356/451/62 +f 334/442/62 354/448/62 356/451/62 +f 353/446/59 333/441/59 355/456/59 +f 333/441/59 352/454/59 355/456/59 +f 359/457/60 361/360/60 362/359/60 +f 360/458/62 364/678/62 363/459/62 +f 365/461/57 361/360/57 359/457/57 +f 359/457/57 363/679/57 366/460/57 +f 367/462/57 369/465/57 370/463/57 +f 369/465/66 371/467/66 372/466/66 +f 371/467/60 373/469/60 374/468/60 +f 373/469/67 375/471/67 376/470/67 +f 375/471/58 377/680/58 378/472/58 +f 368/475/62 370/681/62 376/473/62 +f 370/681/62 372/466/62 376/473/62 +f 372/466/62 374/468/62 376/473/62 +f 369/476/59 367/682/59 377/683/59 +f 377/683/59 375/684/59 369/476/59 +f 375/684/59 373/469/59 369/476/59 +f 381/477/62 382/685/62 380/478/62 +f 383/480/59 385/686/59 386/481/59 +f 381/477/58 386/481/58 385/483/58 +f 379/479/60 384/482/60 386/481/60 +f 390/485/59 389/687/59 387/486/59 +f 391/488/60 393/489/60 390/485/60 +f 393/489/68 392/688/68 389/490/68 +f 394/491/62 392/689/62 393/489/62 +f 406/492/57 405/511/57 403/493/57 +f 402/495/60 401/499/60 399/496/60 +f 395/498/59 399/496/59 401/499/59 +f 397/501/69 401/499/69 402/495/69 +f 396/503/62 398/690/62 402/495/62 +f 396/504/58 400/497/58 399/496/58 +f 403/508/59 405/511/59 424/506/59 +f 405/511/59 409/691/59 424/506/59 +f 406/492/62 404/692/62 423/509/62 +f 404/692/62 408/516/62 423/509/62 +f 410/510/63 409/691/63 405/511/63 +f 414/514/63 413/693/63 432/694/63 +f 432/694/63 431/695/63 411/512/63 +f 411/512/63 412/696/63 440/513/63 +f 440/513/63 441/697/63 414/514/63 +f 414/514/63 432/694/63 411/512/63 +f 427/515/62 425/523/62 423/509/62 +f 407/507/59 424/506/59 426/517/59 +f 426/517/57 437/698/57 438/519/57 +f 426/517/60 424/506/60 429/520/60 +f 427/515/57 448/699/57 447/522/57 +f 425/523/60 447/700/60 446/524/60 +f 456/527/60 455/701/60 454/702/60 +f 454/702/60 453/703/60 452/525/60 +f 452/525/60 451/704/60 450/526/60 +f 450/526/60 449/705/60 456/527/60 +f 456/527/60 454/702/60 452/525/60 +f 472/530/60 471/706/60 470/707/60 +f 470/707/60 469/708/60 468/528/60 +f 468/528/60 467/709/60 466/529/60 +f 466/529/60 465/710/60 472/530/60 +f 472/530/60 470/707/60 468/528/60 +f 478/533/63 479/711/63 480/712/63 +f 480/712/63 473/713/63 474/531/63 +f 474/531/63 475/714/63 476/532/63 +f 476/532/63 477/715/63 478/533/63 +f 478/533/63 480/712/63 474/531/63 +f 488/536/62 484/716/62 490/534/62 +f 490/534/62 482/717/62 486/535/62 +f 489/539/59 483/718/59 487/537/59 +f 487/537/59 485/719/59 481/538/59 +f 493/542/63 492/720/63 491/721/63 +f 491/721/63 498/722/63 497/540/63 +f 497/540/63 496/723/63 495/541/63 +f 495/541/63 494/724/63 493/542/63 +f 493/542/63 491/721/63 497/540/63 +f 499/545/60 500/725/60 501/726/60 +f 501/726/60 502/727/60 503/543/60 +f 503/543/60 504/728/60 505/544/60 +f 505/544/60 506/729/60 499/545/60 +f 499/545/60 501/726/60 503/543/60 +f 515/548/60 516/730/60 517/731/60 +f 517/731/60 518/732/60 519/546/60 +f 519/546/60 520/733/60 521/547/60 +f 521/547/60 522/734/60 515/548/60 +f 515/548/60 517/731/60 519/546/60 +f 525/549/62 526/555/62 524/550/62 +f 527/552/59 529/558/59 530/553/59 +f 526/555/58 529/558/58 527/556/58 +f 525/549/60 530/553/60 529/558/60 +f 523/559/57 528/735/57 530/553/57 +f 532/560/60 534/566/60 533/561/60 +f 540/563/60 542/571/60 541/564/60 +f 534/566/58 538/736/58 535/567/58 +f 531/562/57 536/737/57 537/568/57 +f 532/560/59 537/738/59 538/569/59 +f 533/561/62 535/739/62 536/570/62 +f 542/571/58 546/740/58 543/572/58 +f 539/565/57 544/741/57 545/573/57 +f 540/563/59 545/742/59 546/574/59 +f 541/564/62 543/743/62 544/575/62 +f 548/576/60 550/579/60 549/577/60 +f 550/579/58 554/744/58 551/580/58 +f 547/578/57 552/745/57 553/581/57 +f 548/576/59 553/746/59 554/582/59 +f 549/577/62 551/747/62 552/583/62 +f 557/584/60 558/748/60 555/585/60 +f 559/587/63 562/595/63 561/588/63 +f 555/585/66 558/748/66 562/590/66 +f 555/592/70 559/587/70 560/589/70 +f 556/586/58 560/589/58 561/588/58 +f 558/594/71 557/749/71 561/588/71 +f 564/596/59 566/750/59 563/597/59 +f 568/599/62 570/751/62 569/600/62 +f 574/602/59 573/752/59 571/603/59 +f 575/605/60 577/606/60 574/602/60 +f 577/606/68 576/753/68 573/607/68 +f 578/608/62 576/754/62 577/606/62 +f 579/609/57 581/612/57 582/610/57 +f 581/612/66 583/614/66 584/613/66 +f 583/614/60 585/616/60 586/615/60 +f 585/616/67 587/618/67 588/617/67 +f 587/618/58 589/755/58 590/619/58 +f 580/622/62 582/756/62 588/620/62 +f 582/756/62 584/613/62 588/620/62 +f 584/613/62 586/615/62 588/620/62 +f 581/623/59 579/757/59 589/758/59 +f 589/758/59 587/759/59 581/623/59 +f 587/759/59 585/616/59 581/623/59 +f 593/624/62 594/630/62 592/625/62 +f 595/627/59 597/633/59 598/628/59 +f 594/630/58 597/633/58 595/631/58 +f 593/624/60 598/628/60 597/633/60 +f 591/634/57 596/760/57 598/628/57 +f 601/635/62 602/761/62 600/636/62 +f 603/638/59 605/762/59 606/639/59 +f 601/635/58 606/639/58 605/641/58 +f 599/637/60 604/640/60 606/639/60 +f 607/645/57 608/763/57 609/764/57 +f 609/764/57 610/765/57 611/643/57 +f 611/643/57 612/766/57 613/767/57 +f 613/767/57 614/768/57 611/643/57 +f 614/768/57 615/644/57 611/643/57 +f 615/644/57 616/769/57 617/770/57 +f 617/770/57 618/771/57 607/645/57 +f 607/645/57 609/764/57 611/643/57 +f 615/644/57 617/770/57 607/645/57 +f 630/647/58 619/772/58 622/648/58 +f 619/772/58 620/773/58 622/648/58 +f 620/773/58 621/774/58 622/648/58 +f 622/648/58 623/775/58 624/776/58 +f 624/776/58 625/777/58 622/648/58 +f 625/777/58 626/778/58 622/648/58 +f 626/778/58 627/779/58 628/646/58 +f 628/646/58 629/780/58 630/647/58 +f 626/778/58 628/646/58 622/648/58 +s 1 +f 194/781/72 195/782/59 193/783/72 +f 196/784/59 197/785/73 195/782/59 +f 198/786/73 199/787/74 197/785/73 +f 200/788/74 201/789/75 199/787/74 +f 209/790/60 220/791/76 208/792/76 +f 206/793/59 217/794/73 205/795/73 +f 213/796/77 224/797/62 212/798/62 +f 210/799/78 221/800/60 209/801/60 +f 207/802/79 218/803/59 206/793/59 +f 214/804/80 225/805/77 213/796/77 +f 204/806/74 215/807/63 203/808/63 +f 211/809/81 222/810/78 210/799/78 +f 208/792/76 219/811/79 207/802/79 +f 203/808/63 226/812/80 214/804/80 +f 205/795/73 216/813/74 204/806/74 +f 212/798/62 223/814/81 211/809/81 +f 228/815/82 229/816/80 227/817/82 +f 230/818/80 231/819/77 229/816/80 +f 232/820/77 233/821/62 231/819/77 +f 234/822/62 235/823/83 233/821/62 +f 243/824/60 254/825/76 242/826/76 +f 240/827/59 251/828/73 239/829/73 +f 247/830/77 258/831/62 246/832/62 +f 244/833/78 255/834/60 243/835/60 +f 241/836/79 252/837/59 240/827/59 +f 248/838/80 259/839/77 247/830/77 +f 238/840/74 249/841/63 237/842/63 +f 245/843/81 256/844/78 244/833/78 +f 242/826/76 253/845/79 241/836/79 +f 237/842/63 260/846/80 248/838/80 +f 239/829/73 250/847/74 238/840/74 +f 246/832/62 257/848/81 245/843/81 +f 266/849/79 299/850/76 264/851/76 +f 299/850/76 262/852/84 264/851/76 +f 265/853/84 296/854/85 262/852/84 +f 270/855/86 329/856/87 269/857/86 +f 202/858/75 227/859/82 201/789/75 +f 329/856/88 194/781/72 193/783/72 +f 277/860/60 288/861/76 276/862/76 +f 274/863/59 285/864/73 273/865/73 +f 281/866/77 292/867/62 280/868/62 +f 278/869/78 289/870/60 277/871/60 +f 275/872/79 286/873/59 274/863/59 +f 282/874/80 293/875/77 281/866/77 +f 272/876/74 283/877/63 271/878/63 +f 279/879/81 290/880/78 278/869/78 +f 276/862/76 287/881/79 275/872/79 +f 271/878/63 294/882/80 282/874/80 +f 273/865/73 284/883/74 272/876/74 +f 280/868/62 291/884/81 279/879/81 +f 331/885/89 298/886/90 297/887/90 +f 236/888/83 331/885/91 235/823/83 +f 311/889/60 322/890/76 310/891/76 +f 308/892/59 319/893/73 307/894/73 +f 315/895/77 326/896/62 314/897/62 +f 312/898/78 323/899/60 311/900/60 +f 309/901/79 320/902/59 308/892/59 +f 316/903/80 327/904/77 315/895/77 +f 306/905/74 317/906/63 305/907/63 +f 313/908/81 324/909/78 312/898/78 +f 310/891/76 321/910/79 309/901/79 +f 305/907/63 328/911/80 316/903/80 +f 307/894/73 318/912/74 306/905/74 +f 314/897/62 325/913/81 313/908/81 +f 301/914/92 266/849/79 268/915/59 +f 296/854/85 365/916/78 304/917/78 +f 304/917/78 366/918/81 302/919/81 +f 366/918/81 300/920/62 302/919/81 +f 336/921/58 337/922/93 335/923/58 +f 338/924/93 339/925/63 337/922/93 +f 340/926/63 341/927/94 339/928/63 +f 342/929/94 343/930/57 341/927/94 +f 344/931/57 345/932/66 343/930/57 +f 346/933/66 347/934/60 345/932/66 +f 348/935/60 349/936/67 347/934/60 +f 350/937/67 335/923/58 349/936/67 +f 363/938/95 364/939/96 297/887/90 +f 301/914/92 270/855/86 269/857/86 +f 410/940/97 411/941/98 409/942/99 +f 414/943/100 415/944/101 413/945/102 +f 416/946/103 417/947/104 415/944/101 +f 418/948/105 419/949/106 417/947/104 +f 420/950/107 421/951/108 419/949/106 +f 418/952/105 442/953/109 443/954/110 +f 411/955/98 430/956/111 409/942/99 +f 431/695/112 433/957/113 434/958/114 +f 409/942/99 429/959/115 424/960/116 +f 419/961/106 436/962/117 435/963/118 +f 419/961/106 434/958/114 417/964/104 +f 417/964/104 433/957/113 415/944/101 +f 413/965/102 433/957/113 432/694/119 +f 442/953/109 441/966/120 440/967/121 +f 439/968/122 446/969/123 447/970/62 +f 423/971/124 439/968/122 410/972/97 +f 414/973/100 442/953/109 416/974/103 +f 412/975/125 439/968/122 440/967/121 +f 420/976/107 445/977/126 422/978/127 +f 418/952/105 444/979/128 420/976/107 +f 435/963/118 430/956/111 434/958/114 +f 448/980/62 444/979/128 447/970/62 +f 430/956/111 437/981/59 429/959/115 +f 435/963/118 438/982/59 437/981/59 +f 444/979/128 439/968/122 447/970/62 +f 462/983/62 455/984/129 463/985/129 +f 460/986/57 453/987/124 461/988/124 +f 458/989/59 451/990/116 459/991/116 +f 464/992/58 449/993/130 457/994/130 +f 463/985/129 456/995/58 464/992/58 +f 461/988/124 454/996/62 462/997/62 +f 459/991/116 452/998/57 460/986/57 +f 457/994/130 450/999/59 458/989/59 +f 478/1000/62 471/1001/129 479/1002/129 +f 476/1003/57 469/1004/124 477/1005/124 +f 474/1006/59 467/1007/116 475/1008/116 +f 480/1009/58 465/1010/130 473/1011/130 +f 479/1002/129 472/1012/58 480/1009/58 +f 477/1005/124 470/1013/62 478/1014/62 +f 475/1008/116 468/1015/57 476/1003/57 +f 473/1011/130 466/1016/59 474/1006/59 +f 483/718/131 490/1017/132 484/1018/131 +f 490/1017/132 481/1019/133 482/1020/133 +f 488/1021/134 483/718/61 484/1018/61 +f 485/1022/135 488/1021/134 486/1023/135 +f 498/1024/130 505/1025/59 497/1026/59 +f 496/1027/116 503/1028/57 495/1029/57 +f 494/1030/124 501/1031/62 493/1032/62 +f 492/1033/129 499/1034/58 491/1035/58 +f 491/1035/58 506/1036/130 498/1024/130 +f 497/1026/59 504/1037/116 496/1027/116 +f 495/1029/57 502/1038/124 494/1030/124 +f 493/1039/62 500/1040/129 492/1033/129 +f 514/1041/130 521/1042/59 513/1043/59 +f 512/1044/116 519/1045/57 511/1046/57 +f 510/1047/124 517/1048/62 509/1049/62 +f 508/1050/129 515/1051/58 507/1052/58 +f 507/1052/58 522/1053/130 514/1041/130 +f 513/1043/59 520/1054/116 512/1044/116 +f 511/1046/57 518/1055/124 510/1047/124 +f 509/1056/62 516/1057/129 508/1050/129 +f 627/1058/129 611/1059/136 610/1060/129 +f 615/1061/137 621/1062/130 616/1063/130 +f 612/1064/138 624/1065/93 613/1066/93 +f 611/1059/136 625/1067/138 612/1064/138 +f 630/1068/67 608/1069/139 607/1070/67 +f 621/1062/130 617/1071/140 616/1063/130 +f 624/1072/93 614/1073/141 613/1074/93 +f 629/1075/139 609/1076/142 608/1069/139 +f 617/1071/140 619/1077/143 618/1078/143 +f 623/1079/141 615/1061/137 614/1073/141 +f 609/1076/142 627/1058/129 610/1060/129 +f 618/1078/143 630/1068/67 607/1070/67 +f 194/781/72 196/784/59 195/782/59 +f 196/784/59 198/786/73 197/785/73 +f 198/786/73 200/788/74 199/787/74 +f 200/788/74 202/858/75 201/789/75 +f 209/790/60 221/1080/60 220/791/76 +f 206/793/59 218/803/59 217/794/73 +f 213/796/77 225/805/77 224/797/62 +f 210/799/78 222/810/78 221/800/60 +f 207/802/79 219/811/79 218/803/59 +f 214/804/80 226/812/80 225/805/77 +f 204/806/74 216/813/74 215/807/63 +f 211/809/81 223/814/81 222/810/78 +f 208/792/76 220/791/76 219/811/79 +f 203/808/63 215/807/63 226/812/80 +f 205/795/73 217/794/73 216/813/74 +f 212/798/62 224/797/62 223/814/81 +f 228/815/82 230/818/80 229/816/80 +f 230/818/80 232/820/77 231/819/77 +f 232/820/77 234/822/62 233/821/62 +f 234/822/62 236/888/83 235/823/83 +f 243/824/60 255/1081/60 254/825/76 +f 240/827/59 252/837/59 251/828/73 +f 247/830/77 259/839/77 258/831/62 +f 244/833/78 256/844/78 255/834/60 +f 241/836/79 253/845/79 252/837/59 +f 248/838/80 260/846/80 259/839/77 +f 238/840/74 250/847/74 249/841/63 +f 245/843/81 257/848/81 256/844/78 +f 242/826/76 254/825/76 253/845/79 +f 237/842/63 249/841/63 260/846/80 +f 239/829/73 251/828/73 250/847/74 +f 246/832/62 258/831/62 257/848/81 +f 266/849/79 295/1082/79 299/850/76 +f 299/850/76 265/853/84 262/852/84 +f 265/853/84 361/1083/85 296/854/85 +f 270/855/86 330/1084/87 329/856/87 +f 202/858/75 228/1085/82 227/859/82 +f 329/856/88 330/1084/88 194/781/72 +f 277/860/60 289/1086/60 288/861/76 +f 274/863/59 286/873/59 285/864/73 +f 281/866/77 293/875/77 292/867/62 +f 278/869/78 290/880/78 289/870/60 +f 275/872/79 287/881/79 286/873/59 +f 282/874/80 294/882/80 293/875/77 +f 272/876/74 284/883/74 283/877/63 +f 279/879/81 291/884/81 290/880/78 +f 276/862/76 288/861/76 287/881/79 +f 271/878/63 283/877/63 294/882/80 +f 273/865/73 285/864/73 284/883/74 +f 280/868/62 292/867/62 291/884/81 +f 331/885/89 332/1087/89 298/886/90 +f 236/888/83 332/1087/91 331/885/91 +f 311/889/60 323/1088/60 322/890/76 +f 308/892/59 320/902/59 319/893/73 +f 315/895/77 327/904/77 326/896/62 +f 312/898/78 324/909/78 323/899/60 +f 309/901/79 321/910/79 320/902/59 +f 316/903/80 328/911/80 327/904/77 +f 306/905/74 318/912/74 317/906/63 +f 313/908/81 325/913/81 324/909/78 +f 310/891/76 322/890/76 321/910/79 +f 305/907/63 317/906/63 328/911/80 +f 307/894/73 319/893/73 318/912/74 +f 314/897/62 326/896/62 325/913/81 +f 301/914/92 295/1082/79 266/849/79 +f 296/854/85 361/1083/85 365/916/78 +f 304/917/78 365/916/78 366/918/81 +f 366/918/81 363/938/95 300/920/62 +f 336/921/58 338/924/93 337/922/93 +f 338/924/93 340/1089/63 339/925/63 +f 340/926/63 342/929/94 341/927/94 +f 342/929/94 344/931/57 343/930/57 +f 344/931/57 346/933/66 345/932/66 +f 346/933/66 348/935/60 347/934/60 +f 348/935/60 350/937/67 349/936/67 +f 350/937/67 336/921/58 335/923/58 +f 297/887/90 298/886/90 363/938/95 +f 298/886/90 300/920/62 363/938/95 +f 269/857/86 267/1090/144 301/914/92 +f 301/914/92 268/915/59 270/855/86 +f 410/940/97 412/1091/125 411/941/98 +f 414/943/100 416/946/103 415/944/101 +f 416/946/103 418/948/105 417/947/104 +f 418/948/105 420/950/107 419/949/106 +f 420/950/107 422/1092/127 421/951/108 +f 418/952/105 416/974/103 442/953/109 +f 411/955/98 431/695/112 430/956/111 +f 434/958/114 430/956/111 431/695/112 +f 431/695/112 432/694/119 433/957/113 +f 409/942/99 430/956/111 429/959/115 +f 419/961/106 421/951/108 436/962/117 +f 419/961/106 435/963/118 434/958/114 +f 417/964/104 434/958/114 433/957/113 +f 413/965/102 415/944/101 433/957/113 +f 439/968/122 443/954/110 440/967/121 +f 443/954/110 442/953/109 440/967/121 +f 423/971/124 446/969/123 439/968/122 +f 414/973/100 441/966/120 442/953/109 +f 412/975/125 410/972/97 439/968/122 +f 420/976/107 444/979/128 445/977/126 +f 418/952/105 443/954/110 444/979/128 +f 435/963/118 437/981/59 430/956/111 +f 448/980/62 445/977/126 444/979/128 +f 435/963/118 436/962/117 438/982/59 +f 444/979/128 443/954/110 439/968/122 +f 462/983/62 454/1093/62 455/984/129 +f 460/986/57 452/998/57 453/987/124 +f 458/989/59 450/999/59 451/990/116 +f 464/992/58 456/995/58 449/993/130 +f 463/985/129 455/984/129 456/995/58 +f 461/988/124 453/987/124 454/996/62 +f 459/991/116 451/990/116 452/998/57 +f 457/994/130 449/993/130 450/999/59 +f 478/1000/62 470/1094/62 471/1001/129 +f 476/1003/57 468/1015/57 469/1004/124 +f 474/1006/59 466/1016/59 467/1007/116 +f 480/1009/58 472/1012/58 465/1010/130 +f 479/1002/129 471/1001/129 472/1012/58 +f 477/1005/124 469/1004/124 470/1013/62 +f 475/1008/116 467/1007/116 468/1015/57 +f 473/1011/130 465/1010/130 466/1016/59 +f 483/718/131 489/1095/132 490/1017/132 +f 490/1017/132 489/1095/132 481/1019/133 +f 488/1021/134 487/1096/134 483/718/61 +f 485/1022/135 487/1096/134 488/1021/134 +f 498/1024/130 506/1036/130 505/1025/59 +f 496/1027/116 504/1037/116 503/1028/57 +f 494/1030/124 502/1038/124 501/1031/62 +f 492/1033/129 500/1040/129 499/1034/58 +f 491/1035/58 499/1034/58 506/1036/130 +f 497/1026/59 505/1025/59 504/1037/116 +f 495/1029/57 503/1028/57 502/1038/124 +f 493/1039/62 501/1097/62 500/1040/129 +f 514/1041/130 522/1053/130 521/1042/59 +f 512/1044/116 520/1054/116 519/1045/57 +f 510/1047/124 518/1055/124 517/1048/62 +f 508/1050/129 516/1057/129 515/1051/58 +f 507/1052/58 515/1051/58 522/1053/130 +f 513/1043/59 521/1042/59 520/1054/116 +f 511/1046/57 519/1045/57 518/1055/124 +f 509/1056/62 517/1098/62 516/1057/129 +f 627/1058/129 626/1099/136 611/1059/136 +f 615/1061/137 622/1100/137 621/1062/130 +f 612/1064/138 625/1067/138 624/1065/93 +f 611/1059/136 626/1099/136 625/1067/138 +f 630/1068/67 629/1075/139 608/1069/139 +f 621/1062/130 620/1101/140 617/1071/140 +f 624/1072/93 623/1079/141 614/1073/141 +f 629/1075/139 628/1102/142 609/1076/142 +f 617/1071/140 620/1101/140 619/1077/143 +f 623/1079/141 622/1100/137 615/1061/137 +f 609/1076/142 628/1102/142 627/1058/129 +f 618/1078/143 619/1077/143 630/1068/67 +o Latch +v 0.125000 1.000000 1.000000 +v -0.125000 1.000000 1.000000 +v 0.125000 1.000000 -0.625000 +v -0.125000 1.000000 -0.625000 +v 0.125000 1.312500 1.000000 +v -0.125000 1.312500 1.000000 +v 0.125000 1.312500 -0.625000 +v -0.125000 1.312500 -0.625000 +v 0.500000 1.312500 -0.625000 +v 0.500000 1.000000 -0.625000 +v -0.500000 1.312500 -0.625000 +v -0.500000 1.000000 -0.625000 +v 0.500000 1.000000 -0.875000 +v 0.500000 1.312500 -0.875000 +v -0.500000 1.312500 -0.875000 +v -0.500000 1.000000 -0.875000 +v 0.500000 1.062500 -0.937500 +v 0.500000 1.250000 -0.937500 +v -0.500000 1.250000 -0.937500 +v -0.500000 1.062500 -0.937500 +vt 0.953704 0.522727 +vt 0.972222 0.522727 +vt 0.972222 0.551136 +vt 1.000000 0.323864 +vt 0.981481 0.471591 +vt 0.981481 0.323864 +vt 0.958333 0.471591 +vt 0.939815 0.323864 +vt 0.958333 0.323864 +vt 0.916667 0.323864 +vt 0.939815 0.471591 +vt 0.916667 0.471591 +vt 0.958333 0.295455 +vt 0.939815 0.295455 +vt 0.875000 0.500000 +vt 0.949074 0.471591 +vt 0.949074 0.500000 +vt 0.949074 0.522727 +vt 0.875000 0.528409 +vt 0.875000 0.522727 +vt 0.875000 0.573864 +vt 0.949074 0.551136 +vt 0.949074 0.573864 +vt 0.870370 0.551136 +vt 0.851852 0.551136 +vt 0.851852 0.522727 +vt 0.949074 0.545455 +vt 0.949074 0.528409 +vt 0.875000 0.551136 +vt 0.953704 0.551136 +vt 1.000000 0.471591 +vt 0.875000 0.471591 +vt 0.870370 0.522727 +vt 0.875000 0.545455 +vn 1.0000 0.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -0.7071 -0.7071 +s off +f 644/1103/145 639/1104/145 640/1105/145 +f 632/1106/146 633/1107/146 631/1108/146 +f 637/1109/147 636/1110/147 635/1111/147 +f 632/1112/148 638/1113/148 634/1114/148 +f 631/1115/149 636/1110/149 632/1116/149 +f 633/1107/145 635/1111/145 631/1108/145 +f 641/1117/149 640/1118/149 639/1119/149 +f 644/1120/150 649/1121/150 645/1122/150 +f 639/1119/147 645/1122/147 641/1117/147 +f 642/1123/146 643/1124/146 640/1125/146 +f 646/1126/148 642/1127/148 641/1128/148 +f 647/1129/151 649/1121/151 648/1130/151 +f 646/1131/152 647/1129/152 643/1124/152 +f 640/1105/145 643/1132/145 644/1103/145 +f 643/1132/145 647/1129/145 644/1103/145 +f 647/1129/145 648/1130/145 644/1103/145 +f 632/1106/146 634/1133/146 633/1107/146 +f 637/1109/147 638/1113/147 636/1110/147 +f 632/1112/148 636/1110/148 638/1113/148 +f 631/1115/149 635/1111/149 636/1110/149 +f 633/1107/145 637/1109/145 635/1111/145 +f 641/1117/149 642/1134/149 640/1118/149 +f 644/1120/150 648/1130/150 649/1121/150 +f 639/1119/147 644/1120/147 645/1122/147 +f 642/1123/146 646/1131/146 643/1124/146 +f 641/1128/148 645/1135/148 646/1126/148 +f 645/1135/148 649/1121/148 646/1126/148 +f 649/1121/148 650/1136/148 646/1126/148 +f 647/1129/151 650/1136/151 649/1121/151 +f 646/1131/152 650/1136/152 647/1129/152 +o Gun +v -0.500000 0.000000 0.000000 +v 0.500000 0.000000 0.000000 +v -0.500000 1.000000 -0.750000 +v -0.500000 1.000000 0.000000 +v 0.500000 1.000000 0.000000 +v 0.500000 1.000000 -0.750000 +v 0.500000 0.500000 0.000000 +v 0.500000 0.500000 -0.750000 +v 0.500000 0.000000 1.000000 +v -0.500000 0.000000 1.000000 +v -0.500000 0.500000 0.000000 +v -0.500000 0.500000 -0.750000 +v 0.625000 0.500000 0.000000 +v 0.625000 0.500000 -0.750000 +v 0.625000 0.000000 1.000000 +v -0.625000 0.000000 1.000000 +v -0.625000 0.500000 0.000000 +v -0.625000 0.500000 -0.750000 +v 0.500000 -0.125000 1.000000 +v -0.500000 -0.125000 1.000000 +v 0.625000 0.000000 -0.750000 +v -0.625000 0.000000 -0.750000 +v 0.500000 -0.125000 -0.750000 +v -0.500000 -0.125000 -0.750000 +v 0.187500 -0.750000 0.500000 +v 0.187500 -0.125000 0.250000 +v 0.187500 -0.750000 1.000000 +v 0.187500 -0.125000 1.000000 +v 0.437500 -0.750000 0.500000 +v 0.437500 -0.125000 0.250000 +v 0.437500 -0.750000 1.000000 +v 0.437500 -0.125000 1.000000 +v 0.437500 -0.500000 0.500000 +v 0.437500 -0.323223 0.573223 +v 0.437500 -0.250000 0.750000 +v 0.437500 -0.323223 0.926777 +v 0.437500 -0.500000 1.000000 +v 0.437500 -0.676777 0.926777 +v 0.437500 -0.750000 0.750000 +v 0.437500 -0.676777 0.573223 +v 0.559000 -0.323223 0.573223 +v 0.559000 -0.500000 0.500000 +v 0.559000 -0.250000 0.750000 +v 0.559000 -0.323223 0.926777 +v 0.559000 -0.500000 1.000000 +v 0.559000 -0.676777 0.926777 +v 0.559000 -0.750000 0.750000 +v 0.559000 -0.676777 0.573223 +v -0.500000 0.125000 -0.750000 +v -0.250000 -0.125000 -0.750000 +v 0.250000 -0.125000 -0.750000 +v 0.500000 0.125000 -0.750000 +v -0.250000 0.875000 -0.750000 +v -0.500000 0.625000 -0.750000 +v 0.500000 0.625000 -0.750000 +v 0.250000 0.875000 -0.750000 +v -0.250000 -0.125000 -2.500000 +v -0.500000 0.125000 -2.500000 +v 0.500000 0.125000 -2.500000 +v 0.250000 -0.125000 -2.500000 +v -0.500000 0.625000 -2.500000 +v -0.250000 0.875000 -2.500000 +v 0.250000 0.875000 -2.500000 +v 0.500000 0.625000 -2.500000 +v 0.695083 0.632582 -0.687500 +v 0.750000 0.500000 -0.687500 +v 0.695083 0.367418 -0.687500 +v 0.562500 0.312500 -0.687500 +v 0.429917 0.367417 -0.687500 +v 0.375000 0.500000 -0.687500 +v 0.429917 0.632583 -0.687500 +v 0.562500 0.687500 -0.687500 +v 0.695083 0.632582 -2.562500 +v 0.750000 0.500000 -2.562500 +v 0.562500 0.312500 -2.562500 +v 0.429917 0.367417 -2.562500 +v 0.375000 0.500000 -2.562500 +v 0.429917 0.632583 -2.562500 +v 0.562500 0.687500 -2.562500 +v 0.695083 0.367418 -2.562500 +v 0.125000 -0.125000 -0.500000 +v -0.125000 -0.125000 -0.500000 +v 0.125000 -2.125000 -1.250000 +v -0.125000 -2.125000 -1.250000 +v 0.125000 -2.125000 -2.000000 +v -0.125000 -2.125000 -2.000000 +v 0.125000 -1.875000 -2.250000 +v -0.125000 -1.875000 -2.250000 +v 0.125000 -0.500000 -1.625000 +v -0.125000 -0.500000 -1.625000 +v 0.125000 -0.250000 -1.625000 +v -0.125000 -0.250000 -1.625000 +v 0.125000 -0.250000 -2.500000 +v -0.125000 -0.250000 -2.500000 +v 0.125000 -0.125000 -2.500000 +v -0.125000 -0.125000 -2.500000 +v 0.125000 -0.125000 -1.500000 +v -0.125000 -0.125000 -1.500000 +v 0.250000 -0.125000 -0.625000 +v 0.250000 -2.125000 -1.375000 +v 0.250000 -2.125000 -1.875000 +v 0.250000 -1.875000 -2.125000 +v 0.250000 -0.500000 -1.500000 +v 0.250000 -0.250000 -1.500000 +v 0.250000 -0.125000 -1.375000 +v -0.250000 -2.125000 -1.375000 +v -0.250000 -0.125000 -0.625000 +v -0.250000 -2.125000 -1.875000 +v -0.250000 -1.875000 -2.125000 +v -0.250000 -0.500000 -1.500000 +v -0.250000 -0.250000 -1.500000 +v -0.250000 -0.125000 -1.375000 +v 0.062500 -2.125000 -1.250000 +v -0.062500 -2.125000 -1.250000 +v 0.062500 -0.375000 0.250000 +v -0.062500 -0.375000 0.250000 +v 0.062500 -0.125000 0.250000 +v -0.062500 -0.125000 0.250000 +v 0.062500 -0.125000 -0.500000 +v -0.062500 -0.125000 -0.500000 +v 0.093750 -0.750000 0.875000 +v -0.093750 -0.750000 0.875000 +v 0.093750 -0.750000 0.687500 +v -0.093750 -0.750000 0.687500 +v 0.093750 -1.750000 0.375000 +v -0.093750 -1.750000 0.375000 +v 0.093750 -1.625000 0.250000 +v -0.093750 -1.625000 0.250000 +v 0.093750 -2.125000 -1.250000 +v -0.093750 -2.125000 -1.250000 +v 0.093750 -2.000000 -1.250000 +v -0.093750 -2.000000 -1.250000 v 0.562500 0.625000 -2.562500 v 0.474112 0.588388 -2.562500 v 0.437500 0.500000 -2.562500 @@ -672,106 +3333,6 @@ v 0.187500 -2.286612 -7.599112 v 0.187500 -2.463388 -7.599112 v 0.187500 -2.500000 -7.687500 v 0.187500 -2.463388 -7.775888 -v 0.250000 0.437500 0.000000 -v 0.156250 0.412380 0.000000 -v 0.087620 0.343750 0.000000 -v 0.062500 0.250000 0.000000 -v 0.087620 0.156250 0.000000 -v 0.156250 0.087620 0.000000 -v 0.250000 0.062500 0.000000 -v 0.343750 0.087620 0.000000 -v 0.412380 0.156250 0.000000 -v 0.437500 0.250000 0.000000 -v 0.412380 0.343750 0.000000 -v 0.343750 0.412380 0.000000 -v 0.250000 0.437500 1.000000 -v 0.156250 0.412380 1.000000 -v 0.087620 0.343750 1.000000 -v 0.062500 0.250000 1.000000 -v 0.087620 0.156250 1.000000 -v 0.156250 0.087620 1.000000 -v 0.250000 0.062500 1.000000 -v 0.343750 0.087620 1.000000 -v 0.412380 0.156250 1.000000 -v 0.437500 0.250000 1.000000 -v 0.412380 0.343750 1.000000 -v 0.343750 0.412380 1.000000 -v 0.250000 0.460938 0.000000 -v 0.144531 0.432677 0.000000 -v 0.067323 0.355469 0.000000 -v 0.039062 0.250000 0.000000 -v 0.067323 0.144531 0.000000 -v 0.144531 0.067323 0.000000 -v 0.250000 0.039062 0.000000 -v 0.355469 0.067322 0.000000 -v 0.432677 0.144531 0.000000 -v 0.460938 0.250000 0.000000 -v 0.432677 0.355469 0.000000 -v 0.355469 0.432677 0.000000 -v 0.250000 0.460938 -0.062500 -v 0.144531 0.432677 -0.062500 -v 0.067323 0.355469 -0.062500 -v 0.039062 0.250000 -0.062500 -v 0.067323 0.144531 -0.062500 -v 0.144531 0.067323 -0.062500 -v 0.250000 0.039062 -0.062500 -v 0.355469 0.067322 -0.062500 -v 0.432677 0.144531 -0.062500 -v 0.460938 0.250000 -0.062500 -v 0.432677 0.355469 -0.062500 -v 0.355469 0.432677 -0.062500 -v 0.510000 1.000000 1.000000 -v 0.510000 0.750000 0.000000 -v 0.510000 0.750000 1.000000 -v 0.510000 1.000000 0.000000 -v -0.510000 1.000000 1.000000 -v -0.510000 1.000000 0.000000 -v -0.510000 0.750000 1.000000 -v -0.510000 0.750000 0.000000 -v -0.125000 1.000000 1.000000 -v -0.125000 1.312500 1.000000 -v -0.125000 1.000000 2.000000 -v -0.125000 1.312500 1.250000 -v -0.250000 1.312500 1.000000 -v -0.250000 1.000000 2.000000 -v -0.250000 1.312500 1.250000 -v -0.250000 1.000000 1.000000 -v -0.125000 1.000000 1.000000 -v -0.500000 1.000000 1.000000 -v -0.125000 1.312500 1.000000 -v -0.500000 1.312500 1.000000 -v -0.125000 1.437500 0.875000 -v -0.500000 1.437500 0.875000 -v -0.125000 1.437500 0.625000 -v -0.500000 1.437500 0.625000 -v -0.125000 1.312500 0.500000 -v -0.500000 1.312500 0.500000 -v -0.125000 1.000000 0.500000 -v -0.500000 1.000000 0.500000 -v -0.187500 1.437500 0.875000 -v -0.187500 1.437500 0.625000 -v -0.187500 1.562500 0.875000 -v -0.187500 1.562500 0.625000 -v -0.125000 1.437500 0.625000 -v -0.125000 1.437500 0.875000 -v -0.125000 1.562500 0.625000 -v -0.125000 1.562500 0.875000 -v -0.125000 1.000000 0.000000 -v -0.500000 1.000000 0.000000 -v -0.125000 1.312500 -0.312500 -v -0.500000 1.312500 -0.312500 -v -0.125000 1.312500 -0.625000 -v -0.500000 1.312500 -0.625000 -v -0.125000 1.000000 -0.625000 -v -0.500000 1.000000 -0.625000 -v -0.250000 1.312500 0.500000 -v -0.250000 1.000000 0.500000 -v -0.250000 1.312500 0.000000 -v -0.250000 1.000000 0.000000 -v -0.125000 1.000000 0.500000 -v -0.125000 1.312500 0.500000 -v -0.125000 1.000000 0.000000 -v -0.125000 1.312500 0.000000 v -0.437500 -0.750000 0.500000 v -0.437500 -0.125000 0.250000 v -0.437500 -0.750000 1.000000 @@ -780,150 +3341,6 @@ v -0.187500 -0.750000 0.500000 v -0.187500 -0.125000 0.250000 v -0.187500 -0.750000 1.000000 v -0.187500 -0.125000 1.000000 -v -0.250000 0.437500 0.000000 -v -0.343750 0.412380 0.000000 -v -0.412380 0.343750 0.000000 -v -0.437500 0.250000 0.000000 -v -0.412380 0.156250 0.000000 -v -0.343750 0.087620 0.000000 -v -0.250000 0.062500 0.000000 -v -0.156250 0.087620 0.000000 -v -0.087620 0.156250 0.000000 -v -0.062500 0.250000 0.000000 -v -0.087620 0.343750 0.000000 -v -0.156250 0.412380 0.000000 -v -0.250000 0.437500 1.000000 -v -0.343750 0.412380 1.000000 -v -0.412380 0.343750 1.000000 -v -0.437500 0.250000 1.000000 -v -0.412380 0.156250 1.000000 -v -0.343750 0.087620 1.000000 -v -0.250000 0.062500 1.000000 -v -0.156250 0.087620 1.000000 -v -0.087620 0.156250 1.000000 -v -0.062500 0.250000 1.000000 -v -0.087620 0.343750 1.000000 -v -0.156250 0.412380 1.000000 -v -0.250000 0.460938 0.000000 -v -0.355469 0.432677 0.000000 -v -0.432677 0.355469 0.000000 -v -0.460938 0.250000 0.000000 -v -0.432677 0.144531 0.000000 -v -0.355469 0.067323 0.000000 -v -0.250000 0.039062 0.000000 -v -0.144531 0.067322 0.000000 -v -0.067323 0.144531 0.000000 -v -0.039062 0.250000 0.000000 -v -0.067323 0.355469 0.000000 -v -0.144531 0.432677 0.000000 -v -0.250000 0.460938 -0.062500 -v -0.355469 0.432677 -0.062500 -v -0.432677 0.355469 -0.062500 -v -0.460938 0.250000 -0.062500 -v -0.432677 0.144531 -0.062500 -v -0.355469 0.067323 -0.062500 -v -0.250000 0.039062 -0.062500 -v -0.144531 0.067322 -0.062500 -v -0.067323 0.144531 -0.062500 -v -0.039062 0.250000 -0.062500 -v -0.067323 0.355469 -0.062500 -v -0.144531 0.432677 -0.062500 -v 0.250000 0.937500 0.000000 -v 0.156250 0.912380 0.000000 -v 0.087620 0.843750 0.000000 -v 0.062500 0.750000 0.000000 -v 0.087620 0.656250 0.000000 -v 0.156250 0.587620 0.000000 -v 0.250000 0.562500 0.000000 -v 0.343750 0.587620 0.000000 -v 0.412380 0.656250 0.000000 -v 0.437500 0.750000 0.000000 -v 0.412380 0.843750 0.000000 -v 0.343750 0.912380 0.000000 -v 0.250000 0.937500 1.000000 -v 0.156250 0.912380 1.000000 -v 0.087620 0.843750 1.000000 -v 0.062500 0.750000 1.000000 -v 0.087620 0.656250 1.000000 -v 0.156250 0.587620 1.000000 -v 0.250000 0.562500 1.000000 -v 0.343750 0.587620 1.000000 -v 0.412380 0.656250 1.000000 -v 0.437500 0.750000 1.000000 -v 0.412380 0.843750 1.000000 -v 0.343750 0.912380 1.000000 -v 0.250000 0.960938 0.000000 -v 0.144531 0.932677 0.000000 -v 0.067323 0.855469 0.000000 -v 0.039062 0.750000 0.000000 -v 0.067323 0.644531 0.000000 -v 0.144531 0.567323 0.000000 -v 0.250000 0.539062 0.000000 -v 0.355469 0.567322 0.000000 -v 0.432677 0.644531 0.000000 -v 0.460938 0.750000 0.000000 -v 0.432677 0.855469 0.000000 -v 0.355469 0.932677 0.000000 -v 0.250000 0.960938 -0.062500 -v 0.144531 0.932677 -0.062500 -v 0.067323 0.855469 -0.062500 -v 0.039062 0.750000 -0.062500 -v 0.067323 0.644531 -0.062500 -v 0.144531 0.567323 -0.062500 -v 0.250000 0.539062 -0.062500 -v 0.355469 0.567322 -0.062500 -v 0.432677 0.644531 -0.062500 -v 0.460938 0.750000 -0.062500 -v 0.432677 0.855469 -0.062500 -v 0.355469 0.932677 -0.062500 -v -0.250000 0.937500 0.000000 -v -0.343750 0.912380 0.000000 -v -0.412380 0.843750 0.000000 -v -0.437500 0.750000 0.000000 -v -0.412380 0.656250 0.000000 -v -0.343750 0.587620 0.000000 -v -0.250000 0.562500 0.000000 -v -0.156250 0.587620 0.000000 -v -0.087620 0.656250 0.000000 -v -0.062500 0.750000 0.000000 -v -0.087620 0.843750 0.000000 -v -0.156250 0.912380 0.000000 -v -0.250000 0.937500 1.000000 -v -0.343750 0.912380 1.000000 -v -0.412380 0.843750 1.000000 -v -0.437500 0.750000 1.000000 -v -0.412380 0.656250 1.000000 -v -0.343750 0.587620 1.000000 -v -0.250000 0.562500 1.000000 -v -0.156250 0.587620 1.000000 -v -0.087620 0.656250 1.000000 -v -0.062500 0.750000 1.000000 -v -0.087620 0.843750 1.000000 -v -0.156250 0.912380 1.000000 -v -0.250000 0.960938 0.000000 -v -0.355469 0.932677 0.000000 -v -0.432677 0.855469 0.000000 -v -0.460938 0.750000 0.000000 -v -0.432677 0.644531 0.000000 -v -0.355469 0.567323 0.000000 -v -0.250000 0.539062 0.000000 -v -0.144531 0.567322 0.000000 -v -0.067323 0.644531 0.000000 -v -0.039062 0.750000 0.000000 -v -0.067323 0.855469 0.000000 -v -0.144531 0.932677 0.000000 -v -0.250000 0.960938 -0.062500 -v -0.355469 0.932677 -0.062500 -v -0.432677 0.855469 -0.062500 -v -0.460938 0.750000 -0.062500 -v -0.432677 0.644531 -0.062500 -v -0.355469 0.567323 -0.062500 -v -0.250000 0.539062 -0.062500 -v -0.144531 0.567322 -0.062500 -v -0.067323 0.644531 -0.062500 -v -0.039062 0.750000 -0.062500 -v -0.067323 0.855469 -0.062500 -v -0.144531 0.932677 -0.062500 v -0.437500 -0.500000 1.000000 v -0.437500 -0.323223 0.926777 v -0.437500 -0.250000 0.750000 @@ -1091,138 +3508,22 @@ v -0.474112 0.411612 -2.562500 v -0.437500 0.500000 -2.562500 v -0.474112 0.588388 -2.562500 v -0.562500 0.625000 -2.562500 -vt 0.055443 0.000276 -vt 0.062346 0.008193 -vt 0.055443 0.005923 -vt 0.071383 0.011570 -vt 0.064646 0.003302 -vt 0.069248 0.022865 -vt 0.067398 0.014394 -vt 0.071383 0.034160 -vt 0.073849 0.022865 -vt 0.002691 0.102479 -vt 0.004826 0.113774 -vt 0.000225 0.113774 -vt 0.002691 0.125069 -vt 0.018631 0.091185 -vt 0.011729 0.099102 -vt 0.009428 0.094211 -vt 0.006676 0.105303 -vt 0.009428 0.003302 -vt 0.006676 0.014394 -vt 0.002691 0.011570 -vt 0.018631 0.005923 -vt 0.011729 0.008193 -vt 0.002691 0.034160 -vt 0.004826 0.022865 -vt 0.006676 0.031336 -vt 0.000225 0.022865 -vt 0.071383 0.125069 -vt 0.069248 0.113774 -vt 0.073849 0.113774 -vt 0.071383 0.102479 -vt 0.067398 0.105303 -vt 0.064646 0.094211 -vt 0.055443 0.096832 -vt 0.055443 0.091185 -vt 0.087963 0.329545 -vt 0.092593 0.340909 -vt 0.083333 0.335227 -vt 0.071383 0.056749 -vt 0.069248 0.068044 -vt 0.067398 0.059573 -vt 0.071383 0.079339 -vt 0.073849 0.068044 -vt 0.064646 0.087607 -vt 0.067398 0.076515 -vt 0.055443 0.084986 -vt 0.062346 0.082716 -vt 0.002691 0.147658 -vt 0.004826 0.158953 -vt 0.000225 0.158953 -vt 0.111111 0.431818 -vt 0.111111 0.340909 -vt 0.074074 0.340909 -vt 0.092593 0.431818 -vt 0.074074 0.431818 -vt 0.037037 0.431818 -vt 0.037037 0.340909 -vt 0.018631 0.181542 -vt 0.025533 0.173625 -vt 0.048541 0.173625 -vt 0.069248 0.158953 -vt 0.071383 0.147658 -vt 0.073849 0.158953 -vt 0.073849 0.181542 -vt 0.062346 0.173625 -vt 0.067398 0.167424 -vt 0.009428 0.087607 -vt 0.018631 0.084986 -vt 0.018631 0.090633 -vt 0.006676 0.076515 -vt 0.011729 0.082716 -vt 0.002691 0.079339 -vt 0.004826 0.068044 -vt 0.002691 0.056749 -vt 0.000225 0.068044 -vt 0.000225 0.181542 -vt 0.006676 0.167424 -vt 0.011729 0.173625 -vt 0.011729 0.053372 -vt 0.009428 0.045455 -vt 0.011729 0.037537 -vt 0.048541 0.037537 -vt 0.043488 0.059573 -vt 0.025533 0.053372 -vt 0.018631 0.039807 -vt 0.018631 0.051102 -vt 0.041639 0.068044 -vt 0.030586 0.059573 -vt 0.055443 0.039807 -vt 0.048541 0.053372 -vt 0.043488 0.031336 -vt 0.032436 0.022865 -vt 0.041639 0.022865 -vt 0.062346 0.053372 -vt 0.062346 0.037537 -vt 0.064646 0.045455 -vt 0.055443 0.051102 -vt 0.030586 0.014394 -vt 0.043488 0.014394 -vt 0.025533 0.008193 -vt 0.048541 0.008193 -vt 0.043488 0.076515 -vt 0.032436 0.068044 -vt 0.048541 0.082716 -vt 0.055443 0.090633 -vt 0.025533 0.082716 -vt 0.011729 0.128446 -vt 0.006676 0.122245 -vt 0.011729 0.144281 -vt 0.009428 0.136364 -vt 0.062346 0.144281 -vt 0.064646 0.136364 -vt 0.062346 0.128446 -vt 0.018631 0.142011 -vt 0.055443 0.142011 -vt 0.055443 0.130716 -vt 0.043488 0.105303 -vt 0.032435 0.113774 -vt 0.030586 0.105303 -vt 0.025533 0.099102 -vt 0.048541 0.099102 -vt 0.041639 0.158953 -vt 0.030586 0.167424 -vt 0.032435 0.158953 -vt 0.043488 0.150482 -vt 0.030586 0.150482 -vt 0.048541 0.144281 -vt 0.048541 0.128446 -vt 0.041639 0.113774 -vt 0.030586 0.122245 -vt 0.025533 0.144281 -vt 0.018631 0.130716 -vt 0.025533 0.128446 +v 0.500000 1.000000 0.000000 +v 0.125000 1.000000 0.000000 +v 0.500000 1.312500 -0.312500 +v 0.125000 1.312500 -0.312500 +v 0.500000 1.312500 -0.625000 +v 0.125000 1.312500 -0.625000 +v 0.500000 1.000000 -0.625000 +v 0.125000 1.000000 -0.625000 +v -0.125000 1.000000 0.000000 +v -0.500000 1.000000 0.000000 +v -0.125000 1.312500 -0.312500 +v -0.500000 1.312500 -0.312500 +v -0.125000 1.312500 -0.625000 +v -0.500000 1.312500 -0.625000 +v -0.125000 1.000000 -0.625000 +v -0.500000 1.000000 -0.625000 vt 0.523148 0.568182 vt 0.578704 0.613636 vt 0.523148 0.613636 @@ -1238,26 +3539,6 @@ vt 0.439815 0.465909 vt 0.310185 0.420455 vt 0.310185 0.465909 vt 0.236111 0.465909 -vt 0.502268 0.673238 -vt 0.506944 0.670861 -vt 0.506944 0.687094 -vt 0.486111 0.670455 -vt 0.430556 0.704545 -vt 0.430556 0.670455 -vt 0.497732 0.673238 -vt 0.497732 0.684717 -vt 0.488379 0.684717 -vt 0.384259 0.704545 -vt 0.347222 0.704545 -vt 0.384259 0.670455 -vt 0.310185 0.704545 -vt 0.347222 0.670455 -vt 0.365741 0.625000 -vt 0.328704 0.602273 -vt 0.467593 0.602273 -vt 0.467593 0.772727 -vt 0.328704 0.772727 -vt 0.365741 0.750000 vt 0.652778 0.409091 vt 0.578704 0.397727 vt 0.652778 0.397727 @@ -1270,7 +3551,7 @@ vt 0.523148 0.625000 vt 0.226852 0.465909 vt 0.236111 0.568182 vt 0.226852 0.556818 -vt 0.237069 0.454560 +vt 0.236111 0.454545 vt 0.523148 0.465909 vt 0.652778 0.454545 vt 0.652778 0.465909 @@ -1283,73 +3564,6 @@ vt 0.347222 0.465909 vt 0.347222 0.556818 vt 0.476852 0.556818 vt 0.476852 0.465909 -vt 0.675926 0.596591 -vt 0.652778 0.630682 -vt 0.652778 0.596591 -vt 0.699074 0.596591 -vt 0.675926 0.630682 -vt 0.722222 0.596591 -vt 0.699074 0.630682 -vt 0.699074 0.659091 -vt 0.652778 0.659091 -vt 0.699074 0.568182 -vt 0.018519 0.340909 -vt 0.018519 0.431818 -vt 0.000000 0.340909 -vt 0.023148 0.329545 -vt 0.027778 0.335227 -vt -0.000000 0.607955 -vt 0.023148 0.642045 -vt -0.000000 0.642045 -vt 0.023148 0.607955 -vt 0.032407 0.642045 -vt 0.032407 0.607955 -vt 0.050926 0.642045 -vt 0.050926 0.607955 -vt 0.060185 0.642045 -vt 0.060185 0.607955 -vt 0.083333 0.642045 -vt 0.060185 0.653409 -vt 0.060185 0.681818 -vt 0.023148 0.681818 -vt 0.023148 0.596591 -vt 0.120370 0.642045 -vt 0.083333 0.670455 -vt 0.083333 0.642045 -vt 0.083333 0.602273 -vt 0.120370 0.630682 -vt 0.083333 0.630682 -vt 0.143519 0.630682 -vt 0.143519 0.642045 -vt 0.953704 0.522727 -vt 0.972222 0.522727 -vt 0.972222 0.551136 -vt 1.000000 0.323864 -vt 0.981481 0.471591 -vt 0.981481 0.323864 -vt 0.958333 0.471591 -vt 0.939815 0.323864 -vt 0.958333 0.323864 -vt 0.916667 0.323864 -vt 0.939815 0.471591 -vt 0.916667 0.471591 -vt 0.958333 0.295455 -vt 0.939815 0.295455 -vt 0.875000 0.500000 -vt 0.949074 0.471591 -vt 0.949074 0.500000 -vt 0.949074 0.522727 -vt 0.875000 0.528409 -vt 0.875000 0.522727 -vt 0.875000 0.573864 -vt 0.949074 0.551136 -vt 0.949074 0.573864 -vt 0.870370 0.551136 -vt 0.851852 0.551136 -vt 0.851852 0.522727 -vt 0.949074 0.545455 -vt 0.949074 0.528409 -vt 0.875000 0.551136 vt 0.263889 0.670455 vt 0.226852 0.613636 vt 0.282407 0.613636 @@ -1364,49 +3578,9 @@ vt 0.180556 0.670455 vt 0.162037 0.659195 vt 0.143434 0.636364 vt 0.162037 0.613532 -vt 0.166667 0.562500 -vt 0.185185 0.534091 -vt 0.185185 0.562500 -vt 0.185185 0.573864 -vt 0.166667 0.573864 -vt 0.111111 0.562500 -vt 0.185185 0.602273 -vt 0.648148 0.329545 -vt 0.611111 0.352273 -vt 0.611111 0.329545 -vt 0.134259 0.369318 -vt 0.555556 0.346591 -vt 0.555556 0.369318 -vt 0.555556 0.318182 -vt 0.134259 0.346591 -vt 0.111111 0.318182 -vt 0.111111 0.346591 -vt 0.111111 0.369318 -vt 0.555556 0.397727 -vt 0.578704 0.369318 -vt 0.578704 0.346591 -vt 0.722222 0.375000 -vt 0.722222 0.397727 -vt 0.648148 0.397727 -vt 0.722222 0.306818 -vt 0.722222 0.329545 -vt 0.648148 0.352273 -vt 0.907407 0.034091 -vt 0.916667 0.000000 -vt 0.944444 0.011364 -vt 0.740741 0.284091 -vt 0.722222 0.284091 -vt 0.740741 0.375000 -vt 0.740741 0.397727 -vt 0.750000 0.397727 -vt 0.731481 0.363636 -vt 0.740741 0.363636 -vt 0.750000 0.306818 -vt 0.740741 0.306818 vt 0.722222 -0.000000 vt 0.685185 0.159091 vt 0.685185 -0.000000 -vt 0.731481 0.318182 vt 0.666667 0.250000 vt 0.611111 0.227273 vt 0.629630 0.159091 @@ -1427,15 +3601,6 @@ vt 0.726852 0.283278 vt 0.685847 0.267046 vt 0.699074 0.250813 vt 0.712301 0.267045 -vt 0.805556 0.601731 -vt 0.796738 0.590909 -vt 0.805556 0.580087 -vt 0.736111 0.669642 -vt 0.722884 0.653409 -vt 0.736111 0.637176 -vt 0.777277 0.653381 -vt 0.764050 0.669614 -vt 0.750823 0.653381 vt 0.833333 0.295455 vt 0.824074 0.284091 vt 0.833333 0.250000 @@ -1469,162 +3634,6 @@ vt 0.699074 0.721591 vt 0.587963 0.738636 vt 0.587963 0.670455 vt 0.699074 0.687500 -vt 0.726852 0.534091 -vt 0.837963 0.568182 -vt 0.763889 0.534091 -vt 0.763889 0.534091 -vt 0.652778 0.568182 -vt 0.726852 0.534091 -vt 0.196368 0.480158 -vt 0.220299 0.480158 -vt 0.208333 0.505593 -vt 0.211665 0.522687 -vt 0.203704 0.528328 -vt 0.195742 0.511404 -vt 0.777277 0.653381 -vt 0.764050 0.669614 -vt 0.750823 0.653381 -vt 0.736111 0.669642 -vt 0.722884 0.653409 -vt 0.736111 0.637176 -vt 0.805556 0.601731 -vt 0.796738 0.590909 -vt 0.805556 0.580087 -vt 0.069444 0.585227 -vt 0.087963 0.596591 -vt 0.069444 0.596591 -vt 0.087963 0.568182 -vt 0.069444 0.579545 -vt 0.069444 0.568182 -vt 0.087963 0.585227 -vt 0.097222 0.579545 -vt 0.097222 0.585227 -vt 0.087963 0.579545 -vt 0.060185 0.585227 -vt 0.083333 0.477273 -vt 0.101852 0.488636 -vt 0.083333 0.488636 -vt 0.083333 0.443182 -vt 0.101852 0.454545 -vt 0.083333 0.454545 -vt 0.101852 0.477273 -vt 0.111111 0.488636 -vt 0.074074 0.477273 -vt 0.101852 0.465909 -vt 0.083333 0.500000 -vt 0.101852 0.443182 -vt 0.111111 0.454545 -vt 0.074074 0.443182 -vt 0.101852 0.431818 -vt 0.083333 0.465909 -vt 0.083333 0.443182 -vt 0.101852 0.454545 -vt 0.083333 0.454545 -vt 0.101852 0.443182 -vt 0.111111 0.454545 -vt 0.074074 0.443182 -vt 0.101852 0.431818 -vt 0.083333 0.465909 -vt 0.055556 0.562500 -vt 0.037037 0.505682 -vt 0.055556 0.505682 -vt 0.111111 0.522727 -vt 0.074074 0.545455 -vt 0.074074 0.522727 -vt 0.018519 0.545455 -vt 0.018519 0.522727 -vt 0.092593 0.500000 -vt 0.074074 0.500000 -vt 0.092593 0.568182 -vt 0.111111 0.545455 -vt 0.185185 0.500000 -vt 0.189815 0.488636 -vt 0.189815 0.500000 -vt 0.185185 0.431818 -vt 0.189815 0.443182 -vt 0.185185 0.443182 -vt 0.185185 0.409091 -vt 0.189815 0.397727 -vt 0.189815 0.409091 -vt 0.189815 0.511364 -vt 0.185185 0.511364 -vt 0.189815 0.454545 -vt 0.185185 0.454545 -vt 0.185185 0.465909 -vt 0.189815 0.477273 -vt 0.185185 0.477273 -vt 0.189815 0.420455 -vt 0.185185 0.420455 -vt 0.189815 0.522727 -vt 0.185185 0.522727 -vt 0.189815 0.465909 -vt 0.185185 0.488636 -vt 0.189815 0.431818 -vt 0.185185 0.534091 -vt 0.189815 0.534091 -vt 0.210648 0.437320 -vt 0.196742 0.427467 -vt 0.210648 0.397907 -vt 0.196303 0.446021 -vt 0.220365 0.446021 -vt 0.208334 0.471595 -vt 1.000000 0.863636 -vt 0.555556 1.000000 -vt 0.555556 0.863636 -vt 0.555556 1.000000 -vt 1.000000 0.863636 -vt 1.000000 1.000000 -vt 0.166667 0.562500 -vt 0.185185 0.534091 -vt 0.185185 0.562500 -vt 0.185185 0.573864 -vt 0.166667 0.573864 -vt 0.111111 0.562500 -vt 0.185185 0.602273 -vt -0.000000 0.607955 -vt 0.023148 0.642045 -vt -0.000000 0.642045 -vt 0.023148 0.607955 -vt 0.032407 0.642045 -vt 0.032407 0.607955 -vt 0.050926 0.642045 -vt 0.050926 0.607955 -vt 0.060185 0.642045 -vt 0.060185 0.607955 -vt 0.083333 0.642045 -vt 0.060185 0.653409 -vt 0.060185 0.681818 -vt 0.023148 0.681818 -vt 0.023148 0.596591 -vt 0.069444 0.585227 -vt 0.087963 0.596591 -vt 0.069444 0.596591 -vt 0.087963 0.568182 -vt 0.069444 0.579545 -vt 0.069444 0.568182 -vt 0.087963 0.585227 -vt 0.097222 0.579545 -vt 0.097222 0.585227 -vt 0.087963 0.579545 -vt 0.060185 0.585227 -vt 0.675926 0.596591 -vt 0.652778 0.630682 -vt 0.652778 0.596591 -vt 0.699074 0.596591 -vt 0.675926 0.630682 -vt 0.722222 0.596591 -vt 0.699074 0.630682 -vt 0.699074 0.659091 -vt 0.652778 0.659091 -vt 0.699074 0.568182 -vt 0.120370 0.642045 -vt 0.083333 0.670455 -vt 0.083333 0.642045 -vt 0.083333 0.602273 -vt 0.120370 0.630682 -vt 0.083333 0.630682 -vt 0.143519 0.630682 -vt 0.143519 0.642045 vt 0.263889 0.670455 vt 0.226852 0.613636 vt 0.282407 0.613636 @@ -1636,99 +3645,6 @@ vt 0.226852 0.693182 vt 0.226852 0.670455 vt 0.180556 0.693182 vt 0.180556 0.670455 -vt 0.185185 0.500000 -vt 0.189815 0.488636 -vt 0.189815 0.500000 -vt 0.185185 0.431818 -vt 0.189815 0.443182 -vt 0.185185 0.443182 -vt 0.185185 0.409091 -vt 0.189815 0.397727 -vt 0.189815 0.409091 -vt 0.189815 0.511364 -vt 0.185185 0.511364 -vt 0.189815 0.454545 -vt 0.185185 0.454545 -vt 0.185185 0.465909 -vt 0.189815 0.477273 -vt 0.185185 0.477273 -vt 0.189815 0.420455 -vt 0.185185 0.420455 -vt 0.189815 0.522727 -vt 0.185185 0.522727 -vt 0.189815 0.465909 -vt 0.185185 0.488636 -vt 0.189815 0.431818 -vt 0.185185 0.534091 -vt 0.189815 0.534091 -vt 0.210648 0.437320 -vt 0.196742 0.427467 -vt 0.210648 0.397907 -vt 0.196303 0.446021 -vt 0.220365 0.446021 -vt 0.208334 0.471595 -vt 0.185185 0.500000 -vt 0.189815 0.488636 -vt 0.189815 0.500000 -vt 0.185185 0.431818 -vt 0.189815 0.443182 -vt 0.185185 0.443182 -vt 0.185185 0.409091 -vt 0.189815 0.397727 -vt 0.189815 0.409091 -vt 0.189815 0.511364 -vt 0.185185 0.511364 -vt 0.189815 0.454545 -vt 0.185185 0.454545 -vt 0.185185 0.465909 -vt 0.189815 0.477273 -vt 0.185185 0.477273 -vt 0.189815 0.420455 -vt 0.185185 0.420455 -vt 0.189815 0.522727 -vt 0.185185 0.522727 -vt 0.189815 0.465909 -vt 0.185185 0.488636 -vt 0.189815 0.431818 -vt 0.185185 0.534091 -vt 0.189815 0.534091 -vt 0.210648 0.437320 -vt 0.196742 0.427467 -vt 0.210648 0.397907 -vt 0.196303 0.446021 -vt 0.220365 0.446021 -vt 0.208334 0.471595 -vt 0.185185 0.500000 -vt 0.189815 0.488636 -vt 0.189815 0.500000 -vt 0.185185 0.431818 -vt 0.189815 0.443182 -vt 0.185185 0.443182 -vt 0.185185 0.409091 -vt 0.189815 0.397727 -vt 0.189815 0.409091 -vt 0.189815 0.511364 -vt 0.185185 0.511364 -vt 0.189815 0.454545 -vt 0.185185 0.454545 -vt 0.185185 0.465909 -vt 0.189815 0.477273 -vt 0.185185 0.477273 -vt 0.189815 0.420455 -vt 0.185185 0.420455 -vt 0.189815 0.522727 -vt 0.185185 0.522727 -vt 0.189815 0.465909 -vt 0.185185 0.488636 -vt 0.189815 0.431818 -vt 0.185185 0.534091 -vt 0.189815 0.534091 -vt 0.210648 0.437320 -vt 0.196742 0.427467 -vt 0.210648 0.397907 -vt 0.196303 0.446021 -vt 0.220365 0.446021 -vt 0.208334 0.471595 vt 0.180640 0.636364 vt 0.162037 0.659195 vt 0.143434 0.636364 @@ -1747,77 +3663,38 @@ vt 0.726852 0.283278 vt 0.685847 0.267046 vt 0.699074 0.250813 vt 0.712301 0.267045 -vt 0.067398 0.031336 -vt 0.018631 0.096832 -vt 0.018631 0.000276 -vt 0.067398 0.122245 -vt 0.062346 0.099102 -vt 0.092593 0.318182 -vt 0.006676 0.150482 -vt 0.055443 0.175895 -vt 0.055443 0.181542 -vt 0.018631 0.175895 -vt 0.043488 0.167424 -vt 0.067398 0.150482 -vt 0.006676 0.059573 -vt 0.030586 0.031336 -vt 0.025533 0.037537 -vt 0.030586 0.076515 -vt 0.043488 0.122245 +vt 0.675926 0.596591 +vt 0.652778 0.630682 +vt 0.652778 0.596591 +vt 0.699074 0.596591 +vt 0.675926 0.630682 +vt 0.722222 0.596591 +vt 0.699074 0.630682 +vt 0.699074 0.659091 +vt 0.652778 0.659091 +vt 0.699074 0.568182 +vt 0.675926 0.596591 +vt 0.652778 0.630682 +vt 0.652778 0.596591 +vt 0.699074 0.596591 +vt 0.675926 0.630682 +vt 0.722222 0.596591 +vt 0.699074 0.630682 +vt 0.699074 0.659091 +vt 0.652778 0.659091 +vt 0.699074 0.568182 vt 0.384259 0.602273 vt 0.384259 0.420455 -vt 0.511621 0.673238 -vt 0.513558 0.678977 -vt 0.511621 0.684717 -vt 0.502268 0.684717 -vt 0.500331 0.678977 -vt 0.486111 0.704545 -vt 0.486442 0.678978 -vt 0.488379 0.673238 -vt 0.493056 0.670861 -vt 0.499669 0.678978 -vt 0.493056 0.687094 -vt 0.310185 0.670455 vt 0.476852 0.454545 vt 0.513889 0.454545 vt 0.513889 0.568182 vt 0.476852 0.568182 -vt 0.722222 0.630682 -vt 0.652778 0.568182 -vt 0.000000 0.431818 -vt 0.018519 0.318182 -vt 0.083333 0.607955 -vt 0.023148 0.653409 -vt 0.023148 0.568182 -vt 0.060185 0.568182 -vt 0.060185 0.596591 -vt 0.120370 0.670455 -vt 0.120370 0.602273 -vt 0.953704 0.551136 -vt 1.000000 0.471591 -vt 0.875000 0.471591 -vt 0.870370 0.522727 -vt 0.875000 0.545455 vt 0.310185 0.693182 vt 0.180640 0.636364 vt 0.175192 0.652508 vt 0.148882 0.652508 vt 0.148882 0.620219 vt 0.175192 0.620219 -vt 0.111111 0.534091 -vt 0.111111 0.573864 -vt 0.111111 0.602273 -vt 0.111111 0.397727 -vt 0.722222 0.352273 -vt 0.648148 0.284091 -vt 0.944444 0.034091 -vt 0.935185 0.045455 -vt 0.916667 0.045455 -vt 0.907407 0.011364 -vt 0.935185 0.000000 -vt 0.750000 0.375000 -vt 0.750000 0.284091 -vt 0.740741 0.318182 vt 0.685185 0.181818 vt 0.685185 0.227273 vt 0.629630 0.250000 @@ -1835,21 +3712,6 @@ vt 0.699074 0.283278 vt 0.689721 0.278524 vt 0.689721 0.255567 vt 0.708427 0.255567 -vt 0.811791 0.583257 -vt 0.814373 0.590909 -vt 0.811791 0.598561 -vt 0.799320 0.598561 -vt 0.799320 0.583257 -vt 0.745464 0.641931 -vt 0.749338 0.653409 -vt 0.745464 0.664888 -vt 0.726758 0.664888 -vt 0.726758 0.641931 -vt 0.754698 0.641903 -vt 0.764050 0.637148 -vt 0.773403 0.641903 -vt 0.773403 0.664860 -vt 0.754698 0.664860 vt 0.824074 0.261364 vt 0.870370 0.250000 vt 0.870370 0.295455 @@ -1861,150 +3723,7 @@ vt 0.009259 0.852273 vt 0.009259 0.852273 vt 0.699074 0.738636 vt 0.699074 0.670455 -vt 0.745370 0.500000 -vt 0.652778 0.568182 -vt 0.745370 0.500000 -vt 0.837963 0.568182 -vt 0.201425 0.503321 -vt 0.196368 0.497115 -vt 0.194517 0.488636 -vt 0.201425 0.473951 -vt 0.208333 0.471680 -vt 0.215242 0.473951 -vt 0.222150 0.488636 -vt 0.220299 0.497115 -vt 0.215242 0.503321 -vt 0.199107 0.526816 -vt 0.195742 0.522687 -vt 0.194510 0.517045 -vt 0.199107 0.507274 -vt 0.203704 0.505763 -vt 0.208300 0.507274 -vt 0.211665 0.511404 -vt 0.212897 0.517045 -vt 0.208300 0.526816 -vt 0.754698 0.641903 -vt 0.764050 0.637148 -vt 0.773403 0.641903 -vt 0.773403 0.664860 -vt 0.754698 0.664860 -vt 0.745464 0.641931 -vt 0.749338 0.653409 -vt 0.745464 0.664888 -vt 0.726758 0.664888 -vt 0.726758 0.641931 -vt 0.811791 0.583257 -vt 0.814373 0.590909 -vt 0.811791 0.598561 -vt 0.799320 0.598561 -vt 0.799320 0.583257 -vt 0.060185 0.579545 -vt 0.111111 0.477273 -vt 0.074074 0.488636 -vt 0.083333 0.465909 -vt 0.101852 0.500000 -vt 0.111111 0.443182 -vt 0.074074 0.454545 -vt 0.083333 0.431818 -vt 0.101852 0.465909 -vt 0.111111 0.443182 -vt 0.074074 0.454545 -vt 0.083333 0.431818 -vt 0.101852 0.465909 -vt 0.037037 0.562500 -vt 0.074074 0.568182 -vt 0.185185 0.397727 -vt 0.224554 0.427467 -vt 0.218677 0.434680 -vt 0.202619 0.434680 -vt 0.194591 0.417614 -vt 0.196742 0.407760 -vt 0.202619 0.400547 -vt 0.218677 0.400547 -vt 0.224554 0.407760 -vt 0.226705 0.417614 -vt 0.201388 0.469311 -vt 0.196303 0.463070 -vt 0.194441 0.454545 -vt 0.201388 0.439780 -vt 0.208334 0.437496 -vt 0.215280 0.439780 -vt 0.222226 0.454545 -vt 0.220365 0.463070 -vt 0.215280 0.469311 -vt 1.000000 1.000000 -vt 0.555556 0.863636 -vt 0.111111 0.534091 -vt 0.111111 0.573864 -vt 0.111111 0.602273 -vt 0.083333 0.607955 -vt 0.023148 0.653409 -vt 0.023148 0.568182 -vt 0.060185 0.568182 -vt 0.060185 0.596591 -vt 0.060185 0.579545 -vt 0.722222 0.630682 -vt 0.652778 0.568182 -vt 0.120370 0.670455 -vt 0.120370 0.602273 vt 0.310185 0.693182 -vt 0.185185 0.397727 -vt 0.224554 0.427467 -vt 0.218677 0.434680 -vt 0.202619 0.434680 -vt 0.194591 0.417614 -vt 0.196742 0.407760 -vt 0.202619 0.400547 -vt 0.218677 0.400547 -vt 0.224554 0.407760 -vt 0.226705 0.417614 -vt 0.201388 0.469311 -vt 0.196303 0.463070 -vt 0.194441 0.454545 -vt 0.201388 0.439780 -vt 0.208334 0.437496 -vt 0.215280 0.439780 -vt 0.222226 0.454545 -vt 0.220365 0.463070 -vt 0.215280 0.469311 -vt 0.185185 0.397727 -vt 0.224554 0.427467 -vt 0.218677 0.434680 -vt 0.202619 0.434680 -vt 0.194591 0.417614 -vt 0.196742 0.407760 -vt 0.202619 0.400547 -vt 0.218677 0.400547 -vt 0.224554 0.407760 -vt 0.226705 0.417614 -vt 0.201388 0.469311 -vt 0.196303 0.463070 -vt 0.194441 0.454545 -vt 0.201388 0.439780 -vt 0.208334 0.437496 -vt 0.215280 0.439780 -vt 0.222226 0.454545 -vt 0.220365 0.463070 -vt 0.215280 0.469311 -vt 0.185185 0.397727 -vt 0.224554 0.427467 -vt 0.218677 0.434680 -vt 0.202619 0.434680 -vt 0.194591 0.417614 -vt 0.196742 0.407760 -vt 0.202619 0.400547 -vt 0.218677 0.400547 -vt 0.224554 0.407760 -vt 0.226705 0.417614 -vt 0.201388 0.469311 -vt 0.196303 0.463070 -vt 0.194441 0.454545 -vt 0.201388 0.439780 -vt 0.208334 0.437496 -vt 0.215280 0.439780 -vt 0.222226 0.454545 -vt 0.220365 0.463070 -vt 0.215280 0.469311 vt 0.175192 0.652508 vt 0.148882 0.652508 vt 0.148882 0.620219 @@ -2035,165 +3754,10 @@ vt 0.699074 0.283278 vt 0.689721 0.278524 vt 0.689721 0.255567 vt 0.708427 0.255567 -vt 0.074074 0.090909 -vt 0.611111 0.079545 -vt 0.611111 0.090909 -vt 0.074074 0.079545 -vt 0.611111 0.068182 -vt 0.074074 0.068182 -vt 0.611111 0.056818 -vt 0.074074 0.056818 -vt 0.611111 0.045455 -vt -0.000000 0.863636 -vt 0.532407 0.869318 -vt -0.000000 0.869318 -vt -0.000000 0.880682 -vt 0.532407 0.886364 -vt -0.000000 0.886364 -vt -0.000000 0.909091 -vt 0.532407 0.914773 -vt -0.000000 0.914773 -vt -0.000000 0.926136 -vt 0.532407 0.931818 -vt -0.000000 0.931818 -vt -0.000000 0.875000 -vt 0.532407 0.880682 -vt -0.000000 0.903409 -vt 0.532407 0.909091 -vt -0.000000 0.892045 -vt 0.532407 0.897727 -vt -0.000000 0.897727 -vt -0.000000 0.920455 -vt 0.532407 0.926136 -vt 0.532407 0.875000 -vt 0.532407 0.903409 -vt 0.532407 0.892045 -vt 0.532407 0.920455 -vt 0.074074 0.318182 -vt 0.611111 0.306818 -vt 0.611111 0.318182 -vt 0.074074 0.306818 -vt 0.611111 0.295455 -vt 0.074074 0.295455 -vt 0.611111 0.284091 -vt 0.074074 0.284091 -vt 0.611111 0.272727 -vt -0.000000 0.863636 -vt 0.532407 0.869318 -vt -0.000000 0.869318 -vt -0.000000 0.880682 -vt 0.532407 0.886364 -vt -0.000000 0.886364 -vt -0.000000 0.909091 -vt 0.532407 0.914773 -vt -0.000000 0.914773 -vt -0.000000 0.926136 -vt 0.532407 0.931818 -vt -0.000000 0.931818 -vt -0.000000 0.875000 -vt 0.532407 0.880682 -vt -0.000000 0.903409 -vt 0.532407 0.909091 -vt -0.000000 0.892045 -vt 0.532407 0.897727 -vt -0.000000 0.897727 -vt -0.000000 0.920455 -vt 0.532407 0.926136 -vt 0.532407 0.875000 -vt 0.532407 0.903409 -vt 0.532407 0.892045 -vt 0.532407 0.920455 -vt 0.074074 0.136364 -vt 0.537037 0.147727 -vt 0.074074 0.147727 -vt 0.074074 0.159091 -vt 0.537037 0.159091 -vt 0.074074 0.204545 -vt 0.074074 0.113636 -vt 0.611111 0.102273 -vt 0.611111 0.113636 -vt 0.074074 0.045455 -vt 0.611111 0.000000 -vt -0.000000 0.863636 -vt 0.532407 0.869318 -vt -0.000000 0.869318 -vt -0.000000 0.880682 -vt 0.532407 0.886364 -vt -0.000000 0.886364 -vt -0.000000 0.909091 -vt 0.532407 0.914773 -vt -0.000000 0.914773 -vt -0.000000 0.926136 -vt 0.532407 0.931818 -vt -0.000000 0.931818 -vt -0.000000 0.875000 -vt 0.532407 0.880682 -vt -0.000000 0.903409 -vt 0.532407 0.909091 -vt -0.000000 0.892045 -vt 0.532407 0.897727 -vt -0.000000 0.897727 -vt -0.000000 0.920455 -vt 0.532407 0.926136 -vt 0.532407 0.875000 -vt 0.532407 0.903409 -vt 0.532407 0.892045 -vt 0.532407 0.920455 -vt 0.611111 0.261364 -vt 0.074074 0.250000 -vt 0.611111 0.250000 -vt 0.074074 0.272727 -vt -0.000000 0.863636 -vt 0.532407 0.869318 -vt -0.000000 0.869318 -vt -0.000000 0.880682 -vt 0.532407 0.886364 -vt -0.000000 0.886364 -vt -0.000000 0.909091 -vt 0.532407 0.914773 -vt -0.000000 0.914773 -vt -0.000000 0.926136 -vt 0.532407 0.931818 -vt -0.000000 0.931818 -vt -0.000000 0.875000 -vt 0.532407 0.880682 -vt -0.000000 0.903409 -vt 0.532407 0.909091 -vt -0.000000 0.892045 -vt 0.532407 0.897727 -vt -0.000000 0.897727 -vt -0.000000 0.920455 -vt 0.532407 0.926136 -vt 0.532407 0.875000 -vt 0.532407 0.903409 -vt 0.532407 0.892045 -vt 0.532407 0.920455 -vt 0.537037 0.125000 -vt 0.074074 0.125000 -vt 0.537037 0.215909 -vt 0.074074 0.215909 -vt 0.537037 0.227273 -vt 0.074074 0.227273 -vt 0.074074 0.238636 -vt 0.560185 0.659091 -vt 0.467593 0.664773 -vt 0.467593 0.659091 -vt 0.560185 0.664773 -vt 0.467593 0.670455 -vt 0.560185 0.625000 -vt 0.467593 0.630682 -vt 0.467593 0.625000 -vt 0.560185 0.630682 -vt 0.467593 0.636364 -vt 0.560185 0.636364 -vt 0.467593 0.642045 -vt 0.560185 0.642045 -vt 0.467593 0.647727 -vt 0.560185 0.647727 -vt 0.467593 0.653409 -vt 0.560185 0.653409 -vt 0.537037 0.238636 -vt 0.611111 0.238636 +vt 0.722222 0.630682 +vt 0.652778 0.568182 +vt 0.722222 0.630682 +vt 0.652778 0.568182 vt 0.226852 0.613636 vt 0.240741 0.602273 vt 0.240741 0.613636 @@ -2211,49 +3775,6 @@ vt 0.254630 0.613636 vt 0.171296 0.602273 vt 0.199074 0.602273 vt 0.226852 0.602273 -vt 0.833333 0.204545 -vt 0.851852 0.045455 -vt 0.851852 0.204545 -vt 0.981481 0.045455 -vt 0.962963 0.068182 -vt 0.962963 0.045455 -vt 0.981481 0.068182 -vt 0.962963 0.181818 -vt 0.981481 0.181818 -vt 0.962963 0.204545 -vt 0.981481 0.204545 -vt 0.962963 0.250000 -vt 0.925926 0.181818 -vt 0.953704 0.068182 -vt 0.916667 0.181818 -vt 0.907407 0.045455 -vt 0.861111 0.204545 -vt 0.953704 0.068182 -vt 0.916667 0.181818 -vt 0.861111 0.227273 -vt 0.851852 0.227273 -vt 0.925926 0.204545 -vt 0.953704 0.250000 -vt 0.916667 0.204545 -vt 0.925926 0.181818 -vt 0.944444 0.045455 -vt 0.935185 0.045455 -vt 0.916667 0.045455 -vt 0.861111 0.204545 -vt 0.861111 0.227273 -vt 0.870370 0.227273 -vt 0.851852 0.227273 -vt 0.851852 0.204545 -vt 0.944444 0.045455 -vt 0.962963 0.068182 -vt 0.907407 0.045455 -vt 0.925926 0.204545 -vt 0.953704 0.250000 -vt 0.962963 0.250000 -vt 0.916667 0.204545 -vt 0.870370 0.250000 -vt 0.870370 0.227273 -vt 0.870370 0.250000 vt 0.685185 0.181818 vt 0.824074 0.193182 vt 0.685185 0.193182 @@ -2271,40 +3792,6 @@ vt 0.685185 0.204545 vt 0.824074 0.181818 vt 0.824074 0.215909 vt 0.824074 0.238636 -vt 0.870370 0.568182 -vt 0.861111 0.579545 -vt 0.861111 0.568182 -vt 0.814815 0.568182 -vt 0.805556 0.579545 -vt 0.805556 0.568182 -vt 0.833333 0.568182 -vt 0.824074 0.579545 -vt 0.824074 0.568182 -vt 0.851852 0.568182 -vt 0.842593 0.579545 -vt 0.842593 0.568182 -vt 0.851852 0.579545 -vt 0.796296 0.579545 -vt 0.796296 0.568182 -vt 0.814815 0.579545 -vt 0.833333 0.579545 -vt 0.796296 0.568182 -vt 0.787037 0.636364 -vt 0.787037 0.568182 -vt 0.740741 0.568182 -vt 0.731481 0.636364 -vt 0.731481 0.568182 -vt 0.759259 0.568182 -vt 0.750000 0.636364 -vt 0.750000 0.568182 -vt 0.777778 0.568182 -vt 0.768519 0.636364 -vt 0.768519 0.568182 -vt 0.777778 0.636364 -vt 0.722222 0.636364 -vt 0.722222 0.568182 -vt 0.740741 0.636364 -vt 0.759259 0.636364 vt 0.750000 0.295455 vt 0.768519 0.477273 vt 0.750000 0.477273 @@ -2338,69 +3825,6 @@ vt 0.777778 0.477273 vt 0.851852 0.443182 vt 0.842593 0.443182 vt 0.833333 0.477273 -vt 0.726852 0.477273 -vt 0.745370 0.477273 -vt 0.652778 0.500000 -vt 0.652778 0.477273 -vt 0.763889 0.477273 -vt 0.837963 0.500000 -vt 0.837963 0.477273 -vt 0.226852 0.488636 -vt 0.222222 0.494318 -vt 0.222222 0.488636 -vt 0.222222 0.448864 -vt 0.226852 0.454545 -vt 0.222222 0.454545 -vt 0.222222 0.500000 -vt 0.226852 0.505682 -vt 0.222222 0.505682 -vt 0.226852 0.500000 -vt 0.226852 0.471591 -vt 0.222222 0.477273 -vt 0.222222 0.471591 -vt 0.222222 0.460227 -vt 0.226852 0.437500 -vt 0.222222 0.443182 -vt 0.222222 0.437500 -vt 0.226852 0.477273 -vt 0.222222 0.482955 -vt 0.226852 0.465909 -vt 0.222222 0.465909 -vt 0.226852 0.443182 -vt 0.768519 0.568182 -vt 0.759259 0.636364 -vt 0.759259 0.568182 -vt 0.750000 0.568182 -vt 0.740741 0.636364 -vt 0.740741 0.568182 -vt 0.731481 0.568182 -vt 0.722222 0.636364 -vt 0.722222 0.568182 -vt 0.787037 0.568182 -vt 0.777778 0.636364 -vt 0.777778 0.568182 -vt 0.768519 0.636364 -vt 0.750000 0.636364 -vt 0.731481 0.636364 -vt 0.796296 0.568182 -vt 0.787037 0.636364 -vt 0.842593 0.568182 -vt 0.833333 0.579545 -vt 0.833333 0.568182 -vt 0.824074 0.568182 -vt 0.814815 0.579545 -vt 0.814815 0.568182 -vt 0.805556 0.568182 -vt 0.796296 0.579545 -vt 0.796296 0.568182 -vt 0.861111 0.568182 -vt 0.851852 0.579545 -vt 0.851852 0.568182 -vt 0.842593 0.579545 -vt 0.824074 0.579545 -vt 0.805556 0.579545 -vt 0.870370 0.568182 -vt 0.861111 0.579545 vt 0.601852 0.852273 vt 0.305556 0.863636 vt 0.305556 0.852273 @@ -2572,102 +3996,6 @@ vt 0.958333 0.772727 vt 0.953704 0.784091 vt 0.962963 0.784091 vt 0.958333 0.863636 -vt 0.111111 0.488636 -vt 0.111111 0.431818 -vt 0.111111 0.397727 -vt 0.111111 0.500000 -vt 0.111111 0.443182 -vt 0.111111 0.465909 -vt 0.111111 0.409091 -vt 0.111111 0.511364 -vt 0.111111 0.454545 -vt 0.111111 0.477273 -vt 0.111111 0.420455 -vt 0.111111 0.522727 -vt 0.194444 0.454545 -vt 0.194444 0.477273 -vt 0.194444 0.420455 -vt 0.194444 0.522727 -vt 0.194444 0.465909 -vt 0.194444 0.488636 -vt 0.194444 0.431818 -vt 0.194444 0.534091 -vt 0.194444 0.500000 -vt 0.194444 0.443182 -vt 0.194444 0.409091 -vt 0.194444 0.511364 -vt 0.111111 0.488636 -vt 0.111111 0.431818 -vt 0.111111 0.397727 -vt 0.111111 0.500000 -vt 0.111111 0.443182 -vt 0.111111 0.465909 -vt 0.111111 0.409091 -vt 0.111111 0.511364 -vt 0.111111 0.454545 -vt 0.111111 0.477273 -vt 0.111111 0.420455 -vt 0.111111 0.522727 -vt 0.194444 0.454545 -vt 0.194444 0.477273 -vt 0.194444 0.420455 -vt 0.194444 0.522727 -vt 0.194444 0.465909 -vt 0.194444 0.488636 -vt 0.194444 0.431818 -vt 0.194444 0.534091 -vt 0.194444 0.500000 -vt 0.194444 0.443182 -vt 0.194444 0.409091 -vt 0.194444 0.511364 -vt 0.111111 0.488636 -vt 0.111111 0.431818 -vt 0.111111 0.397727 -vt 0.111111 0.500000 -vt 0.111111 0.443182 -vt 0.111111 0.465909 -vt 0.111111 0.409091 -vt 0.111111 0.511364 -vt 0.111111 0.454545 -vt 0.111111 0.477273 -vt 0.111111 0.420455 -vt 0.111111 0.522727 -vt 0.194444 0.454545 -vt 0.194444 0.477273 -vt 0.194444 0.420455 -vt 0.194444 0.522727 -vt 0.194444 0.465909 -vt 0.194444 0.488636 -vt 0.194444 0.431818 -vt 0.194444 0.534091 -vt 0.194444 0.500000 -vt 0.194444 0.443182 -vt 0.194444 0.409091 -vt 0.194444 0.511364 -vt 0.111111 0.488636 -vt 0.111111 0.431818 -vt 0.111111 0.397727 -vt 0.111111 0.500000 -vt 0.111111 0.443182 -vt 0.111111 0.465909 -vt 0.111111 0.409091 -vt 0.111111 0.511364 -vt 0.111111 0.454545 -vt 0.111111 0.477273 -vt 0.111111 0.420455 -vt 0.111111 0.522727 -vt 0.194444 0.454545 -vt 0.194444 0.477273 -vt 0.194444 0.420455 -vt 0.194444 0.522727 -vt 0.194444 0.465909 -vt 0.194444 0.488636 -vt 0.194444 0.431818 -vt 0.194444 0.534091 -vt 0.194444 0.500000 -vt 0.194444 0.443182 -vt 0.194444 0.409091 -vt 0.194444 0.511364 vt 0.226852 0.613636 vt 0.240741 0.602273 vt 0.240741 0.613636 @@ -2906,34 +4234,11 @@ vt 1.000000 0.772727 vt 0.972222 0.784091 vt 0.972222 0.772727 vt 1.000000 0.784091 -vt 0.532407 0.863636 -vt 0.532407 0.863636 -vt 0.537037 0.136364 -vt 0.537037 0.204545 -vt 0.074074 0.102273 -vt 0.074074 0.000000 -vt 0.532407 0.863636 -vt 0.074074 0.261364 -vt 0.532407 0.863636 -vt 0.560185 0.670455 -vt 0.611111 0.125000 vt 0.143519 0.602273 -vt 0.833333 0.045455 -vt 0.981481 0.250000 vt 0.824074 0.159091 -vt 0.870370 0.579545 -vt 0.796296 0.636364 vt 0.768519 0.295455 vt 0.898148 0.465909 vt 0.768519 0.477273 -vt 0.726852 0.500000 -vt 0.763889 0.500000 -vt 0.226852 0.494318 -vt 0.226852 0.448864 -vt 0.226852 0.460227 -vt 0.226852 0.482955 -vt 0.796296 0.636364 -vt 0.870370 0.579545 vt 0.601852 0.863636 vt 0.629630 0.772727 vt 0.787037 0.863636 @@ -2941,14 +4246,6 @@ vt 0.800926 0.772727 vt 0.944444 0.772727 vt 0.680556 0.772727 vt 0.703704 0.863636 -vt 0.111111 0.534091 -vt 0.194444 0.397727 -vt 0.111111 0.534091 -vt 0.194444 0.397727 -vt 0.111111 0.534091 -vt 0.194444 0.397727 -vt 0.111111 0.534091 -vt 0.194444 0.397727 vt 0.143519 0.602273 vt 0.888889 0.647727 vt 0.962963 0.590909 @@ -2963,94 +4260,33 @@ vt 0.675926 0.818182 vt 0.675926 0.772727 vt 0.601852 0.863636 vt 1.000000 0.863636 -vn 0.0000 0.0000 1.0000 -vn 0.0000 0.0000 -1.0000 -vn 1.0000 0.0000 0.0000 -vn 0.0000 1.0000 0.0000 vn -1.0000 0.0000 0.0000 -vn 0.0000 -0.5547 -0.8321 -vn 0.0000 -1.0000 0.0000 -vn 0.0000 -0.4472 0.8944 -vn 0.0000 -0.8944 0.4472 +vn 0.0000 1.0000 0.0000 +vn 1.0000 0.0000 0.0000 vn 0.0000 0.8944 0.4472 +vn 0.0000 0.0000 1.0000 vn 0.7071 -0.7071 0.0000 vn -0.7071 -0.7071 0.0000 -vn 0.0000 0.7071 0.7071 -vn 0.0000 0.7071 -0.7071 -vn 0.0000 -0.7071 -0.7071 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 0.0000 -1.0000 vn 0.0000 -0.3714 -0.9285 -vn 0.0000 0.9231 0.3846 -vn 0.0000 0.7085 0.7057 vn 0.7071 0.7071 0.0000 vn -0.7071 0.7071 0.0000 vn 0.0000 -0.6508 0.7593 +vn 0.0000 -0.4472 0.8944 vn 0.0000 0.4472 -0.8944 vn 0.0000 -0.9744 0.2249 vn 0.0000 0.9701 -0.2425 -vn 0.8000 -0.6000 0.0000 -vn -0.8000 -0.6000 0.0000 -vn 0.9018 0.4321 0.0000 -vn 0.8660 -0.5000 0.0000 -vn 0.5000 -0.8660 -0.0000 -vn 0.1305 -0.9914 -0.0000 -vn 0.5000 0.8660 0.0000 -vn -0.8660 -0.5000 0.0000 -vn -0.5000 0.8660 0.0000 -vn 0.8660 0.5000 0.0000 -vn -0.5000 -0.8660 0.0000 -vn -0.8660 0.5000 0.0000 -vn -0.1305 -0.9914 -0.0000 -vn -0.9018 0.4321 0.0000 -vn 0.1305 0.9914 0.0000 -vn -0.1305 0.9914 0.0000 -vn 0.9018 -0.4321 0.0000 -vn 0.8069 -0.5907 0.0000 -vn 0.8069 0.5907 0.0000 -vn -0.8069 -0.5907 0.0000 -vn -0.9018 -0.4321 0.0000 -vn -0.8069 0.5907 0.0000 -vn 0.9960 -0.0890 0.0000 -vn -0.0000 -0.7071 0.7071 -vn -0.9960 -0.0890 0.0000 -vn -0.9659 -0.2588 0.0000 -vn -0.4858 -0.2432 0.8396 -vn 0.3929 -0.3622 0.8452 -vn 0.4858 -0.2432 0.8396 -vn -0.3458 -0.6635 -0.6635 -vn 0.3395 -0.1767 -0.9239 -vn 0.3458 -0.6635 -0.6635 -vn -0.3395 -0.1767 -0.9239 -vn 0.3945 0.1811 -0.9009 -vn -0.3945 0.1811 -0.9009 -vn 0.3878 -0.3878 -0.8361 -vn -0.3878 -0.3878 -0.8361 -vn 0.2418 -0.6861 -0.6861 -vn -0.8661 -0.1385 -0.4802 -vn -0.9386 0.0604 -0.3398 -vn 0.9032 -0.0951 0.4186 -vn 0.9487 -0.1245 0.2905 -vn 0.8661 -0.1385 -0.4802 -vn 0.9386 0.0604 -0.3398 -vn 0.9239 0.0000 0.3827 -vn 0.7071 0.0000 0.7071 -vn 0.7592 -0.4602 -0.4602 -vn 0.9518 -0.1020 -0.2893 -vn 0.9607 -0.1962 -0.1962 -vn -0.9607 -0.1962 -0.1962 -vn -0.9487 -0.1245 0.2905 -vn -0.9032 -0.0951 0.4186 -vn -0.9239 0.0000 0.3827 -vn -0.7071 0.0000 0.7071 -vn -0.3929 -0.3622 0.8452 -vn -0.7592 -0.4602 -0.4602 -vn -0.2418 -0.6861 -0.6861 -vn -0.9518 -0.1020 -0.2893 -vn -0.7071 0.0000 -0.7071 -vn 0.7071 0.0000 -0.7071 +vn 0.0000 0.7071 0.7071 +vn 0.0000 -0.7071 -0.7071 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 0.7071 -0.7071 vn -0.3945 -0.3227 0.8604 vn 0.3354 -0.3308 0.8821 vn -0.3354 -0.3308 0.8821 vn -0.3389 -0.1566 -0.9277 +vn 0.3458 -0.6635 -0.6635 +vn -0.3458 -0.6635 -0.6635 vn -0.3951 0.2038 -0.8957 vn 0.3389 -0.1566 -0.9277 vn -0.4567 0.1610 -0.8749 @@ -3065,25 +4301,14 @@ vn -0.8727 0.2257 -0.4330 vn -0.5774 0.5774 -0.5774 vn 0.4567 0.1610 -0.8749 vn 0.8652 -0.1255 -0.4854 +vn 0.9607 -0.1962 -0.1962 vn 0.3945 -0.3227 0.8604 vn -0.9467 -0.1131 0.3016 +vn -0.9607 -0.1962 -0.1962 vn -0.8795 -0.1671 0.4457 vn -0.9402 0.0662 -0.3342 vn 0.9467 -0.1131 0.3016 vn -0.9607 0.1962 -0.1962 -vn 0.0000 -0.5547 0.8321 -vn 0.0000 -0.7833 0.6216 -vn 0.0000 -0.9363 0.3511 -vn 0.0000 -0.7833 -0.6216 -vn 0.0000 -0.9363 -0.3511 -vn -0.6124 -0.3536 -0.7071 -vn 0.6124 -0.3536 -0.7071 -vn -0.3536 -0.6124 -0.7071 -vn -0.3536 0.6124 -0.7071 -vn 0.6124 0.3536 -0.7071 -vn 0.3536 -0.6124 -0.7071 -vn -0.6124 0.3536 -0.7071 -vn 0.3536 0.6124 -0.7071 vn -0.7263 -0.6737 0.1363 vn -0.6794 0.7194 -0.1448 vn 0.9987 0.0473 -0.0196 @@ -3139,6 +4364,7 @@ vn 0.4617 -0.7574 -0.4617 vn -0.0671 -0.9955 0.0671 vn 0.1673 -0.9846 0.0505 vn 0.2775 -0.7237 -0.6318 +vn -0.7071 0.0000 0.7071 vn -0.4617 0.4617 0.7574 vn -0.0671 0.9955 0.0671 vn 0.4617 0.7574 -0.4617 @@ -3151,6 +4377,9 @@ vn 0.1448 -0.7194 -0.6794 vn 0.0196 -0.0473 -0.9987 vn -0.1363 0.6737 -0.7263 vn -0.1363 0.6737 0.7263 +vn 0.7071 0.0000 -0.7071 +vn 0.7071 0.0000 0.7071 +vn -0.7071 0.0000 -0.7071 vn -0.0671 -0.0671 -0.9955 vn -0.1448 -0.7194 -0.6794 vn -0.5293 -0.5294 -0.6630 @@ -3185,1888 +4414,759 @@ vn 0.0473 -0.9987 0.0196 vn 0.7194 -0.6794 0.1448 vn 0.0473 0.9987 0.0196 vn -0.1866 -0.9824 -0.0000 -vn 0.9659 -0.2588 0.0000 s off -f 10/1/1 18/2/1 17/3/1 -f 6/4/1 18/2/1 8/5/1 -f 6/4/1 20/6/1 19/7/1 -f 2/8/1 20/6/1 4/9/1 -f 5/10/2 32/11/2 3/12/2 -f 32/11/2 1/13/2 3/12/2 -f 9/14/2 30/15/2 7/16/2 -f 7/16/2 31/17/2 5/10/2 -f 38/18/1 49/19/1 40/20/1 -f 38/18/1 51/21/1 50/22/1 -f 44/23/1 48/24/1 47/25/1 -f 40/20/1 48/24/1 42/26/1 -f 43/27/2 60/28/2 41/29/2 -f 60/28/2 39/30/2 41/29/2 -f 61/31/2 37/32/2 39/30/2 -f 37/32/2 63/33/2 35/34/2 -f 103/35/1 69/36/1 107/37/1 -f 78/38/1 88/39/1 87/40/1 -f 74/41/1 88/39/1 76/42/1 -f 72/43/1 89/44/1 74/41/1 -f 72/43/1 79/45/1 90/46/1 -f 77/47/2 100/48/2 75/49/2 -f 75/50/3 69/36/3 109/51/3 -f 73/52/4 111/53/4 71/54/4 -f 73/52/4 202/55/4 201/56/4 -f 71/57/2 92/58/2 136/59/2 -f 128/60/2 105/61/2 204/62/2 -f 200/63/2 126/64/2 127/65/2 -f 112/66/1 113/67/1 104/68/1 -f 112/66/1 115/69/1 114/70/1 -f 110/71/1 116/72/1 115/69/1 -f 106/73/1 116/72/1 108/74/1 -f 111/75/2 101/76/2 102/77/2 -f 118/78/1 106/73/1 140/79/1 -f 46/80/1 44/23/1 47/25/1 -f 12/81/1 83/82/1 120/83/1 -f 45/84/1 120/83/1 119/85/1 -f 119/85/1 118/78/1 140/79/1 -f 82/86/1 121/87/1 83/82/1 -f 11/88/1 84/89/1 12/81/1 -f 13/90/1 54/91/1 14/92/1 -f 86/93/1 78/38/1 87/40/1 -f 22/94/1 2/8/1 138/95/1 -f 138/95/1 85/96/1 11/88/1 -f 14/92/1 53/97/1 15/98/1 -f 52/99/1 10/1/1 16/100/1 -f 81/101/1 122/102/1 82/86/1 -f 80/103/1 70/104/1 124/105/1 -f 34/106/2 1/13/2 33/107/2 -f 98/108/2 77/47/2 137/109/2 -f 105/61/2 130/110/2 139/111/2 -f 58/112/2 43/27/2 139/111/2 -f 97/113/2 98/108/2 137/109/2 -f 139/111/2 131/114/2 57/115/2 -f 65/116/2 26/117/2 27/118/2 -f 28/119/2 9/14/2 64/120/2 -f 134/121/2 93/122/2 94/123/2 -f 133/124/2 94/123/2 95/125/2 -f 57/115/2 132/126/2 68/127/2 -f 66/128/2 25/129/2 26/117/2 -f 96/130/2 23/131/2 24/132/2 -f 96/130/2 24/132/2 132/126/2 -f 188/133/5 183/134/5 184/135/5 -f 145/136/4 143/137/4 144/138/4 -f 178/139/5 144/138/5 143/137/5 -f 177/140/3 176/141/3 141/142/3 -f 145/136/3 174/143/3 146/144/3 -f 173/145/5 142/146/5 175/147/5 -f 156/148/3 154/149/3 162/150/3 -f 165/151/6 147/152/6 148/153/6 -f 155/154/5 159/155/5 163/156/5 -f 167/157/7 148/153/7 147/152/7 -f 169/158/8 168/159/8 167/157/8 -f 171/160/9 170/161/9 169/158/9 -f 170/162/5 172/163/5 165/164/5 -f 166/165/3 171/166/3 169/167/3 -f 181/168/10 173/169/10 175/170/10 -f 179/171/4 174/172/4 173/169/4 -f 177/173/10 182/174/10 176/175/10 -f 178/176/4 183/134/4 177/173/4 -f 141/142/4 175/147/4 142/146/4 -f 176/141/1 185/177/1 175/147/1 -f 176/141/1 182/178/1 186/179/1 -f 175/147/1 185/177/1 181/180/1 -f 189/181/11 181/182/11 185/183/11 -f 182/184/12 190/185/12 186/186/12 -f 186/186/7 189/181/7 185/183/7 -f 179/171/3 187/187/3 180/188/3 -f 173/189/1 144/138/1 177/190/1 -f 189/181/2 178/191/2 174/192/2 -f 193/193/13 192/194/13 191/195/13 -f 195/196/4 194/197/4 193/193/4 -f 197/198/2 196/199/2 195/196/2 -f 194/197/5 198/200/5 192/201/5 -f 193/193/3 197/202/3 195/196/3 -f 199/203/4 202/55/4 200/204/4 -f 200/204/5 203/205/5 199/203/5 -f 206/206/1 205/207/1 199/203/1 -f 207/208/1 210/209/1 208/210/1 -f 209/211/13 212/212/13 210/209/13 -f 211/213/4 214/214/4 212/212/4 -f 213/215/14 216/216/14 214/214/14 -f 215/217/2 218/218/2 216/216/2 -f 216/219/5 218/220/5 208/221/5 -f 213/215/3 211/213/3 209/222/3 -f 221/223/5 220/224/5 219/225/5 -f 223/226/3 226/227/3 224/228/3 -f 221/223/2 225/229/2 222/230/2 -f 219/225/4 226/227/4 221/223/4 -f 240/231/3 235/232/3 236/233/3 -f 228/234/7 229/235/7 227/236/7 -f 233/237/4 232/238/4 231/239/4 -f 228/240/5 234/241/5 230/242/5 -f 227/243/1 232/238/1 228/244/1 -f 229/235/3 231/239/3 227/236/3 -f 237/245/1 236/246/1 235/247/1 -f 240/248/14 245/249/14 241/250/14 -f 235/247/4 241/250/4 237/245/4 -f 238/251/7 239/252/7 236/253/7 -f 242/254/5 238/255/5 237/256/5 -f 243/257/2 245/249/2 244/258/2 -f 242/259/15 243/257/15 239/252/15 -f 247/260/5 250/261/5 248/262/5 -f 254/263/3 251/264/3 252/265/3 -f 248/266/16 251/264/16 247/260/16 -f 247/260/7 253/267/7 249/268/7 -f 249/268/1 254/269/1 250/270/1 -f 265/271/3 267/272/3 269/273/3 -f 274/274/3 271/275/3 272/276/3 -f 275/277/4 274/274/4 272/276/4 -f 277/278/17 273/279/17 274/274/17 -f 278/280/5 277/278/5 275/277/5 -f 290/281/1 287/282/1 288/283/1 -f 286/284/4 283/285/4 284/286/4 -f 279/287/3 285/288/3 281/289/3 -f 281/290/18 286/284/18 282/291/18 -f 280/292/5 286/284/5 284/286/5 -f 280/293/2 283/285/2 279/294/2 -f 308/295/3 291/296/3 287/297/3 -f 307/298/5 294/299/5 290/281/5 -f 294/299/7 289/300/7 290/281/7 -f 295/301/7 324/302/7 298/303/7 -f 311/304/5 307/298/5 292/305/5 -f 291/296/3 310/306/3 312/307/3 -f 310/306/1 322/308/1 312/307/1 -f 310/306/4 313/309/4 321/310/4 -f 311/304/1 331/311/1 309/312/1 -f 338/313/5 342/314/5 333/315/5 -f 309/312/4 330/316/4 307/298/4 -f 346/317/2 348/318/2 344/319/2 -f 336/320/3 348/321/3 339/322/3 -f 340/323/4 346/324/4 337/325/4 -f 348/321/19 340/323/19 339/322/19 -f 338/313/20 346/324/20 345/326/20 -f 334/327/12 342/314/12 341/328/12 -f 344/319/11 336/329/11 335/330/11 -f 334/327/7 344/319/7 335/330/7 -f 359/331/2 361/332/2 363/333/2 -f 354/334/1 352/335/1 350/336/1 -f 368/337/4 366/338/4 372/339/4 -f 384/340/4 382/341/4 388/342/4 -f 390/343/7 392/344/7 394/345/7 -f 416/346/7 399/347/7 422/348/7 -f 410/349/7 407/350/7 408/351/7 -f 412/352/2 409/353/2 410/349/2 -f 408/351/5 412/354/5 410/349/5 -f 407/350/3 411/355/3 413/356/3 -f 429/357/21 432/358/21 430/359/21 -f 432/360/5 436/361/5 430/362/5 -f 435/363/3 431/364/3 429/365/3 -f 441/366/3 439/367/3 437/368/3 -f 438/369/8 441/366/8 437/368/8 -f 440/370/5 442/371/5 438/369/5 -f 443/372/22 440/373/22 439/367/22 -f 442/371/23 445/374/23 441/366/23 -f 447/375/24 444/376/24 443/372/24 -f 444/377/5 446/378/5 442/371/5 -f 445/374/3 443/372/3 441/366/3 -f 458/379/5 454/380/5 456/381/5 -f 455/382/3 449/383/3 457/384/3 -f 463/385/1 467/386/1 459/387/1 -f 480/388/2 482/389/2 474/390/2 -f 489/391/7 487/392/7 485/393/7 -f 495/394/4 497/395/4 491/396/4 -f 511/397/4 513/398/4 507/399/4 -f 517/400/5 516/401/5 515/402/5 -f 519/403/3 522/404/3 520/405/3 -f 518/406/2 519/407/2 516/408/2 -f 517/400/4 521/409/4 518/406/4 -f 515/410/1 522/404/1 517/400/1 -f 524/411/4 525/412/4 523/413/4 -f 532/414/4 533/415/4 531/416/4 -f 526/417/2 527/418/2 525/412/2 -f 523/413/1 529/419/1 524/411/1 -f 524/411/3 530/420/3 526/417/3 -f 525/412/5 528/421/5 523/413/5 -f 534/422/2 535/423/2 533/415/2 -f 531/416/1 537/424/1 532/414/1 -f 532/414/3 538/425/3 534/422/3 -f 533/415/5 536/426/5 531/416/5 -f 540/427/4 541/428/4 539/429/4 -f 542/430/2 543/431/2 541/428/2 -f 539/429/1 545/432/1 540/427/1 -f 540/427/3 546/433/3 542/430/3 -f 541/428/5 544/434/5 539/429/5 -f 549/435/4 547/436/4 548/437/4 -f 551/438/7 553/439/7 552/440/7 -f 547/436/13 554/441/13 551/442/13 -f 547/443/25 552/440/25 548/444/25 -f 548/437/2 553/439/2 549/435/2 -f 550/445/26 553/439/26 554/446/26 -f 675/447/1 698/448/1 699/449/1 -f 681/450/1 706/451/1 682/452/1 -f 679/453/1 702/454/1 703/455/1 -f 675/447/1 700/456/1 676/457/1 -f 682/452/1 707/458/1 683/459/1 -f 672/460/1 697/461/1 673/462/1 -f 679/453/1 704/463/1 680/464/1 -f 676/457/1 701/465/1 677/466/1 -f 672/460/1 707/458/1 696/467/1 -f 673/462/1 698/448/1 674/468/1 -f 681/450/1 704/463/1 705/469/1 -f 678/470/1 701/465/1 702/471/1 -f 708/472/2 718/473/2 714/474/2 -f 688/475/1 692/476/1 684/477/1 -f 721/478/3 720/479/3 722/480/3 -f 725/481/5 726/482/5 724/483/5 -f 731/484/3 728/485/3 729/486/3 -f 732/487/4 731/484/4 729/486/4 -f 734/488/17 730/489/17 731/484/17 -f 735/490/5 734/488/5 732/487/5 -f 736/491/1 739/492/1 737/493/1 -f 738/494/13 741/495/13 739/492/13 -f 740/496/4 743/497/4 741/495/4 -f 742/498/14 745/499/14 743/497/14 -f 744/500/2 747/501/2 745/499/2 -f 745/502/5 747/503/5 737/504/5 -f 742/498/3 740/496/3 738/505/3 -f 750/506/5 749/507/5 748/508/5 -f 752/509/3 755/510/3 753/511/3 -f 751/512/2 752/513/2 749/514/2 -f 750/506/4 754/515/4 751/512/4 -f 748/516/1 755/510/1 750/506/1 -f 758/517/13 757/518/13 756/519/13 -f 760/520/4 759/521/4 758/517/4 -f 762/522/2 761/523/2 760/520/2 -f 759/521/5 763/524/5 757/525/5 -f 758/517/3 762/526/3 760/520/3 -f 766/527/5 765/528/5 764/529/5 -f 768/530/3 771/531/3 769/532/3 -f 766/527/2 770/533/2 767/534/2 -f 764/529/4 771/531/4 766/527/4 -f 772/535/5 775/536/5 773/537/5 -f 779/538/3 776/539/3 777/540/3 -f 773/541/16 776/539/16 772/535/16 -f 772/535/7 778/542/7 774/543/7 -f 774/543/1 779/544/1 775/545/1 -f 783/546/1 806/547/1 807/548/1 -f 789/549/1 814/550/1 790/551/1 -f 787/552/1 810/553/1 811/554/1 -f 783/546/1 808/555/1 784/556/1 -f 790/551/1 815/557/1 791/558/1 -f 780/559/1 805/560/1 781/561/1 -f 787/552/1 812/562/1 788/563/1 -f 784/556/1 809/564/1 785/565/1 -f 780/559/1 815/557/1 804/566/1 -f 781/561/1 806/547/1 782/567/1 -f 789/549/1 812/562/1 813/568/1 -f 786/569/1 809/564/1 810/570/1 -f 816/571/2 826/572/2 822/573/2 -f 796/574/1 800/575/1 792/576/1 -f 831/577/1 854/578/1 855/579/1 -f 837/580/1 862/581/1 838/582/1 -f 835/583/1 858/584/1 859/585/1 -f 831/577/1 856/586/1 832/587/1 -f 838/582/1 863/588/1 839/589/1 -f 828/590/1 853/591/1 829/592/1 -f 835/583/1 860/593/1 836/594/1 -f 832/587/1 857/595/1 833/596/1 -f 828/590/1 863/588/1 852/597/1 -f 829/592/1 854/578/1 830/598/1 -f 837/580/1 860/593/1 861/599/1 -f 834/600/1 857/595/1 858/601/1 -f 864/602/2 874/603/2 870/604/2 -f 844/605/1 848/606/1 840/607/1 -f 879/608/1 902/609/1 903/610/1 -f 885/611/1 910/612/1 886/613/1 -f 883/614/1 906/615/1 907/616/1 -f 879/608/1 904/617/1 880/618/1 -f 886/613/1 911/619/1 887/620/1 -f 876/621/1 901/622/1 877/623/1 -f 883/614/1 908/624/1 884/625/1 -f 880/618/1 905/626/1 881/627/1 -f 876/621/1 911/619/1 900/628/1 -f 877/623/1 902/609/1 878/629/1 -f 885/611/1 908/624/1 909/630/1 -f 882/631/1 905/626/1 906/632/1 -f 912/633/2 922/634/2 918/635/2 -f 892/636/1 896/637/1 888/638/1 -f 933/639/5 934/640/5 936/641/5 -f 946/642/7 944/643/7 942/644/7 -f 952/645/4 954/646/4 948/647/4 -f 968/648/4 970/649/4 964/650/4 -f 982/651/2 984/652/2 986/653/2 -f 977/654/1 975/655/1 973/656/1 -f 10/1/1 8/5/1 18/2/1 -f 6/4/1 19/7/1 18/2/1 -f 6/4/1 4/9/1 20/6/1 -f 2/8/1 21/657/1 20/6/1 -f 5/10/2 31/17/2 32/11/2 -f 32/11/2 33/107/2 1/13/2 -f 9/14/2 29/658/2 30/15/2 -f 7/16/2 30/15/2 31/17/2 -f 38/18/1 50/22/1 49/19/1 -f 38/18/1 36/659/1 51/21/1 -f 44/23/1 42/26/1 48/24/1 -f 40/20/1 49/19/1 48/24/1 -f 43/27/2 59/660/2 60/28/2 -f 60/28/2 61/31/2 39/30/2 -f 61/31/2 62/661/2 37/32/2 -f 37/32/2 62/661/2 63/33/2 -f 103/35/1 109/662/1 69/36/1 -f 69/36/1 73/52/1 107/37/1 -f 78/38/1 76/42/1 88/39/1 -f 74/41/1 89/44/1 88/39/1 -f 72/43/1 90/46/1 89/44/1 -f 72/43/1 70/104/1 79/45/1 -f 77/47/2 99/663/2 100/48/2 -f 75/50/3 111/53/3 69/36/3 -f 73/52/4 69/36/4 111/53/4 -f 73/52/4 71/54/4 202/55/4 -f 125/664/2 202/665/2 136/59/2 -f 202/665/2 71/57/2 136/59/2 -f 71/57/2 91/666/2 92/58/2 -f 92/58/2 93/122/2 135/667/2 -f 92/58/2 135/667/2 136/59/2 -f 128/60/2 129/668/2 105/61/2 -f 128/60/2 204/62/2 127/65/2 -f 204/62/2 200/63/2 127/65/2 -f 200/63/2 202/665/2 126/64/2 -f 202/665/2 125/664/2 126/64/2 -f 112/66/1 114/70/1 113/67/1 -f 112/66/1 110/71/1 115/69/1 -f 110/71/1 108/74/1 116/72/1 -f 106/73/1 117/669/1 116/72/1 -f 111/75/2 75/49/2 101/76/2 -f 75/49/2 100/48/2 101/76/2 -f 91/666/2 71/57/2 102/77/2 -f 71/57/2 111/75/2 102/77/2 -f 118/78/1 117/669/1 106/73/1 -f 46/80/1 140/79/1 44/23/1 -f 55/670/1 13/90/1 12/81/1 -f 12/81/1 84/89/1 83/82/1 -f 83/82/1 121/87/1 120/83/1 -f 120/83/1 56/671/1 55/670/1 -f 55/670/1 12/81/1 120/83/1 -f 45/84/1 56/671/1 120/83/1 -f 140/79/1 46/80/1 45/84/1 -f 45/84/1 119/85/1 140/79/1 -f 82/86/1 122/102/1 121/87/1 -f 11/88/1 85/96/1 84/89/1 -f 13/90/1 55/670/1 54/91/1 -f 86/93/1 138/95/1 78/38/1 -f 22/94/1 21/657/1 2/8/1 -f 11/88/1 22/94/1 138/95/1 -f 138/95/1 86/93/1 85/96/1 -f 14/92/1 54/91/1 53/97/1 -f 16/100/1 15/98/1 52/99/1 -f 15/98/1 53/97/1 52/99/1 -f 52/99/1 51/21/1 36/659/1 -f 10/1/1 17/3/1 16/100/1 -f 52/99/1 36/659/1 10/1/1 -f 81/101/1 123/672/1 122/102/1 -f 80/103/1 79/45/1 70/104/1 -f 70/104/1 104/68/1 124/105/1 -f 104/68/1 113/67/1 124/105/1 -f 124/105/1 123/672/1 81/101/1 -f 124/105/1 81/101/1 80/103/1 -f 34/106/2 137/109/2 1/13/2 -f 98/108/2 99/663/2 77/47/2 -f 105/61/2 129/668/2 130/110/2 -f 58/112/2 59/660/2 43/27/2 -f 34/106/2 23/131/2 137/109/2 -f 23/131/2 97/113/2 137/109/2 -f 57/115/2 58/112/2 139/111/2 -f 139/111/2 130/110/2 131/114/2 -f 65/116/2 66/128/2 26/117/2 -f 65/116/2 27/118/2 64/120/2 -f 27/118/2 28/119/2 64/120/2 -f 28/119/2 29/658/2 9/14/2 -f 9/14/2 35/34/2 64/120/2 -f 35/34/2 63/33/2 64/120/2 -f 134/121/2 135/667/2 93/122/2 -f 133/124/2 134/121/2 94/123/2 -f 57/115/2 131/114/2 132/126/2 -f 66/128/2 67/673/2 25/129/2 -f 96/130/2 97/113/2 23/131/2 -f 24/132/2 25/129/2 132/126/2 -f 25/129/2 67/673/2 132/126/2 -f 67/673/2 68/127/2 132/126/2 -f 132/126/2 133/124/2 95/125/2 -f 95/125/2 96/130/2 132/126/2 -f 188/133/5 182/184/5 183/134/5 -f 145/136/4 146/144/4 143/137/4 -f 178/139/5 177/674/5 144/138/5 -f 145/136/3 173/675/3 174/143/3 -f 154/149/3 152/676/3 150/677/3 -f 150/677/3 164/678/3 154/149/3 -f 164/678/3 162/150/3 154/149/3 -f 162/150/3 160/679/3 158/680/3 -f 158/680/3 156/148/3 162/150/3 -f 165/151/6 166/681/6 147/152/6 -f 163/156/5 149/682/5 151/683/5 -f 151/683/5 153/684/5 163/156/5 -f 153/684/5 155/154/5 163/156/5 -f 155/154/5 157/685/5 159/155/5 -f 159/155/5 161/686/5 163/156/5 -f 167/157/7 168/159/7 148/153/7 -f 169/158/8 170/161/8 168/159/8 -f 171/160/9 172/687/9 170/161/9 -f 165/164/5 148/153/5 170/162/5 -f 148/153/5 168/159/5 170/162/5 -f 167/157/3 147/152/3 169/167/3 -f 147/152/3 166/165/3 169/167/3 -f 181/168/10 179/171/10 173/169/10 -f 179/171/4 180/188/4 174/172/4 -f 177/173/10 183/134/10 182/174/10 -f 178/176/4 184/135/4 183/134/4 -f 141/142/4 176/141/4 175/147/4 -f 176/141/1 186/179/1 185/177/1 -f 189/181/11 187/187/11 181/182/11 -f 182/184/12 188/133/12 190/185/12 -f 186/186/7 190/185/7 189/181/7 -f 179/171/3 181/182/3 187/187/3 -f 141/142/1 142/146/1 173/189/1 -f 173/189/1 145/136/1 144/138/1 -f 177/190/1 141/142/1 173/189/1 -f 180/688/2 187/689/2 174/192/2 -f 187/689/2 189/181/2 174/192/2 -f 189/181/2 190/185/2 178/191/2 -f 190/185/2 188/690/2 178/191/2 -f 188/690/2 184/691/2 178/191/2 -f 178/191/2 143/137/2 146/144/2 -f 178/191/2 146/144/2 174/192/2 -f 193/193/13 194/197/13 192/194/13 -f 195/196/4 196/199/4 194/197/4 -f 197/198/2 198/692/2 196/199/2 -f 194/197/5 196/199/5 198/200/5 -f 193/193/3 191/693/3 197/202/3 -f 199/203/4 201/56/4 202/55/4 -f 200/204/5 204/694/5 203/205/5 -f 205/207/1 201/56/1 199/203/1 -f 199/203/1 203/695/1 206/206/1 -f 207/208/1 209/211/1 210/209/1 -f 209/211/13 211/213/13 212/212/13 -f 211/213/4 213/215/4 214/214/4 -f 213/215/14 215/217/14 216/216/14 -f 215/217/2 217/696/2 218/218/2 -f 208/221/5 210/697/5 216/219/5 -f 210/697/5 212/212/5 216/219/5 -f 212/212/5 214/214/5 216/219/5 -f 209/222/3 207/698/3 217/699/3 -f 217/699/3 215/700/3 209/222/3 -f 215/700/3 213/215/3 209/222/3 -f 221/223/5 222/701/5 220/224/5 -f 223/226/3 225/702/3 226/227/3 -f 221/223/2 226/227/2 225/229/2 -f 219/225/4 224/228/4 226/227/4 -f 236/233/3 239/703/3 240/231/3 -f 239/703/3 243/257/3 240/231/3 -f 243/257/3 244/258/3 240/231/3 -f 228/234/7 230/704/7 229/235/7 -f 233/237/4 234/241/4 232/238/4 -f 228/240/5 232/238/5 234/241/5 -f 227/243/1 231/239/1 232/238/1 -f 229/235/3 233/237/3 231/239/3 -f 237/245/1 238/705/1 236/246/1 -f 240/248/14 244/258/14 245/249/14 -f 235/247/4 240/248/4 241/250/4 -f 238/251/7 242/259/7 239/252/7 -f 237/256/5 241/706/5 242/254/5 -f 241/706/5 245/249/5 242/254/5 -f 245/249/5 246/707/5 242/254/5 -f 243/257/2 246/707/2 245/249/2 -f 242/259/15 246/707/15 243/257/15 -f 247/260/5 249/268/5 250/261/5 -f 254/263/3 253/267/3 251/264/3 -f 248/266/16 252/708/16 251/264/16 -f 247/260/7 251/264/7 253/267/7 -f 249/268/1 253/267/1 254/269/1 -f 264/709/3 263/710/3 265/271/3 -f 265/271/3 266/711/3 267/272/3 -f 267/272/3 268/712/3 269/273/3 -f 269/273/3 270/713/3 264/709/3 -f 264/709/3 265/271/3 269/273/3 -f 274/274/3 273/714/3 271/275/3 -f 275/277/4 277/278/4 274/274/4 -f 277/278/17 276/715/17 273/279/17 -f 278/280/5 276/716/5 277/278/5 -f 290/281/1 289/300/1 287/282/1 -f 286/284/4 285/288/4 283/285/4 -f 279/287/3 283/285/3 285/288/3 -f 281/290/18 285/288/18 286/284/18 -f 280/292/5 282/717/5 286/284/5 -f 280/293/2 284/286/2 283/285/2 -f 287/297/3 289/300/3 308/295/3 -f 289/300/3 293/718/3 308/295/3 -f 290/281/5 288/719/5 307/298/5 -f 288/719/5 292/305/5 307/298/5 -f 294/299/7 293/718/7 289/300/7 -f 298/303/7 297/720/7 316/721/7 -f 316/721/7 315/722/7 295/301/7 -f 295/301/7 296/723/7 324/302/7 -f 324/302/7 325/724/7 298/303/7 -f 298/303/7 316/721/7 295/301/7 -f 311/304/5 309/312/5 307/298/5 -f 291/296/3 308/295/3 310/306/3 -f 310/306/1 321/725/1 322/308/1 -f 310/306/4 308/295/4 313/309/4 -f 311/304/1 332/726/1 331/311/1 -f 338/313/5 345/326/5 342/314/5 -f 309/312/4 331/727/4 330/316/4 -f 344/319/2 341/328/2 342/728/2 -f 342/728/2 345/729/2 346/317/2 -f 346/317/2 347/730/2 348/318/2 -f 348/318/2 343/731/2 344/319/2 -f 344/319/2 342/728/2 346/317/2 -f 336/320/3 343/732/3 348/321/3 -f 340/323/4 347/733/4 346/324/4 -f 348/321/19 347/733/19 340/323/19 -f 338/313/20 337/325/20 346/324/20 -f 334/327/12 333/315/12 342/314/12 -f 344/319/11 343/734/11 336/329/11 -f 334/327/7 341/328/7 344/319/7 -f 363/333/2 357/735/2 358/736/2 -f 358/736/2 364/737/2 359/331/2 -f 359/331/2 360/738/2 361/332/2 -f 361/332/2 362/739/2 363/333/2 -f 363/333/2 358/736/2 359/331/2 -f 350/336/1 349/740/1 356/741/1 -f 356/741/1 355/742/1 354/334/1 -f 354/334/1 353/743/1 352/335/1 -f 352/335/1 351/744/1 350/336/1 -f 350/336/1 356/741/1 354/334/1 -f 372/339/4 371/745/4 370/746/4 -f 370/746/4 369/747/4 368/337/4 -f 368/337/4 367/748/4 366/338/4 -f 366/338/4 365/749/4 372/339/4 -f 372/339/4 370/746/4 368/337/4 -f 388/342/4 387/750/4 386/751/4 -f 386/751/4 385/752/4 384/340/4 -f 384/340/4 383/753/4 382/341/4 -f 382/341/4 381/754/4 388/342/4 -f 388/342/4 386/751/4 384/340/4 -f 394/345/7 395/755/7 396/756/7 -f 396/756/7 389/757/7 390/343/7 -f 390/343/7 391/758/7 392/344/7 -f 392/344/7 393/759/7 394/345/7 -f 394/345/7 396/756/7 390/343/7 -f 399/347/7 400/760/7 422/348/7 -f 422/348/7 424/761/7 417/762/7 -f 424/761/7 402/763/7 417/762/7 -f 402/763/7 401/764/7 417/762/7 -f 417/762/7 416/346/7 422/348/7 -f 410/349/7 409/353/7 407/350/7 -f 412/352/2 411/765/2 409/353/2 -f 408/351/5 414/766/5 412/354/5 -f 407/350/3 409/353/3 411/355/3 -f 429/357/21 431/364/21 432/358/21 -f 432/360/5 434/767/5 436/361/5 -f 435/363/3 433/768/3 431/364/3 -f 441/366/3 443/372/3 439/367/3 -f 438/369/8 442/371/8 441/366/8 -f 440/370/5 444/377/5 442/371/5 -f 443/372/22 444/376/22 440/373/22 -f 442/371/23 446/378/23 445/374/23 -f 447/375/24 448/769/24 444/376/24 -f 444/377/5 448/770/5 446/378/5 -f 445/374/3 447/375/3 443/372/3 -f 456/381/5 452/771/5 458/379/5 -f 458/379/5 450/772/5 454/380/5 -f 457/384/3 451/773/3 455/382/3 -f 455/382/3 453/774/3 449/383/3 -f 459/387/1 460/775/1 461/776/1 -f 461/776/1 462/777/1 463/385/1 -f 463/385/1 464/778/1 465/779/1 -f 465/779/1 466/780/1 463/385/1 -f 466/780/1 467/386/1 463/385/1 -f 467/386/1 468/781/1 469/782/1 -f 469/782/1 470/783/1 459/387/1 -f 459/387/1 461/776/1 463/385/1 -f 467/386/1 469/782/1 459/387/1 -f 482/389/2 471/784/2 474/390/2 -f 471/784/2 472/785/2 474/390/2 -f 472/785/2 473/786/2 474/390/2 -f 474/390/2 475/787/2 476/788/2 -f 476/788/2 477/789/2 474/390/2 -f 477/789/2 478/790/2 474/390/2 -f 478/790/2 479/791/2 480/388/2 -f 480/388/2 481/792/2 482/389/2 -f 478/790/2 480/388/2 474/390/2 -f 485/393/7 484/793/7 483/794/7 -f 483/794/7 490/795/7 489/391/7 -f 489/391/7 488/796/7 487/392/7 -f 487/392/7 486/797/7 485/393/7 -f 485/393/7 483/794/7 489/391/7 -f 491/396/4 492/798/4 493/799/4 -f 493/799/4 494/800/4 495/394/4 -f 495/394/4 496/801/4 497/395/4 -f 497/395/4 498/802/4 491/396/4 -f 491/396/4 493/799/4 495/394/4 -f 507/399/4 508/803/4 509/804/4 -f 509/804/4 510/805/4 511/397/4 -f 511/397/4 512/806/4 513/398/4 -f 513/398/4 514/807/4 507/399/4 -f 507/399/4 509/804/4 511/397/4 -f 517/400/5 518/406/5 516/401/5 -f 519/403/3 521/409/3 522/404/3 -f 518/406/2 521/409/2 519/407/2 -f 517/400/4 522/404/4 521/409/4 -f 515/410/1 520/808/1 522/404/1 -f 524/411/4 526/417/4 525/412/4 -f 532/414/4 534/422/4 533/415/4 -f 526/417/2 530/809/2 527/418/2 -f 523/413/1 528/810/1 529/419/1 -f 524/411/3 529/811/3 530/420/3 -f 525/412/5 527/812/5 528/421/5 -f 534/422/2 538/813/2 535/423/2 -f 531/416/1 536/814/1 537/424/1 -f 532/414/3 537/815/3 538/425/3 -f 533/415/5 535/816/5 536/426/5 -f 540/427/4 542/430/4 541/428/4 -f 542/430/2 546/817/2 543/431/2 -f 539/429/1 544/818/1 545/432/1 -f 540/427/3 545/819/3 546/433/3 -f 541/428/5 543/820/5 544/434/5 -f 549/435/4 550/821/4 547/436/4 -f 551/438/7 554/446/7 553/439/7 -f 547/436/13 550/821/13 554/441/13 -f 547/443/25 551/438/25 552/440/25 -f 548/437/2 552/440/2 553/439/2 -f 550/445/26 549/822/26 553/439/26 -f 675/447/1 674/468/1 698/448/1 -f 681/450/1 705/469/1 706/451/1 -f 679/453/1 678/823/1 702/454/1 -f 675/447/1 699/449/1 700/456/1 -f 682/452/1 706/451/1 707/458/1 -f 672/460/1 696/467/1 697/461/1 -f 679/453/1 703/455/1 704/463/1 -f 676/457/1 700/456/1 701/465/1 -f 672/460/1 683/459/1 707/458/1 -f 673/462/1 697/461/1 698/448/1 -f 681/450/1 680/464/1 704/463/1 -f 678/470/1 677/466/1 701/465/1 -f 710/824/2 709/825/2 708/472/2 -f 708/472/2 719/826/2 718/473/2 -f 718/473/2 717/827/2 714/474/2 -f 717/827/2 716/828/2 714/474/2 -f 716/828/2 715/829/2 714/474/2 -f 714/474/2 713/830/2 712/831/2 -f 712/831/2 711/832/2 714/474/2 -f 711/832/2 710/824/2 714/474/2 -f 710/824/2 708/472/2 714/474/2 -f 684/477/1 685/833/1 686/834/1 -f 686/834/1 687/835/1 688/475/1 -f 688/475/1 689/836/1 692/476/1 -f 689/836/1 690/837/1 692/476/1 -f 690/837/1 691/838/1 692/476/1 -f 692/476/1 693/839/1 694/840/1 -f 694/840/1 695/841/1 684/477/1 -f 684/477/1 686/834/1 688/475/1 -f 692/476/1 694/840/1 684/477/1 -f 721/478/3 723/842/3 720/479/3 -f 725/481/5 727/843/5 726/482/5 -f 731/484/3 730/844/3 728/485/3 -f 732/487/4 734/488/4 731/484/4 -f 734/488/17 733/845/17 730/489/17 -f 735/490/5 733/846/5 734/488/5 -f 736/491/1 738/494/1 739/492/1 -f 738/494/13 740/496/13 741/495/13 -f 740/496/4 742/498/4 743/497/4 -f 742/498/14 744/500/14 745/499/14 -f 744/500/2 746/847/2 747/501/2 -f 737/504/5 739/848/5 745/502/5 -f 739/848/5 741/495/5 745/502/5 -f 741/495/5 743/497/5 745/502/5 -f 738/505/3 736/849/3 746/850/3 -f 746/850/3 744/851/3 738/505/3 -f 744/851/3 742/498/3 738/505/3 -f 750/506/5 751/512/5 749/507/5 -f 752/509/3 754/515/3 755/510/3 -f 751/512/2 754/515/2 752/513/2 -f 750/506/4 755/510/4 754/515/4 -f 748/516/1 753/852/1 755/510/1 -f 758/517/13 759/521/13 757/518/13 -f 760/520/4 761/523/4 759/521/4 -f 762/522/2 763/853/2 761/523/2 -f 759/521/5 761/523/5 763/524/5 -f 758/517/3 756/854/3 762/526/3 -f 766/527/5 767/855/5 765/528/5 -f 768/530/3 770/856/3 771/531/3 -f 766/527/2 771/531/2 770/533/2 -f 764/529/4 769/532/4 771/531/4 -f 772/535/5 774/543/5 775/536/5 -f 779/538/3 778/542/3 776/539/3 -f 773/541/16 777/857/16 776/539/16 -f 772/535/7 776/539/7 778/542/7 -f 774/543/1 778/542/1 779/544/1 -f 783/546/1 782/567/1 806/547/1 -f 789/549/1 813/568/1 814/550/1 -f 787/552/1 786/858/1 810/553/1 -f 783/546/1 807/548/1 808/555/1 -f 790/551/1 814/550/1 815/557/1 -f 780/559/1 804/566/1 805/560/1 -f 787/552/1 811/554/1 812/562/1 -f 784/556/1 808/555/1 809/564/1 -f 780/559/1 791/558/1 815/557/1 -f 781/561/1 805/560/1 806/547/1 -f 789/549/1 788/563/1 812/562/1 -f 786/569/1 785/565/1 809/564/1 -f 818/859/2 817/860/2 816/571/2 -f 816/571/2 827/861/2 826/572/2 -f 826/572/2 825/862/2 822/573/2 -f 825/862/2 824/863/2 822/573/2 -f 824/863/2 823/864/2 822/573/2 -f 822/573/2 821/865/2 820/866/2 -f 820/866/2 819/867/2 822/573/2 -f 819/867/2 818/859/2 822/573/2 -f 818/859/2 816/571/2 822/573/2 -f 792/576/1 793/868/1 794/869/1 -f 794/869/1 795/870/1 796/574/1 -f 796/574/1 797/871/1 800/575/1 -f 797/871/1 798/872/1 800/575/1 -f 798/872/1 799/873/1 800/575/1 -f 800/575/1 801/874/1 802/875/1 -f 802/875/1 803/876/1 792/576/1 -f 792/576/1 794/869/1 796/574/1 -f 800/575/1 802/875/1 792/576/1 -f 831/577/1 830/598/1 854/578/1 -f 837/580/1 861/599/1 862/581/1 -f 835/583/1 834/877/1 858/584/1 -f 831/577/1 855/579/1 856/586/1 -f 838/582/1 862/581/1 863/588/1 -f 828/590/1 852/597/1 853/591/1 -f 835/583/1 859/585/1 860/593/1 -f 832/587/1 856/586/1 857/595/1 -f 828/590/1 839/589/1 863/588/1 -f 829/592/1 853/591/1 854/578/1 -f 837/580/1 836/594/1 860/593/1 -f 834/600/1 833/596/1 857/595/1 -f 866/878/2 865/879/2 864/602/2 -f 864/602/2 875/880/2 874/603/2 -f 874/603/2 873/881/2 870/604/2 -f 873/881/2 872/882/2 870/604/2 -f 872/882/2 871/883/2 870/604/2 -f 870/604/2 869/884/2 868/885/2 -f 868/885/2 867/886/2 870/604/2 -f 867/886/2 866/878/2 870/604/2 -f 866/878/2 864/602/2 870/604/2 -f 840/607/1 841/887/1 842/888/1 -f 842/888/1 843/889/1 844/605/1 -f 844/605/1 845/890/1 848/606/1 -f 845/890/1 846/891/1 848/606/1 -f 846/891/1 847/892/1 848/606/1 -f 848/606/1 849/893/1 850/894/1 -f 850/894/1 851/895/1 840/607/1 -f 840/607/1 842/888/1 844/605/1 -f 848/606/1 850/894/1 840/607/1 -f 879/608/1 878/629/1 902/609/1 -f 885/611/1 909/630/1 910/612/1 -f 883/614/1 882/896/1 906/615/1 -f 879/608/1 903/610/1 904/617/1 -f 886/613/1 910/612/1 911/619/1 -f 876/621/1 900/628/1 901/622/1 -f 883/614/1 907/616/1 908/624/1 -f 880/618/1 904/617/1 905/626/1 -f 876/621/1 887/620/1 911/619/1 -f 877/623/1 901/622/1 902/609/1 -f 885/611/1 884/625/1 908/624/1 -f 882/631/1 881/627/1 905/626/1 -f 914/897/2 913/898/2 912/633/2 -f 912/633/2 923/899/2 922/634/2 -f 922/634/2 921/900/2 918/635/2 -f 921/900/2 920/901/2 918/635/2 -f 920/901/2 919/902/2 918/635/2 -f 918/635/2 917/903/2 916/904/2 -f 916/904/2 915/905/2 918/635/2 -f 915/905/2 914/897/2 918/635/2 -f 914/897/2 912/633/2 918/635/2 -f 888/638/1 889/906/1 890/907/1 -f 890/907/1 891/908/1 892/636/1 -f 892/636/1 893/909/1 896/637/1 -f 893/909/1 894/910/1 896/637/1 -f 894/910/1 895/911/1 896/637/1 -f 896/637/1 897/912/1 898/913/1 -f 898/913/1 899/914/1 888/638/1 -f 888/638/1 890/907/1 892/636/1 -f 896/637/1 898/913/1 888/638/1 -f 933/639/5 932/915/5 934/640/5 -f 934/640/5 935/916/5 936/641/5 -f 936/641/5 937/917/5 933/639/5 -f 937/917/5 938/918/5 933/639/5 -f 938/918/5 939/919/5 933/639/5 -f 942/644/7 941/920/7 940/921/7 -f 940/921/7 947/922/7 946/642/7 -f 946/642/7 945/923/7 944/643/7 -f 944/643/7 943/924/7 942/644/7 -f 942/644/7 940/921/7 946/642/7 -f 948/647/4 949/925/4 950/926/4 -f 950/926/4 951/927/4 952/645/4 -f 952/645/4 953/928/4 954/646/4 -f 954/646/4 955/929/4 948/647/4 -f 948/647/4 950/926/4 952/645/4 -f 964/650/4 965/930/4 966/931/4 -f 966/931/4 967/932/4 968/648/4 -f 968/648/4 969/933/4 970/649/4 -f 970/649/4 971/934/4 964/650/4 -f 964/650/4 966/931/4 968/648/4 -f 986/653/2 980/935/2 981/936/2 -f 981/936/2 987/937/2 982/651/2 -f 982/651/2 983/938/2 984/652/2 -f 984/652/2 985/939/2 986/653/2 -f 986/653/2 981/936/2 982/651/2 -f 973/656/1 972/940/1 979/941/1 -f 979/941/1 978/942/1 977/654/1 -f 977/654/1 976/943/1 975/655/1 -f 975/655/1 974/944/1 973/656/1 -f 973/656/1 979/941/1 977/654/1 +f 672/1137/153 667/1138/153 668/1139/153 +f 655/1140/154 653/1141/154 654/1142/154 +f 662/1143/153 654/1142/153 653/1141/153 +f 661/1144/155 660/1145/155 651/1146/155 +f 655/1140/155 658/1147/155 656/1148/155 +f 657/1149/153 652/1150/153 659/1151/153 +f 665/1152/156 657/1153/156 659/1154/156 +f 663/1155/154 658/1156/154 657/1153/154 +f 661/1157/156 666/1158/156 660/1159/156 +f 662/1160/154 667/1138/154 661/1157/154 +f 651/1146/154 659/1151/154 652/1150/154 +f 660/1145/157 669/1161/157 659/1151/157 +f 660/1145/157 666/1162/157 670/1163/157 +f 659/1151/157 669/1161/157 665/1164/157 +f 673/1165/158 665/1166/158 669/1167/158 +f 666/1168/159 674/1169/159 670/1170/159 +f 670/1170/160 673/1165/160 669/1167/160 +f 663/1155/155 671/1171/155 664/1172/155 +f 657/1173/157 654/1142/157 661/1174/157 +f 673/1165/161 662/1175/161 658/1176/161 +f 675/1177/153 678/1178/153 676/1179/153 +f 682/1180/155 679/1181/155 680/1182/155 +f 676/1183/162 679/1181/162 675/1177/162 +f 675/1177/160 681/1184/160 677/1185/160 +f 677/1185/157 682/1186/157 678/1187/157 +f 693/1188/155 695/1189/155 697/1190/155 +f 704/1191/153 708/1192/153 699/1193/153 +f 712/1194/161 714/1195/161 710/1196/161 +f 702/1197/155 714/1198/155 705/1199/155 +f 706/1200/154 712/1201/154 703/1202/154 +f 714/1198/163 706/1200/163 705/1199/163 +f 704/1191/164 712/1201/164 711/1203/164 +f 700/1204/159 708/1192/159 707/1205/159 +f 710/1196/158 702/1206/158 701/1207/158 +f 700/1204/160 710/1196/160 701/1207/160 +f 725/1208/161 727/1209/161 729/1210/161 +f 720/1211/157 718/1212/157 716/1213/157 +f 750/1214/160 733/1215/160 756/1216/160 +f 744/1217/160 741/1218/160 742/1219/160 +f 746/1220/161 743/1221/161 744/1217/161 +f 742/1219/153 746/1222/153 744/1217/153 +f 741/1218/155 745/1223/155 747/1224/155 +f 763/1225/165 766/1226/165 764/1227/165 +f 766/1228/153 770/1229/153 764/1230/153 +f 769/1231/155 765/1232/155 763/1233/155 +f 775/1234/155 773/1235/155 771/1236/155 +f 772/1237/166 775/1234/166 771/1236/166 +f 774/1238/153 776/1239/153 772/1237/153 +f 777/1240/167 774/1241/167 773/1235/167 +f 776/1239/168 779/1242/168 775/1234/168 +f 781/1243/169 778/1244/169 777/1240/169 +f 778/1245/153 780/1246/153 776/1239/153 +f 779/1242/155 777/1240/155 775/1234/155 +f 900/1247/153 903/1248/153 901/1249/153 +f 907/1250/155 904/1251/155 905/1252/155 +f 901/1253/162 904/1251/162 900/1247/162 +f 900/1247/160 906/1254/160 902/1255/160 +f 902/1255/157 907/1256/157 903/1257/157 +f 917/1258/153 918/1259/153 920/1260/153 +f 930/1261/160 928/1262/160 926/1263/160 +f 936/1264/154 938/1265/154 932/1266/154 +f 952/1267/154 954/1268/154 948/1269/154 +f 966/1270/161 968/1271/161 970/1272/161 +f 961/1273/157 959/1274/157 957/1275/157 +f 1077/1276/170 1076/1277/170 1075/1278/170 +f 1079/1279/154 1078/1280/154 1077/1276/154 +f 1081/1281/161 1080/1282/161 1079/1279/161 +f 1078/1280/153 1082/1283/153 1076/1284/153 +f 1077/1276/155 1081/1285/155 1079/1279/155 +f 1085/1286/170 1084/1287/170 1083/1288/170 +f 1087/1289/154 1086/1290/154 1085/1286/154 +f 1089/1291/161 1088/1292/161 1087/1289/161 +f 1086/1290/153 1090/1293/153 1084/1294/153 +f 1085/1286/155 1089/1295/155 1087/1289/155 +f 672/1137/153 666/1168/153 667/1138/153 +f 655/1140/154 656/1148/154 653/1141/154 +f 662/1143/153 661/1296/153 654/1142/153 +f 655/1140/155 657/1297/155 658/1147/155 +f 665/1152/156 663/1155/156 657/1153/156 +f 663/1155/154 664/1172/154 658/1156/154 +f 661/1157/156 667/1138/156 666/1158/156 +f 662/1160/154 668/1139/154 667/1138/154 +f 651/1146/154 660/1145/154 659/1151/154 +f 660/1145/157 670/1163/157 669/1161/157 +f 673/1165/158 671/1171/158 665/1166/158 +f 666/1168/159 672/1137/159 674/1169/159 +f 670/1170/160 674/1169/160 673/1165/160 +f 663/1155/155 665/1166/155 671/1171/155 +f 651/1146/157 652/1150/157 657/1173/157 +f 657/1173/157 655/1140/157 654/1142/157 +f 661/1174/157 651/1146/157 657/1173/157 +f 664/1298/161 671/1299/161 658/1176/161 +f 671/1299/161 673/1165/161 658/1176/161 +f 673/1165/161 674/1169/161 662/1175/161 +f 674/1169/161 672/1300/161 662/1175/161 +f 672/1300/161 668/1301/161 662/1175/161 +f 662/1175/161 653/1141/161 656/1148/161 +f 662/1175/161 656/1148/161 658/1176/161 +f 675/1177/153 677/1185/153 678/1178/153 +f 682/1180/155 681/1184/155 679/1181/155 +f 676/1183/162 680/1302/162 679/1181/162 +f 675/1177/160 679/1181/160 681/1184/160 +f 677/1185/157 681/1184/157 682/1186/157 +f 692/1303/155 691/1304/155 693/1188/155 +f 693/1188/155 694/1305/155 695/1189/155 +f 695/1189/155 696/1306/155 697/1190/155 +f 697/1190/155 698/1307/155 692/1303/155 +f 692/1303/155 693/1188/155 697/1190/155 +f 704/1191/153 711/1203/153 708/1192/153 +f 710/1196/161 707/1205/161 708/1308/161 +f 708/1308/161 711/1309/161 712/1194/161 +f 712/1194/161 713/1310/161 714/1195/161 +f 714/1195/161 709/1311/161 710/1196/161 +f 710/1196/161 708/1308/161 712/1194/161 +f 702/1197/155 709/1312/155 714/1198/155 +f 706/1200/154 713/1313/154 712/1201/154 +f 714/1198/163 713/1313/163 706/1200/163 +f 704/1191/164 703/1202/164 712/1201/164 +f 700/1204/159 699/1193/159 708/1192/159 +f 710/1196/158 709/1314/158 702/1206/158 +f 700/1204/160 707/1205/160 710/1196/160 +f 729/1210/161 723/1315/161 724/1316/161 +f 724/1316/161 730/1317/161 725/1208/161 +f 725/1208/161 726/1318/161 727/1209/161 +f 727/1209/161 728/1319/161 729/1210/161 +f 729/1210/161 724/1316/161 725/1208/161 +f 716/1213/157 715/1320/157 722/1321/157 +f 722/1321/157 721/1322/157 720/1211/157 +f 720/1211/157 719/1323/157 718/1212/157 +f 718/1212/157 717/1324/157 716/1213/157 +f 716/1213/157 722/1321/157 720/1211/157 +f 733/1215/160 734/1325/160 756/1216/160 +f 756/1216/160 758/1326/160 751/1327/160 +f 758/1326/160 736/1328/160 751/1327/160 +f 736/1328/160 735/1329/160 751/1327/160 +f 751/1327/160 750/1214/160 756/1216/160 +f 744/1217/160 743/1221/160 741/1218/160 +f 746/1220/161 745/1330/161 743/1221/161 +f 742/1219/153 748/1331/153 746/1222/153 +f 741/1218/155 743/1221/155 745/1223/155 +f 763/1225/165 765/1232/165 766/1226/165 +f 766/1228/153 768/1332/153 770/1229/153 +f 769/1231/155 767/1333/155 765/1232/155 +f 775/1234/155 777/1240/155 773/1235/155 +f 772/1237/166 776/1239/166 775/1234/166 +f 774/1238/153 778/1245/153 776/1239/153 +f 777/1240/167 778/1244/167 774/1241/167 +f 776/1239/168 780/1246/168 779/1242/168 +f 781/1243/169 782/1334/169 778/1244/169 +f 778/1245/153 782/1335/153 780/1246/153 +f 779/1242/155 781/1243/155 777/1240/155 +f 900/1247/153 902/1255/153 903/1248/153 +f 907/1250/155 906/1254/155 904/1251/155 +f 901/1253/162 905/1336/162 904/1251/162 +f 900/1247/160 904/1251/160 906/1254/160 +f 902/1255/157 906/1254/157 907/1256/157 +f 917/1258/153 916/1337/153 918/1259/153 +f 918/1259/153 919/1338/153 920/1260/153 +f 920/1260/153 921/1339/153 917/1258/153 +f 921/1339/153 922/1340/153 917/1258/153 +f 922/1340/153 923/1341/153 917/1258/153 +f 926/1263/160 925/1342/160 924/1343/160 +f 924/1343/160 931/1344/160 930/1261/160 +f 930/1261/160 929/1345/160 928/1262/160 +f 928/1262/160 927/1346/160 926/1263/160 +f 926/1263/160 924/1343/160 930/1261/160 +f 932/1266/154 933/1347/154 934/1348/154 +f 934/1348/154 935/1349/154 936/1264/154 +f 936/1264/154 937/1350/154 938/1265/154 +f 938/1265/154 939/1351/154 932/1266/154 +f 932/1266/154 934/1348/154 936/1264/154 +f 948/1269/154 949/1352/154 950/1353/154 +f 950/1353/154 951/1354/154 952/1267/154 +f 952/1267/154 953/1355/154 954/1268/154 +f 954/1268/154 955/1356/154 948/1269/154 +f 948/1269/154 950/1353/154 952/1267/154 +f 970/1272/161 964/1357/161 965/1358/161 +f 965/1358/161 971/1359/161 966/1270/161 +f 966/1270/161 967/1360/161 968/1271/161 +f 968/1271/161 969/1361/161 970/1272/161 +f 970/1272/161 965/1358/161 966/1270/161 +f 957/1275/157 956/1362/157 963/1363/157 +f 963/1363/157 962/1364/157 961/1273/157 +f 961/1273/157 960/1365/157 959/1274/157 +f 959/1274/157 958/1366/157 957/1275/157 +f 957/1275/157 963/1363/157 961/1273/157 +f 1077/1276/170 1078/1280/170 1076/1277/170 +f 1079/1279/154 1080/1282/154 1078/1280/154 +f 1081/1281/161 1082/1367/161 1080/1282/161 +f 1078/1280/153 1080/1282/153 1082/1283/153 +f 1077/1276/155 1075/1368/155 1081/1285/155 +f 1085/1286/170 1086/1290/170 1084/1287/170 +f 1087/1289/154 1088/1292/154 1086/1290/154 +f 1089/1291/161 1090/1369/161 1088/1292/161 +f 1086/1290/153 1088/1292/153 1090/1293/153 +f 1085/1286/155 1083/1370/155 1089/1295/155 s 1 -f 2/945/27 3/946/3 1/947/27 -f 4/948/3 5/949/28 3/946/3 -f 6/950/28 7/951/29 5/949/28 -f 8/952/29 9/953/30 7/951/29 -f 17/954/4 28/955/31 16/956/31 -f 14/957/3 25/958/28 13/959/28 -f 21/960/32 32/961/5 20/962/5 -f 18/963/33 29/964/4 17/965/4 -f 15/966/34 26/967/3 14/957/3 -f 22/968/35 33/969/32 21/960/32 -f 12/970/29 23/971/7 11/972/7 -f 19/973/36 30/974/33 18/963/33 -f 16/956/31 27/975/34 15/966/34 -f 11/972/7 34/976/35 22/968/35 -f 13/959/28 24/977/29 12/970/29 -f 20/962/5 31/978/36 19/973/36 -f 36/979/37 37/980/35 35/981/37 -f 38/982/35 39/983/32 37/980/35 -f 40/984/32 41/985/5 39/983/32 -f 42/986/5 43/987/38 41/985/5 -f 51/988/4 62/989/31 50/990/31 -f 48/991/3 59/992/28 47/993/28 -f 55/994/32 66/995/5 54/996/5 -f 52/997/33 63/998/4 51/999/4 -f 49/1000/34 60/1001/3 48/991/3 -f 56/1002/35 67/1003/32 55/994/32 -f 46/1004/29 57/1005/7 45/1006/7 -f 53/1007/36 64/1008/33 52/997/33 -f 50/990/31 61/1009/34 49/1000/34 -f 45/1006/7 68/1010/35 56/1002/35 -f 47/993/28 58/1011/29 46/1004/29 -f 54/996/5 65/1012/36 53/1007/36 -f 74/1013/34 107/1014/31 72/1015/31 -f 107/1014/31 70/1016/39 72/1015/31 -f 73/1017/39 104/1018/40 70/1016/39 -f 78/1019/41 137/1020/42 77/1021/41 -f 10/1022/30 35/1023/37 9/953/30 -f 137/1020/43 2/945/27 1/947/27 -f 85/1024/4 96/1025/31 84/1026/31 -f 82/1027/3 93/1028/28 81/1029/28 -f 89/1030/32 100/1031/5 88/1032/5 -f 86/1033/33 97/1034/4 85/1035/4 -f 83/1036/34 94/1037/3 82/1027/3 -f 90/1038/35 101/1039/32 89/1030/32 -f 80/1040/29 91/1041/7 79/1042/7 -f 87/1043/36 98/1044/33 86/1033/33 -f 84/1026/31 95/1045/34 83/1036/34 -f 79/1042/7 102/1046/35 90/1038/35 -f 81/1029/28 92/1047/29 80/1040/29 -f 88/1032/5 99/1048/36 87/1043/36 -f 139/1049/44 106/1050/45 105/1051/45 -f 44/1052/38 139/1049/46 43/987/38 -f 119/1053/4 130/1054/31 118/1055/31 -f 116/1056/3 127/1057/28 115/1058/28 -f 123/1059/32 134/1060/5 122/1061/5 -f 120/1062/33 131/1063/4 119/1064/4 -f 117/1065/34 128/1066/3 116/1056/3 -f 124/1067/35 135/1068/32 123/1059/32 -f 114/1069/29 125/1070/7 113/1071/7 -f 121/1072/36 132/1073/33 120/1062/33 -f 118/1055/31 129/1074/34 117/1065/34 -f 113/1071/7 136/1075/35 124/1067/35 -f 115/1058/28 126/1076/29 114/1069/29 -f 122/1061/5 133/1077/36 121/1072/36 -f 109/1078/47 74/1013/34 76/1079/3 -f 104/1018/40 205/1080/33 112/1081/33 -f 112/1081/33 206/1082/36 110/1083/36 -f 206/1082/36 108/1084/5 110/1083/36 -f 150/1085/2 151/1086/15 149/1087/2 -f 152/1088/15 153/1089/7 151/1086/15 -f 154/1090/7 155/1091/48 153/1092/7 -f 156/1093/48 157/1094/1 155/1091/48 -f 158/1095/1 159/1096/13 157/1094/1 -f 160/1097/13 161/1098/4 159/1096/13 -f 162/1099/4 163/1100/14 161/1098/4 -f 164/1101/14 149/1087/2 163/1100/14 -f 203/1102/49 204/1103/50 105/1051/45 -f 109/1078/47 78/1019/41 77/1021/41 -f 255/1104/2 270/1105/15 262/1106/15 -f 261/1107/7 268/1108/48 260/1109/48 -f 259/1110/1 266/1111/13 258/1112/13 -f 257/1113/4 263/1114/14 256/1115/14 -f 262/1106/15 269/1116/7 261/1117/7 -f 260/1109/48 267/1118/1 259/1110/1 -f 258/1112/13 265/1119/4 257/1113/4 -f 256/1115/14 264/1120/2 255/1104/2 -f 294/1121/51 295/1122/52 293/1123/53 -f 298/1124/54 299/1125/55 297/1126/56 -f 300/1127/57 301/1128/58 299/1125/55 -f 302/1129/59 303/1130/60 301/1128/58 -f 304/1131/61 305/1132/62 303/1130/60 -f 302/1133/59 326/1134/63 327/1135/64 -f 295/1136/52 314/1137/65 293/1123/53 -f 315/722/66 317/1138/67 318/1139/68 -f 293/1123/53 313/1140/69 308/1141/70 -f 303/1142/60 320/1143/71 319/1144/72 -f 303/1142/60 318/1139/68 301/1145/58 -f 301/1145/58 317/1138/67 299/1125/55 -f 297/1146/56 317/1138/67 316/721/73 -f 326/1134/63 325/1147/74 324/1148/75 -f 323/1149/76 330/1150/77 331/1151/5 -f 307/1152/78 323/1149/76 294/1153/51 -f 298/1154/54 326/1134/63 300/1155/57 -f 296/1156/79 323/1149/76 324/1148/75 -f 304/1157/61 329/1158/80 306/1159/81 -f 302/1133/59 328/1160/82 304/1157/61 -f 319/1144/72 314/1137/65 318/1139/68 -f 332/1161/5 328/1160/82 331/1151/5 -f 314/1137/65 321/1162/3 313/1140/69 -f 319/1144/72 322/1163/3 321/1162/3 -f 328/1160/82 323/1149/76 331/1151/5 -f 350/1164/3 357/1165/19 349/1166/19 -f 352/1167/7 364/1168/11 351/1169/11 -f 355/1170/20 361/1171/5 354/1172/5 -f 353/1173/12 359/1174/7 352/1175/7 -f 349/1166/19 363/1176/4 356/1177/4 -f 351/1169/11 358/1178/3 350/1164/3 -f 356/1177/4 362/1179/20 355/1170/20 -f 354/1172/5 360/1180/12 353/1173/12 -f 378/1181/5 371/1182/83 379/1183/83 -f 376/1184/1 369/1185/78 377/1186/78 -f 374/1187/3 367/1188/70 375/1189/70 -f 380/1190/2 365/1191/84 373/1192/84 -f 379/1183/83 372/1193/2 380/1190/2 -f 377/1186/78 370/1194/5 378/1195/5 -f 375/1189/70 368/1196/1 376/1184/1 -f 373/1192/84 366/1197/3 374/1187/3 -f 394/1198/5 387/1199/83 395/1200/83 -f 392/1201/1 385/1202/78 393/1203/78 -f 390/1204/3 383/1205/70 391/1206/70 -f 396/1207/2 381/1208/84 389/1209/84 -f 395/1200/83 388/1210/2 396/1207/2 -f 393/1203/78 386/1211/5 394/1212/5 -f 391/1206/70 384/1213/1 392/1201/1 -f 389/1209/84 382/1214/3 390/1204/3 -f 400/1215/85 397/1216/86 398/1217/87 -f 404/1218/88 401/1219/56 402/1220/54 -f 406/1221/89 403/1222/90 404/1218/88 -f 408/1223/91 405/1224/92 406/1221/89 -f 402/1225/54 425/1226/93 404/1227/88 -f 420/1228/94 413/1229/95 421/1230/96 -f 419/1231/97 421/1230/96 415/1232/98 -f 427/1233/99 414/1234/100 408/1235/91 -f 407/1236/101 419/1231/97 405/1237/92 -f 407/1236/101 413/1229/95 420/1228/94 -f 401/1238/56 418/1239/102 417/762/73 -f 399/1240/103 415/1232/98 397/1216/86 -f 405/1237/92 418/1239/102 403/1222/90 -f 422/1241/104 425/1226/93 424/1242/74 -f 400/1243/85 423/1244/105 422/1241/104 -f 406/1245/89 425/1226/93 426/1246/106 -f 416/346/107 419/1231/97 415/1232/98 -f 406/1245/89 427/1233/99 408/1235/91 -f 414/1234/100 427/1233/99 428/1247/108 -f 416/346/107 418/1239/102 419/1231/97 -f 426/1246/106 422/1241/104 423/1244/105 -f 428/1247/108 426/1246/106 423/1244/105 -f 451/773/109 458/1248/110 452/1249/109 -f 458/1248/110 449/1250/111 450/1251/111 -f 456/1252/112 451/773/6 452/1249/6 -f 453/1253/113 456/1252/112 454/1254/113 -f 479/1255/83 463/1256/114 462/1257/83 -f 467/1258/115 473/1259/84 468/1260/84 -f 464/1261/116 476/1262/15 465/1263/15 -f 463/1256/114 477/1264/116 464/1261/116 -f 482/1265/14 460/1266/117 459/1267/14 -f 473/1259/84 469/1268/118 468/1260/84 -f 476/1269/15 466/1270/119 465/1271/15 -f 481/1272/117 461/1273/120 460/1266/117 -f 469/1268/118 471/1274/121 470/1275/121 -f 475/1276/119 467/1258/115 466/1270/119 -f 461/1273/120 479/1255/83 462/1257/83 -f 470/1275/121 482/1265/14 459/1267/14 -f 490/1277/84 497/1278/3 489/1279/3 -f 488/1280/70 495/1281/1 487/1282/1 -f 486/1283/78 493/1284/5 485/1285/5 -f 484/1286/83 491/1287/2 483/1288/2 -f 483/1288/2 498/1289/84 490/1277/84 -f 489/1279/3 496/1290/70 488/1280/70 -f 487/1282/1 494/1291/78 486/1283/78 -f 485/1292/5 492/1293/83 484/1286/83 -f 506/1294/84 513/1295/3 505/1296/3 -f 504/1297/70 511/1298/1 503/1299/1 -f 502/1300/78 509/1301/5 501/1302/5 -f 500/1303/83 507/1304/2 499/1305/2 -f 499/1305/2 514/1306/84 506/1294/84 -f 505/1296/3 512/1307/70 504/1297/70 -f 503/1299/1 510/1308/78 502/1300/78 -f 501/1309/5 508/1310/83 500/1303/83 -f 566/1311/122 559/1312/7 558/1313/12 -f 564/1314/123 557/1315/5 556/1316/20 -f 569/1317/124 562/1318/19 561/1319/3 -f 567/1320/48 560/1321/11 559/1322/7 -f 565/1323/125 558/1313/12 557/1315/5 -f 563/1324/126 556/1316/20 555/1325/4 -f 570/1326/127 555/1325/4 562/1318/19 -f 568/1327/128 561/1319/3 560/1321/11 -f 569/1328/124 577/1329/129 570/1326/127 -f 565/1330/125 574/1331/130 566/1332/122 -f 564/1314/123 571/1333/14 572/1334/131 -f 563/1324/126 577/1329/129 571/1333/14 -f 569/1328/124 575/1335/132 576/1336/133 -f 564/1314/123 573/1337/134 565/1330/125 -f 572/1334/131 580/1338/135 573/1337/134 -f 577/1329/129 583/1339/136 584/1340/137 -f 574/1331/130 580/1338/135 581/1341/138 -f 572/1334/131 578/1342/139 579/1343/140 -f 571/1333/14 584/1340/137 578/1342/139 -f 575/1335/132 583/1339/136 576/1336/133 -f 566/1332/122 574/1331/130 567/1344/48 -f 567/1345/48 575/1335/132 568/1346/128 -f 575/1335/132 567/1345/48 582/1347/141 -f 574/1331/130 581/1341/138 567/1344/48 -f 582/1348/141 585/1349/142 590/1350/143 -f 583/1351/136 592/1352/144 584/1340/137 -f 580/1353/135 589/1354/145 581/1355/138 -f 578/1342/139 587/1356/146 579/1343/140 -f 581/1355/138 585/1357/142 567/1358/48 -f 578/1342/139 592/1352/144 586/1359/147 -f 582/1348/141 591/1360/148 583/1351/136 -f 579/1343/140 588/1361/149 580/1353/135 -f 604/1362/122 597/1363/150 596/1364/151 -f 602/1365/123 595/1366/152 594/1367/153 -f 607/1368/124 600/1369/154 599/1370/155 -f 605/1371/48 598/1372/156 597/1363/150 -f 603/1373/125 596/1364/151 595/1374/152 -f 601/1375/126 594/1367/153 593/1376/157 -f 608/1377/127 593/1376/157 600/1369/154 -f 606/1378/128 599/1370/155 598/1372/156 -f 607/1379/124 615/1380/158 608/1377/127 -f 603/1381/125 612/1382/130 604/1383/122 -f 601/1375/126 610/1384/159 602/1365/123 -f 608/1377/127 609/1385/14 601/1375/126 -f 606/1386/128 614/1387/133 607/1379/124 -f 602/1365/123 611/1388/134 603/1389/125 -f 611/1388/134 617/1390/140 618/1391/135 -f 614/1387/133 622/1392/137 615/1380/158 -f 612/1382/130 618/1393/135 619/1394/138 -f 609/1385/14 617/1390/140 610/1384/159 -f 609/1385/14 622/1392/137 616/1395/139 -f 613/1396/132 621/1397/136 614/1387/133 -f 604/1383/122 612/1382/130 605/1398/48 -f 605/1398/48 613/1396/132 606/1386/128 -f 613/1396/132 605/1398/48 620/1399/141 -f 612/1382/130 619/1394/138 605/1398/48 -f 605/1400/48 628/1401/143 620/1402/141 -f 621/1403/136 630/1404/144 622/1392/137 -f 618/1405/135 627/1406/145 619/1407/138 -f 616/1395/139 625/1408/146 617/1390/140 -f 619/1407/138 623/1409/142 605/1400/48 -f 622/1392/137 624/1410/147 616/1395/139 -f 620/1402/141 629/1411/148 621/1403/136 -f 617/1390/140 626/1412/20 618/1413/135 -f 992/1414/160 1019/1415/19 635/1416/161 -f 1020/1417/162 1019/1415/19 992/1414/160 -f 991/1418/163 634/1419/164 1019/1420/19 -f 1019/1420/19 1018/1421/165 991/1418/163 -f 591/1360/148 644/1422/166 592/1352/144 -f 586/1423/147 640/1424/167 587/1425/146 -f 589/1426/145 638/1427/168 585/1428/142 -f 592/1352/144 639/1429/169 586/1423/147 -f 590/1350/143 643/1430/11 591/1360/148 -f 590/1350/143 638/1431/168 642/1432/170 -f 638/1427/168 648/1433/171 645/1434/172 -f 597/1435/150 656/1436/173 655/1437/174 -f 643/1430/11 649/1438/48 650/1439/175 -f 642/1432/170 645/1440/172 649/1438/48 -f 644/1422/166 650/1439/175 651/1441/176 -f 596/1364/151 653/1442/78 595/1374/152 -f 587/1425/146 640/1424/167 588/1443/149 -f 640/1424/167 647/1444/14 588/1443/149 -f 588/1443/149 641/1445/177 589/1426/145 -f 641/1445/177 588/1443/149 648/1433/171 -f 594/1367/153 646/1446/178 593/1447/157 -f 593/1447/157 657/1448/179 600/1449/154 -f 597/1435/150 654/1450/180 596/1364/151 -f 595/1366/152 652/1451/181 594/1367/153 -f 651/1441/176 639/1429/169 644/1422/166 -f 598/1452/156 599/1453/155 656/1436/173 -f 651/1454/176 656/1436/173 599/1453/155 -f 650/1455/175 656/1436/173 651/1454/176 -f 649/1438/48 655/1437/174 650/1455/175 -f 654/1450/180 645/1456/172 653/1442/78 -f 653/1457/78 648/1458/171 652/1451/181 -f 652/1451/181 588/1459/149 646/1446/178 -f 657/1448/179 588/1459/149 647/1460/14 -f 599/1461/155 640/1424/167 639/1429/169 -f 657/1448/179 647/1460/14 599/1453/155 -f 600/1449/154 657/1448/179 599/1453/155 -f 630/1404/144 663/1462/11 664/1463/166 -f 624/1464/147 660/1465/167 625/1466/146 -f 623/1467/142 661/1468/177 658/1469/168 -f 630/1404/144 659/1470/169 624/1464/147 -f 628/1401/143 663/1462/11 629/1411/148 -f 628/1401/143 658/1469/168 662/1471/170 -f 663/1462/11 669/1472/182 670/1473/183 -f 662/1471/170 665/1474/184 669/1472/182 -f 663/1462/11 671/1475/185 664/1463/166 -f 660/1465/167 666/1476/186 667/1477/187 -f 661/1468/177 665/1474/184 658/1469/168 -f 659/1470/169 671/1475/185 666/1476/186 -f 626/1478/20 661/1468/177 627/1479/145 -f 661/1468/177 626/1478/20 668/1480/188 -f 625/1466/146 660/1465/167 626/1481/20 -f 660/1465/167 667/1477/187 626/1481/20 -f 675/447/5 686/1482/36 674/468/36 -f 682/452/34 693/1483/3 681/450/3 -f 679/453/29 690/1484/7 678/823/7 -f 676/457/32 687/1485/5 675/447/5 -f 683/459/31 694/1486/34 682/452/34 -f 673/462/33 684/1487/4 672/460/4 -f 680/464/28 691/1488/29 679/453/29 -f 677/466/35 688/1489/32 676/457/32 -f 672/460/4 695/1490/31 683/459/31 -f 674/468/36 685/1491/33 673/462/33 -f 681/450/3 692/1492/28 680/464/28 -f 678/470/7 689/1493/35 677/466/35 -f 706/451/34 719/1494/31 707/458/31 -f 696/467/4 709/1495/33 697/461/33 -f 703/455/29 716/1496/28 704/463/28 -f 700/456/32 713/1497/35 701/465/35 -f 707/458/31 708/1498/4 696/467/4 -f 697/461/33 710/1499/36 698/448/36 -f 704/463/28 717/1500/3 705/469/3 -f 701/465/35 714/1501/7 702/471/7 -f 698/448/36 711/1502/5 699/449/5 -f 705/469/3 718/1503/34 706/451/34 -f 702/454/7 715/1504/29 703/455/29 -f 699/449/5 712/1505/32 700/456/32 -f 783/546/5 794/1506/36 782/567/36 -f 790/551/34 801/1507/3 789/549/3 -f 787/552/29 798/1508/7 786/858/7 -f 784/556/32 795/1509/5 783/546/5 -f 791/558/31 802/1510/34 790/551/34 -f 781/561/33 792/1511/4 780/559/4 -f 788/563/28 799/1512/29 787/552/29 -f 785/565/35 796/1513/32 784/556/32 -f 780/559/4 803/1514/31 791/558/31 -f 782/567/36 793/1515/33 781/561/33 -f 789/549/3 800/1516/28 788/563/28 -f 786/569/7 797/1517/35 785/565/35 -f 814/550/34 827/1518/31 815/557/31 -f 804/566/4 817/1519/33 805/560/33 -f 811/554/29 824/1520/28 812/562/28 -f 808/555/32 821/1521/35 809/564/35 -f 815/557/31 816/1522/4 804/566/4 -f 805/560/33 818/1523/36 806/547/36 -f 812/562/28 825/1524/3 813/568/3 -f 809/564/35 822/1525/7 810/570/7 -f 806/547/36 819/1526/5 807/548/5 -f 813/568/3 826/1527/34 814/550/34 -f 810/553/7 823/1528/29 811/554/29 -f 807/548/5 820/1529/32 808/555/32 -f 831/577/5 842/1530/36 830/598/36 -f 838/582/34 849/1531/3 837/580/3 -f 835/583/29 846/1532/7 834/877/7 -f 832/587/32 843/1533/5 831/577/5 -f 839/589/31 850/1534/34 838/582/34 -f 829/592/33 840/1535/4 828/590/4 -f 836/594/28 847/1536/29 835/583/29 -f 833/596/35 844/1537/32 832/587/32 -f 828/590/4 851/1538/31 839/589/31 -f 830/598/36 841/1539/33 829/592/33 -f 837/580/3 848/1540/28 836/594/28 -f 834/600/7 845/1541/35 833/596/35 -f 862/581/34 875/1542/31 863/588/31 -f 852/597/4 865/1543/33 853/591/33 -f 859/585/29 872/1544/28 860/593/28 -f 856/586/32 869/1545/35 857/595/35 -f 863/588/31 864/1546/4 852/597/4 -f 853/591/33 866/1547/36 854/578/36 -f 860/593/28 873/1548/3 861/599/3 -f 857/595/35 870/1549/7 858/601/7 -f 854/578/36 867/1550/5 855/579/5 -f 861/599/3 874/1551/34 862/581/34 -f 858/584/7 871/1552/29 859/585/29 -f 855/579/5 868/1553/32 856/586/32 -f 879/608/5 890/1554/36 878/629/36 -f 886/613/34 897/1555/3 885/611/3 -f 883/614/29 894/1556/7 882/896/7 -f 880/618/32 891/1557/5 879/608/5 -f 887/620/31 898/1558/34 886/613/34 -f 877/623/33 888/1559/4 876/621/4 -f 884/625/28 895/1560/29 883/614/29 -f 881/627/35 892/1561/32 880/618/32 -f 876/621/4 899/1562/31 887/620/31 -f 878/629/36 889/1563/33 877/623/33 -f 885/611/3 896/1564/28 884/625/28 -f 882/631/7 893/1565/35 881/627/35 -f 910/612/34 923/1566/31 911/619/31 -f 900/628/4 913/1567/33 901/622/33 -f 907/616/29 920/1568/28 908/624/28 -f 904/617/32 917/1569/35 905/626/35 -f 911/619/31 912/1570/4 900/628/4 -f 901/622/33 914/1571/36 902/609/36 -f 908/624/28 921/1572/3 909/630/3 -f 905/626/35 918/1573/7 906/632/7 -f 902/609/36 915/1574/5 903/610/5 -f 909/630/3 922/1575/34 910/612/34 -f 906/615/7 919/1576/29 907/616/29 -f 903/610/5 916/1577/32 904/617/32 -f 924/1578/1 939/1579/48 931/1580/48 -f 930/1581/7 937/1582/15 929/1583/15 -f 928/1584/2 935/1585/14 927/1586/14 -f 926/1587/4 932/1588/13 925/1589/13 -f 931/1580/48 938/1590/7 930/1591/7 -f 929/1583/15 936/1592/2 928/1584/2 -f 927/1586/14 934/1593/4 926/1587/4 -f 925/1589/13 933/1594/1 924/1578/1 -f 947/1595/84 954/1596/3 946/1597/3 -f 945/1598/70 952/1599/1 944/1600/1 -f 943/1601/78 950/1602/5 942/1603/5 -f 941/1604/83 948/1605/2 940/1606/2 -f 940/1606/2 955/1607/84 947/1595/84 -f 946/1597/3 953/1608/70 945/1598/70 -f 944/1600/1 951/1609/78 943/1601/78 -f 942/1610/5 949/1611/83 941/1604/83 -f 963/1612/84 970/1613/3 962/1614/3 -f 961/1615/70 968/1616/1 960/1617/1 -f 959/1618/78 966/1619/5 958/1620/5 -f 957/1621/83 964/1622/2 956/1623/2 -f 956/1623/2 971/1624/84 963/1612/84 -f 962/1614/3 969/1625/70 961/1615/70 -f 960/1617/1 967/1626/78 959/1618/78 -f 958/1627/5 965/1628/83 957/1621/83 -f 973/1629/3 980/1630/19 972/1631/19 -f 975/1632/7 987/1633/11 974/1634/11 -f 978/1635/20 984/1636/5 977/1637/5 -f 976/1638/12 982/1639/7 975/1640/7 -f 972/1631/19 986/1641/4 979/1642/4 -f 974/1634/11 981/1643/3 973/1629/3 -f 979/1642/4 985/1644/20 978/1635/20 -f 977/1637/5 983/1645/12 976/1638/12 -f 993/1646/189 631/1647/190 988/1648/191 -f 637/1649/192 991/1418/163 994/1650/193 -f 992/1414/160 636/1651/194 993/1646/189 -f 631/1647/190 989/1652/12 988/1648/191 -f 990/1653/195 637/1649/192 994/1650/193 -f 989/1652/12 633/1654/196 990/1653/195 -f 1017/1655/197 994/1650/193 1022/1656/198 -f 989/1652/12 1017/1655/197 1016/1657/199 -f 993/1646/189 1015/1658/200 1021/1659/201 -f 1022/1656/198 991/1418/163 1018/1421/165 -f 992/1414/160 1021/1659/201 1020/1417/162 -f 1015/1658/200 989/1652/12 1016/1657/199 -f 1045/1660/202 1046/1661/203 995/1662/204 -f 995/1662/204 1046/1661/203 1005/1663/14 -f 1013/1664/189 1005/1665/14 1046/1666/203 -f 1057/1667/205 995/1662/204 1005/1663/14 -f 1057/1667/205 1000/1668/206 1006/1669/207 -f 999/1670/70 1004/1671/208 1007/1672/209 -f 999/1673/70 1003/1674/48 998/1675/210 -f 1003/1674/48 997/1676/211 998/1675/210 -f 1002/1677/212 996/1678/213 997/1676/211 -f 1001/1679/214 1046/1661/203 996/1678/213 -f 1047/1680/215 996/1678/213 1046/1661/203 -f 1013/1664/189 1001/1681/214 1008/1682/216 -f 1000/1668/206 1050/1683/217 1051/1684/218 -f 998/1675/210 1048/1685/219 1049/1686/220 -f 995/1662/204 1052/1687/221 1045/1660/202 -f 1052/1687/221 1000/1668/206 1051/1684/218 -f 1011/1688/163 1004/1689/208 1057/1690/205 -f 1057/1690/205 1056/1691/165 1011/1688/163 -f 1012/1692/160 1057/1690/205 1005/1665/14 -f 1058/1693/162 1057/1690/205 1012/1692/160 -f 999/1673/70 1049/1686/220 1050/1694/217 -f 1008/1682/216 1002/1695/212 1009/1696/12 -f 1010/1697/195 1007/1698/209 1014/1699/193 -f 1009/1696/12 1003/1674/48 1010/1697/195 -f 1048/1685/219 996/1678/213 1047/1680/215 -f 1014/1700/193 1004/1689/208 1011/1688/163 -f 1010/1697/195 1060/1701/198 1055/1702/197 -f 1054/1703/199 1010/1697/195 1055/1702/197 -f 1059/1704/201 1008/1682/216 1053/1705/200 -f 1060/1706/198 1011/1688/163 1056/1691/165 -f 1012/1692/160 1059/1704/201 1058/1693/162 -f 1008/1682/216 1054/1703/199 1053/1705/200 -f 1019/1707/19 1028/1708/137 1027/1709/136 -f 1016/1657/199 1025/1710/138 1024/1711/135 -f 1021/1712/201 1023/1713/140 1029/1714/139 -f 1022/1715/198 1026/1716/141 1040/1717/48 -f 1020/1718/162 1029/1714/139 1028/1708/137 -f 1018/1719/165 1027/1720/136 1026/1716/141 -f 1015/1658/200 1024/1711/135 1023/1713/140 -f 1017/1655/197 1040/1717/48 1025/1710/138 -f 1033/1721/132 1040/1722/48 1026/1723/141 -f 1032/1724/130 1025/1725/138 1040/1722/48 -f 1040/1722/48 1039/1726/122 1032/1724/130 -f 1041/1727/128 1040/1722/48 1033/1721/132 -f 1024/1728/135 1032/1724/130 1031/1729/134 -f 1036/1730/14 1023/1713/140 1030/1731/159 -f 1028/1708/137 1036/1730/14 1035/1732/158 -f 1033/1721/132 1027/1733/136 1034/1734/133 -f 1023/1713/140 1031/1729/134 1030/1731/159 -f 1034/1735/133 1028/1708/137 1035/1732/158 -f 1042/1736/124 1035/1732/158 1043/1737/127 -f 1031/1729/134 1039/1726/122 1038/1738/125 -f 1036/1730/14 1037/1739/123 1044/1740/126 -f 1035/1732/158 1044/1740/126 1043/1737/127 -f 1033/1721/132 1042/1741/124 1041/1727/128 -f 1037/1739/123 1031/1729/134 1038/1738/125 -f 1046/1742/203 1039/1743/122 1047/1744/215 -f 1052/1745/221 1037/1739/123 1045/1746/202 -f 1051/1684/218 1044/1740/126 1052/1745/221 -f 1049/1686/220 1042/1747/124 1050/1694/217 -f 1047/1744/215 1040/1748/48 1048/1749/219 -f 1045/1746/202 1038/1750/125 1046/1742/203 -f 1050/1683/217 1043/1737/127 1051/1684/218 -f 1048/1749/219 1041/1751/128 1049/1686/220 -f 1057/1752/205 1066/1753/137 1065/1754/136 -f 1054/1703/199 1063/1755/138 1062/1756/135 -f 1067/1757/139 1053/1705/200 1061/1758/140 -f 1060/1759/198 1064/1760/141 1078/1761/48 -f 1058/1762/162 1067/1757/139 1066/1753/137 -f 1056/1763/165 1065/1754/136 1064/1760/141 -f 1053/1705/200 1062/1756/135 1061/1758/140 -f 1055/1702/197 1078/1764/48 1063/1755/138 -f 1071/1765/132 1078/1766/48 1064/1767/141 -f 1070/1768/130 1063/1769/138 1078/1770/48 -f 1078/1770/48 1077/1771/122 1070/1768/130 -f 1079/1772/128 1078/1766/48 1071/1765/132 -f 1062/1773/135 1070/1768/130 1069/1774/134 -f 1074/1775/14 1061/1758/140 1068/1776/159 -f 1073/1777/129 1067/1757/139 1074/1775/14 -f 1071/1765/132 1065/1778/136 1072/1779/133 -f 1068/1776/159 1062/1773/135 1069/1774/134 -f 1065/1778/136 1073/1777/129 1072/1779/133 -f 1072/1779/133 1081/1780/127 1080/1781/124 -f 1076/1782/125 1070/1768/130 1077/1771/122 -f 1074/1775/14 1075/1783/123 1082/1784/126 -f 1081/1780/127 1074/1775/14 1082/1784/126 -f 1071/1765/132 1080/1781/124 1079/1772/128 -f 1068/1776/159 1076/1782/125 1075/1783/123 -f 1084/1785/5 1077/1786/122 1085/1787/12 -f 1090/1788/4 1075/1783/123 1083/1789/20 -f 1089/1790/19 1082/1784/126 1090/1788/4 -f 1087/1791/11 1080/1792/124 1088/1793/3 -f 1085/1787/12 1078/1794/48 1086/1795/7 -f 1083/1789/20 1076/1796/125 1084/1785/5 -f 1088/1793/3 1081/1780/127 1089/1790/19 -f 1086/1797/7 1079/1798/128 1087/1791/11 -f 636/1799/194 667/1800/187 666/1801/186 -f 626/1802/20 635/1803/161 1019/1804/19 -f 634/1805/164 626/1802/20 1019/1804/19 -f 668/1806/188 637/1807/192 665/1808/184 -f 637/1807/192 669/1809/182 665/1808/184 -f 633/1810/196 670/1811/183 669/1809/182 -f 632/1812/222 671/1813/185 670/1814/183 -f 631/1815/190 666/1801/186 671/1813/185 -f 2/945/27 4/948/3 3/946/3 -f 4/948/3 6/950/28 5/949/28 -f 6/950/28 8/952/29 7/951/29 -f 8/952/29 10/1022/30 9/953/30 -f 17/954/4 29/1816/4 28/955/31 -f 14/957/3 26/967/3 25/958/28 -f 21/960/32 33/969/32 32/961/5 -f 18/963/33 30/974/33 29/964/4 -f 15/966/34 27/975/34 26/967/3 -f 22/968/35 34/976/35 33/969/32 -f 12/970/29 24/977/29 23/971/7 -f 19/973/36 31/978/36 30/974/33 -f 16/956/31 28/955/31 27/975/34 -f 11/972/7 23/971/7 34/976/35 -f 13/959/28 25/958/28 24/977/29 -f 20/962/5 32/961/5 31/978/36 -f 36/979/37 38/982/35 37/980/35 -f 38/982/35 40/984/32 39/983/32 -f 40/984/32 42/986/5 41/985/5 -f 42/986/5 44/1052/38 43/987/38 -f 51/988/4 63/1817/4 62/989/31 -f 48/991/3 60/1001/3 59/992/28 -f 55/994/32 67/1003/32 66/995/5 -f 52/997/33 64/1008/33 63/998/4 -f 49/1000/34 61/1009/34 60/1001/3 -f 56/1002/35 68/1010/35 67/1003/32 -f 46/1004/29 58/1011/29 57/1005/7 -f 53/1007/36 65/1012/36 64/1008/33 -f 50/990/31 62/989/31 61/1009/34 -f 45/1006/7 57/1005/7 68/1010/35 -f 47/993/28 59/992/28 58/1011/29 -f 54/996/5 66/995/5 65/1012/36 -f 74/1013/34 103/1818/34 107/1014/31 -f 107/1014/31 73/1017/39 70/1016/39 -f 73/1017/39 201/1819/40 104/1018/40 -f 78/1019/41 138/1820/42 137/1020/42 -f 10/1022/30 36/1821/37 35/1023/37 -f 137/1020/43 138/1820/43 2/945/27 -f 85/1024/4 97/1822/4 96/1025/31 -f 82/1027/3 94/1037/3 93/1028/28 -f 89/1030/32 101/1039/32 100/1031/5 -f 86/1033/33 98/1044/33 97/1034/4 -f 83/1036/34 95/1045/34 94/1037/3 -f 90/1038/35 102/1046/35 101/1039/32 -f 80/1040/29 92/1047/29 91/1041/7 -f 87/1043/36 99/1048/36 98/1044/33 -f 84/1026/31 96/1025/31 95/1045/34 -f 79/1042/7 91/1041/7 102/1046/35 -f 81/1029/28 93/1028/28 92/1047/29 -f 88/1032/5 100/1031/5 99/1048/36 -f 139/1049/44 140/1823/44 106/1050/45 -f 44/1052/38 140/1823/46 139/1049/46 -f 119/1053/4 131/1824/4 130/1054/31 -f 116/1056/3 128/1066/3 127/1057/28 -f 123/1059/32 135/1068/32 134/1060/5 -f 120/1062/33 132/1073/33 131/1063/4 -f 117/1065/34 129/1074/34 128/1066/3 -f 124/1067/35 136/1075/35 135/1068/32 -f 114/1069/29 126/1076/29 125/1070/7 -f 121/1072/36 133/1077/36 132/1073/33 -f 118/1055/31 130/1054/31 129/1074/34 -f 113/1071/7 125/1070/7 136/1075/35 -f 115/1058/28 127/1057/28 126/1076/29 -f 122/1061/5 134/1060/5 133/1077/36 -f 109/1078/47 103/1818/34 74/1013/34 -f 104/1018/40 201/1819/40 205/1080/33 -f 112/1081/33 205/1080/33 206/1082/36 -f 206/1082/36 203/1102/49 108/1084/5 -f 150/1085/2 152/1088/15 151/1086/15 -f 152/1088/15 154/1825/7 153/1089/7 -f 154/1090/7 156/1093/48 155/1091/48 -f 156/1093/48 158/1095/1 157/1094/1 -f 158/1095/1 160/1097/13 159/1096/13 -f 160/1097/13 162/1099/4 161/1098/4 -f 162/1099/4 164/1101/14 163/1100/14 -f 164/1101/14 150/1085/2 149/1087/2 -f 105/1051/45 106/1050/45 203/1102/49 -f 106/1050/45 108/1084/5 203/1102/49 -f 77/1021/41 75/1826/223 109/1078/47 -f 109/1078/47 76/1079/3 78/1019/41 -f 255/1104/2 264/1120/2 270/1105/15 -f 261/1107/7 269/1827/7 268/1108/48 -f 259/1110/1 267/1118/1 266/1111/13 -f 257/1113/4 265/1119/4 263/1114/14 -f 262/1106/15 270/1105/15 269/1116/7 -f 260/1109/48 268/1108/48 267/1118/1 -f 258/1112/13 266/1111/13 265/1119/4 -f 256/1115/14 263/1114/14 264/1120/2 -f 294/1121/51 296/1828/79 295/1122/52 -f 298/1124/54 300/1127/57 299/1125/55 -f 300/1127/57 302/1129/59 301/1128/58 -f 302/1129/59 304/1131/61 303/1130/60 -f 304/1131/61 306/1829/81 305/1132/62 -f 302/1133/59 300/1155/57 326/1134/63 -f 295/1136/52 315/722/66 314/1137/65 -f 318/1139/68 314/1137/65 315/722/66 -f 315/722/66 316/721/73 317/1138/67 -f 293/1123/53 314/1137/65 313/1140/69 -f 303/1142/60 305/1132/62 320/1143/71 -f 303/1142/60 319/1144/72 318/1139/68 -f 301/1145/58 318/1139/68 317/1138/67 -f 297/1146/56 299/1125/55 317/1138/67 -f 323/1149/76 327/1135/64 324/1148/75 -f 327/1135/64 326/1134/63 324/1148/75 -f 307/1152/78 330/1150/77 323/1149/76 -f 298/1154/54 325/1147/74 326/1134/63 -f 296/1156/79 294/1153/51 323/1149/76 -f 304/1157/61 328/1160/82 329/1158/80 -f 302/1133/59 327/1135/64 328/1160/82 -f 319/1144/72 321/1162/3 314/1137/65 -f 332/1161/5 329/1158/80 328/1160/82 -f 319/1144/72 320/1143/71 322/1163/3 -f 328/1160/82 327/1135/64 323/1149/76 -f 350/1164/3 358/1178/3 357/1165/19 -f 352/1167/7 359/1830/7 364/1168/11 -f 355/1170/20 362/1179/20 361/1171/5 -f 353/1173/12 360/1180/12 359/1174/7 -f 349/1166/19 357/1165/19 363/1176/4 -f 351/1169/11 364/1168/11 358/1178/3 -f 356/1177/4 363/1176/4 362/1179/20 -f 354/1172/5 361/1171/5 360/1180/12 -f 378/1181/5 370/1831/5 371/1182/83 -f 376/1184/1 368/1196/1 369/1185/78 -f 374/1187/3 366/1197/3 367/1188/70 -f 380/1190/2 372/1193/2 365/1191/84 -f 379/1183/83 371/1182/83 372/1193/2 -f 377/1186/78 369/1185/78 370/1194/5 -f 375/1189/70 367/1188/70 368/1196/1 -f 373/1192/84 365/1191/84 366/1197/3 -f 394/1198/5 386/1832/5 387/1199/83 -f 392/1201/1 384/1213/1 385/1202/78 -f 390/1204/3 382/1214/3 383/1205/70 -f 396/1207/2 388/1210/2 381/1208/84 -f 395/1200/83 387/1199/83 388/1210/2 -f 393/1203/78 385/1202/78 386/1211/5 -f 391/1206/70 383/1205/70 384/1213/1 -f 389/1209/84 381/1208/84 382/1214/3 -f 400/1215/85 399/1833/103 397/1216/86 -f 404/1218/88 403/1222/90 401/1219/56 -f 406/1221/89 405/1224/92 403/1222/90 -f 408/1223/91 407/1834/101 405/1224/92 -f 402/1225/54 424/1242/74 425/1226/93 -f 419/1231/97 420/1228/94 421/1230/96 -f 407/1236/101 420/1228/94 419/1231/97 -f 401/1238/56 403/1222/90 418/1239/102 -f 399/1240/103 416/346/107 415/1232/98 -f 405/1237/92 419/1231/97 418/1239/102 -f 422/1241/104 426/1246/106 425/1226/93 -f 400/1243/85 398/1835/87 423/1244/105 -f 406/1245/89 404/1227/88 425/1226/93 -f 406/1245/89 426/1246/106 427/1233/99 -f 416/346/107 417/762/73 418/1239/102 -f 428/1247/108 427/1233/99 426/1246/106 -f 451/773/109 457/1836/110 458/1248/110 -f 458/1248/110 457/1836/110 449/1250/111 -f 456/1252/112 455/1837/112 451/773/6 -f 453/1253/113 455/1837/112 456/1252/112 -f 479/1255/83 478/1838/114 463/1256/114 -f 467/1258/115 474/1839/115 473/1259/84 -f 464/1261/116 477/1264/116 476/1262/15 -f 463/1256/114 478/1838/114 477/1264/116 -f 482/1265/14 481/1272/117 460/1266/117 -f 473/1259/84 472/1840/118 469/1268/118 -f 476/1269/15 475/1276/119 466/1270/119 -f 481/1272/117 480/1841/120 461/1273/120 -f 469/1268/118 472/1840/118 471/1274/121 -f 475/1276/119 474/1839/115 467/1258/115 -f 461/1273/120 480/1841/120 479/1255/83 -f 470/1275/121 471/1274/121 482/1265/14 -f 490/1277/84 498/1289/84 497/1278/3 -f 488/1280/70 496/1290/70 495/1281/1 -f 486/1283/78 494/1291/78 493/1284/5 -f 484/1286/83 492/1293/83 491/1287/2 -f 483/1288/2 491/1287/2 498/1289/84 -f 489/1279/3 497/1278/3 496/1290/70 -f 487/1282/1 495/1281/1 494/1291/78 -f 485/1292/5 493/1842/5 492/1293/83 -f 506/1294/84 514/1306/84 513/1295/3 -f 504/1297/70 512/1307/70 511/1298/1 -f 502/1300/78 510/1308/78 509/1301/5 -f 500/1303/83 508/1310/83 507/1304/2 -f 499/1305/2 507/1304/2 514/1306/84 -f 505/1296/3 513/1295/3 512/1307/70 -f 503/1299/1 511/1298/1 510/1308/78 -f 501/1309/5 509/1843/5 508/1310/83 -f 566/1311/122 567/1844/48 559/1312/7 -f 564/1314/123 565/1323/125 557/1315/5 -f 569/1317/124 570/1326/127 562/1318/19 -f 567/1320/48 568/1327/128 560/1321/11 -f 565/1323/125 566/1311/122 558/1313/12 -f 563/1324/126 564/1314/123 556/1316/20 -f 570/1326/127 563/1324/126 555/1325/4 -f 568/1327/128 569/1317/124 561/1319/3 -f 569/1328/124 576/1336/133 577/1329/129 -f 565/1330/125 573/1337/134 574/1331/130 -f 564/1314/123 563/1324/126 571/1333/14 -f 563/1324/126 570/1326/127 577/1329/129 -f 569/1328/124 568/1346/128 575/1335/132 -f 564/1314/123 572/1334/131 573/1337/134 -f 572/1334/131 579/1343/140 580/1338/135 -f 577/1329/129 576/1336/133 583/1339/136 -f 574/1331/130 573/1337/134 580/1338/135 -f 572/1334/131 571/1333/14 578/1342/139 -f 571/1333/14 577/1329/129 584/1340/137 -f 575/1335/132 582/1347/141 583/1339/136 -f 582/1348/141 567/1845/48 585/1349/142 -f 583/1351/136 591/1360/148 592/1352/144 -f 580/1353/135 588/1361/149 589/1354/145 -f 578/1342/139 586/1359/147 587/1356/146 -f 581/1355/138 589/1354/145 585/1357/142 -f 578/1342/139 584/1340/137 592/1352/144 -f 582/1348/141 590/1350/143 591/1360/148 -f 579/1343/140 587/1356/146 588/1361/149 -f 604/1362/122 605/1371/48 597/1363/150 -f 602/1365/123 603/1846/125 595/1366/152 -f 607/1368/124 608/1377/127 600/1369/154 -f 605/1371/48 606/1378/128 598/1372/156 -f 603/1373/125 604/1362/122 596/1364/151 -f 601/1375/126 602/1365/123 594/1367/153 -f 608/1377/127 601/1375/126 593/1376/157 -f 606/1378/128 607/1368/124 599/1370/155 -f 607/1379/124 614/1387/133 615/1380/158 -f 603/1381/125 611/1847/134 612/1382/130 -f 601/1375/126 609/1385/14 610/1384/159 -f 608/1377/127 615/1380/158 609/1385/14 -f 606/1386/128 613/1396/132 614/1387/133 -f 602/1365/123 610/1384/159 611/1388/134 -f 611/1388/134 610/1384/159 617/1390/140 -f 614/1387/133 621/1397/136 622/1392/137 -f 612/1382/130 611/1847/134 618/1393/135 -f 609/1385/14 616/1395/139 617/1390/140 -f 609/1385/14 615/1380/158 622/1392/137 -f 613/1396/132 620/1399/141 621/1397/136 -f 605/1400/48 623/1409/142 628/1401/143 -f 621/1403/136 629/1411/148 630/1404/144 -f 618/1405/135 626/1848/20 627/1406/145 -f 616/1395/139 624/1410/147 625/1408/146 -f 619/1407/138 627/1406/145 623/1409/142 -f 622/1392/137 630/1404/144 624/1410/147 -f 620/1402/141 628/1401/143 629/1411/148 -f 617/1390/140 625/1408/146 626/1412/20 -f 591/1360/148 643/1430/11 644/1422/166 -f 586/1423/147 639/1429/169 640/1424/167 -f 589/1426/145 641/1445/177 638/1427/168 -f 592/1352/144 644/1422/166 639/1429/169 -f 590/1350/143 642/1432/170 643/1430/11 -f 590/1350/143 585/1849/142 638/1431/168 -f 638/1427/168 641/1445/177 648/1433/171 -f 597/1435/150 598/1452/156 656/1436/173 -f 643/1430/11 642/1432/170 649/1438/48 -f 642/1432/170 638/1431/168 645/1440/172 -f 644/1422/166 643/1430/11 650/1439/175 -f 596/1364/151 654/1450/180 653/1442/78 -f 594/1367/153 652/1451/181 646/1446/178 -f 593/1447/157 646/1446/178 657/1448/179 -f 597/1435/150 655/1437/174 654/1450/180 -f 595/1366/152 653/1457/78 652/1451/181 -f 651/1441/176 599/1461/155 639/1429/169 -f 650/1455/175 655/1437/174 656/1436/173 -f 649/1438/48 654/1450/180 655/1437/174 -f 654/1450/180 649/1438/48 645/1456/172 -f 653/1457/78 645/1850/172 648/1458/171 -f 652/1451/181 648/1458/171 588/1459/149 -f 657/1448/179 646/1446/178 588/1459/149 -f 599/1461/155 647/1444/14 640/1424/167 -f 630/1404/144 629/1411/148 663/1462/11 -f 624/1464/147 659/1470/169 660/1465/167 -f 623/1467/142 627/1479/145 661/1468/177 -f 630/1404/144 664/1463/166 659/1470/169 -f 628/1401/143 662/1471/170 663/1462/11 -f 628/1401/143 623/1467/142 658/1469/168 -f 663/1462/11 662/1471/170 669/1472/182 -f 662/1471/170 658/1469/168 665/1474/184 -f 663/1462/11 670/1473/183 671/1475/185 -f 660/1465/167 659/1470/169 666/1476/186 -f 661/1468/177 668/1480/188 665/1474/184 -f 659/1470/169 664/1463/166 671/1475/185 -f 675/447/5 687/1485/5 686/1482/36 -f 682/452/34 694/1486/34 693/1483/3 -f 679/453/29 691/1488/29 690/1484/7 -f 676/457/32 688/1489/32 687/1485/5 -f 683/459/31 695/1490/31 694/1486/34 -f 673/462/33 685/1491/33 684/1487/4 -f 680/464/28 692/1492/28 691/1488/29 -f 677/466/35 689/1493/35 688/1489/32 -f 672/460/4 684/1487/4 695/1490/31 -f 674/468/36 686/1482/36 685/1491/33 -f 681/450/3 693/1483/3 692/1492/28 -f 678/470/7 690/1851/7 689/1493/35 -f 706/451/34 718/1503/34 719/1494/31 -f 696/467/4 708/1498/4 709/1495/33 -f 703/455/29 715/1504/29 716/1496/28 -f 700/456/32 712/1505/32 713/1497/35 -f 707/458/31 719/1494/31 708/1498/4 -f 697/461/33 709/1495/33 710/1499/36 -f 704/463/28 716/1496/28 717/1500/3 -f 701/465/35 713/1497/35 714/1501/7 -f 698/448/36 710/1499/36 711/1502/5 -f 705/469/3 717/1500/3 718/1503/34 -f 702/454/7 714/1852/7 715/1504/29 -f 699/449/5 711/1502/5 712/1505/32 -f 783/546/5 795/1509/5 794/1506/36 -f 790/551/34 802/1510/34 801/1507/3 -f 787/552/29 799/1512/29 798/1508/7 -f 784/556/32 796/1513/32 795/1509/5 -f 791/558/31 803/1514/31 802/1510/34 -f 781/561/33 793/1515/33 792/1511/4 -f 788/563/28 800/1516/28 799/1512/29 -f 785/565/35 797/1517/35 796/1513/32 -f 780/559/4 792/1511/4 803/1514/31 -f 782/567/36 794/1506/36 793/1515/33 -f 789/549/3 801/1507/3 800/1516/28 -f 786/569/7 798/1853/7 797/1517/35 -f 814/550/34 826/1527/34 827/1518/31 -f 804/566/4 816/1522/4 817/1519/33 -f 811/554/29 823/1528/29 824/1520/28 -f 808/555/32 820/1529/32 821/1521/35 -f 815/557/31 827/1518/31 816/1522/4 -f 805/560/33 817/1519/33 818/1523/36 -f 812/562/28 824/1520/28 825/1524/3 -f 809/564/35 821/1521/35 822/1525/7 -f 806/547/36 818/1523/36 819/1526/5 -f 813/568/3 825/1524/3 826/1527/34 -f 810/553/7 822/1854/7 823/1528/29 -f 807/548/5 819/1526/5 820/1529/32 -f 831/577/5 843/1533/5 842/1530/36 -f 838/582/34 850/1534/34 849/1531/3 -f 835/583/29 847/1536/29 846/1532/7 -f 832/587/32 844/1537/32 843/1533/5 -f 839/589/31 851/1538/31 850/1534/34 -f 829/592/33 841/1539/33 840/1535/4 -f 836/594/28 848/1540/28 847/1536/29 -f 833/596/35 845/1541/35 844/1537/32 -f 828/590/4 840/1535/4 851/1538/31 -f 830/598/36 842/1530/36 841/1539/33 -f 837/580/3 849/1531/3 848/1540/28 -f 834/600/7 846/1855/7 845/1541/35 -f 862/581/34 874/1551/34 875/1542/31 -f 852/597/4 864/1546/4 865/1543/33 -f 859/585/29 871/1552/29 872/1544/28 -f 856/586/32 868/1553/32 869/1545/35 -f 863/588/31 875/1542/31 864/1546/4 -f 853/591/33 865/1543/33 866/1547/36 -f 860/593/28 872/1544/28 873/1548/3 -f 857/595/35 869/1545/35 870/1549/7 -f 854/578/36 866/1547/36 867/1550/5 -f 861/599/3 873/1548/3 874/1551/34 -f 858/584/7 870/1856/7 871/1552/29 -f 855/579/5 867/1550/5 868/1553/32 -f 879/608/5 891/1557/5 890/1554/36 -f 886/613/34 898/1558/34 897/1555/3 -f 883/614/29 895/1560/29 894/1556/7 -f 880/618/32 892/1561/32 891/1557/5 -f 887/620/31 899/1562/31 898/1558/34 -f 877/623/33 889/1563/33 888/1559/4 -f 884/625/28 896/1564/28 895/1560/29 -f 881/627/35 893/1565/35 892/1561/32 -f 876/621/4 888/1559/4 899/1562/31 -f 878/629/36 890/1554/36 889/1563/33 -f 885/611/3 897/1555/3 896/1564/28 -f 882/631/7 894/1857/7 893/1565/35 -f 910/612/34 922/1575/34 923/1566/31 -f 900/628/4 912/1570/4 913/1567/33 -f 907/616/29 919/1576/29 920/1568/28 -f 904/617/32 916/1577/32 917/1569/35 -f 911/619/31 923/1566/31 912/1570/4 -f 901/622/33 913/1567/33 914/1571/36 -f 908/624/28 920/1568/28 921/1572/3 -f 905/626/35 917/1569/35 918/1573/7 -f 902/609/36 914/1571/36 915/1574/5 -f 909/630/3 921/1572/3 922/1575/34 -f 906/615/7 918/1858/7 919/1576/29 -f 903/610/5 915/1574/5 916/1577/32 -f 924/1578/1 933/1594/1 939/1579/48 -f 930/1581/7 938/1859/7 937/1582/15 -f 928/1584/2 936/1592/2 935/1585/14 -f 926/1587/4 934/1593/4 932/1588/13 -f 931/1580/48 939/1579/48 938/1590/7 -f 929/1583/15 937/1582/15 936/1592/2 -f 927/1586/14 935/1585/14 934/1593/4 -f 925/1589/13 932/1588/13 933/1594/1 -f 947/1595/84 955/1607/84 954/1596/3 -f 945/1598/70 953/1608/70 952/1599/1 -f 943/1601/78 951/1609/78 950/1602/5 -f 941/1604/83 949/1611/83 948/1605/2 -f 940/1606/2 948/1605/2 955/1607/84 -f 946/1597/3 954/1596/3 953/1608/70 -f 944/1600/1 952/1599/1 951/1609/78 -f 942/1610/5 950/1860/5 949/1611/83 -f 963/1612/84 971/1624/84 970/1613/3 -f 961/1615/70 969/1625/70 968/1616/1 -f 959/1618/78 967/1626/78 966/1619/5 -f 957/1621/83 965/1628/83 964/1622/2 -f 956/1623/2 964/1622/2 971/1624/84 -f 962/1614/3 970/1613/3 969/1625/70 -f 960/1617/1 968/1616/1 967/1626/78 -f 958/1627/5 966/1861/5 965/1628/83 -f 973/1629/3 981/1643/3 980/1630/19 -f 975/1632/7 982/1862/7 987/1633/11 -f 978/1635/20 985/1644/20 984/1636/5 -f 976/1638/12 983/1645/12 982/1639/7 -f 972/1631/19 980/1630/19 986/1641/4 -f 974/1634/11 987/1633/11 981/1643/3 -f 979/1642/4 986/1641/4 985/1644/20 -f 977/1637/5 984/1636/5 983/1645/12 -f 993/1646/189 636/1651/194 631/1647/190 -f 637/1649/192 634/1419/164 991/1418/163 -f 992/1414/160 635/1416/161 636/1651/194 -f 631/1647/190 632/1863/222 989/1652/12 -f 990/1653/195 633/1654/196 637/1649/192 -f 989/1652/12 632/1863/222 633/1654/196 -f 1017/1655/197 990/1653/195 994/1650/193 -f 989/1652/12 990/1653/195 1017/1655/197 -f 993/1646/189 988/1648/191 1015/1658/200 -f 1022/1656/198 994/1650/193 991/1418/163 -f 992/1414/160 993/1646/189 1021/1659/201 -f 1015/1658/200 988/1648/191 989/1652/12 -f 1013/1664/189 1012/1692/160 1005/1665/14 -f 1057/1667/205 1006/1669/207 995/1662/204 -f 1057/1667/205 1004/1671/208 1000/1668/206 -f 999/1670/70 1000/1668/206 1004/1671/208 -f 999/1673/70 1007/1864/209 1003/1674/48 -f 1003/1674/48 1002/1677/212 997/1676/211 -f 1002/1677/212 1001/1679/214 996/1678/213 -f 1013/1664/189 1046/1666/203 1001/1681/214 -f 1000/1668/206 999/1670/70 1050/1683/217 -f 998/1675/210 997/1676/211 1048/1685/219 -f 995/1662/204 1006/1669/207 1052/1687/221 -f 1052/1687/221 1006/1669/207 1000/1668/206 -f 999/1673/70 998/1675/210 1049/1686/220 -f 1008/1682/216 1001/1681/214 1002/1695/212 -f 1010/1697/195 1003/1674/48 1007/1698/209 -f 1009/1696/12 1002/1695/212 1003/1674/48 -f 1048/1685/219 997/1676/211 996/1678/213 -f 1014/1700/193 1007/1865/209 1004/1689/208 -f 1010/1697/195 1014/1699/193 1060/1701/198 -f 1054/1703/199 1009/1696/12 1010/1697/195 -f 1059/1704/201 1013/1664/189 1008/1682/216 -f 1060/1706/198 1014/1700/193 1011/1688/163 -f 1012/1692/160 1013/1664/189 1059/1704/201 -f 1008/1682/216 1009/1696/12 1054/1703/199 -f 1019/1707/19 1020/1718/162 1028/1708/137 -f 1016/1657/199 1017/1655/197 1025/1710/138 -f 1021/1712/201 1015/1658/200 1023/1713/140 -f 1022/1715/198 1018/1719/165 1026/1716/141 -f 1020/1718/162 1021/1712/201 1029/1714/139 -f 1018/1719/165 1019/1866/19 1027/1720/136 -f 1015/1658/200 1016/1657/199 1024/1711/135 -f 1017/1655/197 1022/1715/198 1040/1717/48 -f 1024/1728/135 1025/1725/138 1032/1724/130 -f 1036/1730/14 1029/1714/139 1023/1713/140 -f 1028/1708/137 1029/1714/139 1036/1730/14 -f 1033/1721/132 1026/1723/141 1027/1733/136 -f 1023/1713/140 1024/1728/135 1031/1729/134 -f 1034/1735/133 1027/1867/136 1028/1708/137 -f 1042/1736/124 1034/1735/133 1035/1732/158 -f 1031/1729/134 1032/1724/130 1039/1726/122 -f 1036/1730/14 1030/1731/159 1037/1739/123 -f 1035/1732/158 1036/1730/14 1044/1740/126 -f 1033/1721/132 1034/1734/133 1042/1741/124 -f 1037/1739/123 1030/1731/159 1031/1729/134 -f 1046/1742/203 1038/1750/125 1039/1743/122 -f 1052/1745/221 1044/1740/126 1037/1739/123 -f 1051/1684/218 1043/1737/127 1044/1740/126 -f 1049/1686/220 1041/1751/128 1042/1747/124 -f 1047/1744/215 1039/1743/122 1040/1748/48 -f 1045/1746/202 1037/1739/123 1038/1750/125 -f 1050/1683/217 1042/1868/124 1043/1737/127 -f 1048/1749/219 1040/1748/48 1041/1751/128 -f 1057/1752/205 1058/1762/162 1066/1753/137 -f 1054/1703/199 1055/1702/197 1063/1755/138 -f 1067/1757/139 1059/1869/201 1053/1705/200 -f 1060/1759/198 1056/1763/165 1064/1760/141 -f 1058/1762/162 1059/1869/201 1067/1757/139 -f 1056/1763/165 1057/1752/205 1065/1754/136 -f 1053/1705/200 1054/1703/199 1062/1756/135 -f 1055/1702/197 1060/1870/198 1078/1764/48 -f 1062/1773/135 1063/1769/138 1070/1768/130 -f 1074/1775/14 1067/1757/139 1061/1758/140 -f 1073/1777/129 1066/1753/137 1067/1757/139 -f 1071/1765/132 1064/1767/141 1065/1778/136 -f 1068/1776/159 1061/1758/140 1062/1773/135 -f 1065/1778/136 1066/1753/137 1073/1777/129 -f 1072/1779/133 1073/1777/129 1081/1780/127 -f 1076/1782/125 1069/1774/134 1070/1768/130 -f 1074/1775/14 1068/1776/159 1075/1783/123 -f 1081/1780/127 1073/1777/129 1074/1775/14 -f 1071/1765/132 1072/1779/133 1080/1781/124 -f 1068/1776/159 1069/1774/134 1076/1782/125 -f 1084/1785/5 1076/1796/125 1077/1786/122 -f 1090/1788/4 1082/1784/126 1075/1783/123 -f 1089/1790/19 1081/1780/127 1082/1784/126 -f 1087/1791/11 1079/1798/128 1080/1792/124 -f 1085/1787/12 1077/1786/122 1078/1794/48 -f 1083/1789/20 1075/1783/123 1076/1796/125 -f 1088/1793/3 1080/1792/124 1081/1780/127 -f 1086/1797/7 1078/1871/48 1079/1798/128 -f 636/1799/194 635/1803/161 667/1800/187 -f 626/1802/20 667/1800/187 635/1803/161 -f 634/1805/164 668/1806/188 626/1802/20 -f 668/1806/188 634/1805/164 637/1807/192 -f 637/1807/192 633/1810/196 669/1809/182 -f 633/1810/196 632/1872/222 670/1811/183 -f 632/1812/222 631/1815/190 671/1813/185 -f 631/1815/190 636/1799/194 666/1801/186 +f 683/1371/161 698/1372/171 690/1373/171 +f 689/1374/160 696/1375/172 688/1376/172 +f 687/1377/157 694/1378/170 686/1379/170 +f 685/1380/154 691/1381/173 684/1382/173 +f 690/1373/171 697/1383/160 689/1384/160 +f 688/1376/172 695/1385/157 687/1377/157 +f 686/1379/170 693/1386/154 685/1380/154 +f 684/1382/173 692/1387/161 683/1371/161 +f 716/1388/155 723/1389/163 715/1390/163 +f 718/1391/160 730/1392/158 717/1393/158 +f 721/1394/164 727/1395/153 720/1396/153 +f 719/1397/159 725/1398/160 718/1399/160 +f 715/1390/163 729/1400/154 722/1401/154 +f 717/1393/158 724/1402/155 716/1388/155 +f 722/1401/154 728/1403/164 721/1394/164 +f 720/1396/153 726/1404/159 719/1397/159 +f 734/1405/174 731/1406/175 732/1407/176 +f 738/1408/177 735/1409/178 736/1410/179 +f 740/1411/180 737/1412/181 738/1408/177 +f 742/1413/182 739/1414/183 740/1411/180 +f 736/1415/179 759/1416/184 738/1417/177 +f 754/1418/185 747/1419/186 755/1420/187 +f 753/1421/188 755/1420/187 749/1422/189 +f 761/1423/190 748/1424/191 742/1425/182 +f 741/1426/192 753/1421/188 739/1427/183 +f 741/1426/192 747/1419/186 754/1418/185 +f 735/1428/178 752/1429/193 751/1327/194 +f 733/1430/195 749/1422/189 731/1406/175 +f 739/1427/183 752/1429/193 737/1412/181 +f 756/1431/196 759/1416/184 758/1432/197 +f 734/1433/174 757/1434/198 756/1431/196 +f 740/1435/180 759/1416/184 760/1436/199 +f 750/1214/200 753/1421/188 749/1422/189 +f 740/1435/180 761/1423/190 742/1425/182 +f 748/1424/191 761/1423/190 762/1437/201 +f 750/1214/200 752/1429/193 753/1421/188 +f 760/1436/199 756/1431/196 757/1434/198 +f 762/1437/201 760/1436/199 757/1434/198 +f 794/1438/202 787/1439/160 786/1440/159 +f 792/1441/203 785/1442/153 784/1443/164 +f 797/1444/204 790/1445/163 789/1446/155 +f 795/1447/172 788/1448/158 787/1449/160 +f 793/1450/205 786/1440/159 785/1442/153 +f 791/1451/206 784/1443/164 783/1452/154 +f 798/1453/207 783/1452/154 790/1445/163 +f 796/1454/208 789/1446/155 788/1448/158 +f 797/1455/204 805/1456/209 798/1453/207 +f 793/1457/205 802/1458/210 794/1459/202 +f 792/1441/203 799/1460/173 800/1461/211 +f 791/1451/206 805/1456/209 799/1460/173 +f 797/1455/204 803/1462/212 804/1463/213 +f 792/1441/203 801/1464/214 793/1457/205 +f 800/1461/211 808/1465/215 801/1464/214 +f 805/1456/209 811/1466/216 812/1467/217 +f 802/1458/210 808/1465/215 809/1468/218 +f 800/1461/211 806/1469/219 807/1470/220 +f 799/1460/173 812/1467/217 806/1469/219 +f 803/1462/212 811/1466/216 804/1463/213 +f 794/1459/202 802/1458/210 795/1471/172 +f 795/1472/172 803/1462/212 796/1473/208 +f 803/1462/212 795/1472/172 810/1474/221 +f 802/1458/210 809/1468/218 795/1471/172 +f 810/1475/221 813/1476/222 818/1477/223 +f 811/1478/216 820/1479/224 812/1467/217 +f 808/1480/215 817/1481/225 809/1482/218 +f 806/1469/219 815/1483/226 807/1470/220 +f 809/1482/218 813/1484/222 795/1485/172 +f 806/1469/219 820/1479/224 814/1486/227 +f 810/1475/221 819/1487/228 811/1478/216 +f 807/1470/220 816/1488/229 808/1480/215 +f 832/1489/202 825/1490/230 824/1491/231 +f 830/1492/203 823/1493/232 822/1494/233 +f 835/1495/204 828/1496/234 827/1497/235 +f 833/1498/172 826/1499/236 825/1490/230 +f 831/1500/205 824/1491/231 823/1501/232 +f 829/1502/206 822/1494/233 821/1503/237 +f 836/1504/207 821/1503/237 828/1496/234 +f 834/1505/208 827/1497/235 826/1499/236 +f 835/1506/204 843/1507/238 836/1504/207 +f 831/1508/205 840/1509/210 832/1510/202 +f 829/1502/206 838/1511/239 830/1492/203 +f 836/1504/207 837/1512/173 829/1502/206 +f 834/1513/208 842/1514/213 835/1506/204 +f 830/1492/203 839/1515/214 831/1516/205 +f 839/1515/214 845/1517/220 846/1518/215 +f 842/1514/213 850/1519/217 843/1507/238 +f 840/1509/210 846/1520/215 847/1521/218 +f 837/1512/173 845/1517/220 838/1511/239 +f 837/1512/173 850/1519/217 844/1522/219 +f 841/1523/212 849/1524/216 842/1514/213 +f 832/1510/202 840/1509/210 833/1525/172 +f 833/1525/172 841/1523/212 834/1513/208 +f 841/1523/212 833/1525/172 848/1526/221 +f 840/1509/210 847/1521/218 833/1525/172 +f 833/1527/172 856/1528/223 848/1529/221 +f 849/1530/216 858/1531/224 850/1519/217 +f 846/1532/215 855/1533/225 847/1534/218 +f 844/1522/219 853/1535/226 845/1517/220 +f 847/1534/218 851/1536/222 833/1527/172 +f 850/1519/217 852/1537/227 844/1522/219 +f 848/1529/221 857/1538/228 849/1530/216 +f 845/1517/220 854/1539/164 846/1540/215 +f 976/1541/240 1003/1542/163 863/1543/241 +f 1004/1544/242 1003/1542/163 976/1541/240 +f 975/1545/243 862/1546/244 1003/1547/163 +f 1003/1547/163 1002/1548/245 975/1545/243 +f 819/1487/228 872/1549/246 820/1479/224 +f 814/1550/227 868/1551/247 815/1552/226 +f 817/1553/225 866/1554/248 813/1555/222 +f 820/1479/224 867/1556/249 814/1550/227 +f 818/1477/223 871/1557/158 819/1487/228 +f 818/1477/223 866/1558/248 870/1559/250 +f 866/1554/248 876/1560/251 873/1561/252 +f 825/1562/230 884/1563/253 883/1564/254 +f 871/1557/158 877/1565/172 878/1566/255 +f 870/1559/250 873/1567/252 877/1565/172 +f 872/1549/246 878/1566/255 879/1568/256 +f 824/1491/231 881/1569/257 823/1501/232 +f 815/1552/226 868/1551/247 816/1570/229 +f 868/1551/247 875/1571/173 816/1570/229 +f 816/1570/229 869/1572/258 817/1553/225 +f 869/1572/258 816/1570/229 876/1560/251 +f 822/1494/233 874/1573/259 821/1574/237 +f 821/1574/237 885/1575/260 828/1576/234 +f 825/1562/230 882/1577/261 824/1491/231 +f 823/1493/232 880/1578/262 822/1494/233 +f 879/1568/256 867/1556/249 872/1549/246 +f 826/1579/236 827/1580/235 884/1563/253 +f 879/1581/256 884/1563/253 827/1580/235 +f 878/1582/255 884/1563/253 879/1581/256 +f 877/1565/172 883/1564/254 878/1582/255 +f 882/1577/261 873/1583/252 881/1569/257 +f 881/1584/257 876/1585/251 880/1578/262 +f 880/1578/262 816/1586/229 874/1573/259 +f 885/1575/260 816/1586/229 875/1587/173 +f 827/1588/235 868/1551/247 867/1556/249 +f 885/1575/260 875/1587/173 827/1580/235 +f 828/1576/234 885/1575/260 827/1580/235 +f 858/1531/224 891/1589/158 892/1590/246 +f 852/1591/227 888/1592/247 853/1593/226 +f 851/1594/222 889/1595/258 886/1596/248 +f 858/1531/224 887/1597/249 852/1591/227 +f 856/1528/223 891/1589/158 857/1538/228 +f 856/1528/223 886/1596/248 890/1598/250 +f 891/1589/158 897/1599/263 898/1600/264 +f 890/1598/250 893/1601/265 897/1599/263 +f 891/1589/158 899/1602/266 892/1590/246 +f 888/1592/247 894/1603/267 895/1604/268 +f 889/1595/258 893/1601/265 886/1596/248 +f 887/1597/249 899/1602/266 894/1603/267 +f 854/1605/164 889/1595/258 855/1606/225 +f 889/1595/258 854/1605/164 896/1607/269 +f 853/1593/226 888/1592/247 854/1608/164 +f 888/1592/247 895/1604/268 854/1608/164 +f 908/1609/157 923/1610/172 915/1611/172 +f 914/1612/160 921/1613/171 913/1614/171 +f 912/1615/161 919/1616/173 911/1617/173 +f 910/1618/154 916/1619/170 909/1620/170 +f 915/1611/172 922/1621/160 914/1622/160 +f 913/1614/171 920/1623/161 912/1615/161 +f 911/1617/173 918/1624/154 910/1618/154 +f 909/1620/170 917/1625/157 908/1609/157 +f 931/1626/270 938/1627/155 930/1628/155 +f 929/1629/271 936/1630/157 928/1631/157 +f 927/1632/257 934/1633/153 926/1634/153 +f 925/1635/272 932/1636/161 924/1637/161 +f 924/1637/161 939/1638/270 931/1626/270 +f 930/1628/155 937/1639/271 929/1629/271 +f 928/1631/157 935/1640/257 927/1632/257 +f 926/1641/153 933/1642/272 925/1635/272 +f 947/1643/270 954/1644/155 946/1645/155 +f 945/1646/271 952/1647/157 944/1648/157 +f 943/1649/257 950/1650/153 942/1651/153 +f 941/1652/272 948/1653/161 940/1654/161 +f 940/1654/161 955/1655/270 947/1643/270 +f 946/1645/155 953/1656/271 945/1646/271 +f 944/1648/157 951/1657/257 943/1649/257 +f 942/1658/153 949/1659/272 941/1652/272 +f 957/1660/155 964/1661/163 956/1662/163 +f 959/1663/160 971/1664/158 958/1665/158 +f 962/1666/164 968/1667/153 961/1668/153 +f 960/1669/159 966/1670/160 959/1671/160 +f 956/1662/163 970/1672/154 963/1673/154 +f 958/1665/158 965/1674/155 957/1660/155 +f 963/1673/154 969/1675/164 962/1666/164 +f 961/1668/153 967/1676/159 960/1669/159 +f 977/1677/273 859/1678/274 972/1679/275 +f 865/1680/276 975/1545/243 978/1681/277 +f 976/1541/240 864/1682/278 977/1677/273 +f 859/1678/274 973/1683/159 972/1679/275 +f 974/1684/279 865/1680/276 978/1681/277 +f 973/1683/159 861/1685/280 974/1684/279 +f 1001/1686/281 978/1681/277 1006/1687/282 +f 973/1683/159 1001/1686/281 1000/1688/283 +f 977/1677/273 999/1689/284 1005/1690/285 +f 1006/1687/282 975/1545/243 1002/1548/245 +f 976/1541/240 1005/1690/285 1004/1544/242 +f 999/1689/284 973/1683/159 1000/1688/283 +f 1029/1691/286 1030/1692/287 979/1693/288 +f 979/1693/288 1030/1692/287 989/1694/173 +f 997/1695/273 989/1696/173 1030/1697/287 +f 1041/1698/289 979/1693/288 989/1694/173 +f 1041/1698/289 984/1699/290 990/1700/291 +f 983/1701/271 988/1702/292 991/1703/293 +f 983/1704/271 987/1705/172 982/1706/294 +f 987/1705/172 981/1707/295 982/1706/294 +f 986/1708/296 980/1709/297 981/1707/295 +f 985/1710/298 1030/1692/287 980/1709/297 +f 1031/1711/299 980/1709/297 1030/1692/287 +f 997/1695/273 985/1712/298 992/1713/300 +f 984/1699/290 1034/1714/301 1035/1715/302 +f 982/1706/294 1032/1716/303 1033/1717/304 +f 979/1693/288 1036/1718/305 1029/1691/286 +f 1036/1718/305 984/1699/290 1035/1715/302 +f 995/1719/243 988/1720/292 1041/1721/289 +f 1041/1721/289 1040/1722/245 995/1719/243 +f 996/1723/240 1041/1721/289 989/1696/173 +f 1042/1724/242 1041/1721/289 996/1723/240 +f 983/1704/271 1033/1717/304 1034/1725/301 +f 992/1713/300 986/1726/296 993/1727/159 +f 994/1728/279 991/1729/293 998/1730/277 +f 993/1727/159 987/1705/172 994/1728/279 +f 1032/1716/303 980/1709/297 1031/1711/299 +f 998/1731/277 988/1720/292 995/1719/243 +f 994/1728/279 1044/1732/282 1039/1733/281 +f 1038/1734/283 994/1728/279 1039/1733/281 +f 1043/1735/285 992/1713/300 1037/1736/284 +f 1044/1737/282 995/1719/243 1040/1722/245 +f 996/1723/240 1043/1735/285 1042/1724/242 +f 992/1713/300 1038/1734/283 1037/1736/284 +f 1003/1738/163 1012/1739/217 1011/1740/216 +f 1000/1688/283 1009/1741/218 1008/1742/215 +f 1005/1743/285 1007/1744/220 1013/1745/219 +f 1006/1746/282 1010/1747/221 1024/1748/172 +f 1004/1749/242 1013/1745/219 1012/1739/217 +f 1002/1750/245 1011/1751/216 1010/1747/221 +f 999/1689/284 1008/1742/215 1007/1744/220 +f 1001/1686/281 1024/1748/172 1009/1741/218 +f 1017/1752/212 1024/1753/172 1010/1754/221 +f 1016/1755/210 1009/1756/218 1024/1753/172 +f 1024/1753/172 1023/1757/202 1016/1755/210 +f 1025/1758/208 1024/1753/172 1017/1752/212 +f 1008/1759/215 1016/1755/210 1015/1760/214 +f 1020/1761/173 1007/1744/220 1014/1762/239 +f 1012/1739/217 1020/1761/173 1019/1763/238 +f 1017/1752/212 1011/1764/216 1018/1765/213 +f 1007/1744/220 1015/1760/214 1014/1762/239 +f 1018/1766/213 1012/1739/217 1019/1763/238 +f 1026/1767/204 1019/1763/238 1027/1768/207 +f 1015/1760/214 1023/1757/202 1022/1769/205 +f 1020/1761/173 1021/1770/203 1028/1771/206 +f 1019/1763/238 1028/1771/206 1027/1768/207 +f 1017/1752/212 1026/1772/204 1025/1758/208 +f 1021/1770/203 1015/1760/214 1022/1769/205 +f 1030/1773/287 1023/1774/202 1031/1775/299 +f 1036/1776/305 1021/1770/203 1029/1777/286 +f 1035/1715/302 1028/1771/206 1036/1776/305 +f 1033/1717/304 1026/1778/204 1034/1725/301 +f 1031/1775/299 1024/1779/172 1032/1780/303 +f 1029/1777/286 1022/1781/205 1030/1773/287 +f 1034/1714/301 1027/1768/207 1035/1715/302 +f 1032/1780/303 1025/1782/208 1033/1717/304 +f 1041/1783/289 1050/1784/217 1049/1785/216 +f 1038/1734/283 1047/1786/218 1046/1787/215 +f 1051/1788/219 1037/1736/284 1045/1789/220 +f 1044/1790/282 1048/1791/221 1062/1792/172 +f 1042/1793/242 1051/1788/219 1050/1784/217 +f 1040/1794/245 1049/1785/216 1048/1791/221 +f 1037/1736/284 1046/1787/215 1045/1789/220 +f 1039/1733/281 1062/1795/172 1047/1786/218 +f 1055/1796/212 1062/1797/172 1048/1798/221 +f 1054/1799/210 1047/1800/218 1062/1801/172 +f 1062/1801/172 1061/1802/202 1054/1799/210 +f 1063/1803/208 1062/1797/172 1055/1796/212 +f 1046/1804/215 1054/1799/210 1053/1805/214 +f 1058/1806/173 1045/1789/220 1052/1807/239 +f 1057/1808/209 1051/1788/219 1058/1806/173 +f 1055/1796/212 1049/1809/216 1056/1810/213 +f 1052/1807/239 1046/1804/215 1053/1805/214 +f 1049/1809/216 1057/1808/209 1056/1810/213 +f 1056/1810/213 1065/1811/207 1064/1812/204 +f 1060/1813/205 1054/1799/210 1061/1802/202 +f 1058/1806/173 1059/1814/203 1066/1815/206 +f 1065/1811/207 1058/1806/173 1066/1815/206 +f 1055/1796/212 1064/1812/204 1063/1803/208 +f 1052/1807/239 1060/1813/205 1059/1814/203 +f 1068/1816/153 1061/1817/202 1069/1818/159 +f 1074/1819/154 1059/1814/203 1067/1820/164 +f 1073/1821/163 1066/1815/206 1074/1819/154 +f 1071/1822/158 1064/1823/204 1072/1824/155 +f 1069/1818/159 1062/1825/172 1070/1826/160 +f 1067/1820/164 1060/1827/205 1068/1816/153 +f 1072/1824/155 1065/1811/207 1073/1821/163 +f 1070/1828/160 1063/1829/208 1071/1822/158 +f 864/1830/278 895/1831/268 894/1832/267 +f 854/1833/164 863/1834/241 1003/1835/163 +f 862/1836/244 854/1833/164 1003/1835/163 +f 896/1837/269 865/1838/276 893/1839/265 +f 865/1838/276 897/1840/263 893/1839/265 +f 861/1841/280 898/1842/264 897/1840/263 +f 860/1843/306 899/1844/266 898/1845/264 +f 859/1846/274 894/1832/267 899/1844/266 +f 683/1371/161 692/1387/161 698/1372/171 +f 689/1374/160 697/1847/160 696/1375/172 +f 687/1377/157 695/1385/157 694/1378/170 +f 685/1380/154 693/1386/154 691/1381/173 +f 690/1373/171 698/1372/171 697/1383/160 +f 688/1376/172 696/1375/172 695/1385/157 +f 686/1379/170 694/1378/170 693/1386/154 +f 684/1382/173 691/1381/173 692/1387/161 +f 716/1388/155 724/1402/155 723/1389/163 +f 718/1391/160 725/1848/160 730/1392/158 +f 721/1394/164 728/1403/164 727/1395/153 +f 719/1397/159 726/1404/159 725/1398/160 +f 715/1390/163 723/1389/163 729/1400/154 +f 717/1393/158 730/1392/158 724/1402/155 +f 722/1401/154 729/1400/154 728/1403/164 +f 720/1396/153 727/1395/153 726/1404/159 +f 734/1405/174 733/1849/195 731/1406/175 +f 738/1408/177 737/1412/181 735/1409/178 +f 740/1411/180 739/1414/183 737/1412/181 +f 742/1413/182 741/1850/192 739/1414/183 +f 736/1415/179 758/1432/197 759/1416/184 +f 753/1421/188 754/1418/185 755/1420/187 +f 741/1426/192 754/1418/185 753/1421/188 +f 735/1428/178 737/1412/181 752/1429/193 +f 733/1430/195 750/1214/200 749/1422/189 +f 739/1427/183 753/1421/188 752/1429/193 +f 756/1431/196 760/1436/199 759/1416/184 +f 734/1433/174 732/1851/176 757/1434/198 +f 740/1435/180 738/1417/177 759/1416/184 +f 740/1435/180 760/1436/199 761/1423/190 +f 750/1214/200 751/1327/194 752/1429/193 +f 762/1437/201 761/1423/190 760/1436/199 +f 794/1438/202 795/1852/172 787/1439/160 +f 792/1441/203 793/1450/205 785/1442/153 +f 797/1444/204 798/1453/207 790/1445/163 +f 795/1447/172 796/1454/208 788/1448/158 +f 793/1450/205 794/1438/202 786/1440/159 +f 791/1451/206 792/1441/203 784/1443/164 +f 798/1453/207 791/1451/206 783/1452/154 +f 796/1454/208 797/1444/204 789/1446/155 +f 797/1455/204 804/1463/213 805/1456/209 +f 793/1457/205 801/1464/214 802/1458/210 +f 792/1441/203 791/1451/206 799/1460/173 +f 791/1451/206 798/1453/207 805/1456/209 +f 797/1455/204 796/1473/208 803/1462/212 +f 792/1441/203 800/1461/211 801/1464/214 +f 800/1461/211 807/1470/220 808/1465/215 +f 805/1456/209 804/1463/213 811/1466/216 +f 802/1458/210 801/1464/214 808/1465/215 +f 800/1461/211 799/1460/173 806/1469/219 +f 799/1460/173 805/1456/209 812/1467/217 +f 803/1462/212 810/1474/221 811/1466/216 +f 810/1475/221 795/1853/172 813/1476/222 +f 811/1478/216 819/1487/228 820/1479/224 +f 808/1480/215 816/1488/229 817/1481/225 +f 806/1469/219 814/1486/227 815/1483/226 +f 809/1482/218 817/1481/225 813/1484/222 +f 806/1469/219 812/1467/217 820/1479/224 +f 810/1475/221 818/1477/223 819/1487/228 +f 807/1470/220 815/1483/226 816/1488/229 +f 832/1489/202 833/1498/172 825/1490/230 +f 830/1492/203 831/1854/205 823/1493/232 +f 835/1495/204 836/1504/207 828/1496/234 +f 833/1498/172 834/1505/208 826/1499/236 +f 831/1500/205 832/1489/202 824/1491/231 +f 829/1502/206 830/1492/203 822/1494/233 +f 836/1504/207 829/1502/206 821/1503/237 +f 834/1505/208 835/1495/204 827/1497/235 +f 835/1506/204 842/1514/213 843/1507/238 +f 831/1508/205 839/1855/214 840/1509/210 +f 829/1502/206 837/1512/173 838/1511/239 +f 836/1504/207 843/1507/238 837/1512/173 +f 834/1513/208 841/1523/212 842/1514/213 +f 830/1492/203 838/1511/239 839/1515/214 +f 839/1515/214 838/1511/239 845/1517/220 +f 842/1514/213 849/1524/216 850/1519/217 +f 840/1509/210 839/1855/214 846/1520/215 +f 837/1512/173 844/1522/219 845/1517/220 +f 837/1512/173 843/1507/238 850/1519/217 +f 841/1523/212 848/1526/221 849/1524/216 +f 833/1527/172 851/1536/222 856/1528/223 +f 849/1530/216 857/1538/228 858/1531/224 +f 846/1532/215 854/1856/164 855/1533/225 +f 844/1522/219 852/1537/227 853/1535/226 +f 847/1534/218 855/1533/225 851/1536/222 +f 850/1519/217 858/1531/224 852/1537/227 +f 848/1529/221 856/1528/223 857/1538/228 +f 845/1517/220 853/1535/226 854/1539/164 +f 819/1487/228 871/1557/158 872/1549/246 +f 814/1550/227 867/1556/249 868/1551/247 +f 817/1553/225 869/1572/258 866/1554/248 +f 820/1479/224 872/1549/246 867/1556/249 +f 818/1477/223 870/1559/250 871/1557/158 +f 818/1477/223 813/1857/222 866/1558/248 +f 866/1554/248 869/1572/258 876/1560/251 +f 825/1562/230 826/1579/236 884/1563/253 +f 871/1557/158 870/1559/250 877/1565/172 +f 870/1559/250 866/1558/248 873/1567/252 +f 872/1549/246 871/1557/158 878/1566/255 +f 824/1491/231 882/1577/261 881/1569/257 +f 822/1494/233 880/1578/262 874/1573/259 +f 821/1574/237 874/1573/259 885/1575/260 +f 825/1562/230 883/1564/254 882/1577/261 +f 823/1493/232 881/1584/257 880/1578/262 +f 879/1568/256 827/1588/235 867/1556/249 +f 878/1582/255 883/1564/254 884/1563/253 +f 877/1565/172 882/1577/261 883/1564/254 +f 882/1577/261 877/1565/172 873/1583/252 +f 881/1584/257 873/1858/252 876/1585/251 +f 880/1578/262 876/1585/251 816/1586/229 +f 885/1575/260 874/1573/259 816/1586/229 +f 827/1588/235 875/1571/173 868/1551/247 +f 858/1531/224 857/1538/228 891/1589/158 +f 852/1591/227 887/1597/249 888/1592/247 +f 851/1594/222 855/1606/225 889/1595/258 +f 858/1531/224 892/1590/246 887/1597/249 +f 856/1528/223 890/1598/250 891/1589/158 +f 856/1528/223 851/1594/222 886/1596/248 +f 891/1589/158 890/1598/250 897/1599/263 +f 890/1598/250 886/1596/248 893/1601/265 +f 891/1589/158 898/1600/264 899/1602/266 +f 888/1592/247 887/1597/249 894/1603/267 +f 889/1595/258 896/1607/269 893/1601/265 +f 887/1597/249 892/1590/246 899/1602/266 +f 908/1609/157 917/1625/157 923/1610/172 +f 914/1612/160 922/1859/160 921/1613/171 +f 912/1615/161 920/1623/161 919/1616/173 +f 910/1618/154 918/1624/154 916/1619/170 +f 915/1611/172 923/1610/172 922/1621/160 +f 913/1614/171 921/1613/171 920/1623/161 +f 911/1617/173 919/1616/173 918/1624/154 +f 909/1620/170 916/1619/170 917/1625/157 +f 931/1626/270 939/1638/270 938/1627/155 +f 929/1629/271 937/1639/271 936/1630/157 +f 927/1632/257 935/1640/257 934/1633/153 +f 925/1635/272 933/1642/272 932/1636/161 +f 924/1637/161 932/1636/161 939/1638/270 +f 930/1628/155 938/1627/155 937/1639/271 +f 928/1631/157 936/1630/157 935/1640/257 +f 926/1641/153 934/1860/153 933/1642/272 +f 947/1643/270 955/1655/270 954/1644/155 +f 945/1646/271 953/1656/271 952/1647/157 +f 943/1649/257 951/1657/257 950/1650/153 +f 941/1652/272 949/1659/272 948/1653/161 +f 940/1654/161 948/1653/161 955/1655/270 +f 946/1645/155 954/1644/155 953/1656/271 +f 944/1648/157 952/1647/157 951/1657/257 +f 942/1658/153 950/1861/153 949/1659/272 +f 957/1660/155 965/1674/155 964/1661/163 +f 959/1663/160 966/1862/160 971/1664/158 +f 962/1666/164 969/1675/164 968/1667/153 +f 960/1669/159 967/1676/159 966/1670/160 +f 956/1662/163 964/1661/163 970/1672/154 +f 958/1665/158 971/1664/158 965/1674/155 +f 963/1673/154 970/1672/154 969/1675/164 +f 961/1668/153 968/1667/153 967/1676/159 +f 977/1677/273 864/1682/278 859/1678/274 +f 865/1680/276 862/1546/244 975/1545/243 +f 976/1541/240 863/1543/241 864/1682/278 +f 859/1678/274 860/1863/306 973/1683/159 +f 974/1684/279 861/1685/280 865/1680/276 +f 973/1683/159 860/1863/306 861/1685/280 +f 1001/1686/281 974/1684/279 978/1681/277 +f 973/1683/159 974/1684/279 1001/1686/281 +f 977/1677/273 972/1679/275 999/1689/284 +f 1006/1687/282 978/1681/277 975/1545/243 +f 976/1541/240 977/1677/273 1005/1690/285 +f 999/1689/284 972/1679/275 973/1683/159 +f 997/1695/273 996/1723/240 989/1696/173 +f 1041/1698/289 990/1700/291 979/1693/288 +f 1041/1698/289 988/1702/292 984/1699/290 +f 983/1701/271 984/1699/290 988/1702/292 +f 983/1704/271 991/1864/293 987/1705/172 +f 987/1705/172 986/1708/296 981/1707/295 +f 986/1708/296 985/1710/298 980/1709/297 +f 997/1695/273 1030/1697/287 985/1712/298 +f 984/1699/290 983/1701/271 1034/1714/301 +f 982/1706/294 981/1707/295 1032/1716/303 +f 979/1693/288 990/1700/291 1036/1718/305 +f 1036/1718/305 990/1700/291 984/1699/290 +f 983/1704/271 982/1706/294 1033/1717/304 +f 992/1713/300 985/1712/298 986/1726/296 +f 994/1728/279 987/1705/172 991/1729/293 +f 993/1727/159 986/1726/296 987/1705/172 +f 1032/1716/303 981/1707/295 980/1709/297 +f 998/1731/277 991/1865/293 988/1720/292 +f 994/1728/279 998/1730/277 1044/1732/282 +f 1038/1734/283 993/1727/159 994/1728/279 +f 1043/1735/285 997/1695/273 992/1713/300 +f 1044/1737/282 998/1731/277 995/1719/243 +f 996/1723/240 997/1695/273 1043/1735/285 +f 992/1713/300 993/1727/159 1038/1734/283 +f 1003/1738/163 1004/1749/242 1012/1739/217 +f 1000/1688/283 1001/1686/281 1009/1741/218 +f 1005/1743/285 999/1689/284 1007/1744/220 +f 1006/1746/282 1002/1750/245 1010/1747/221 +f 1004/1749/242 1005/1743/285 1013/1745/219 +f 1002/1750/245 1003/1866/163 1011/1751/216 +f 999/1689/284 1000/1688/283 1008/1742/215 +f 1001/1686/281 1006/1746/282 1024/1748/172 +f 1008/1759/215 1009/1756/218 1016/1755/210 +f 1020/1761/173 1013/1745/219 1007/1744/220 +f 1012/1739/217 1013/1745/219 1020/1761/173 +f 1017/1752/212 1010/1754/221 1011/1764/216 +f 1007/1744/220 1008/1759/215 1015/1760/214 +f 1018/1766/213 1011/1867/216 1012/1739/217 +f 1026/1767/204 1018/1766/213 1019/1763/238 +f 1015/1760/214 1016/1755/210 1023/1757/202 +f 1020/1761/173 1014/1762/239 1021/1770/203 +f 1019/1763/238 1020/1761/173 1028/1771/206 +f 1017/1752/212 1018/1765/213 1026/1772/204 +f 1021/1770/203 1014/1762/239 1015/1760/214 +f 1030/1773/287 1022/1781/205 1023/1774/202 +f 1036/1776/305 1028/1771/206 1021/1770/203 +f 1035/1715/302 1027/1768/207 1028/1771/206 +f 1033/1717/304 1025/1782/208 1026/1778/204 +f 1031/1775/299 1023/1774/202 1024/1779/172 +f 1029/1777/286 1021/1770/203 1022/1781/205 +f 1034/1714/301 1026/1868/204 1027/1768/207 +f 1032/1780/303 1024/1779/172 1025/1782/208 +f 1041/1783/289 1042/1793/242 1050/1784/217 +f 1038/1734/283 1039/1733/281 1047/1786/218 +f 1051/1788/219 1043/1869/285 1037/1736/284 +f 1044/1790/282 1040/1794/245 1048/1791/221 +f 1042/1793/242 1043/1869/285 1051/1788/219 +f 1040/1794/245 1041/1783/289 1049/1785/216 +f 1037/1736/284 1038/1734/283 1046/1787/215 +f 1039/1733/281 1044/1870/282 1062/1795/172 +f 1046/1804/215 1047/1800/218 1054/1799/210 +f 1058/1806/173 1051/1788/219 1045/1789/220 +f 1057/1808/209 1050/1784/217 1051/1788/219 +f 1055/1796/212 1048/1798/221 1049/1809/216 +f 1052/1807/239 1045/1789/220 1046/1804/215 +f 1049/1809/216 1050/1784/217 1057/1808/209 +f 1056/1810/213 1057/1808/209 1065/1811/207 +f 1060/1813/205 1053/1805/214 1054/1799/210 +f 1058/1806/173 1052/1807/239 1059/1814/203 +f 1065/1811/207 1057/1808/209 1058/1806/173 +f 1055/1796/212 1056/1810/213 1064/1812/204 +f 1052/1807/239 1053/1805/214 1060/1813/205 +f 1068/1816/153 1060/1827/205 1061/1817/202 +f 1074/1819/154 1066/1815/206 1059/1814/203 +f 1073/1821/163 1065/1811/207 1066/1815/206 +f 1071/1822/158 1063/1829/208 1064/1823/204 +f 1069/1818/159 1061/1817/202 1062/1825/172 +f 1067/1820/164 1059/1814/203 1060/1827/205 +f 1072/1824/155 1064/1823/204 1065/1811/207 +f 1070/1828/160 1062/1871/172 1063/1829/208 +f 864/1830/278 863/1834/241 895/1831/268 +f 854/1833/164 895/1831/268 863/1834/241 +f 862/1836/244 896/1837/269 854/1833/164 +f 896/1837/269 862/1836/244 865/1838/276 +f 865/1838/276 861/1841/280 897/1840/263 +f 861/1841/280 860/1872/306 898/1842/264 +f 860/1843/306 859/1846/274 899/1844/266 +f 859/1846/274 864/1830/278 894/1832/267 diff --git a/src/main/resources/assets/hbm/models/weapons/maresleg.obj b/src/main/resources/assets/hbm/models/weapons/maresleg.obj index 22d8e64fa..d6ae6b853 100644 --- a/src/main/resources/assets/hbm/models/weapons/maresleg.obj +++ b/src/main/resources/assets/hbm/models/weapons/maresleg.obj @@ -1,3783 +1,2369 @@ # Blender v2.79 (sub 0) OBJ File: 'maresleg.blend' # www.blender.org -o Grip -v 0.026200 -0.016789 0.733764 -v 0.026200 -0.103402 0.697888 -v 0.026200 0.060944 0.546101 -v 0.026200 -0.025670 0.510225 -v -0.036300 0.060944 0.546101 -v -0.036300 -0.025670 0.510225 -v -0.036300 -0.016789 0.733764 -v -0.036300 -0.103402 0.697888 -v 0.026219 -0.093905 0.743458 -v 0.026219 -0.187655 0.743458 -v 0.026219 -0.093905 0.680958 -v 0.026219 -0.187655 0.680958 -v -0.036281 -0.093905 0.680958 -v -0.036281 -0.187655 0.680958 -v -0.036281 -0.093905 0.743458 -v -0.036281 -0.187655 0.743458 -v 0.026225 -0.091559 0.708804 -v 0.026225 -0.163738 0.738701 -v 0.026225 -0.115477 0.651061 -v 0.026225 -0.187655 0.680958 -v -0.036275 -0.115477 0.651061 -v -0.036275 -0.187655 0.680958 -v -0.036275 -0.091559 0.708804 -v -0.036275 -0.163738 0.738701 -v 0.026231 0.002670 0.634943 -v 0.026231 -0.085718 0.723331 -v 0.026231 -0.052573 0.579700 -v 0.026231 -0.140961 0.668089 -v -0.036269 -0.052573 0.579700 -v -0.036269 -0.140961 0.668089 -v -0.036269 0.002670 0.634943 -v -0.036269 -0.085718 0.723331 -v 0.026187 -0.111974 0.762847 -v 0.026187 -0.169717 0.786765 -v 0.026187 -0.129913 0.719540 -v 0.026187 -0.187655 0.743458 -v -0.036312 -0.129913 0.719540 -v -0.036312 -0.187655 0.743458 -v -0.036312 -0.111974 0.762847 -v -0.036312 -0.169717 0.786765 -v 0.026214 -0.037134 0.720474 -v 0.026214 -0.136571 0.819911 -v 0.026214 -0.070280 0.687328 -v 0.026214 -0.169717 0.786765 -v -0.036286 -0.070280 0.687328 -v -0.036286 -0.169717 0.786765 -v -0.036286 -0.037134 0.720474 -v -0.036286 -0.136571 0.819911 -v 0.041839 0.117489 0.123705 -v 0.041839 0.039364 0.123705 -v 0.041839 0.117489 -0.380670 -v 0.041839 0.039364 -0.380670 -v -0.051911 0.117489 -0.380670 -v -0.051911 0.039364 -0.380670 -v -0.051911 0.117489 0.123705 -v -0.051911 0.039364 0.123705 -v 0.041839 0.039364 0.123705 -v 0.029880 0.010493 0.123705 -v 0.041839 0.039364 -0.380670 -v 0.029880 0.010493 -0.380670 -v 0.012967 0.051323 -0.380670 -v 0.001008 0.022452 -0.380670 -v 0.012967 0.051323 0.123705 -v 0.001008 0.022452 0.123705 -v 0.005962 0.068236 0.123705 -v 0.029880 0.010493 0.123705 -v 0.005962 0.068236 -0.380670 -v 0.029880 0.010493 -0.380670 -v -0.022909 0.056277 -0.380670 -v 0.001008 -0.001466 -0.380670 -v -0.022909 0.056277 0.123705 -v 0.001008 -0.001466 0.123705 -v -0.023040 0.051323 0.123705 -v -0.011081 0.022452 0.123705 -v -0.023040 0.051323 -0.380670 -v -0.011081 0.022452 -0.380670 -v -0.051911 0.039364 -0.380670 -v -0.039952 0.010493 -0.380670 -v -0.051911 0.039364 0.123705 -v -0.039952 0.010493 0.123705 -v 0.012836 0.056277 0.123705 -v -0.011081 -0.001466 0.123705 -v 0.012836 0.056277 -0.380670 -v -0.011081 -0.001466 -0.380670 -v -0.016035 0.068235 -0.380670 -v -0.039952 0.010493 -0.380670 -v -0.016035 0.068235 0.123705 -v -0.039952 0.010493 0.123705 -v 0.001419 0.061034 0.123705 -v 0.001419 -0.001466 0.123705 -v 0.001419 0.061034 -0.380670 -v 0.001419 -0.001466 -0.380670 -v -0.011081 0.061034 -0.380670 -v -0.011081 -0.001466 -0.380670 -v -0.011081 0.061034 0.123705 -v -0.011081 -0.001466 0.123705 -v 0.041839 0.117489 -0.380670 -v 0.041839 0.039364 -0.380670 -v 0.041839 0.117489 -0.416295 -v 0.041839 0.039364 -0.416295 -v -0.051911 0.117489 -0.416295 -v -0.051911 0.039364 -0.416295 -v -0.051911 0.117489 -0.380670 -v -0.051911 0.039364 -0.380670 -v -0.023040 0.051323 -0.380670 -v -0.011081 0.022452 -0.380670 -v -0.023040 0.051323 -0.416295 -v -0.011081 0.022452 -0.416295 -v -0.051911 0.039364 -0.416295 -v -0.039952 0.010493 -0.416295 -v -0.051911 0.039364 -0.380670 -v -0.039952 0.010493 -0.380670 -v 0.012836 0.056277 -0.380670 -v -0.011081 -0.001466 -0.380670 -v 0.012836 0.056277 -0.416295 -v -0.011081 -0.001466 -0.416295 -v -0.016035 0.068235 -0.416295 -v -0.039952 0.010493 -0.416295 -v -0.016035 0.068235 -0.380670 -v -0.039952 0.010493 -0.380670 -v 0.005962 0.068236 -0.380670 -v 0.029880 0.010493 -0.380670 -v 0.005962 0.068236 -0.416295 -v 0.029880 0.010493 -0.416295 -v -0.022909 0.056277 -0.416295 -v 0.001008 -0.001466 -0.416295 -v -0.022909 0.056277 -0.380670 -v 0.001008 -0.001466 -0.380670 -v 0.001419 0.045409 -0.380670 -v 0.001419 -0.001466 -0.380670 -v 0.001419 0.045409 -0.416295 -v 0.001419 -0.001466 -0.416295 -v -0.011081 0.045409 -0.416295 -v -0.011081 -0.001466 -0.416295 -v -0.011081 0.045409 -0.380670 -v -0.011081 -0.001466 -0.380670 -v 0.041839 0.039364 -0.380670 -v 0.029880 0.010493 -0.380670 -v 0.041839 0.039364 -0.416295 -v 0.029880 0.010493 -0.416295 -v 0.012967 0.051323 -0.416295 -v 0.001008 0.022452 -0.416295 -v 0.012967 0.051323 -0.380670 -v 0.001008 0.022452 -0.380670 -v 0.026206 -0.015446 0.733253 -v 0.026206 -0.119302 0.837110 -v 0.026206 -0.048591 0.700108 -v 0.026206 -0.152448 0.803964 -v -0.036294 -0.048591 0.700108 -v -0.036294 -0.152448 0.803964 -v -0.036294 -0.015446 0.733253 -v -0.036294 -0.119302 0.837110 -vt 0.875000 0.250000 -vt 0.875000 0.062500 -vt 0.468750 0.250000 -vt 0.468750 0.062500 -vt 0.906250 0.250000 -vt 0.906250 0.062500 -vt 0.468750 0.250000 -vt 0.468750 0.062500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.468750 0.250000 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.468750 0.250000 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.718750 0.250000 -vt 0.718750 0.125000 -vt 0.468750 0.250000 -vt 0.468750 0.125000 -vt 0.750000 0.250000 -vt 0.750000 0.125000 -vt 0.468750 0.250000 -vt 0.468750 0.125000 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.468750 0.250000 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.468750 0.250000 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 1.000000 0.250000 -vt 1.000000 0.000000 -vt 0.468750 0.250000 -vt 0.468750 0.000000 -vt 0.843750 0.250000 -vt 0.843750 0.093750 -vt 0.468750 0.250000 -vt 0.468750 0.093750 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.812500 0.250000 -vt 0.812500 0.125000 -vt 0.468750 0.250000 -vt 0.468750 0.125000 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.937500 0.250000 -vt 0.937500 0.062500 -vt 0.468750 0.250000 -vt 0.468750 0.062500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.843750 0.250000 -vt 0.843750 0.093750 -vt 0.468750 0.250000 -vt 0.468750 0.093750 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.906250 0.250000 -vt 0.906250 0.093750 -vt 0.468750 0.250000 -vt 0.468750 0.093750 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.875000 0.250000 -vt 0.875000 0.062500 -vt 0.468750 0.250000 -vt 0.468750 0.062500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.187500 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.468750 0.250000 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.500000 0.250000 -vt 0.500000 0.187500 -vt 0.468750 0.250000 -vt 0.468750 0.187500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vn 1.0000 0.0000 0.0000 -vn -1.0000 0.0000 0.0000 -vn 0.0000 0.9239 0.3827 -vn 0.0000 -0.9239 -0.3827 -vn 0.0000 -0.3827 0.9239 -vn 0.0000 0.3827 -0.9239 -vn 0.0000 1.0000 0.0000 +o Lever +v -0.187500 0.769607 -3.582107 +v -0.187500 0.445183 -3.798880 +v 0.187500 1.187500 -2.375000 +v -0.187500 1.187500 -2.375000 +v 0.187500 0.437500 -2.375000 +v -0.187500 0.437500 -2.375000 +v -0.187500 0.437500 -2.875000 +v 0.187500 0.437500 -2.875000 +v -0.187500 1.187500 -2.500000 +v 0.187500 1.187500 -2.500000 +v -0.187500 -0.062500 -2.875000 +v 0.187500 -0.062500 -2.875000 +v -0.187500 0.062500 -3.875000 +v 0.187500 0.062500 -3.875000 +v 0.187500 0.445183 -3.798880 +v 0.187500 0.769607 -3.582107 +v 0.187500 0.986380 -3.257684 +v 0.187500 1.062500 -2.875000 +v -0.187500 0.986380 -3.257684 +v -0.187500 1.062500 -2.875000 +v 0.187500 -0.062500 -3.875000 +v -0.187500 -0.062500 -3.875000 +v -0.187500 1.062500 -2.625000 +v 0.187500 1.062500 -2.625000 +v 0.125000 -0.062500 -3.750000 +v -0.125000 -0.062500 -3.750000 +v -0.125000 -0.062500 -3.625000 +v 0.125000 -0.062500 -3.625000 +v 0.125000 -0.812500 -4.875000 +v -0.125000 -0.812500 -4.875000 +v 0.125000 -1.062500 -4.875000 +v -0.125000 -1.062500 -4.875000 +v 0.125000 -1.187500 -4.750000 +v -0.125000 -1.187500 -4.750000 +v 0.125000 -1.187500 -4.500000 +v -0.125000 -1.187500 -4.500000 +v 0.125000 -0.687500 -3.750000 +v -0.125000 -0.687500 -3.750000 +v 0.125000 -0.437500 -3.750000 +v -0.125000 -0.437500 -3.750000 +v 0.125000 -0.437500 -3.250000 +v -0.125000 -0.437500 -3.250000 +v 0.125000 -0.187500 -3.000000 +v -0.125000 -0.187500 -3.000000 +v 0.125000 -0.062500 -3.000000 +v -0.125000 -0.062500 -3.000000 +v 0.125000 -0.187500 -3.062500 +v -0.125000 -0.187500 -3.062500 +v 0.125000 -0.062500 -3.062500 +v -0.125000 -0.062500 -3.062500 +v 0.125000 -0.375000 -3.625000 +v -0.125000 -0.375000 -3.625000 +v 0.125000 -0.375000 -3.250000 +v -0.125000 -0.375000 -3.250000 +v 0.125000 -0.250000 -3.812500 +v -0.125000 -0.250000 -3.812500 +v 0.125000 -1.125000 -4.750000 +v -0.125000 -1.125000 -4.750000 +v 0.125000 -1.125000 -4.500000 +v -0.125000 -1.125000 -4.500000 +v 0.125000 -0.812500 -4.812500 +v -0.125000 -0.812500 -4.812500 +v 0.125000 -1.062500 -4.812500 +v -0.125000 -1.062500 -4.812500 +v 0.125000 -0.750000 -3.937500 +v -0.125000 -0.750000 -3.937500 +v 0.125000 -0.500000 -3.937500 +v -0.125000 -0.500000 -3.937500 +v 0.125000 -0.437500 -4.250000 +v -0.125000 -0.437500 -4.250000 +v 0.125000 -0.437500 -4.000000 +v -0.125000 -0.437500 -4.000000 +vt 0.975410 0.317757 +vt 0.909836 0.261682 +vt 0.975410 0.261682 +vt 0.852459 0.504673 +vt 0.877049 0.392523 +vt 0.877049 0.504673 +vt 0.975410 0.635514 +vt 1.000000 0.616822 +vt 1.000000 0.635514 +vt 0.975410 0.598131 +vt 1.000000 0.598131 +vt 0.852459 0.392523 +vt 0.877049 0.317757 +vt 0.885246 0.392523 +vt 0.909836 0.317757 +vt 0.909836 0.392523 +vt 0.893443 0.485981 +vt 0.909836 0.392523 +vt 0.877049 0.392523 +vt 0.893443 0.485981 +vt 0.885246 0.504673 +vt 0.934942 0.474589 +vt 0.956208 0.442187 +vt 0.970412 0.393687 +vt 0.336066 0.878505 +vt 0.344262 0.887850 +vt 0.336066 0.887850 +vt 0.344262 0.934579 +vt 0.336066 0.925234 +vt 0.344262 0.925234 +vt 0.368852 0.887850 +vt 0.393443 0.878505 +vt 0.401639 0.887850 +vt 0.393443 0.934579 +vt 0.368852 0.925234 +vt 0.401639 0.925234 +vt 0.364754 0.878505 +vt 0.364754 0.934579 +vt 0.241803 0.738318 +vt 0.258197 0.728972 +vt 0.241803 0.728972 +vt 0.258197 0.738318 +vt 0.241803 0.728972 +vt 0.258197 0.728972 +vt 0.262295 0.747664 +vt 0.266393 0.785047 +vt 0.266393 0.747664 +vt 0.262295 0.785047 +vt 0.266393 0.747664 +vt 0.266393 0.785047 +vt 0.262295 0.747664 +vt 0.204918 0.794393 +vt 0.192623 0.803738 +vt 0.204918 0.831776 +vt 0.204918 0.794393 +vt 0.192623 0.803738 +vt 0.204918 0.831776 +vt 0.192623 0.841121 +vt 0.196721 0.869159 +vt 0.209016 0.841121 +vt 0.209016 0.841121 +vt 0.196721 0.869159 +vt 0.225410 0.841121 +vt 0.192623 0.897196 +vt 0.225410 0.841121 +vt 0.975410 0.616822 +vt 0.852459 0.317757 +vt 0.885246 0.317757 +vt 0.877049 0.504673 +vt 0.885246 0.504673 +vt 0.909836 0.485981 +vt 0.909836 0.485981 +vt 0.970417 0.393693 +vt 0.975410 0.336449 +vt 0.909836 0.317757 +vt 0.975410 0.317757 +vt 0.975410 0.336449 +vt 0.956204 0.442175 +vt 0.934941 0.474575 +vt 0.344262 0.878505 +vt 0.336066 0.934579 +vt 0.368852 0.878505 +vt 0.368852 0.934579 +vt 0.348361 0.878505 +vt 0.348361 0.934579 +vt 0.258197 0.738318 +vt 0.241803 0.738318 +vt 0.262295 0.785047 +vt 0.192623 0.841121 +vt 0.184426 0.850467 +vt 0.184426 0.850467 +vt 0.192623 0.897196 +vt 0.184426 0.897196 +vt 0.184426 0.897196 +vt 1.000000 0.504673 +vt 0.975410 0.560748 +vt 0.975410 0.504673 +vt 1.000000 0.336449 +vt 0.975410 0.392523 +vt 1.000000 0.317757 +vt 1.000000 0.392523 +vt 0.975410 0.448598 +vt 1.000000 0.560748 +vt 1.000000 0.448598 +vt 0.147541 0.897196 +vt 0.057377 0.934579 +vt 0.057377 0.897196 +vt 0.163934 0.897196 +vt 0.147541 0.934579 +vt 0.176230 0.897196 +vt 0.163934 0.934579 +vt 0.192623 0.897196 +vt 0.176230 0.934579 +vt 0.250000 0.897196 +vt 0.192623 0.934579 +vt 0.266393 0.897196 +vt 0.250000 0.934579 +vt 0.336066 0.971963 +vt 0.348361 0.971963 +vt 0.364754 0.971963 +vt 0.368852 0.971963 +vt 0.409836 0.934579 +vt 0.393443 0.971963 +vt 0.409836 0.971963 +vt 0.426230 0.934579 +vt 0.426230 0.971963 +vt 0.077869 0.728972 +vt 0.061475 0.766355 +vt 0.061475 0.728972 +vt 0.077869 0.766355 +vt 0.086066 0.728972 +vt 0.086066 0.766355 +vt 0.102459 0.728972 +vt 0.020492 0.766355 +vt 0.168033 0.766355 +vt 0.184426 0.728972 +vt 0.184426 0.766355 +vt 0.143443 0.728972 +vt 0.102459 0.766355 +vt 0.159836 0.728972 +vt 0.143443 0.766355 +vt 0.159836 0.766355 +vt 0.168033 0.728972 +vt 0.266393 0.934579 +vt 0.344262 0.971963 +vt 0.020492 0.728972 vn 0.0000 -1.0000 0.0000 vn 0.0000 0.0000 1.0000 -vn 0.0000 0.0000 -1.0000 -vn 0.0000 0.9239 -0.3827 -vn 0.0000 -0.9239 0.3827 -vn 0.0000 0.3827 0.9239 -vn 0.0000 -0.3827 -0.9239 -vn 0.0000 0.7071 -0.7071 -vn 0.0000 -0.7071 0.7071 -vn 0.0000 0.7071 0.7071 -vn 0.0000 -0.7071 -0.7071 -vn 0.9239 -0.3827 -0.0000 -vn -0.9239 0.3827 0.0000 -vn 0.3827 0.9239 0.0000 -vn -0.3827 -0.9239 -0.0000 -vn 0.9239 0.3827 0.0000 -vn -0.9239 -0.3827 -0.0000 -vn -0.3827 0.9239 0.0000 -vn 0.3827 -0.9239 -0.0000 -s off -f 1/1/1 2/2/1 3/3/1 -f 2/2/1 4/4/1 3/3/1 -f 5/5/2 6/6/2 7/7/2 -f 6/6/2 8/8/2 7/7/2 -f 5/9/3 7/10/3 3/3/3 -f 7/10/3 1/11/3 3/3/3 -f 8/12/4 6/13/4 2/14/4 -f 6/13/4 4/15/4 2/14/4 -f 7/16/5 8/17/5 1/18/5 -f 8/17/5 2/19/5 1/18/5 -f 3/20/6 4/21/6 5/22/6 -f 4/21/6 6/23/6 5/22/6 -f 9/24/1 10/25/1 11/26/1 -f 10/25/1 12/27/1 11/26/1 -f 13/28/2 14/29/2 15/30/2 -f 14/29/2 16/31/2 15/30/2 -f 13/28/7 15/32/7 11/26/7 -f 15/32/7 9/33/7 11/26/7 -f 16/34/8 14/29/8 10/35/8 -f 14/29/8 12/27/8 10/35/8 -f 15/36/9 16/37/9 9/38/9 -f 16/37/9 10/39/9 9/38/9 -f 11/40/10 12/41/10 13/42/10 -f 12/41/10 14/43/10 13/42/10 -f 17/44/1 18/45/1 19/46/1 -f 18/45/1 20/47/1 19/46/1 -f 21/48/2 22/49/2 23/50/2 -f 22/49/2 24/51/2 23/50/2 -f 21/48/11 23/52/11 19/46/11 -f 23/52/11 17/53/11 19/46/11 -f 24/54/12 22/49/12 18/55/12 -f 22/49/12 20/47/12 18/55/12 -f 23/56/13 24/57/13 17/58/13 -f 24/57/13 18/59/13 17/58/13 -f 19/60/14 20/61/14 21/62/14 -f 20/61/14 22/63/14 21/62/14 -f 25/64/1 26/65/1 27/66/1 -f 26/65/1 28/67/1 27/66/1 -f 29/68/2 30/69/2 31/70/2 -f 30/69/2 32/71/2 31/70/2 -f 29/72/15 31/73/15 27/66/15 -f 31/73/15 25/74/15 27/66/15 -f 32/75/16 30/76/16 26/77/16 -f 30/76/16 28/78/16 26/77/16 -f 31/79/17 32/80/17 25/81/17 -f 32/80/17 26/82/17 25/81/17 -f 27/83/18 28/84/18 29/85/18 -f 28/84/18 30/86/18 29/85/18 -f 33/87/1 34/88/1 35/89/1 -f 34/88/1 36/90/1 35/89/1 -f 37/91/2 38/92/2 39/93/2 -f 38/92/2 40/94/2 39/93/2 -f 37/91/11 39/95/11 35/89/11 -f 39/95/11 33/96/11 35/89/11 -f 40/97/12 38/92/12 34/98/12 -f 38/92/12 36/90/12 34/98/12 -f 39/99/13 40/100/13 33/101/13 -f 40/100/13 34/102/13 33/101/13 -f 35/103/14 36/104/14 37/105/14 -f 36/104/14 38/106/14 37/105/14 -f 41/107/1 42/108/1 43/109/1 -f 42/108/1 44/110/1 43/109/1 -f 45/111/2 46/112/2 47/113/2 -f 46/112/2 48/114/2 47/113/2 -f 45/111/15 47/115/15 43/109/15 -f 47/115/15 41/116/15 43/109/15 -f 48/117/16 46/112/16 42/118/16 -f 46/112/16 44/110/16 42/118/16 -f 47/119/17 48/120/17 41/121/17 -f 48/120/17 42/122/17 41/121/17 -f 43/123/18 44/124/18 45/125/18 -f 44/124/18 46/126/18 45/125/18 -f 49/127/1 50/128/1 51/129/1 -f 50/128/1 52/130/1 51/129/1 -f 53/131/2 54/132/2 55/133/2 -f 54/132/2 56/134/2 55/133/2 -f 53/135/7 55/136/7 51/129/7 -f 55/136/7 49/137/7 51/129/7 -f 56/138/8 54/139/8 50/140/8 -f 54/139/8 52/141/8 50/140/8 -f 55/142/9 56/143/9 49/144/9 -f 56/143/9 50/145/9 49/144/9 -f 51/146/10 52/147/10 53/148/10 -f 52/147/10 54/149/10 53/148/10 -f 57/150/19 58/151/19 59/152/19 -f 58/151/19 60/153/19 59/152/19 -f 61/154/20 62/155/20 63/156/20 -f 62/155/20 64/157/20 63/156/20 -f 61/154/21 63/158/21 59/152/21 -f 63/158/21 57/159/21 59/152/21 -f 64/160/22 62/155/22 58/161/22 -f 62/155/22 60/162/22 58/161/22 -f 63/163/9 64/164/9 57/165/9 -f 64/164/9 58/166/9 57/165/9 -f 59/167/10 60/168/10 61/169/10 -f 60/168/10 62/170/10 61/169/10 -f 65/171/23 66/172/23 67/173/23 -f 66/172/23 68/174/23 67/173/23 -f 69/175/24 70/176/24 71/177/24 -f 70/176/24 72/178/24 71/177/24 -f 69/175/25 71/179/25 67/173/25 -f 71/179/25 65/180/25 67/173/25 -f 72/181/26 70/182/26 66/183/26 -f 70/182/26 68/184/26 66/183/26 -f 71/185/9 72/186/9 65/187/9 -f 72/186/9 66/188/9 65/187/9 -f 67/189/10 68/190/10 69/191/10 -f 68/190/10 70/192/10 69/191/10 -f 73/193/23 74/194/23 75/195/23 -f 74/194/23 76/196/23 75/195/23 -f 77/197/24 78/198/24 79/199/24 -f 78/198/24 80/200/24 79/199/24 -f 77/201/25 79/202/25 75/195/25 -f 79/202/25 73/203/25 75/195/25 -f 80/204/26 78/205/26 74/206/26 -f 78/205/26 76/196/26 74/206/26 -f 79/207/9 80/208/9 73/209/9 -f 80/208/9 74/210/9 73/209/9 -f 75/211/10 76/212/10 77/213/10 -f 76/212/10 78/214/10 77/213/10 -f 81/215/19 82/216/19 83/217/19 -f 82/216/19 84/218/19 83/217/19 -f 85/219/20 86/220/20 87/221/20 -f 86/220/20 88/222/20 87/221/20 -f 85/219/21 87/223/21 83/217/21 -f 87/223/21 81/224/21 83/217/21 -f 88/225/22 86/226/22 82/227/22 -f 86/226/22 84/228/22 82/227/22 -f 87/229/9 88/230/9 81/231/9 -f 88/230/9 82/232/9 81/231/9 -f 83/233/10 84/234/10 85/235/10 -f 84/234/10 86/236/10 85/235/10 -f 89/237/1 90/238/1 91/239/1 -f 90/238/1 92/240/1 91/239/1 -f 93/241/2 94/242/2 95/243/2 -f 94/242/2 96/244/2 95/243/2 -f 93/241/7 95/245/7 91/239/7 -f 95/245/7 89/246/7 91/239/7 -f 96/247/8 94/248/8 90/249/8 -f 94/248/8 92/250/8 90/249/8 -f 95/251/9 96/252/9 89/253/9 -f 96/252/9 90/254/9 89/253/9 -f 91/255/10 92/256/10 93/257/10 -f 92/256/10 94/258/10 93/257/10 -f 145/259/1 146/260/1 147/261/1 -f 146/260/1 148/262/1 147/261/1 -f 149/263/2 150/264/2 151/265/2 -f 150/264/2 152/266/2 151/265/2 -f 149/263/15 151/267/15 147/261/15 -f 151/267/15 145/268/15 147/261/15 -f 152/269/16 150/264/16 146/270/16 -f 150/264/16 148/262/16 146/270/16 -f 151/271/17 152/272/17 145/273/17 -f 152/272/17 146/274/17 145/273/17 -f 147/275/18 148/276/18 149/277/18 -f 148/276/18 150/278/18 149/277/18 -f 97/279/1 98/280/1 99/281/1 -f 98/280/1 100/282/1 99/281/1 -f 101/283/2 102/284/2 103/285/2 -f 102/284/2 104/286/2 103/285/2 -f 101/283/7 103/287/7 99/281/7 -f 103/287/7 97/288/7 99/281/7 -f 104/289/8 102/284/8 98/290/8 -f 102/284/8 100/282/8 98/290/8 -f 103/291/9 104/292/9 97/293/9 -f 104/292/9 98/294/9 97/293/9 -f 99/295/10 100/296/10 101/297/10 -f 100/296/10 102/298/10 101/297/10 -f 105/299/23 106/300/23 107/301/23 -f 106/300/23 108/302/23 107/301/23 -f 109/303/24 110/304/24 111/305/24 -f 110/304/24 112/306/24 111/305/24 -f 109/303/25 111/307/25 107/301/25 -f 111/307/25 105/308/25 107/301/25 -f 112/309/26 110/304/26 106/310/26 -f 110/304/26 108/302/26 106/310/26 -f 111/311/9 112/312/9 105/313/9 -f 112/312/9 106/314/9 105/313/9 -f 107/315/10 108/316/10 109/317/10 -f 108/316/10 110/318/10 109/317/10 -f 113/319/19 114/320/19 115/321/19 -f 114/320/19 116/322/19 115/321/19 -f 117/323/20 118/324/20 119/325/20 -f 118/324/20 120/326/20 119/325/20 -f 117/323/21 119/327/21 115/321/21 -f 119/327/21 113/328/21 115/321/21 -f 120/329/22 118/324/22 114/330/22 -f 118/324/22 116/322/22 114/330/22 -f 119/331/9 120/332/9 113/333/9 -f 120/332/9 114/334/9 113/333/9 -f 115/335/10 116/336/10 117/337/10 -f 116/336/10 118/338/10 117/337/10 -f 121/339/23 122/340/23 123/341/23 -f 122/340/23 124/342/23 123/341/23 -f 125/343/24 126/344/24 127/345/24 -f 126/344/24 128/346/24 127/345/24 -f 125/343/25 127/347/25 123/341/25 -f 127/347/25 121/348/25 123/341/25 -f 128/349/26 126/344/26 122/350/26 -f 126/344/26 124/342/26 122/350/26 -f 127/351/9 128/352/9 121/353/9 -f 128/352/9 122/354/9 121/353/9 -f 123/355/10 124/356/10 125/357/10 -f 124/356/10 126/358/10 125/357/10 -f 129/359/1 130/360/1 131/361/1 -f 130/360/1 132/362/1 131/361/1 -f 133/363/2 134/364/2 135/365/2 -f 134/364/2 136/366/2 135/365/2 -f 133/363/7 135/367/7 131/361/7 -f 135/367/7 129/368/7 131/361/7 -f 136/369/8 134/364/8 130/370/8 -f 134/364/8 132/362/8 130/370/8 -f 135/371/9 136/372/9 129/373/9 -f 136/372/9 130/374/9 129/373/9 -f 131/375/10 132/376/10 133/377/10 -f 132/376/10 134/378/10 133/377/10 -f 137/379/19 138/380/19 139/381/19 -f 138/380/19 140/382/19 139/381/19 -f 141/383/20 142/384/20 143/385/20 -f 142/384/20 144/386/20 143/385/20 -f 141/383/21 143/387/21 139/381/21 -f 143/387/21 137/388/21 139/381/21 -f 144/389/22 142/384/22 138/390/22 -f 142/384/22 140/382/22 138/390/22 -f 143/391/9 144/392/9 137/393/9 -f 144/392/9 138/394/9 137/393/9 -f 139/395/10 140/396/10 141/397/10 -f 140/396/10 142/398/10 141/397/10 -o Lever -v 0.019964 0.080214 0.281241 -v 0.019964 0.024971 0.336484 -v 0.019964 0.024971 0.225999 -v 0.019964 -0.030272 0.281241 -v -0.030036 0.024971 0.225999 -v -0.030036 -0.030272 0.281241 -v -0.030036 0.080214 0.281241 -v -0.030036 0.024971 0.336484 -v 0.019964 0.008853 0.262532 -v 0.019964 -0.020018 0.274490 -v 0.019964 0.002874 0.248096 -v 0.019964 -0.025998 0.260055 -v -0.030036 0.002874 0.248096 -v -0.030036 -0.025998 0.260055 -v -0.030036 0.008853 0.262532 -v -0.030036 -0.020018 0.274490 -v 0.019964 -0.014949 0.271104 -v 0.019964 -0.037046 0.293201 -v 0.019964 -0.025997 0.260055 -v 0.019964 -0.048094 0.282152 -v -0.030036 -0.025997 0.260055 -v -0.030036 -0.048094 0.282152 -v -0.030036 -0.014949 0.271104 -v -0.030036 -0.037046 0.293201 -v 0.019964 -0.022610 0.299180 -v 0.019964 -0.037046 0.293200 -v 0.019964 -0.010651 0.270308 -v 0.019964 -0.025087 0.264329 -v -0.030036 -0.010651 0.270308 -v -0.030036 -0.025087 0.264329 -v -0.030036 -0.022610 0.299180 -v -0.030036 -0.037046 0.293200 -v 0.019964 0.038612 0.362084 -v 0.019964 -0.027679 0.295793 -v 0.019964 0.049660 0.351036 -v 0.019964 -0.016631 0.284744 -v -0.030036 0.049660 0.351036 -v -0.030036 -0.016631 0.284744 -v -0.030036 0.038612 0.362084 -v -0.030036 -0.027679 0.295793 -v 0.007464 0.015470 0.337208 -v 0.007464 -0.031405 0.337208 -v 0.007464 0.015470 0.274708 -v 0.007464 -0.031405 0.274708 -v -0.017536 0.015470 0.274708 -v -0.017536 -0.031405 0.274708 -v -0.017536 0.015470 0.337208 -v -0.017536 -0.031405 0.337208 -v 0.007464 0.011902 0.355146 -v 0.007464 -0.031405 0.337208 -v 0.007464 0.035819 0.297404 -v 0.007464 -0.007487 0.279466 -v -0.017536 0.035819 0.297404 -v -0.017536 -0.007487 0.279466 -v -0.017536 0.011902 0.355146 -v -0.017536 -0.031405 0.337208 -v 0.007464 -0.016969 0.331229 -v 0.007464 -0.074712 0.355146 -v 0.007464 -0.022949 0.316793 -v 0.007464 -0.080691 0.340711 -v -0.017536 -0.022949 0.316793 -v -0.017536 -0.080691 0.340711 -v -0.017536 -0.016969 0.331229 -v -0.017536 -0.074712 0.355146 -v 0.007464 -0.084194 0.389997 -v 0.007464 -0.098629 0.384018 -v 0.007464 -0.066255 0.346690 -v 0.007464 -0.080691 0.340711 -v -0.017536 -0.066255 0.346690 -v -0.017536 -0.080691 0.340711 -v -0.017536 -0.084194 0.389997 -v -0.017536 -0.098629 0.384018 -v 0.007464 -0.083004 0.430892 -v 0.007464 -0.098629 0.430892 -v 0.007464 -0.083004 0.384017 -v 0.007464 -0.098629 0.384017 -v -0.017536 -0.083004 0.384017 -v -0.017536 -0.098629 0.384017 -v -0.017536 -0.083004 0.430892 -v -0.017536 -0.098629 0.430892 -v 0.007464 -0.054436 0.452989 -v 0.007464 -0.065484 0.464038 -v 0.007464 -0.087581 0.419844 -v 0.007464 -0.098630 0.430892 -v -0.017536 -0.087581 0.419844 -v -0.017536 -0.098630 0.430892 -v -0.017536 -0.054436 0.452989 -v -0.017536 -0.065484 0.464038 -v 0.007464 -0.182975 0.584708 -v 0.007464 -0.197410 0.578729 -v 0.007464 -0.165036 0.541401 -v 0.007464 -0.179472 0.535422 -v -0.017536 -0.165036 0.541401 -v -0.017536 -0.179472 0.535422 -v -0.017536 -0.182975 0.584708 -v -0.017536 -0.197410 0.578729 -v 0.007464 -0.171016 0.601620 -v 0.007464 -0.185451 0.607599 -v 0.007464 -0.182975 0.572749 -v 0.007464 -0.197410 0.578728 -v -0.017536 -0.182975 0.572749 -v -0.017536 -0.197410 0.578728 -v -0.017536 -0.171016 0.601620 -v -0.017536 -0.185451 0.607599 -v 0.007464 -0.156580 0.619558 -v 0.007464 -0.185451 0.607599 -v 0.007464 -0.150601 0.605123 -v 0.007464 -0.179472 0.593164 -v -0.017536 -0.150601 0.605123 -v -0.017536 -0.179472 0.593164 -v -0.017536 -0.156580 0.619558 -v -0.017536 -0.185451 0.607599 -v 0.007464 -0.113273 0.601620 -v 0.007464 -0.156580 0.619558 -v 0.007464 -0.119253 0.587184 -v 0.007464 -0.162560 0.605123 -v -0.017536 -0.119253 0.587184 -v -0.017536 -0.162560 0.605123 -v -0.017536 -0.113273 0.601620 -v -0.017536 -0.156580 0.619558 -v 0.007464 -0.069079 0.557426 -v 0.007464 -0.113273 0.601620 -v 0.007464 -0.080128 0.546377 -v 0.007464 -0.124322 0.590572 -v -0.017536 -0.080128 0.546377 -v -0.017536 -0.124322 0.590572 -v -0.017536 -0.069079 0.557426 -v -0.017536 -0.113273 0.601620 -v 0.007464 -0.069079 0.557426 -v 0.007464 -0.083515 0.551446 -v 0.007464 -0.033203 0.470812 -v 0.007464 -0.047638 0.464833 -v -0.017536 -0.033203 0.470812 -v -0.017536 -0.047638 0.464833 -v -0.017536 -0.069079 0.557426 -v -0.017536 -0.083515 0.551446 -v 0.007464 -0.102132 0.480179 -v 0.007464 -0.116568 0.474199 -v 0.007464 -0.084194 0.436872 -v 0.007464 -0.098629 0.430892 -v -0.017536 -0.084194 0.436872 -v -0.017536 -0.098629 0.430892 -v -0.017536 -0.102132 0.480179 -v -0.017536 -0.116568 0.474199 -v 0.007464 -0.168423 0.546470 -v 0.007464 -0.179472 0.535422 -v 0.007464 -0.102132 0.480179 -v 0.007464 -0.113181 0.469131 -v -0.017536 -0.102132 0.480179 -v -0.017536 -0.113181 0.469131 -v -0.017536 -0.168423 0.546470 -v -0.017536 -0.179472 0.535422 -v 0.007464 -0.022177 0.481976 -v 0.007464 -0.065484 0.464038 -v 0.007464 -0.016197 0.467541 -v 0.007464 -0.059504 0.449602 -v -0.017536 -0.016197 0.467541 -v -0.017536 -0.059504 0.449602 -v -0.017536 -0.022177 0.481976 -v -0.017536 -0.065484 0.464038 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vn 1.0000 0.0000 0.0000 -vn -1.0000 0.0000 0.0000 -vn 0.0000 0.7071 -0.7071 -vn 0.0000 -0.7071 0.7071 -vn 0.0000 0.7071 0.7071 -vn 0.0000 -0.7071 -0.7071 -vn 0.0000 0.9239 -0.3827 -vn 0.0000 -0.9239 0.3827 -vn 0.0000 0.3827 0.9239 -vn 0.0000 -0.3827 -0.9239 -vn 0.0000 0.9239 0.3827 -vn 0.0000 -0.9239 -0.3827 -vn 0.0000 -0.3827 0.9239 -vn 0.0000 0.3827 -0.9239 vn 0.0000 1.0000 0.0000 -vn 0.0000 -1.0000 -0.0000 +vn 0.0000 0.7071 -0.7071 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.9239 -0.3827 +vn 0.0000 0.9952 -0.0980 +vn 0.0000 0.0980 -0.9952 +vn 0.0000 0.3827 -0.9239 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 0.4719 -0.8817 +vn 0.0000 0.8321 -0.5547 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 -0.9239 -0.3827 +vn 0.0000 -0.9571 0.2898 +vn 0.0000 -0.4719 0.8817 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.3827 0.9239 +vn 0.0000 0.9571 0.2898 +vn 0.0000 0.0985 0.9951 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 0.9239 0.3827 +vn 0.0000 0.9571 -0.2898 +vn 0.0000 0.3827 0.9239 +s off +f 21/1/1 11/2/1 22/3/1 +f 4/4/2 5/5/2 3/6/2 +f 3/7/3 9/8/3 4/9/3 +f 9/8/4 24/10/4 23/11/4 +f 6/12/1 8/13/1 5/5/1 +f 7/14/2 12/15/2 8/16/2 +f 23/17/5 7/18/5 6/19/5 +f 24/20/6 10/21/6 3/6/6 +f 19/22/5 1/23/5 7/18/5 +f 8/16/6 12/15/6 15/24/6 +f 50/25/5 44/26/5 46/27/5 +f 47/28/6 45/29/6 43/30/6 +f 42/31/5 52/32/5 40/33/5 +f 51/34/6 41/35/6 39/36/6 +f 44/26/5 54/37/5 42/31/5 +f 53/38/6 43/30/6 41/35/6 +f 60/39/5 34/40/5 36/41/5 +f 57/42/6 35/43/6 33/44/6 +f 64/45/5 30/46/5 32/47/5 +f 61/48/6 31/49/6 29/50/6 +f 34/40/5 64/45/5 32/47/5 +f 63/51/6 33/44/6 31/49/6 +f 36/41/5 66/52/5 60/39/5 +f 38/53/5 68/54/5 66/52/5 +f 35/43/6 65/55/6 37/56/6 +f 37/56/6 67/57/6 39/58/6 +f 56/59/5 72/60/5 68/54/5 +f 39/58/6 71/61/6 55/62/6 +f 30/46/5 70/63/5 26/64/5 +f 29/50/6 69/65/6 61/48/6 +f 70/63/5 72/60/5 56/59/5 +f 55/62/6 71/61/6 69/65/6 +f 21/1/1 12/15/1 11/2/1 +f 4/4/2 6/12/2 5/5/2 +f 3/7/3 10/66/3 9/8/3 +f 9/8/4 10/66/4 24/10/4 +f 6/12/1 7/67/1 8/13/1 +f 7/14/2 11/68/2 12/15/2 +f 6/19/5 4/69/5 23/17/5 +f 4/69/5 9/70/5 23/17/5 +f 23/17/5 20/71/5 7/18/5 +f 3/6/6 5/5/6 24/20/6 +f 5/5/6 8/16/6 24/20/6 +f 8/16/6 18/72/6 24/20/6 +f 1/23/5 2/73/5 7/18/5 +f 2/73/5 13/74/5 11/75/5 +f 7/18/5 2/73/5 11/75/5 +f 13/74/5 22/76/5 11/75/5 +f 7/18/5 20/71/5 19/22/5 +f 12/15/6 21/1/6 14/77/6 +f 14/77/6 15/24/6 12/15/6 +f 15/24/6 16/78/6 8/16/6 +f 16/78/6 17/79/6 8/16/6 +f 17/79/6 18/72/6 8/16/6 +f 50/25/5 48/80/5 44/26/5 +f 47/28/6 49/81/6 45/29/6 +f 42/31/5 54/82/5 52/32/5 +f 51/34/6 53/83/6 41/35/6 +f 44/26/5 48/84/5 54/37/5 +f 53/38/6 47/85/6 43/30/6 +f 60/39/5 58/86/5 34/40/5 +f 57/42/6 59/87/6 35/43/6 +f 64/45/5 62/88/5 30/46/5 +f 61/48/6 63/51/6 31/49/6 +f 34/40/5 58/86/5 64/45/5 +f 63/51/6 57/42/6 33/44/6 +f 36/41/5 38/53/5 66/52/5 +f 38/53/5 40/89/5 68/54/5 +f 35/43/6 59/87/6 65/55/6 +f 37/56/6 65/55/6 67/57/6 +f 68/54/5 40/89/5 56/59/5 +f 40/89/5 52/90/5 56/59/5 +f 55/62/6 51/91/6 39/58/6 +f 39/58/6 67/57/6 71/61/6 +f 30/46/5 62/88/5 70/63/5 +f 29/50/6 25/92/6 69/65/6 +f 27/93/5 26/64/5 56/59/5 +f 26/64/5 70/63/5 56/59/5 +f 69/65/6 25/92/6 55/62/6 +f 25/92/6 28/94/6 55/62/6 +s 1 +f 19/95/7 18/96/8 17/97/7 +f 13/98/9 15/99/10 14/77/9 +f 14/77/9 22/100/11 13/98/9 +f 2/101/10 16/102/4 15/99/10 +f 20/103/8 24/10/3 18/96/8 +f 1/104/4 17/97/7 16/102/4 +f 29/105/12 26/106/13 25/107/13 +f 31/108/14 30/109/12 29/105/12 +f 33/110/15 32/111/14 31/108/14 +f 35/112/16 34/113/15 33/110/15 +f 37/114/17 36/115/16 35/112/16 +f 39/116/2 38/117/17 37/114/17 +f 41/35/18 40/33/1 39/36/1 +f 43/30/19 42/31/18 41/35/18 +f 45/29/2 44/26/19 43/30/19 +f 47/28/10 50/118/11 49/81/11 +f 48/119/10 53/38/7 54/120/7 +f 51/34/20 54/121/7 53/83/7 +f 55/122/21 52/123/20 51/34/20 +f 56/124/21 28/125/22 27/126/22 +f 57/127/23 60/128/24 59/129/24 +f 58/130/23 63/131/25 64/132/25 +f 61/133/17 64/132/25 63/131/25 +f 66/134/12 59/129/24 60/128/24 +f 68/135/14 65/136/12 66/137/12 +f 69/138/16 62/139/17 61/133/17 +f 71/140/15 70/141/16 69/138/16 +f 72/142/15 67/143/14 68/135/14 +f 19/95/7 20/103/8 18/96/8 +f 13/98/9 2/101/10 15/99/10 +f 14/77/9 21/1/11 22/100/11 +f 2/101/10 1/104/4 16/102/4 +f 20/103/8 23/11/3 24/10/3 +f 1/104/4 19/95/7 17/97/7 +f 29/105/12 30/109/12 26/106/13 +f 31/108/14 32/111/14 30/109/12 +f 33/110/15 34/113/15 32/111/14 +f 35/112/16 36/115/16 34/113/15 +f 37/114/17 38/117/17 36/115/16 +f 39/116/2 40/144/2 38/117/17 +f 41/35/18 42/31/18 40/33/1 +f 43/30/19 44/26/19 42/31/18 +f 45/29/2 46/27/2 44/26/19 +f 47/28/10 48/145/10 50/118/11 +f 48/119/10 47/85/10 53/38/7 +f 51/34/20 52/123/20 54/121/7 +f 55/122/21 56/124/21 52/123/20 +f 56/124/21 55/122/21 28/125/22 +f 57/127/23 58/130/23 60/128/24 +f 58/130/23 57/127/23 63/131/25 +f 61/133/17 62/139/17 64/132/25 +f 66/134/12 65/146/12 59/129/24 +f 68/135/14 67/143/14 65/136/12 +f 69/138/16 70/141/16 62/139/17 +f 71/140/15 72/142/15 70/141/16 +f 72/142/15 71/140/15 67/143/14 +o Stock +v -0.375000 -0.375000 -5.562500 +v -0.375000 -0.625000 -5.437500 +v -0.375000 -1.375000 -8.000000 +v -0.375000 0.000000 -5.562500 +v -0.375000 -0.125000 -8.000000 +v 0.375000 -0.375000 -5.562500 +v 0.375000 -0.625000 -5.437500 +v 0.375000 -1.375000 -8.000000 +v 0.375000 0.000000 -5.562500 +v 0.375000 -0.125000 -8.000000 +v 0.250000 0.000000 -8.000000 +v -0.250000 0.000000 -8.000000 +v -0.250000 -1.500000 -8.000000 +v 0.250000 -1.500000 -8.000000 +v 0.250000 -0.750000 -5.375000 +v -0.250000 -0.750000 -5.375000 +v 0.250000 0.125000 -5.562500 +v -0.250000 0.125000 -5.562500 +vt 0.803279 0.803738 +vt 0.721311 0.803738 +vt 0.803279 0.691589 +vt 0.520492 0.691589 +vt 0.520492 0.803738 +vt 0.495902 0.710280 +vt 0.545082 0.691589 +vt 0.553279 0.710280 +vt 0.713115 0.785047 +vt 0.713115 0.710280 +vt 0.721311 0.691589 +vt 0.811475 0.710280 +vt 0.811475 0.785047 +vt 0.504098 0.803738 +vt 0.495902 0.785047 +vt 0.504098 0.691589 +vt 0.553279 0.785047 +vt 0.545082 0.803738 +vt 0.553279 0.813084 +vt 0.536885 0.392523 +vt 0.713115 0.364486 +vt 0.713115 0.392523 +vt 0.553279 0.682243 +vt 0.713115 0.682243 +vt 0.536885 0.467290 +vt 0.713115 0.495327 +vt 0.536885 0.495327 +vt 0.713115 1.000000 +vt 0.553279 0.869159 +vt 0.713115 0.813084 +vt 0.553279 0.626168 +vt 0.545082 0.588785 +vt 0.536885 0.364486 +vt 0.713115 0.467290 +vt 0.545082 0.906542 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 0.4472 0.8944 +vn 0.0000 0.0000 1.0000 +vn -0.3867 0.9210 -0.0472 +vn -0.9193 0.3932 -0.0202 +vn -0.3779 0.9246 -0.0474 +vn -0.3846 -0.8870 0.2557 +vn -0.8923 -0.4340 0.1241 +vn -0.3487 -0.9012 0.2575 +vn 0.3867 0.9210 -0.0472 +vn 0.9193 0.3932 -0.0202 +vn 0.9281 0.3719 -0.0191 +vn 0.3846 -0.8870 0.2557 +vn 0.8923 -0.4340 0.1241 +vn 0.9180 -0.3806 0.1114 +vn 0.3779 0.9246 -0.0474 +vn -1.0000 0.0000 0.0000 +vn -0.9281 0.3719 -0.0191 +vn 1.0000 0.0000 0.0000 +vn -0.9180 -0.3806 0.1114 +vn 0.3487 -0.9012 0.2575 +s off +f 75/147/26 77/148/26 80/149/26 +f 78/150/27 73/151/27 87/152/27 +f 78/150/28 81/153/28 89/154/28 +f 77/148/26 84/155/26 83/156/26 +f 83/156/26 82/157/26 77/148/26 +f 82/157/26 80/149/26 77/148/26 +f 80/149/26 86/158/26 85/159/26 +f 85/159/26 75/147/26 80/149/26 +f 74/160/27 88/161/27 73/151/27 +f 88/161/27 87/152/27 73/151/27 +f 87/152/27 79/162/27 78/150/27 +f 89/154/28 90/163/28 73/151/28 +f 90/163/28 76/164/28 73/151/28 +f 73/151/28 78/150/28 89/154/28 +s 1 +f 84/155/29 76/165/30 90/163/31 +f 88/166/32 75/167/33 85/168/34 +f 83/156/35 81/169/36 82/170/37 +f 87/171/38 80/172/39 79/173/40 +f 89/154/41 84/155/29 90/163/31 +f 85/168/34 87/171/38 88/166/32 +f 75/174/33 73/175/42 77/176/43 +f 80/172/39 78/177/44 79/178/40 +f 78/177/44 82/170/37 81/169/36 +f 77/176/43 73/175/42 76/165/30 +f 84/155/29 77/176/43 76/165/30 +f 88/166/32 74/179/45 75/167/33 +f 83/156/35 89/154/41 81/169/36 +f 87/171/38 86/180/46 80/172/39 +f 89/154/41 83/156/35 84/155/29 +f 85/168/34 86/180/46 87/171/38 +f 75/174/33 74/181/45 73/175/42 +f 80/172/39 82/170/37 78/177/44 +o Shell +v 0.000000 1.625000 -2.375000 +v -0.062500 1.608253 -2.375000 +v -0.108253 1.562500 -2.375000 +v -0.125000 1.500000 -2.375000 +v -0.108253 1.437500 -2.375000 +v -0.062500 1.391747 -2.375000 +v 0.000000 1.375000 -2.375000 +v 0.062500 1.391747 -2.375000 +v 0.108253 1.437500 -2.375000 +v 0.125000 1.500000 -2.375000 +v 0.108253 1.562500 -2.375000 +v 0.062500 1.608253 -2.375000 +v 0.000000 1.625000 -1.625000 +v -0.062500 1.608253 -1.625000 +v -0.108253 1.562500 -1.625000 +v -0.125000 1.500000 -1.625000 +v -0.108253 1.437500 -1.625000 +v -0.062500 1.391747 -1.625000 +v 0.000000 1.375000 -1.625000 +v 0.062500 1.391747 -1.625000 +v 0.108253 1.437500 -1.625000 +v 0.125000 1.500000 -1.625000 +v 0.108253 1.562500 -1.625000 +v 0.062500 1.608253 -1.625000 +v 0.000000 1.640625 -2.375000 +v -0.070312 1.621785 -2.375000 +v -0.121785 1.570312 -2.375000 +v -0.140625 1.500000 -2.375000 +v -0.121785 1.429688 -2.375000 +v -0.070312 1.378215 -2.375000 +v 0.000000 1.359375 -2.375000 +v 0.070312 1.378215 -2.375000 +v 0.121785 1.429688 -2.375000 +v 0.140625 1.500000 -2.375000 +v 0.121785 1.570312 -2.375000 +v 0.070312 1.621785 -2.375000 +v 0.000000 1.640625 -2.437500 +v -0.070312 1.621785 -2.437500 +v -0.121785 1.570312 -2.437500 +v -0.140625 1.500000 -2.437500 +v -0.121785 1.429688 -2.437500 +v -0.070312 1.378215 -2.437500 +v 0.000000 1.359375 -2.437500 +v 0.070312 1.378215 -2.437500 +v 0.121785 1.429688 -2.437500 +v 0.140625 1.500000 -2.437500 +v 0.121785 1.570312 -2.437500 +v 0.070312 1.621785 -2.437500 +vt 0.778689 0.803764 +vt 0.785777 0.813097 +vt 0.778689 0.841096 +vt 0.762295 0.878505 +vt 0.766393 0.869159 +vt 0.766393 0.878505 +vt 0.762295 0.822430 +vt 0.766393 0.831776 +vt 0.762295 0.831776 +vt 0.762295 0.906542 +vt 0.766393 0.915888 +vt 0.762295 0.915888 +vt 0.766393 0.887850 +vt 0.762295 0.887850 +vt 0.762295 0.841121 +vt 0.766393 0.841121 +vt 0.762295 0.813084 +vt 0.766393 0.803738 +vt 0.766393 0.813084 +vt 0.762295 0.897196 +vt 0.766393 0.897196 +vt 0.766393 0.850467 +vt 0.762295 0.850467 +vt 0.762295 0.859813 +vt 0.762295 0.869159 +vt 0.766393 0.822430 +vt 0.766393 0.906542 +vt 0.766393 0.859813 +vt 0.787992 0.831765 +vt 0.795082 0.803760 +vt 0.802173 0.831765 +vt 0.774596 0.838595 +vt 0.771600 0.813097 +vt 0.771600 0.831763 +vt 0.770503 0.822430 +vt 0.774596 0.806265 +vt 0.782781 0.806265 +vt 0.786874 0.822430 +vt 0.785777 0.831763 +vt 0.782781 0.838595 +vt 0.762295 0.803738 +vt 0.799176 0.838599 +vt 0.795082 0.841100 +vt 0.790989 0.838599 +vt 0.786895 0.822430 +vt 0.787992 0.813095 +vt 0.790989 0.806261 +vt 0.799176 0.806261 +vt 0.802173 0.813095 +vt 0.803269 0.822430 +vt 0.713115 0.850467 +vt 0.713115 0.897196 +vt 0.713115 0.906542 +vt 0.713115 0.803738 +vt 0.713115 0.813084 +vt 0.713115 0.859813 +vt 0.713115 0.822430 +vt 0.713115 0.869159 +vt 0.713115 0.831776 +vt 0.713115 0.878505 +vt 0.713115 0.841121 +vt 0.713115 0.887850 +vt 0.770492 0.813084 +vt 0.770492 0.897196 +vt 0.770492 0.850467 +vt 0.770492 0.869159 +vt 0.770492 0.822430 +vt 0.770492 0.906542 +vt 0.770492 0.859813 +vt 0.770492 0.878505 +vt 0.770492 0.831776 +vt 0.770492 0.915888 +vt 0.770492 0.887850 +vt 0.770492 0.841121 +vt 0.713115 0.915888 +vt 0.770492 0.803738 vn 0.0000 0.0000 1.0000 vn 0.0000 0.0000 -1.0000 +vn -0.0000 1.0000 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.8660 -0.5000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.5000 -0.8660 0.0000 +vn 0.8660 -0.5000 0.0000 +vn -0.5000 0.8660 0.0000 +vn 1.0000 0.0000 0.0000 +vn -0.8660 0.5000 0.0000 +vn 0.8660 0.5000 0.0000 +vn -1.0000 -0.0000 0.0000 s off -f 153/399/27 154/400/27 155/401/27 -f 154/400/27 156/402/27 155/401/27 -f 157/403/28 158/404/28 159/405/28 -f 158/404/28 160/406/28 159/405/28 -f 157/403/29 159/407/29 155/401/29 -f 159/407/29 153/408/29 155/401/29 -f 160/409/30 158/404/30 154/410/30 -f 158/404/30 156/402/30 154/410/30 -f 159/411/31 160/412/31 153/413/31 -f 160/412/31 154/414/31 153/413/31 -f 155/415/32 156/416/32 157/417/32 -f 156/416/32 158/418/32 157/417/32 -f 161/419/27 162/420/27 163/421/27 -f 162/420/27 164/422/27 163/421/27 -f 165/423/28 166/424/28 167/425/28 -f 166/424/28 168/426/28 167/425/28 -f 165/423/33 167/427/33 163/421/33 -f 167/427/33 161/428/33 163/421/33 -f 168/429/34 166/424/34 162/430/34 -f 166/424/34 164/422/34 162/430/34 -f 167/431/35 168/432/35 161/433/35 -f 168/432/35 162/434/35 161/433/35 -f 163/435/36 164/436/36 165/437/36 -f 164/436/36 166/438/36 165/437/36 -f 169/439/27 170/440/27 171/441/27 -f 170/440/27 172/442/27 171/441/27 -f 173/443/28 174/444/28 175/445/28 -f 174/444/28 176/446/28 175/445/28 -f 173/443/29 175/447/29 171/441/29 -f 175/447/29 169/448/29 171/441/29 -f 176/449/30 174/444/30 170/450/30 -f 174/444/30 172/442/30 170/450/30 -f 175/451/31 176/452/31 169/453/31 -f 176/452/31 170/454/31 169/453/31 -f 171/455/32 172/456/32 173/457/32 -f 172/456/32 174/458/32 173/457/32 -f 177/459/27 178/460/27 179/461/27 -f 178/460/27 180/462/27 179/461/27 -f 181/463/28 182/464/28 183/465/28 -f 182/464/28 184/466/28 183/465/28 -f 181/463/37 183/467/37 179/461/37 -f 183/467/37 177/468/37 179/461/37 -f 184/469/38 182/464/38 178/470/38 -f 182/464/38 180/462/38 178/470/38 -f 183/471/39 184/472/39 177/473/39 -f 184/472/39 178/474/39 177/473/39 -f 179/475/40 180/476/40 181/477/40 -f 180/476/40 182/478/40 181/477/40 -f 185/479/27 186/480/27 187/481/27 -f 186/480/27 188/482/27 187/481/27 -f 189/483/28 190/484/28 191/485/28 -f 190/484/28 192/486/28 191/485/28 -f 189/483/31 191/487/31 187/481/31 -f 191/487/31 185/488/31 187/481/31 -f 192/489/32 190/484/32 186/490/32 -f 190/484/32 188/482/32 186/490/32 -f 191/491/30 192/492/30 185/493/30 -f 192/492/30 186/494/30 185/493/30 -f 187/495/29 188/496/29 189/497/29 -f 188/496/29 190/498/29 189/497/29 -f 193/499/27 194/500/27 195/501/27 -f 194/500/27 196/502/27 195/501/27 -f 197/503/28 198/504/28 199/505/28 -f 198/504/28 200/506/28 199/505/28 -f 197/503/41 199/507/41 195/501/41 -f 199/507/41 193/508/41 195/501/41 -f 200/509/42 198/504/42 194/510/42 -f 198/504/42 196/502/42 194/510/42 -f 199/511/43 200/512/43 193/513/43 -f 200/512/43 194/514/43 193/513/43 -f 195/515/44 196/516/44 197/517/44 -f 196/516/44 198/518/44 197/517/44 -f 201/519/27 202/520/27 203/521/27 -f 202/520/27 204/522/27 203/521/27 -f 205/523/28 206/524/28 207/525/28 -f 206/524/28 208/526/28 207/525/28 -f 205/523/37 207/527/37 203/521/37 -f 207/527/37 201/528/37 203/521/37 -f 208/529/38 206/524/38 202/530/38 -f 206/524/38 204/522/38 202/530/38 -f 207/531/39 208/532/39 201/533/39 -f 208/532/39 202/534/39 201/533/39 -f 203/535/40 204/536/40 205/537/40 -f 204/536/40 206/538/40 205/537/40 -f 209/539/27 210/540/27 211/541/27 -f 210/540/27 212/542/27 211/541/27 -f 213/543/28 214/544/28 215/545/28 -f 214/544/28 216/546/28 215/545/28 -f 213/543/33 215/547/33 211/541/33 -f 215/547/33 209/548/33 211/541/33 -f 216/549/34 214/544/34 210/550/34 -f 214/544/34 212/542/34 210/550/34 -f 215/551/35 216/552/35 209/553/35 -f 216/552/35 210/554/35 209/553/35 -f 211/555/36 212/556/36 213/557/36 -f 212/556/36 214/558/36 213/557/36 -f 217/559/27 218/560/27 219/561/27 -f 218/560/27 220/562/27 219/561/27 -f 221/563/28 222/564/28 223/565/28 -f 222/564/28 224/566/28 223/565/28 -f 221/563/37 223/567/37 219/561/37 -f 223/567/37 217/568/37 219/561/37 -f 224/569/38 222/564/38 218/570/38 -f 222/564/38 220/562/38 218/570/38 -f 223/571/39 224/572/39 217/573/39 -f 224/572/39 218/574/39 217/573/39 -f 219/575/40 220/576/40 221/577/40 -f 220/576/40 222/578/40 221/577/40 -f 225/579/27 226/580/27 227/581/27 -f 226/580/27 228/582/27 227/581/27 -f 229/583/28 230/584/28 231/585/28 -f 230/584/28 232/586/28 231/585/28 -f 229/583/41 231/587/41 227/581/41 -f 231/587/41 225/588/41 227/581/41 -f 232/589/42 230/584/42 226/590/42 -f 230/584/42 228/582/42 226/590/42 -f 231/591/43 232/592/43 225/593/43 -f 232/592/43 226/594/43 225/593/43 -f 227/595/44 228/596/44 229/597/44 -f 228/596/44 230/598/44 229/597/44 -f 233/599/27 234/600/27 235/601/27 -f 234/600/27 236/602/27 235/601/27 -f 237/603/28 238/604/28 239/605/28 -f 238/604/28 240/606/28 239/605/28 -f 237/603/29 239/607/29 235/601/29 -f 239/607/29 233/608/29 235/601/29 -f 240/609/30 238/604/30 234/610/30 -f 238/604/30 236/602/30 234/610/30 -f 239/611/31 240/612/31 233/613/31 -f 240/612/31 234/614/31 233/613/31 -f 235/615/32 236/616/32 237/617/32 -f 236/616/32 238/618/32 237/617/32 -f 241/619/27 242/620/27 243/621/27 -f 242/620/27 244/622/27 243/621/27 -f 245/623/28 246/624/28 247/625/28 -f 246/624/28 248/626/28 247/625/28 -f 245/623/37 247/627/37 243/621/37 -f 247/627/37 241/628/37 243/621/37 -f 248/629/38 246/624/38 242/630/38 -f 246/624/38 244/622/38 242/630/38 -f 247/631/39 248/632/39 241/633/39 -f 248/632/39 242/634/39 241/633/39 -f 243/635/40 244/636/40 245/637/40 -f 244/636/40 246/638/40 245/637/40 -f 249/639/27 250/640/27 251/641/27 -f 250/640/27 252/642/27 251/641/27 -f 253/643/28 254/644/28 255/645/28 -f 254/644/28 256/646/28 255/645/28 -f 253/643/33 255/647/33 251/641/33 -f 255/647/33 249/648/33 251/641/33 -f 256/649/34 254/644/34 250/650/34 -f 254/644/34 252/642/34 250/650/34 -f 255/651/35 256/652/35 249/653/35 -f 256/652/35 250/654/35 249/653/35 -f 251/655/36 252/656/36 253/657/36 -f 252/656/36 254/658/36 253/657/36 -f 257/659/27 258/660/27 259/661/27 -f 258/660/27 260/662/27 259/661/27 -f 261/663/28 262/664/28 263/665/28 -f 262/664/28 264/666/28 263/665/28 -f 261/663/37 263/667/37 259/661/37 -f 263/667/37 257/668/37 259/661/37 -f 264/669/38 262/664/38 258/670/38 -f 262/664/38 260/662/38 258/670/38 -f 263/671/39 264/672/39 257/673/39 -f 264/672/39 258/674/39 257/673/39 -f 259/675/40 260/676/40 261/677/40 -f 260/676/40 262/678/40 261/677/40 -f 265/679/27 266/680/27 267/681/27 -f 266/680/27 268/682/27 267/681/27 -f 269/683/28 270/684/28 271/685/28 -f 270/684/28 272/686/28 271/685/28 -f 269/683/33 271/687/33 267/681/33 -f 271/687/33 265/688/33 267/681/33 -f 272/689/34 270/684/34 266/690/34 -f 270/684/34 268/682/34 266/690/34 -f 271/691/35 272/692/35 265/693/35 -f 272/692/35 266/694/35 265/693/35 -f 267/695/36 268/696/36 269/697/36 -f 268/696/36 270/698/36 269/697/36 -f 273/699/27 274/700/27 275/701/27 -f 274/700/27 276/702/27 275/701/27 -f 277/703/28 278/704/28 279/705/28 -f 278/704/28 280/706/28 279/705/28 -f 277/703/29 279/707/29 275/701/29 -f 279/707/29 273/708/29 275/701/29 -f 280/709/30 278/704/30 274/710/30 -f 278/704/30 276/702/30 274/710/30 -f 279/711/31 280/712/31 273/713/31 -f 280/712/31 274/714/31 273/713/31 -f 275/715/32 276/716/32 277/717/32 -f 276/716/32 278/718/32 277/717/32 -f 281/719/27 282/720/27 283/721/27 -f 282/720/27 284/722/27 283/721/27 -f 285/723/28 286/724/28 287/725/28 -f 286/724/28 288/726/28 287/725/28 -f 285/723/37 287/727/37 283/721/37 -f 287/727/37 281/728/37 283/721/37 -f 288/729/38 286/724/38 282/730/38 -f 286/724/38 284/722/38 282/730/38 -f 287/731/39 288/732/39 281/733/39 -f 288/732/39 282/734/39 281/733/39 -f 283/735/40 284/736/40 285/737/40 -f 284/736/40 286/738/40 285/737/40 -f 289/739/27 290/740/27 291/741/27 -f 290/740/27 292/742/27 291/741/27 -f 293/743/28 294/744/28 295/745/28 -f 294/744/28 296/746/28 295/745/28 -f 293/743/37 295/747/37 291/741/37 -f 295/747/37 289/748/37 291/741/37 -f 296/749/38 294/744/38 290/750/38 -f 294/744/38 292/742/38 290/750/38 -f 295/751/39 296/752/39 289/753/39 -f 296/752/39 290/754/39 289/753/39 -f 291/755/40 292/756/40 293/757/40 -f 292/756/40 294/758/40 293/757/40 -f 297/759/27 298/760/27 299/761/27 -f 298/760/27 300/762/27 299/761/27 -f 301/763/28 302/764/28 303/765/28 -f 302/764/28 304/766/28 303/765/28 -f 301/763/31 303/767/31 299/761/31 -f 303/767/31 297/768/31 299/761/31 -f 304/769/32 302/764/32 298/770/32 -f 302/764/32 300/762/32 298/770/32 -f 303/771/30 304/772/30 297/773/30 -f 304/772/30 298/774/30 297/773/30 -f 299/775/29 300/776/29 301/777/29 -f 300/776/29 302/778/29 301/777/29 -f 305/779/27 306/780/27 307/781/27 -f 306/780/27 308/782/27 307/781/27 -f 309/783/28 310/784/28 311/785/28 -f 310/784/28 312/786/28 311/785/28 -f 309/783/37 311/787/37 307/781/37 -f 311/787/37 305/788/37 307/781/37 -f 312/789/38 310/784/38 306/790/38 -f 310/784/38 308/782/38 306/790/38 -f 311/791/39 312/792/39 305/793/39 -f 312/792/39 306/794/39 305/793/39 -f 307/795/40 308/796/40 309/797/40 -f 308/796/40 310/798/40 309/797/40 +f 109/182/47 111/183/47 103/184/47 +f 93/185/47 116/186/47 117/187/47 +f 99/188/47 124/189/47 100/190/47 +f 96/191/47 121/192/47 97/193/47 +f 93/185/47 118/194/47 94/195/47 +f 101/196/47 124/189/47 125/197/47 +f 98/198/47 121/199/47 122/200/47 +f 95/201/47 118/194/47 119/202/47 +f 101/196/47 126/203/47 102/204/47 +f 91/205/47 116/186/47 92/206/47 +f 98/198/47 123/207/47 99/188/47 +f 96/191/47 119/202/47 120/208/47 +f 91/205/47 126/203/47 115/209/47 +f 137/210/48 133/211/48 129/212/48 +f 103/184/47 104/213/47 107/214/47 +f 104/213/47 105/215/47 107/214/47 +f 105/215/47 106/216/47 107/214/47 +f 107/214/47 108/217/47 109/182/47 +f 109/182/47 110/218/47 111/183/47 +f 111/183/47 112/219/47 113/220/47 +f 113/220/47 114/221/47 111/183/47 +f 114/221/47 103/184/47 111/183/47 +f 107/214/47 109/182/47 103/184/47 +f 93/185/47 92/206/47 116/186/47 +f 99/188/47 123/207/47 124/189/47 +f 96/191/47 120/208/47 121/192/47 +f 93/185/47 117/187/47 118/194/47 +f 101/196/47 100/190/47 124/189/47 +f 98/198/47 97/222/47 121/199/47 +f 95/201/47 94/195/47 118/194/47 +f 101/196/47 125/197/47 126/203/47 +f 91/205/47 115/209/47 116/186/47 +f 98/198/47 122/200/47 123/207/47 +f 96/191/47 95/201/47 119/202/47 +f 91/205/47 102/204/47 126/203/47 +f 129/212/48 128/223/48 127/224/48 +f 127/224/48 138/225/48 129/212/48 +f 138/225/48 137/210/48 129/212/48 +f 137/210/48 136/226/48 133/211/48 +f 136/226/48 135/227/48 133/211/48 +f 135/227/48 134/228/48 133/211/48 +f 133/211/48 132/229/48 131/230/48 +f 131/230/48 130/231/48 133/211/48 +f 130/231/48 129/212/48 133/211/48 +s 1 +f 91/205/49 114/232/50 102/204/50 +f 96/191/51 107/233/52 95/201/52 +f 97/193/53 108/234/51 96/191/51 +f 98/198/54 109/235/53 97/222/53 +f 99/188/55 110/236/54 98/198/54 +f 92/206/56 103/237/49 91/205/49 +f 100/190/57 111/238/55 99/188/55 +f 93/185/58 104/239/56 92/206/56 +f 101/196/59 112/240/57 100/190/57 +f 94/195/60 105/241/58 93/185/58 +f 102/204/50 113/242/59 101/196/59 +f 95/201/52 106/243/60 94/195/60 +f 121/199/53 134/244/54 122/200/54 +f 118/194/60 131/245/52 119/202/52 +f 125/197/59 138/246/50 126/203/50 +f 115/209/49 128/247/56 116/186/56 +f 122/200/54 135/248/55 123/207/55 +f 119/202/52 132/249/51 120/208/51 +f 126/203/50 127/250/49 115/209/49 +f 116/186/56 129/251/58 117/187/58 +f 123/207/55 136/252/57 124/189/57 +f 120/208/51 133/253/53 121/192/53 +f 117/187/58 130/254/60 118/194/60 +f 124/189/57 137/255/59 125/197/59 +f 91/205/49 103/237/49 114/232/50 +f 96/191/51 108/234/51 107/233/52 +f 97/193/53 109/256/53 108/234/51 +f 98/198/54 110/236/54 109/235/53 +f 99/188/55 111/238/55 110/236/54 +f 92/206/56 104/239/56 103/237/49 +f 100/190/57 112/240/57 111/238/55 +f 93/185/58 105/241/58 104/239/56 +f 101/196/59 113/242/59 112/240/57 +f 94/195/60 106/243/60 105/241/58 +f 102/204/50 114/232/50 113/242/59 +f 95/201/52 107/233/52 106/243/60 +f 121/199/53 133/257/53 134/244/54 +f 118/194/60 130/254/60 131/245/52 +f 125/197/59 137/255/59 138/246/50 +f 115/209/49 127/250/49 128/247/56 +f 122/200/54 134/244/54 135/248/55 +f 119/202/52 131/245/52 132/249/51 +f 126/203/50 138/246/50 127/250/49 +f 116/186/56 128/247/56 129/251/58 +f 123/207/55 135/248/55 136/252/57 +f 120/208/51 132/249/51 133/253/53 +f 117/187/58 129/251/58 130/254/60 +f 124/189/57 136/252/57 137/255/59 +o Barrel +v 0.000000 1.187500 8.000000 +v -0.093750 1.162380 8.000000 +v -0.162380 1.093750 8.000000 +v -0.187500 1.000000 8.000000 +v -0.162380 0.906250 8.000000 +v -0.093750 0.837620 8.000000 +v 0.000000 0.812500 8.000000 +v 0.093750 0.837620 8.000000 +v 0.162380 0.906250 8.000000 +v 0.187500 1.000000 8.000000 +v 0.162380 1.093750 8.000000 +v 0.093750 1.162380 8.000000 +v 0.000000 1.187500 3.750000 +v -0.093750 1.162380 3.750000 +v -0.162380 1.093750 3.750000 +v -0.187500 1.000000 3.750000 +v -0.162380 0.906250 3.750000 +v -0.093750 0.837620 3.750000 +v 0.000000 0.812500 3.750000 +v 0.093750 0.837620 3.750000 +v 0.162380 0.906250 3.750000 +v 0.187500 1.000000 3.750000 +v 0.162380 1.093750 3.750000 +v 0.093750 1.162380 3.750000 +v 0.000000 1.125000 8.000000 +v -0.062500 1.108253 8.000000 +v -0.108253 1.062500 8.000000 +v -0.125000 1.000000 8.000000 +v -0.108253 0.937500 8.000000 +v -0.062500 0.891747 8.000000 +v 0.000000 0.875000 8.000000 +v 0.062500 0.891747 8.000000 +v 0.108253 0.937500 8.000000 +v 0.125000 1.000000 8.000000 +v 0.108253 1.062500 8.000000 +v 0.062500 1.108253 8.000000 +v 0.000000 1.125000 7.000000 +v -0.062500 1.108253 7.000000 +v -0.108253 1.062500 7.000000 +v -0.125000 1.000000 7.000000 +v -0.108253 0.937500 7.000000 +v -0.062500 0.891747 7.000000 +v 0.000000 0.875000 7.000000 +v 0.062500 0.891747 7.000000 +v 0.108253 0.937500 7.000000 +v 0.125000 1.000000 7.000000 +v 0.108253 1.062500 7.000000 +v 0.062500 1.108253 7.000000 +vt 0.004098 0.224299 +vt 0.000000 0.205607 +vt 0.004098 0.205607 +vt 0.004098 -0.000000 +vt 0.000000 0.009346 +vt 0.000000 -0.000000 +vt 0.004098 0.037383 +vt 0.000000 0.018692 +vt 0.004098 0.018692 +vt 0.004098 0.056075 +vt 0.000000 0.037383 +vt 0.000000 0.065421 +vt 0.000000 0.056075 +vt 0.004098 0.093458 +vt 0.000000 0.074766 +vt 0.004098 0.074766 +vt 0.000000 0.102804 +vt 0.000000 0.093458 +vt 0.004098 0.130841 +vt 0.000000 0.112150 +vt 0.004098 0.112150 +vt 0.000000 0.140187 +vt 0.000000 0.130841 +vt 0.004098 0.168224 +vt 0.000000 0.149533 +vt 0.004098 0.149533 +vt 0.000000 0.177570 +vt 0.000000 0.168224 +vt 0.004098 0.186916 +vt 0.000000 0.196262 +vt 0.000000 0.186916 +vt 0.073770 0.224346 +vt 0.080851 0.233668 +vt 0.073770 0.261635 +vt 0.000000 0.214953 +vt 0.000000 0.028037 +vt 0.000000 0.046729 +vt 0.000000 0.084112 +vt 0.000000 0.121495 +vt 0.000000 0.158879 +vt 0.069682 0.259137 +vt 0.066690 0.233668 +vt 0.066690 0.252313 +vt 0.065594 0.242991 +vt 0.069682 0.226844 +vt 0.077859 0.226844 +vt 0.081947 0.242991 +vt 0.080851 0.252313 +vt 0.077858 0.259137 +vt 0.282787 0.149533 +vt 0.282787 0.130841 +vt 0.282787 0.018692 +vt 0.282787 0.074766 +vt 0.282787 0.205607 +vt 0.282787 0.093458 +vt 0.282787 0.112150 +vt 0.282787 0.168224 +vt 0.282787 -0.000000 +vt 0.282787 0.056075 +vt 0.282787 0.037383 +vt 0.282787 0.186916 +vt -0.000000 0.252336 +vt 0.065574 0.261682 +vt -0.000000 0.261682 +vt -0.000000 0.299065 +vt 0.065574 0.308411 +vt -0.000000 0.308411 +vt -0.000000 0.327103 +vt 0.065574 0.336449 +vt -0.000000 0.336449 +vt -0.000000 0.242991 +vt 0.065574 0.252336 +vt -0.000000 0.289720 +vt 0.065574 0.299065 +vt -0.000000 0.271028 +vt 0.065574 0.280374 +vt -0.000000 0.280374 +vt -0.000000 0.317757 +vt 0.065574 0.327103 +vt -0.000000 0.233645 +vt 0.065574 0.242991 +vt 0.065574 0.289720 +vt 0.065574 0.271028 +vt 0.065574 0.317757 +vt -0.000000 0.224299 +vt 0.065574 0.233645 +vt 0.282787 0.224299 +vt 0.065574 0.224299 +vn 0.0000 0.0000 1.0000 +vn -0.8660 0.5000 0.0000 +vn -1.0000 -0.0000 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.5000 -0.8660 0.0000 +vn 0.8660 -0.5000 0.0000 +vn 0.8660 0.5000 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5000 -0.8660 0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.0000 1.0000 0.0000 +vn -0.8660 -0.5000 0.0000 +vn 1.0000 -0.0000 0.0000 +s off +f 145/258/61 168/259/61 144/260/61 +f 145/261/61 170/262/61 169/263/61 +f 147/264/61 170/265/61 146/266/61 +f 148/267/61 171/268/61 147/264/61 +f 148/267/61 173/269/61 172/270/61 +f 150/271/61 173/272/61 149/273/61 +f 150/271/61 163/274/61 174/275/61 +f 140/276/61 163/277/61 139/278/61 +f 140/276/61 165/279/61 164/280/61 +f 142/281/61 165/282/61 141/283/61 +f 142/281/61 167/284/61 166/285/61 +f 143/286/61 168/287/61 167/288/61 +f 181/289/61 183/290/61 175/291/61 +f 145/258/61 169/292/61 168/259/61 +f 145/261/61 146/266/61 170/262/61 +f 147/264/61 171/293/61 170/265/61 +f 148/267/61 172/294/61 171/268/61 +f 148/267/61 149/273/61 173/269/61 +f 150/271/61 174/295/61 173/272/61 +f 150/271/61 139/278/61 163/274/61 +f 140/276/61 164/296/61 163/277/61 +f 140/276/61 141/283/61 165/279/61 +f 142/281/61 166/297/61 165/282/61 +f 142/281/61 143/286/61 167/284/61 +f 143/286/61 144/260/61 168/287/61 +f 175/291/61 176/298/61 179/299/61 +f 176/298/61 177/300/61 179/299/61 +f 177/300/61 178/301/61 179/299/61 +f 179/299/61 180/302/61 181/289/61 +f 181/289/61 182/303/61 183/290/61 +f 183/290/61 184/304/61 185/305/61 +f 185/305/61 186/306/61 183/290/61 +f 186/306/61 175/291/61 183/290/61 +f 179/299/61 181/289/61 175/291/61 +s 1 +f 153/307/62 142/281/63 141/283/62 +f 152/308/64 141/283/62 140/276/64 +f 158/309/65 147/264/66 146/266/65 +f 161/310/67 150/271/68 149/273/67 +f 156/311/69 145/258/70 144/260/69 +f 162/312/68 139/278/71 150/271/68 +f 151/313/71 140/276/64 139/278/71 +f 154/314/63 143/286/72 142/281/63 +f 157/315/70 146/266/65 145/261/70 +f 160/316/73 149/273/67 148/267/73 +f 159/317/66 148/267/73 147/264/66 +f 155/318/72 144/260/69 143/286/72 +f 166/319/73 177/320/66 165/321/66 +f 173/322/72 184/323/63 172/324/63 +f 170/325/64 181/326/71 169/327/71 +f 167/328/67 178/329/73 166/319/73 +f 174/330/69 185/331/72 173/322/72 +f 164/332/65 175/333/70 163/334/70 +f 171/335/62 182/336/64 170/325/64 +f 168/337/68 179/338/67 167/328/67 +f 163/334/70 186/339/69 174/330/69 +f 165/321/66 176/340/65 164/332/65 +f 172/324/63 183/341/62 171/335/62 +f 169/342/71 180/343/68 168/337/68 +f 153/307/62 154/314/63 142/281/63 +f 152/308/64 153/307/62 141/283/62 +f 158/309/65 159/317/66 147/264/66 +f 161/310/67 162/312/68 150/271/68 +f 156/311/69 157/344/70 145/258/70 +f 162/312/68 151/313/71 139/278/71 +f 151/313/71 152/308/64 140/276/64 +f 154/314/63 155/318/72 143/286/72 +f 157/315/70 158/309/65 146/266/65 +f 160/316/73 161/310/67 149/273/67 +f 159/317/66 160/316/73 148/267/73 +f 155/318/72 156/311/69 144/260/69 +f 166/319/73 178/329/73 177/320/66 +f 173/322/72 185/331/72 184/323/63 +f 170/325/64 182/336/64 181/326/71 +f 167/328/67 179/338/67 178/329/73 +f 174/330/69 186/339/69 185/331/72 +f 164/332/65 176/340/65 175/333/70 +f 171/335/62 183/341/62 182/336/64 +f 168/337/68 180/343/68 179/338/67 +f 163/334/70 175/333/70 186/339/69 +f 165/321/66 177/320/66 176/340/65 +f 172/324/63 184/323/63 183/341/62 +f 169/342/71 181/345/71 180/343/68 o Gun -v 0.032464 0.062345 0.555958 -v 0.032464 -0.000155 0.555958 -v 0.032464 0.062345 0.446583 -v 0.032464 -0.000155 0.446583 -v -0.042536 0.062345 0.446583 -v -0.042536 -0.000155 0.446583 -v -0.042536 0.062345 0.555958 -v -0.042536 -0.000155 0.555958 -v 0.032464 0.060031 0.568015 -v 0.032464 0.016725 0.550077 -v 0.032464 0.101887 0.466966 -v 0.032464 0.058581 0.449028 -v -0.042536 0.101887 0.466966 -v -0.042536 0.058581 0.449028 -v -0.042536 0.060031 0.568015 -v -0.042536 0.016725 0.550077 -v 0.032464 0.153125 0.468417 -v 0.032464 0.080947 0.498314 -v 0.032464 0.117248 0.381803 -v 0.032464 0.045070 0.411700 -v -0.042536 0.117248 0.381803 -v -0.042536 0.045070 0.411700 -v -0.042536 0.153125 0.468417 -v -0.042536 0.080947 0.498314 -v 0.032464 0.153125 0.468416 -v 0.032464 0.121875 0.468416 -v 0.032464 0.153125 0.359041 -v 0.032464 0.121875 0.359041 -v -0.042536 0.153125 0.359041 -v -0.042536 0.121875 0.359041 -v -0.042536 0.153125 0.468416 -v -0.042536 0.121875 0.468416 -v 0.032464 0.153125 0.171541 -v 0.032464 0.121875 0.171541 -v 0.032464 0.153125 0.124666 -v 0.032464 0.121875 0.124666 -v -0.042536 0.153125 0.124666 -v -0.042536 0.121875 0.124666 -v -0.042536 0.153125 0.171541 -v -0.042536 0.121875 0.171541 -v -0.015852 0.152219 0.468416 -v -0.019440 0.143558 0.468416 -v -0.015852 0.152219 0.124666 -v -0.019440 0.143558 0.124666 -v -0.038949 0.161786 0.124666 -v -0.042537 0.153125 0.124666 -v -0.038949 0.161786 0.468416 -v -0.042537 0.153125 0.468416 -v -0.014642 0.150738 0.468416 -v -0.021271 0.144109 0.468416 -v -0.014642 0.150738 0.124666 -v -0.021271 0.144109 0.124666 -v -0.032320 0.168416 0.124666 -v -0.038949 0.161786 0.124666 -v -0.032320 0.168416 0.468416 -v -0.038949 0.161786 0.468416 -v -0.023658 0.172003 0.468416 -v -0.014091 0.148906 0.468416 -v -0.023658 0.172003 0.124666 -v -0.014091 0.148906 0.124666 -v -0.032320 0.168415 0.124666 -v -0.022753 0.145318 0.124666 -v -0.032320 0.168415 0.468416 -v -0.022753 0.145318 0.468416 -v 0.001342 0.172003 0.468416 -v 0.001342 0.147003 0.468416 -v 0.001342 0.172003 0.124666 -v 0.001342 0.147003 0.124666 -v -0.023658 0.172003 0.124666 -v -0.023658 0.147003 0.124666 -v -0.023658 0.172003 0.468416 -v -0.023658 0.147003 0.468416 -v 0.013586 0.172003 0.468416 -v 0.013586 0.147003 0.468416 -v 0.013586 0.172003 0.124666 -v 0.013586 0.147003 0.124666 -v -0.011414 0.172003 0.124666 -v -0.011414 0.147003 0.124666 -v -0.011414 0.172003 0.468416 -v -0.011414 0.147003 0.468416 -v 0.028876 0.161786 0.468416 -v 0.032463 0.153125 0.468416 -v 0.028876 0.161786 0.124666 -v 0.032463 0.153125 0.124666 -v 0.005779 0.152219 0.124666 -v 0.009366 0.143558 0.124666 -v 0.005779 0.152219 0.468416 -v 0.009366 0.143558 0.468416 -v 0.022247 0.168416 0.468416 -v 0.028876 0.161786 0.468416 -v 0.022247 0.168416 0.124666 -v 0.028876 0.161786 0.124666 -v 0.004569 0.150738 0.124666 -v 0.011198 0.144109 0.124666 -v 0.004569 0.150738 0.468416 -v 0.011198 0.144109 0.468416 -v 0.022247 0.168415 0.468416 -v 0.012680 0.145318 0.468416 -v 0.022247 0.168415 0.124666 -v 0.012680 0.145318 0.124666 -v 0.013585 0.172003 0.124666 -v 0.004018 0.148906 0.124666 -v 0.013585 0.172003 0.468416 -v 0.004018 0.148906 0.468416 -v 0.032464 0.121211 0.171541 -v 0.032464 0.011836 0.171541 -v 0.032464 0.121211 0.124666 -v 0.032464 0.011836 0.124666 -v -0.042536 0.121211 0.124666 -v -0.042536 0.011836 0.124666 -v -0.042536 0.121211 0.171541 -v -0.042536 0.011836 0.171541 -v 0.001214 0.136836 0.359041 -v 0.001214 0.105586 0.359041 -v 0.001214 0.136836 0.171541 -v 0.001214 0.105586 0.171541 -v -0.042536 0.136836 0.171541 -v -0.042536 0.105586 0.171541 -v -0.042536 0.136836 0.359041 -v -0.042536 0.105586 0.359041 -v 0.032464 0.136836 0.437166 -v 0.032464 0.089961 0.437166 -v 0.032464 0.136836 0.359041 -v 0.032464 0.089961 0.359041 -v -0.042536 0.136836 0.359041 -v -0.042536 0.089961 0.359041 -v -0.042536 0.136836 0.437166 -v -0.042536 0.089961 0.437166 -v 0.032464 0.105586 0.390291 -v 0.032464 0.011836 0.390291 -v 0.032464 0.105586 0.171541 -v 0.032464 0.011836 0.171541 -v -0.042536 0.105586 0.171541 -v -0.042536 0.011836 0.171541 -v -0.042536 0.105586 0.390291 -v -0.042536 0.011836 0.390291 -v 0.032444 0.030200 0.550109 -v 0.032444 -0.041978 0.520212 -v 0.032444 0.101953 0.376882 -v 0.032444 0.029775 0.346985 -v -0.042556 0.101953 0.376882 -v -0.042556 0.029775 0.346985 -v -0.042556 0.030200 0.550109 -v -0.042556 -0.041978 0.520212 -v 0.032464 -0.000155 0.555958 -v 0.032464 -0.033301 0.522812 -v 0.032464 0.021942 0.533861 -v 0.032464 -0.011204 0.500715 -v -0.042536 0.021942 0.533861 -v -0.042536 -0.011204 0.500715 -v -0.042536 -0.000155 0.555958 -v -0.042536 -0.033301 0.522812 -v 0.000124 0.168316 0.364050 -v 0.000124 0.106638 0.364050 -v 0.000124 0.168316 -1.179536 -v 0.000124 0.106638 -1.179536 -v -0.012211 0.168316 -1.179536 -v -0.012211 0.106638 -1.179536 -v -0.012211 0.168316 0.364050 -v -0.012211 0.106638 0.364050 -v 0.011521 0.163595 0.364050 -v -0.012082 0.106613 0.364050 -v 0.011521 0.163595 -1.179536 -v -0.012082 0.106613 -1.179536 -v 0.000124 0.168315 -1.179536 -v -0.023479 0.111333 -1.179536 -v 0.000124 0.168315 0.364050 -v -0.023479 0.111333 0.364050 -v 0.020243 0.155210 0.364050 -v -0.023370 0.111597 0.364050 -v 0.020243 0.155210 -1.179536 -v -0.023370 0.111597 -1.179536 -v 0.011521 0.163932 -1.179536 -v -0.032092 0.120319 -1.179536 -v 0.011521 0.163932 0.364050 -v -0.032092 0.120319 0.364050 -v 0.020243 0.155210 0.364050 -v 0.024963 0.143813 0.364050 -v 0.020243 0.155210 -1.179536 -v 0.024963 0.143813 -1.179536 -v -0.036739 0.131607 -1.179536 -v -0.032019 0.120210 -1.179536 -v -0.036739 0.131607 0.364050 -v -0.032019 0.120210 0.364050 -v 0.024964 0.143813 0.364050 -v 0.024964 0.131477 0.364050 -v 0.024964 0.143813 -1.179536 -v 0.024964 0.131478 -1.179536 -v -0.036714 0.143813 -1.179536 -v -0.036714 0.131478 -1.179536 -v -0.036714 0.143813 0.364050 -v -0.036714 0.131477 0.364050 -v 0.024964 0.131478 0.364050 -v 0.020243 0.120081 0.364050 -v 0.024964 0.131478 -1.179536 -v 0.020243 0.120081 -1.179536 -v -0.032019 0.155081 -1.179536 -v -0.036739 0.143684 -1.179536 -v -0.032019 0.155081 0.364050 -v -0.036739 0.143684 0.364050 -v 0.020243 0.120081 0.364050 -v 0.011520 0.111359 0.364050 -v 0.020243 0.120082 -1.179536 -v 0.011520 0.111359 -1.179536 -v -0.023370 0.163694 -1.179536 -v -0.032092 0.154971 -1.179536 -v -0.023370 0.163694 0.364050 -v -0.032092 0.154971 0.364050 -v -0.012082 0.168341 0.364050 -v 0.011520 0.111359 0.364050 -v -0.012082 0.168341 -1.179536 -v 0.011520 0.111359 -1.179536 -v -0.023479 0.163621 -1.179536 -v 0.000124 0.106639 -1.179536 -v -0.023479 0.163620 0.364050 -v 0.000124 0.106638 0.364050 -v -0.012082 0.090216 0.285925 -v 0.011520 0.033234 0.285925 -v -0.012082 0.090216 -1.023286 -v 0.011520 0.033234 -1.023286 -v -0.023479 0.085496 -1.023286 -v 0.000124 0.028513 -1.023286 -v -0.023479 0.085495 0.285925 -v 0.000124 0.028513 0.285925 -v 0.020243 0.041956 0.285925 -v 0.011520 0.033234 0.285925 -v 0.020243 0.041957 -1.023286 -v 0.011520 0.033234 -1.023286 -v -0.023370 0.085569 -1.023286 -v -0.032092 0.076846 -1.023286 -v -0.023370 0.085569 0.285925 -v -0.032092 0.076846 0.285925 -v 0.024964 0.053353 0.285925 -v 0.020243 0.041956 0.285925 -v 0.024964 0.053353 -1.023286 -v 0.020243 0.041956 -1.023286 -v -0.032019 0.076956 -1.023286 -v -0.036739 0.065559 -1.023286 -v -0.032019 0.076956 0.285925 -v -0.036739 0.065559 0.285925 -v 0.024964 0.065688 0.285925 -v 0.024964 0.053352 0.285925 -v 0.024964 0.065688 -1.023286 -v 0.024964 0.053353 -1.023286 -v -0.036714 0.065688 -1.023286 -v -0.036714 0.053353 -1.023286 -v -0.036714 0.065688 0.285925 -v -0.036714 0.053352 0.285925 -v 0.020243 0.077085 0.285925 -v 0.024963 0.065688 0.285925 -v 0.020243 0.077085 -1.023286 -v 0.024963 0.065688 -1.023286 -v -0.036739 0.053482 -1.023286 -v -0.032019 0.042085 -1.023286 -v -0.036739 0.053482 0.285925 -v -0.032019 0.042085 0.285925 -v 0.020243 0.077085 0.285925 -v -0.023370 0.033472 0.285925 -v 0.020243 0.077085 -1.023286 -v -0.023370 0.033472 -1.023286 -v 0.011521 0.085807 -1.023286 -v -0.032092 0.042194 -1.023286 -v 0.011521 0.085807 0.285925 -v -0.032092 0.042194 0.285925 -v 0.011521 0.085470 0.285925 -v -0.012082 0.028488 0.285925 -v 0.011521 0.085470 -1.023286 -v -0.012082 0.028488 -1.023286 -v 0.000124 0.090190 -1.023286 -v -0.023479 0.033208 -1.023286 -v 0.000124 0.090190 0.285925 -v -0.023479 0.033208 0.285925 -v 0.000124 0.090191 0.285925 -v 0.000124 0.028513 0.285925 -v 0.000124 0.090191 -1.023286 -v 0.000124 0.028513 -1.023286 -v -0.012211 0.090191 -1.023286 -v -0.012211 0.028513 -1.023286 -v -0.012211 0.090191 0.285925 -v -0.012211 0.028513 0.285925 -v -0.012212 0.102587 -0.867036 -v 0.016112 0.034209 -0.867036 -v -0.012212 0.102587 -0.938088 -v 0.016112 0.034209 -0.938088 -v -0.025887 0.096923 -0.938088 -v 0.002436 0.028544 -0.938088 -v -0.025887 0.096923 -0.867036 -v 0.002436 0.028544 -0.867036 -v 0.026579 0.044675 -0.867036 -v 0.016112 0.034208 -0.867036 -v 0.026579 0.044675 -0.938088 -v 0.016112 0.034208 -0.938088 -v -0.025756 0.097010 -0.938088 -v -0.036223 0.086543 -0.938088 -v -0.025756 0.097010 -0.867036 -v -0.036223 0.086543 -0.867036 -v 0.016112 0.096892 -0.867036 -v -0.012211 0.028513 -0.867036 -v 0.016112 0.096892 -0.938088 -v -0.012211 0.028513 -0.938088 -v 0.002436 0.102556 -0.938088 -v -0.025887 0.034178 -0.938088 -v 0.002436 0.102556 -0.867036 -v -0.025887 0.034178 -0.867036 -v 0.026579 0.086830 -0.867036 -v -0.025756 0.034495 -0.867036 -v 0.026579 0.086830 -0.938088 -v -0.025756 0.034495 -0.938088 -v 0.016112 0.097297 -0.938088 -v -0.036223 0.044962 -0.938088 -v 0.016112 0.097297 -0.867036 -v -0.036223 0.044962 -0.867036 -v 0.026579 0.086830 -0.867036 -v 0.032243 0.073154 -0.867036 -v 0.026579 0.086830 -0.938088 -v 0.032243 0.073154 -0.938088 -v -0.041800 0.058507 -0.938088 -v -0.036135 0.044831 -0.938088 -v -0.041800 0.058507 -0.867036 -v -0.036135 0.044831 -0.867036 -v 0.032244 0.073154 -0.867036 -v 0.032244 0.058351 -0.867036 -v 0.032244 0.073154 -0.938088 -v 0.032244 0.058351 -0.938088 -v -0.041769 0.073154 -0.938088 -v -0.041769 0.058351 -0.938088 -v -0.041769 0.073154 -0.867036 -v -0.041769 0.058351 -0.867036 -v 0.032244 0.058351 -0.867036 -v 0.026579 0.044675 -0.867036 -v 0.032244 0.058351 -0.938088 -v 0.026579 0.044675 -0.938088 -v -0.036135 0.086674 -0.938088 -v -0.041800 0.072999 -0.938088 -v -0.036135 0.086674 -0.867036 -v -0.041800 0.072999 -0.867036 -v 0.002436 0.133807 -0.867036 -v 0.002436 0.028544 -0.867036 -v 0.002436 0.133807 -0.938088 -v 0.002436 0.028544 -0.938088 -v -0.012366 0.133807 -0.938088 -v -0.012366 0.028544 -0.938088 -v -0.012366 0.133807 -0.867036 -v -0.012366 0.028544 -0.867036 -v 0.004339 -0.006552 0.435101 -v 0.004339 -0.049859 0.417163 -v 0.004339 -0.002964 0.426440 -v 0.004339 -0.046271 0.408502 -v -0.008161 -0.002964 0.426440 -v -0.008161 -0.046271 0.408502 -v -0.008161 -0.006552 0.435101 -v -0.008161 -0.049859 0.417163 -v 0.004339 -0.049859 0.417163 -v 0.004339 -0.069746 0.397276 -v 0.004339 -0.043230 0.410534 -v 0.004339 -0.063117 0.390646 -v -0.008161 -0.043230 0.410534 -v -0.008161 -0.063117 0.390646 -v -0.008161 -0.049859 0.417163 -v -0.008161 -0.069746 0.397276 -v 0.000124 0.174566 0.145300 -v 0.000124 0.168316 0.145300 -v 0.000124 0.174566 0.054839 -v 0.000124 0.168316 0.054839 -v -0.012211 0.174566 0.054839 -v -0.012211 0.168316 0.054839 -v -0.012211 0.174566 0.145300 -v -0.012211 0.168316 0.145300 -v 0.000124 0.174566 -1.104700 -v 0.000124 0.168316 -1.104700 -v 0.000124 0.174566 -1.163911 -v 0.000124 0.168316 -1.163911 -v -0.012211 0.174566 -1.163911 -v -0.012211 0.168316 -1.163911 -v -0.012211 0.174566 -1.104700 -v -0.012211 0.168316 -1.104700 -v 0.000124 0.173511 -1.111308 -v 0.000124 0.153301 -1.119679 -v 0.000124 0.190190 -1.151576 -v 0.000124 0.169980 -1.159947 -v -0.012211 0.190190 -1.151576 -v -0.012211 0.169980 -1.159947 -v -0.012211 0.173511 -1.111308 -v -0.012211 0.153301 -1.119679 -v -0.009820 0.174090 0.082800 -v -0.012211 0.168316 0.082800 -v -0.009820 0.174090 0.054839 -v -0.012211 0.168316 0.054839 -v -0.021216 0.178810 0.054839 -v -0.023607 0.173036 0.054839 -v -0.021216 0.178810 0.082800 -v -0.023607 0.173036 0.082800 -v -0.022554 0.186824 0.082800 -v -0.017834 0.175428 0.082800 -v -0.022554 0.186824 0.054839 -v -0.017834 0.175428 0.054839 -v -0.028329 0.184432 0.054839 -v -0.023608 0.173036 0.054839 -v -0.028329 0.184432 0.082800 -v -0.023608 0.173036 0.082800 -v 0.009129 0.178810 0.082800 -v 0.011520 0.173036 0.082800 -v 0.009129 0.178810 0.054839 -v 0.011520 0.173036 0.054839 -v -0.002268 0.174089 0.054839 -v 0.000124 0.168315 0.054839 -v -0.002268 0.174089 0.082800 -v 0.000124 0.168315 0.082800 -v 0.016241 0.184432 0.082800 -v 0.011521 0.173036 0.082800 -v 0.016241 0.184432 0.054839 -v 0.011521 0.173036 0.054839 -v 0.010467 0.186824 0.054839 -v 0.005747 0.175428 0.054839 -v 0.010467 0.186824 0.082800 -v 0.005747 0.175428 0.082800 -v 0.000124 0.193316 -1.151575 -v 0.000124 0.168316 -1.151575 -v 0.000124 0.193316 -1.163911 -v 0.000124 0.168316 -1.163911 -v -0.012211 0.193316 -1.163911 -v -0.012211 0.168316 -1.163911 -v -0.012211 0.193316 -1.151575 -v -0.012211 0.168316 -1.151575 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.812500 -vt 0.187500 0.937500 -vt 0.187500 0.812500 -vt 0.187500 0.937500 -vt 0.187500 0.812500 -vt 0.000000 0.937500 -vt 0.000000 0.812500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.921875 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.000000 0.937500 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vt 0.015625 0.937500 -vt 0.015625 0.921875 -vt 0.000000 0.937500 -vt 0.000000 0.921875 -vn 1.0000 0.0000 0.0000 -vn -1.0000 0.0000 0.0000 -vn 0.0000 1.0000 0.0000 -vn 0.0000 -1.0000 -0.0000 +v 0.000000 1.187500 -2.000000 +v -0.093750 1.162380 -2.000000 +v -0.162380 1.093750 -2.000000 +v -0.187500 1.000000 -2.000000 +v -0.162380 0.906250 -2.000000 +v -0.093750 0.837620 -2.000000 +v 0.000000 0.812500 -2.000000 +v 0.093750 0.837620 -2.000000 +v 0.162380 0.906250 -2.000000 +v 0.187500 1.000000 -2.000000 +v 0.162380 1.093750 -2.000000 +v 0.093750 1.162380 -2.000000 +v 0.000000 1.187500 3.750000 +v -0.093750 1.162380 3.750000 +v -0.162380 1.093750 3.750000 +v -0.187500 1.000000 3.750000 +v -0.162380 0.906250 3.750000 +v -0.093750 0.837620 3.750000 +v 0.000000 0.812500 3.750000 +v 0.093750 0.837620 3.750000 +v 0.162380 0.906250 3.750000 +v 0.187500 1.000000 3.750000 +v 0.162380 1.093750 3.750000 +v 0.093750 1.162380 3.750000 +v 0.000000 1.125000 3.750000 +v -0.062500 1.108253 3.750000 +v -0.108253 1.062500 3.750000 +v -0.125000 1.000000 3.750000 +v -0.108253 0.937500 3.750000 +v -0.062500 0.891747 3.750000 +v 0.000000 0.875000 3.750000 +v 0.062500 0.891747 3.750000 +v 0.108253 0.937500 3.750000 +v 0.125000 1.000000 3.750000 +v 0.108253 1.062500 3.750000 +v 0.062500 1.108253 3.750000 +v 0.000000 1.125000 2.750000 +v -0.062500 1.108253 2.750000 +v -0.108253 1.062500 2.750000 +v -0.125000 1.000000 2.750000 +v -0.108253 0.937500 2.750000 +v -0.062500 0.891747 2.750000 +v 0.000000 0.875000 2.750000 +v 0.062500 0.891747 2.750000 +v 0.108253 0.937500 2.750000 +v 0.125000 1.000000 2.750000 +v 0.108253 1.062500 2.750000 +v 0.062500 1.108253 2.750000 +v 0.000000 1.187500 3.000000 +v -0.093750 1.162380 3.000000 +v -0.162380 1.093750 3.000000 +v -0.187500 1.000000 3.000000 +v -0.162380 0.906250 3.000000 +v -0.093750 0.837620 3.000000 +v 0.000000 0.812500 3.000000 +v 0.093750 0.837620 3.000000 +v 0.162380 0.906250 3.000000 +v 0.187500 1.000000 3.000000 +v 0.162380 1.093750 3.000000 +v 0.093750 1.162380 3.000000 +v 0.000000 1.250000 3.000000 +v -0.125000 1.216506 3.000000 +v -0.216506 1.125000 3.000000 +v -0.250000 1.000000 3.000000 +v 0.250000 1.000000 3.000000 +v 0.216506 1.125000 3.000000 +v 0.125000 1.216506 3.000000 +v 0.000000 1.250000 3.250000 +v -0.125000 1.216506 3.250000 +v -0.216506 1.125000 3.250000 +v -0.250000 1.000000 3.250000 +v 0.250000 1.000000 3.250000 +v 0.216506 1.125000 3.250000 +v 0.125000 1.216506 3.250000 +v 0.000000 1.187500 3.250000 +v -0.093750 1.162380 3.250000 +v -0.162380 1.093750 3.250000 +v -0.187500 1.000000 3.250000 +v -0.162380 0.906250 3.250000 +v -0.093750 0.837620 3.250000 +v 0.000000 0.812500 3.250000 +v 0.093750 0.837620 3.250000 +v 0.162380 0.906250 3.250000 +v 0.187500 1.000000 3.250000 +v 0.162380 1.093750 3.250000 +v 0.093750 1.162380 3.250000 +v 0.000000 0.750000 -2.000000 +v -0.093750 0.724880 -2.000000 +v -0.162380 0.656250 -2.000000 +v -0.187500 0.562500 -2.000000 +v -0.162380 0.468750 -2.000000 +v -0.093750 0.400120 -2.000000 +v 0.000000 0.375000 -2.000000 +v 0.093750 0.400120 -2.000000 +v 0.162380 0.468750 -2.000000 +v 0.187500 0.562500 -2.000000 +v 0.162380 0.656250 -2.000000 +v 0.093750 0.724880 -2.000000 +v 0.000000 0.750000 3.000000 +v -0.093750 0.724880 3.000000 +v -0.162380 0.656250 3.000000 +v -0.187500 0.562500 3.000000 +v -0.162380 0.468750 3.000000 +v -0.093750 0.400120 3.000000 +v 0.000000 0.375000 3.000000 +v 0.093750 0.400120 3.000000 +v 0.162380 0.468750 3.000000 +v 0.187500 0.562500 3.000000 +v 0.162380 0.656250 3.000000 +v 0.093750 0.724880 3.000000 +v -0.250000 0.562500 3.000000 +v -0.216506 0.437500 3.000000 +v -0.125000 0.345994 3.000000 +v 0.000000 0.312500 3.000000 +v 0.125000 0.345994 3.000000 +v 0.216506 0.437500 3.000000 +v 0.250000 0.562500 3.000000 +v -0.250000 0.562500 3.250000 +v -0.216506 0.437500 3.250000 +v -0.125000 0.345994 3.250000 +v 0.000000 0.312500 3.250000 +v 0.125000 0.345994 3.250000 +v 0.216506 0.437500 3.250000 +v 0.250000 0.562500 3.250000 +v 0.000000 1.250000 -2.000000 +v -0.125000 1.216506 -2.000000 +v -0.216506 1.125000 -2.000000 +v -0.250000 1.000000 -2.000000 +v 0.250000 1.000000 -2.000000 +v 0.216506 1.125000 -2.000000 +v 0.125000 1.216506 -2.000000 +v -0.250000 0.562500 -2.000000 +v -0.216506 0.437500 -2.000000 +v -0.125000 0.345994 -2.000000 +v 0.000000 0.312500 -2.000000 +v 0.125000 0.345994 -2.000000 +v 0.216506 0.437500 -2.000000 +v 0.250000 0.562500 -2.000000 +v -0.125000 1.216506 -2.375000 +v 0.000000 1.250000 -2.375000 +v -0.216506 1.125000 -2.375000 +v -0.250000 1.000000 -2.375000 +v 0.216506 1.125000 -2.375000 +v 0.250000 1.000000 -2.375000 +v 0.125000 1.216506 -2.375000 +v -0.250000 0.562500 -2.375000 +v 0.250000 0.562500 -2.375000 +v -0.216506 0.437500 -2.375000 +v -0.125000 0.345994 -2.375000 +v 0.000000 0.312500 -2.375000 +v 0.125000 0.345994 -2.375000 +v 0.216506 0.437500 -2.375000 +v 0.000000 1.125000 -2.375000 +v -0.062500 1.108253 -2.375000 +v -0.108253 1.062500 -2.375000 +v -0.125000 1.000000 -2.375000 +v -0.108253 0.937500 -2.375000 +v -0.062500 0.891747 -2.375000 +v 0.000000 0.875000 -2.375000 +v 0.062500 0.891747 -2.375000 +v 0.108253 0.937500 -2.375000 +v 0.125000 1.000000 -2.375000 +v 0.108253 1.062500 -2.375000 +v 0.062500 1.108253 -2.375000 +v 0.000000 0.687500 -2.375000 +v -0.062500 0.670753 -2.375000 +v -0.108253 0.625000 -2.375000 +v -0.125000 0.562500 -2.375000 +v -0.108253 0.500000 -2.375000 +v -0.062500 0.454247 -2.375000 +v 0.000000 0.437500 -2.375000 +v 0.062500 0.454247 -2.375000 +v 0.108253 0.500000 -2.375000 +v 0.125000 0.562500 -2.375000 +v 0.108253 0.625000 -2.375000 +v 0.062500 0.670753 -2.375000 +v 0.000000 1.125000 -1.375000 +v -0.062500 1.108253 -1.375000 +v -0.108253 1.062500 -1.375000 +v -0.125000 1.000000 -1.375000 +v -0.108253 0.937500 -1.375000 +v -0.062500 0.891747 -1.375000 +v 0.000000 0.875000 -1.375000 +v 0.062500 0.891747 -1.375000 +v 0.108253 0.937500 -1.375000 +v 0.125000 1.000000 -1.375000 +v 0.108253 1.062500 -1.375000 +v 0.062500 1.108253 -1.375000 +v 0.000000 0.687500 -1.375000 +v -0.062500 0.670753 -1.375000 +v -0.108253 0.625000 -1.375000 +v -0.125000 0.562500 -1.375000 +v -0.108253 0.500000 -1.375000 +v -0.062500 0.454247 -1.375000 +v 0.000000 0.437500 -1.375000 +v 0.062500 0.454247 -1.375000 +v 0.108253 0.500000 -1.375000 +v 0.125000 0.562500 -1.375000 +v 0.108253 0.625000 -1.375000 +v 0.062500 0.670753 -1.375000 +v 0.312500 1.125000 -2.125000 +v 0.312500 1.125000 -2.500000 +v 0.187500 1.125000 -2.125000 +v 0.187500 1.125000 -2.500000 +v 0.312500 0.437500 -2.125000 +v 0.187500 0.437500 -2.125000 +v 0.312500 0.187500 -2.375000 +v 0.312500 1.000000 -2.625000 +v 0.187500 1.000000 -2.625000 +v 0.312500 1.000000 -3.000000 +v 0.187500 1.000000 -3.000000 +v 0.312500 0.562500 -3.750000 +v 0.312500 0.875000 -3.375000 +v 0.187500 0.875000 -3.375000 +v 0.312500 -0.062500 -2.875000 +v 0.312500 -0.062500 -3.875000 +v -0.187500 1.125000 -2.125000 +v -0.187500 1.125000 -2.500000 +v -0.312500 1.125000 -2.125000 +v -0.312500 1.125000 -2.500000 +v -0.187500 0.437500 -2.125000 +v -0.312500 0.437500 -2.125000 +v -0.312500 0.187500 -2.375000 +v -0.187500 1.000000 -2.625000 +v -0.312500 1.000000 -2.625000 +v -0.187500 1.000000 -3.000000 +v -0.312500 1.000000 -3.000000 +v -0.312500 0.562500 -3.750000 +v -0.187500 0.875000 -3.375000 +v -0.312500 0.875000 -3.375000 +v -0.312500 -0.062500 -2.875000 +v -0.312500 -0.062500 -3.875000 +v 0.250000 0.562500 -2.000000 +v -0.250000 0.562500 -2.000000 +v 0.250000 1.000000 -2.000000 +v -0.250000 1.000000 -2.000000 +v 0.250000 0.562500 1.625000 +v -0.250000 0.562500 1.625000 +v 0.250000 1.000000 1.625000 +v -0.250000 1.000000 1.625000 +v 0.250000 0.687500 1.750000 +v -0.250000 0.687500 1.750000 +v 0.250000 0.874000 1.750000 +v -0.250000 0.874000 1.750000 +v 0.187500 0.562500 -2.000000 +v 0.187500 1.000000 -2.000000 +v -0.187500 0.562500 -2.000000 +v -0.187500 1.000000 -2.000000 +v 0.187500 0.562500 -1.375000 +v 0.187500 1.000000 -1.375000 +v -0.187500 0.562500 -1.375000 +v -0.187500 1.000000 -1.375000 +v 0.187500 -0.062500 -2.875000 +v -0.187500 -0.062500 -2.875000 +v 0.187500 -0.062500 -3.875000 +v -0.187500 -0.062500 -3.875000 +v -0.187500 0.562500 -3.750000 +v 0.187500 0.562500 -3.750000 +v 0.312500 0.437500 -4.125000 +v -0.312500 0.437500 -4.125000 +v 0.312500 -0.187500 -4.125000 +v -0.312500 -0.187500 -4.125000 +v -0.187500 0.437500 -3.500000 +v 0.187500 0.437500 -3.500000 +v -0.250000 -0.250000 -4.125000 +v 0.250000 -0.250000 -4.125000 +v -0.250000 0.500000 -4.125000 +v 0.250000 0.500000 -4.125000 +v -0.250000 -0.250000 -5.625000 +v -0.250000 -1.000000 -5.250000 +v 0.250000 -1.000000 -5.250000 +v 0.250000 -0.250000 -5.625000 +v 0.375000 -0.125000 -4.125000 +v 0.375000 0.375000 -4.125000 +v 0.375000 -0.875000 -5.312500 +v 0.375000 -0.375000 -5.562500 +v -0.375000 0.375000 -4.125000 +v -0.375000 -0.125000 -4.125000 +v -0.375000 -0.375000 -5.562500 +v -0.375000 -0.875000 -5.312500 +v -0.250000 -0.500000 -5.750000 +v -0.250000 -1.000000 -5.500000 +v 0.250000 -1.000000 -5.500000 +v 0.250000 -0.500000 -5.750000 +v 0.062500 -0.062500 -3.562500 +v -0.062500 -0.062500 -3.562500 +v 0.062500 -0.062500 -3.500000 +v -0.062500 -0.062500 -3.500000 +v 0.062500 -0.187500 -3.562500 +v -0.062500 -0.187500 -3.562500 +v 0.062500 -0.187500 -3.500000 +v -0.062500 -0.187500 -3.500000 +v 0.062500 -0.312500 -3.437500 +v -0.062500 -0.312500 -3.437500 +vt 0.073770 0.336468 +vt 0.080862 0.345804 +vt 0.073770 0.373812 +vt 0.286885 0.224299 +vt 0.282787 0.205607 +vt 0.286885 0.205607 +vt 0.286885 0.186916 +vt 0.282787 0.196262 +vt 0.282787 0.186916 +vt 0.286885 0.168224 +vt 0.282787 0.177570 +vt 0.282787 0.168224 +vt 0.282787 0.149533 +vt 0.286885 0.149533 +vt 0.286885 0.130841 +vt 0.282787 0.140187 +vt 0.282787 0.130841 +vt 0.282787 0.112150 +vt 0.286885 0.112150 +vt 0.286885 0.093458 +vt 0.282787 0.102804 +vt 0.282787 0.093458 +vt 0.282787 0.074766 +vt 0.286885 0.074766 +vt 0.286885 0.056075 +vt 0.282787 0.065421 +vt 0.282787 0.056075 +vt 0.282787 0.037383 +vt 0.286885 0.037383 +vt 0.282787 0.018692 +vt 0.286885 0.018692 +vt 0.286885 0.000000 +vt 0.282787 0.009346 +vt 0.282787 -0.000000 +vt 0.571329 0.341081 +vt 0.573778 0.359421 +vt 0.567782 0.345750 +vt 0.575825 0.351334 +vt 0.581967 0.364425 +vt 0.581967 0.355087 +vt 0.590157 0.359421 +vt 0.588109 0.351334 +vt 0.596152 0.345750 +vt 0.594252 0.327074 +vt 0.592606 0.341081 +vt 0.588109 0.302814 +vt 0.596152 0.243035 +vt 0.592606 0.313068 +vt 0.569683 0.327074 +vt 0.565588 0.327074 +vt 0.557370 0.359421 +vt 0.559819 0.341081 +vt 0.563365 0.345750 +vt 0.549180 0.364425 +vt 0.555323 0.351334 +vt 0.540991 0.359421 +vt 0.549180 0.355087 +vt 0.534996 0.345750 +vt 0.543038 0.351334 +vt 0.532801 0.327074 +vt 0.538542 0.341081 +vt 0.598346 0.327074 +vt 0.598346 0.261711 +vt 0.565588 0.261711 +vt 0.571329 0.313068 +vt 0.575825 0.302814 +vt 0.567782 0.243035 +vt 0.573778 0.229364 +vt 0.581967 0.299061 +vt 0.581967 0.224360 +vt 0.590157 0.229364 +vt 0.561465 0.327074 +vt 0.565560 0.327074 +vt 0.532801 0.261711 +vt 0.538542 0.313068 +vt 0.559819 0.313068 +vt 0.555323 0.302814 +vt 0.563365 0.243035 +vt 0.549180 0.299061 +vt 0.557370 0.229364 +vt 0.540991 0.229364 +vt 0.543038 0.302814 +vt 0.534996 0.243035 +vt 0.476516 0.252326 +vt 0.483607 0.224321 +vt 0.490697 0.252326 +vt 0.476543 0.364441 +vt 0.483607 0.336542 +vt 0.490670 0.364441 +vt 0.620900 0.302820 +vt 0.625399 0.275706 +vt 0.625399 0.313079 +vt 0.614754 0.299064 +vt 0.620900 0.285965 +vt 0.608608 0.302820 +vt 0.614754 0.289721 +vt 0.604109 0.313079 +vt 0.608608 0.285965 +vt 0.602462 0.327095 +vt 0.604109 0.275706 +vt 0.627046 0.261690 +vt 0.627046 0.327095 +vt 0.631143 0.327095 +vt 0.631143 0.261690 +vt 0.602462 0.261690 +vt 0.598365 0.327095 +vt 0.598365 0.261690 +vt 0.600561 0.345781 +vt 0.604109 0.341110 +vt 0.608608 0.351370 +vt 0.614754 0.355125 +vt 0.606559 0.359461 +vt 0.620900 0.351370 +vt 0.614754 0.364468 +vt 0.625399 0.341110 +vt 0.622949 0.359461 +vt 0.628948 0.345781 +vt 0.628948 0.243004 +vt 0.625399 0.247675 +vt 0.620900 0.237416 +vt 0.614754 0.233660 +vt 0.622949 0.229324 +vt 0.606559 0.229324 +vt 0.608608 0.237416 +vt 0.600561 0.243004 +vt 0.604109 0.247675 +vt 0.643444 0.310911 +vt 0.647541 0.280377 +vt 0.647541 0.308408 +vt 0.651638 0.310911 +vt 0.654638 0.271034 +vt 0.654638 0.317751 +vt 0.655736 0.327095 +vt 0.640444 0.271034 +vt 0.640444 0.317751 +vt 0.639346 0.261690 +vt 0.639346 0.327095 +vt 0.631152 0.327095 +vt 0.631152 0.261690 +vt 0.663930 0.327095 +vt 0.655736 0.261690 +vt 0.663930 0.261690 +vt 0.654638 0.336438 +vt 0.661735 0.345781 +vt 0.651638 0.343278 +vt 0.655736 0.359461 +vt 0.647541 0.345781 +vt 0.647541 0.364468 +vt 0.639346 0.359461 +vt 0.640444 0.336438 +vt 0.633347 0.345781 +vt 0.640444 0.252347 +vt 0.633347 0.243004 +vt 0.643444 0.245507 +vt 0.639346 0.229324 +vt 0.647541 0.224317 +vt 0.651638 0.245507 +vt 0.655736 0.229324 +vt 0.661735 0.243004 +vt 0.654638 0.252347 +vt 0.713115 0.186916 +vt 0.721311 0.289720 +vt 0.713115 0.289720 +vt 0.803279 0.252336 +vt 0.778689 0.271028 +vt 0.770492 0.112150 +vt 0.721311 0.485981 +vt 0.713115 0.383178 +vt 0.721311 0.383178 +vt 0.803279 0.420561 +vt 0.827869 0.467290 +vt 0.770492 0.560748 +vt 0.028689 0.728972 +vt 0.266393 0.663551 +vt 0.266393 0.728972 +vt 0.266393 0.588785 +vt 0.028689 0.523364 +vt 0.266393 0.523364 +vt 0.020492 0.570093 +vt 0.028689 0.588785 +vt 0.020492 0.682243 +vt 0.028689 0.663551 +vt 0.836066 0.112150 +vt 0.852459 0.186916 +vt 0.827869 0.205607 +vt 0.836066 0.560748 +vt 0.852459 0.485981 +vt 0.852459 0.579439 +vt 0.852459 0.102804 +vt 0.852459 0.000000 +vt 0.885246 0.018692 +vt 0.959016 0.158879 +vt 0.942623 0.102804 +vt 0.959016 0.102804 +vt 0.959016 0.084112 +vt 0.934426 0.037383 +vt 0.942623 0.158879 +vt 0.909836 0.242991 +vt 0.885246 0.242991 +vt 0.852459 0.158879 +vt 0.934426 0.224299 +vt 0.959016 0.177570 +vt 0.266393 0.738318 +vt 0.274590 0.644860 +vt 0.315574 0.663551 +vt 0.168033 0.785047 +vt 0.172131 0.766355 +vt 0.172131 0.785047 +vt 0.180328 0.803738 +vt 0.184426 0.785047 +vt 0.184426 0.803738 +vt 0.168033 0.803738 +vt 0.172131 0.803738 +vt 0.180328 0.785047 +vt 0.180328 0.766355 +vt 0.069676 0.371311 +vt 0.066679 0.345804 +vt 0.066679 0.364476 +vt 0.065582 0.355140 +vt 0.069676 0.338970 +vt 0.077865 0.338970 +vt 0.081959 0.355140 +vt 0.080862 0.364476 +vt 0.077865 0.371311 +vt 0.282787 0.214953 +vt 0.282787 0.158879 +vt 0.282787 0.121495 +vt 0.282787 0.084112 +vt 0.282787 0.046729 +vt 0.282787 0.028037 +vt 0.536896 0.327074 +vt 0.565560 0.261711 +vt 0.549180 0.224360 +vt 0.487700 0.259160 +vt 0.483607 0.261661 +vt 0.479513 0.259160 +vt 0.475419 0.242991 +vt 0.476516 0.233656 +vt 0.479513 0.226822 +vt 0.487700 0.226822 +vt 0.490697 0.233656 +vt 0.491794 0.242991 +vt 0.487685 0.371248 +vt 0.483607 0.373740 +vt 0.479529 0.371248 +vt 0.475451 0.355141 +vt 0.476543 0.345842 +vt 0.479529 0.339034 +vt 0.487685 0.339034 +vt 0.490670 0.345842 +vt 0.491763 0.355141 +vt 0.614754 0.224317 +vt 0.643444 0.277874 +vt 0.651638 0.277874 +vt 0.643444 0.343278 +vt 0.647541 0.243004 +vt 0.721311 0.186916 +vt 0.745902 0.289720 +vt 0.754098 0.271028 +vt 0.737705 0.149533 +vt 0.713115 0.485981 +vt 0.754098 0.401869 +vt 0.745902 0.383178 +vt 0.778689 0.401869 +vt 0.737705 0.523364 +vt 0.020492 0.542056 +vt 0.020492 0.710280 +vt 0.852459 0.093458 +vt 0.877049 0.000000 +vt 0.909836 0.018692 +vt 0.877049 0.261682 +vt 0.852459 0.261682 +vt 0.315574 0.738318 +vt 0.307377 0.757009 +vt 0.274590 0.757009 +vt 0.266393 0.663551 +vt 0.307377 0.644860 +vt 0.663934 0.224299 +vt 0.663934 0.205607 +vt 0.663934 0.186916 +vt 0.663934 0.168224 +vt 0.663934 0.149533 +vt 0.663934 0.130841 +vt 0.663934 0.112150 +vt 0.663934 0.093458 +vt 0.663934 0.074766 +vt 0.663934 0.056075 +vt 0.663934 0.037383 +vt 0.663934 0.018692 +vt 0.663934 0.000000 +vt -0.000000 0.364486 +vt 0.065574 0.373832 +vt -0.000000 0.373832 +vt -0.000000 0.411215 +vt 0.065574 0.420561 +vt -0.000000 0.420561 +vt -0.000000 0.439252 +vt 0.065574 0.448598 +vt -0.000000 0.448598 +vt -0.000000 0.355140 +vt 0.065574 0.364486 +vt -0.000000 0.401869 +vt 0.065574 0.411215 +vt -0.000000 0.383178 +vt 0.065574 0.392523 +vt -0.000000 0.392523 +vt -0.000000 0.429907 +vt 0.065574 0.439252 +vt -0.000000 0.345794 +vt 0.065574 0.355140 +vt 0.065574 0.401869 +vt 0.065574 0.383178 +vt 0.065574 0.429907 +vt -0.000000 0.336449 +vt 0.065574 0.345794 +vt 0.688525 0.196262 +vt 0.704918 0.214953 +vt 0.688525 0.214953 +vt 0.688525 0.158879 +vt 0.704918 0.177570 +vt 0.688525 0.177570 +vt 0.704918 0.196262 +vt 0.688525 0.140187 +vt 0.704918 0.158879 +vt 0.688525 0.121495 +vt 0.704918 0.140187 +vt 0.704918 0.233645 +vt 0.688525 0.233645 +vt 0.688525 0.299065 +vt 0.704918 0.299065 +vt 0.409836 0.448598 +vt 0.081967 0.429907 +vt 0.409836 0.429907 +vt 0.081967 0.411215 +vt 0.409836 0.411215 +vt 0.081967 0.392523 +vt 0.409836 0.392523 +vt 0.081967 0.373832 +vt 0.409836 0.373832 +vt 0.081967 0.355140 +vt 0.409836 0.355140 +vt 0.081967 0.336449 +vt 0.409836 0.336449 +vt 0.081967 0.317757 +vt 0.409836 0.317757 +vt 0.081967 0.299065 +vt 0.409836 0.299065 +vt 0.081967 0.280374 +vt 0.409836 0.280374 +vt 0.081967 0.261682 +vt 0.409836 0.261682 +vt 0.081967 0.242991 +vt 0.409836 0.242991 +vt 0.081967 0.224299 +vt 0.409836 0.224299 +vt 0.704918 0.056075 +vt 0.688525 0.056075 +vt 0.688525 0.336449 +vt 0.704918 0.355140 +vt 0.688525 0.355140 +vt 0.688525 0.037383 +vt 0.688525 0.317757 +vt 0.704918 0.336449 +vt 0.688525 0.018692 +vt 0.704918 0.037383 +vt 0.704918 0.317757 +vt 0.688525 -0.000000 +vt 0.704918 0.018692 +vt 0.663934 0.317757 +vt 0.688525 0.336449 +vt 0.663934 0.336449 +vt 0.663934 0.214953 +vt 0.688525 0.233645 +vt 0.663934 0.233645 +vt 0.688525 0.355140 +vt 0.663934 0.355140 +vt 0.663934 0.121495 +vt 0.688525 0.140187 +vt 0.663934 0.140187 +vt 0.663934 -0.000000 +vt 0.688525 0.018692 +vt 0.663934 0.018692 +vt 0.688525 0.158879 +vt 0.663934 0.158879 +vt 0.688525 0.037383 +vt 0.663934 0.037383 +vt 0.688525 0.177570 +vt 0.663934 0.177570 +vt 0.688525 0.056075 +vt 0.663934 0.056075 +vt 0.688525 0.299065 +vt 0.663934 0.299065 +vt 0.688525 0.121495 +vt 0.688525 0.196262 +vt 0.663934 0.196262 +vt 0.688525 0.317757 +vt 0.688525 0.214953 +vt 0.409836 0.401869 +vt 0.475410 0.392523 +vt 0.475410 0.401869 +vt 0.409836 0.355140 +vt 0.475410 0.345794 +vt 0.475410 0.355140 +vt 0.409836 0.327103 +vt 0.475410 0.317757 +vt 0.475410 0.327103 +vt 0.409836 0.280374 +vt 0.475410 0.271028 +vt 0.475410 0.280374 +vt 0.409836 0.345794 +vt 0.475410 0.336449 +vt 0.409836 0.317757 +vt 0.475410 0.308411 +vt 0.409836 0.271028 +vt 0.475410 0.261682 +vt 0.409836 0.448598 +vt 0.475410 0.439252 +vt 0.475410 0.448598 +vt 0.409836 0.308411 +vt 0.475410 0.299065 +vt 0.409836 0.261682 +vt 0.475410 0.252336 +vt 0.409836 0.439252 +vt 0.475410 0.429907 +vt 0.409836 0.299065 +vt 0.475410 0.289720 +vt 0.409836 0.392523 +vt 0.475410 0.383178 +vt 0.409836 0.252336 +vt 0.475410 0.242991 +vt 0.409836 0.429907 +vt 0.475410 0.420561 +vt 0.409836 0.289720 +vt 0.409836 0.383178 +vt 0.475410 0.373832 +vt 0.409836 0.242991 +vt 0.475410 0.233645 +vt 0.409836 0.420561 +vt 0.475410 0.411215 +vt 0.409836 0.373832 +vt 0.475410 0.364486 +vt 0.409836 0.233645 +vt 0.475410 0.224299 +vt 0.409836 0.411215 +vt 0.409836 0.364486 +vt 0.409836 0.336449 +vt 0.475410 0.336449 +vt 0.745902 0.308411 +vt 0.754098 0.289720 +vt 0.778689 0.289720 +vt 0.754098 0.308411 +vt 0.803279 0.289720 +vt 0.778689 0.308411 +vt 0.721311 0.018692 +vt 0.737705 0.093458 +vt 0.721311 0.074766 +vt 0.721311 0.364486 +vt 0.745902 0.364486 +vt 0.754098 0.364486 +vt 0.778689 0.364486 +vt 0.754098 0.383178 +vt 0.803279 0.364486 +vt 0.778689 0.383178 +vt 0.827869 0.383178 +vt 0.827869 0.364486 +vt 0.852459 0.383178 +vt 0.770492 0.093458 +vt 0.836066 0.074766 +vt 0.840164 0.093458 +vt 0.000000 0.588785 +vt 0.008197 0.663551 +vt 0.000000 0.663551 +vt 0.020492 0.588785 +vt 0.020492 0.663551 +vt 0.008197 0.588785 +vt 0.225410 0.514019 +vt 0.028689 0.448598 +vt 0.225410 0.654206 +vt 0.836066 0.018692 +vt 0.770492 0.000000 +vt 0.836066 0.000000 +vt 0.770492 0.074766 +vt 0.827869 0.308411 +vt 0.803279 0.308411 +vt 0.803279 0.383178 +vt 0.852459 0.289720 +vt 0.827869 0.289720 +vt 0.852459 -0.000000 +vt 0.426230 0.663551 +vt 0.442623 0.738318 +vt 0.426230 0.738318 +vt 0.336066 0.448598 +vt 0.426230 0.523364 +vt 0.336066 0.523364 +vt 0.319672 0.635514 +vt 0.426230 0.635514 +vt 0.319672 0.766355 +vt 0.331967 0.551402 +vt 0.426230 0.850467 +vt 0.442623 0.766355 +vt 0.442623 0.850467 +vt 0.426230 0.551402 +vt 0.331967 0.850467 +vt 0.426230 0.766355 +vt 0.336066 0.878505 +vt 0.426230 0.878505 +vt 0.475410 0.663551 +vt 0.475410 0.738318 +vt 0.491803 0.738318 +vt 0.491803 0.663551 +vt 0.442623 0.635514 +vt 0.442623 0.551402 +vt 0.159836 0.803738 +vt 0.159836 0.785047 +vt 0.168033 0.766355 +vt 0.770492 0.018692 +vt 0.737705 0.000000 +vt 0.721311 -0.000000 +vt 0.721311 0.093458 +vt 0.065574 0.336449 +vt 0.704918 0.121495 +vt 0.081967 0.448598 +vt 0.704918 0.000000 +vt 0.688525 -0.000000 +vt 0.409836 0.336449 +vt 0.409836 0.224299 +vt 0.721311 0.308411 +vt 0.266393 0.448598 +vt 0.225410 0.457944 +vt 0.266393 0.457944 +vt 0.266393 0.514019 +vt 0.225410 0.598131 +vt 0.266393 0.598131 +vt 0.266393 0.654206 +vt 0.442623 0.663551 +vt 0.426230 0.448598 +vt 0.159836 0.766355 vn 0.0000 0.0000 1.0000 vn 0.0000 0.0000 -1.0000 -vn 0.0000 0.9239 0.3827 -vn 0.0000 -0.9239 -0.3827 -vn 0.0000 -0.3827 0.9239 -vn 0.0000 0.3827 -0.9239 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.8944 0.4472 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.8660 -0.5000 0.0000 +vn -0.8660 0.5000 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.5000 0.8660 0.0000 +vn 0.8660 0.5000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn 0.5000 -0.8660 0.0000 +vn -0.9914 0.1305 0.0000 +vn 0.9914 0.1305 0.0000 +vn 0.9914 -0.1305 0.0000 +vn -0.9914 -0.1305 0.0000 vn 0.0000 0.9239 -0.3827 -vn 0.0000 -0.9239 0.3827 -vn 0.0000 0.3827 0.9239 -vn 0.0000 -0.3827 -0.9239 -vn 0.9239 -0.3827 0.0000 -vn -0.9239 0.3827 0.0000 -vn 0.3827 0.9239 0.0000 -vn -0.3827 -0.9239 -0.0000 -vn 0.7071 -0.7071 0.0000 -vn -0.7071 0.7071 0.0000 -vn 0.7071 0.7071 0.0000 -vn -0.7071 -0.7071 -0.0000 -vn 0.9239 0.3827 0.0000 -vn -0.9239 -0.3827 -0.0000 -vn -0.3827 0.9239 0.0000 -vn 0.3827 -0.9239 0.0000 -vn 0.0000 0.7071 0.7071 -vn 0.0000 -0.7071 -0.7071 +vn 0.0000 0.9871 -0.1602 +vn 0.0000 0.8736 -0.4866 vn 0.0000 -0.7071 0.7071 -vn 0.0000 0.7071 -0.7071 +vn 0.0000 -0.8112 0.5847 +vn 0.0000 0.9024 -0.4308 +vn 0.0000 0.9487 -0.3162 +vn 0.0000 -0.9732 0.2298 +vn 0.0000 -0.9522 0.3054 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.3827 0.9239 +vn 0.0000 0.9231 0.3845 +vn 0.0000 0.3808 0.9246 +vn 0.0000 -0.8944 0.4472 +vn 0.3702 0.6646 -0.6490 +vn -0.4346 -0.0292 -0.9002 +vn -0.3702 0.6646 -0.6490 +vn 0.3158 0.8487 -0.4243 +vn -0.3158 0.8487 -0.4243 +vn -0.3875 -0.7728 0.5027 +vn 0.3803 -0.8832 0.2744 +vn 0.3875 -0.7728 0.5027 +vn 0.8592 0.4574 -0.2292 +vn 0.9085 0.1932 -0.3706 +vn -0.8592 0.4574 -0.2292 +vn 0.9547 -0.2517 0.1590 +vn -0.9201 -0.3912 -0.0217 +vn -0.4362 -0.7533 -0.4922 +vn 0.9201 -0.3912 -0.0217 +vn -0.9547 -0.2517 0.1590 +vn -0.9085 0.1932 -0.3706 +vn -0.3803 -0.8832 0.2744 +vn 0.4362 -0.7533 -0.4922 +vn 0.4346 -0.0292 -0.9002 +vn 0.0000 0.2298 0.9732 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 0.4472 0.8944 +vn 0.0000 -0.7071 -0.7071 s off -f 313/799/45 314/800/45 315/801/45 -f 314/800/45 316/802/45 315/801/45 -f 317/803/46 318/804/46 319/805/46 -f 318/804/46 320/806/46 319/805/46 -f 317/803/47 319/807/47 315/801/47 -f 319/807/47 313/808/47 315/801/47 -f 320/809/48 318/804/48 314/810/48 -f 318/804/48 316/802/48 314/810/48 -f 319/811/49 320/812/49 313/813/49 -f 320/812/49 314/814/49 313/813/49 -f 315/815/50 316/816/50 317/817/50 -f 316/816/50 318/818/50 317/817/50 -f 321/819/45 322/820/45 323/821/45 -f 322/820/45 324/822/45 323/821/45 -f 325/823/46 326/824/46 327/825/46 -f 326/824/46 328/826/46 327/825/46 -f 325/823/51 327/827/51 323/821/51 -f 327/827/51 321/828/51 323/821/51 -f 328/829/52 326/824/52 322/830/52 -f 326/824/52 324/822/52 322/830/52 -f 327/831/53 328/832/53 321/833/53 -f 328/832/53 322/834/53 321/833/53 -f 323/835/54 324/836/54 325/837/54 -f 324/836/54 326/838/54 325/837/54 -f 329/839/45 330/840/45 331/841/45 -f 330/840/45 332/842/45 331/841/45 -f 333/843/46 334/844/46 335/845/46 -f 334/844/46 336/846/46 335/845/46 -f 333/843/55 335/847/55 331/841/55 -f 335/847/55 329/848/55 331/841/55 -f 336/849/56 334/844/56 330/850/56 -f 334/844/56 332/842/56 330/850/56 -f 335/851/57 336/852/57 329/853/57 -f 336/852/57 330/854/57 329/853/57 -f 331/855/58 332/856/58 333/857/58 -f 332/856/58 334/858/58 333/857/58 -f 337/859/45 338/860/45 339/861/45 -f 338/860/45 340/862/45 339/861/45 -f 341/863/46 342/864/46 343/865/46 -f 342/864/46 344/866/46 343/865/46 -f 341/863/47 343/867/47 339/861/47 -f 343/867/47 337/868/47 339/861/47 -f 344/869/48 342/864/48 338/870/48 -f 342/864/48 340/862/48 338/870/48 -f 343/871/49 344/872/49 337/873/49 -f 344/872/49 338/874/49 337/873/49 -f 339/875/50 340/876/50 341/877/50 -f 340/876/50 342/878/50 341/877/50 -f 345/879/45 346/880/45 347/881/45 -f 346/880/45 348/882/45 347/881/45 -f 349/883/46 350/884/46 351/885/46 -f 350/884/46 352/886/46 351/885/46 -f 349/883/47 351/887/47 347/881/47 -f 351/887/47 345/888/47 347/881/47 -f 352/889/48 350/884/48 346/890/48 -f 350/884/48 348/882/48 346/890/48 -f 351/891/49 352/892/49 345/893/49 -f 352/892/49 346/894/49 345/893/49 -f 347/895/50 348/896/50 349/897/50 -f 348/896/50 350/898/50 349/897/50 -f 353/899/59 354/900/59 355/901/59 -f 354/900/59 356/902/59 355/901/59 -f 357/903/60 358/904/60 359/905/60 -f 358/904/60 360/906/60 359/905/60 -f 357/903/61 359/907/61 355/901/61 -f 359/907/61 353/908/61 355/901/61 -f 360/909/62 358/904/62 354/910/62 -f 358/904/62 356/902/62 354/910/62 -f 359/911/49 360/912/49 353/913/49 -f 360/912/49 354/914/49 353/913/49 -f 355/915/50 356/916/50 357/917/50 -f 356/916/50 358/918/50 357/917/50 -f 361/919/63 362/920/63 363/921/63 -f 362/920/63 364/922/63 363/921/63 -f 365/923/64 366/924/64 367/925/64 -f 366/924/64 368/926/64 367/925/64 -f 365/923/65 367/927/65 363/921/65 -f 367/927/65 361/928/65 363/921/65 -f 368/929/66 366/924/66 362/930/66 -f 366/924/66 364/922/66 362/930/66 -f 367/931/49 368/932/49 361/933/49 -f 368/932/49 362/934/49 361/933/49 -f 363/935/50 364/936/50 365/937/50 -f 364/936/50 366/938/50 365/937/50 -f 369/939/67 370/940/67 371/941/67 -f 370/940/67 372/942/67 371/941/67 -f 373/943/68 374/944/68 375/945/68 -f 374/944/68 376/946/68 375/945/68 -f 373/943/69 375/947/69 371/941/69 -f 375/947/69 369/948/69 371/941/69 -f 376/949/70 374/944/70 370/950/70 -f 374/944/70 372/942/70 370/950/70 -f 375/951/49 376/952/49 369/953/49 -f 376/952/49 370/954/49 369/953/49 -f 371/955/50 372/956/50 373/957/50 -f 372/956/50 374/958/50 373/957/50 -f 377/959/45 378/960/45 379/961/45 -f 378/960/45 380/962/45 379/961/45 -f 381/963/46 382/964/46 383/965/46 -f 382/964/46 384/966/46 383/965/46 -f 381/963/47 383/967/47 379/961/47 -f 383/967/47 377/968/47 379/961/47 -f 384/969/48 382/964/48 378/970/48 -f 382/964/48 380/962/48 378/970/48 -f 383/971/49 384/972/49 377/973/49 -f 384/972/49 378/974/49 377/973/49 -f 379/975/50 380/976/50 381/977/50 -f 380/976/50 382/978/50 381/977/50 -f 385/979/45 386/980/45 387/981/45 -f 386/980/45 388/982/45 387/981/45 -f 389/983/46 390/984/46 391/985/46 -f 390/984/46 392/986/46 391/985/46 -f 389/983/47 391/987/47 387/981/47 -f 391/987/47 385/988/47 387/981/47 -f 392/989/48 390/984/48 386/990/48 -f 390/984/48 388/982/48 386/990/48 -f 391/991/49 392/992/49 385/993/49 -f 392/992/49 386/994/49 385/993/49 -f 387/995/50 388/996/50 389/997/50 -f 388/996/50 390/998/50 389/997/50 -f 393/999/67 394/1000/67 395/1001/67 -f 394/1000/67 396/1002/67 395/1001/67 -f 397/1003/68 398/1004/68 399/1005/68 -f 398/1004/68 400/1006/68 399/1005/68 -f 397/1003/69 399/1007/69 395/1001/69 -f 399/1007/69 393/1008/69 395/1001/69 -f 400/1009/70 398/1004/70 394/1010/70 -f 398/1004/70 396/1002/70 394/1010/70 -f 399/1011/49 400/1012/49 393/1013/49 -f 400/1012/49 394/1014/49 393/1013/49 -f 395/1015/50 396/1016/50 397/1017/50 -f 396/1016/50 398/1018/50 397/1017/50 -f 401/1019/65 402/1020/65 403/1021/65 -f 402/1020/65 404/1022/65 403/1021/65 -f 405/1023/66 406/1024/66 407/1025/66 -f 406/1024/66 408/1026/66 407/1025/66 -f 405/1023/64 407/1027/64 403/1021/64 -f 407/1027/64 401/1028/64 403/1021/64 -f 408/1029/63 406/1024/63 402/1030/63 -f 406/1024/63 404/1022/63 402/1030/63 -f 407/1031/49 408/1032/49 401/1033/49 -f 408/1032/49 402/1034/49 401/1033/49 -f 403/1035/50 404/1036/50 405/1037/50 -f 404/1036/50 406/1038/50 405/1037/50 -f 409/1039/59 410/1040/59 411/1041/59 -f 410/1040/59 412/1042/59 411/1041/59 -f 413/1043/60 414/1044/60 415/1045/60 -f 414/1044/60 416/1046/60 415/1045/60 -f 413/1043/61 415/1047/61 411/1041/61 -f 415/1047/61 409/1048/61 411/1041/61 -f 416/1049/62 414/1044/62 410/1050/62 -f 414/1044/62 412/1042/62 410/1050/62 -f 415/1051/49 416/1052/49 409/1053/49 -f 416/1052/49 410/1054/49 409/1053/49 -f 411/1055/50 412/1056/50 413/1057/50 -f 412/1056/50 414/1058/50 413/1057/50 -f 417/1059/45 418/1060/45 419/1061/45 -f 418/1060/45 420/1062/45 419/1061/45 -f 421/1063/46 422/1064/46 423/1065/46 -f 422/1064/46 424/1066/46 423/1065/46 -f 421/1063/47 423/1067/47 419/1061/47 -f 423/1067/47 417/1068/47 419/1061/47 -f 424/1069/48 422/1064/48 418/1070/48 -f 422/1064/48 420/1062/48 418/1070/48 -f 423/1071/49 424/1072/49 417/1073/49 -f 424/1072/49 418/1074/49 417/1073/49 -f 419/1075/50 420/1076/50 421/1077/50 -f 420/1076/50 422/1078/50 421/1077/50 -f 425/1079/45 426/1080/45 427/1081/45 -f 426/1080/45 428/1082/45 427/1081/45 -f 429/1083/46 430/1084/46 431/1085/46 -f 430/1084/46 432/1086/46 431/1085/46 -f 429/1083/47 431/1087/47 427/1081/47 -f 431/1087/47 425/1088/47 427/1081/47 -f 432/1089/48 430/1084/48 426/1090/48 -f 430/1084/48 428/1082/48 426/1090/48 -f 431/1091/49 432/1092/49 425/1093/49 -f 432/1092/49 426/1094/49 425/1093/49 -f 427/1095/50 428/1096/50 429/1097/50 -f 428/1096/50 430/1098/50 429/1097/50 -f 433/1099/45 434/1100/45 435/1101/45 -f 434/1100/45 436/1102/45 435/1101/45 -f 437/1103/46 438/1104/46 439/1105/46 -f 438/1104/46 440/1106/46 439/1105/46 -f 437/1103/47 439/1107/47 435/1101/47 -f 439/1107/47 433/1108/47 435/1101/47 -f 440/1109/48 438/1104/48 434/1110/48 -f 438/1104/48 436/1102/48 434/1110/48 -f 439/1111/49 440/1112/49 433/1113/49 -f 440/1112/49 434/1114/49 433/1113/49 -f 435/1115/50 436/1116/50 437/1117/50 -f 436/1116/50 438/1118/50 437/1117/50 -f 441/1119/45 442/1120/45 443/1121/45 -f 442/1120/45 444/1122/45 443/1121/45 -f 445/1123/46 446/1124/46 447/1125/46 -f 446/1124/46 448/1126/46 447/1125/46 -f 445/1127/47 447/1128/47 443/1129/47 -f 447/1128/47 441/1130/47 443/1129/47 -f 448/1131/48 446/1132/48 442/1133/48 -f 446/1132/48 444/1134/48 442/1133/48 -f 447/1135/49 448/1136/49 441/1119/49 -f 448/1136/49 442/1137/49 441/1119/49 -f 443/1138/50 444/1139/50 445/1140/50 -f 444/1139/50 446/1141/50 445/1140/50 -f 449/1142/45 450/1143/45 451/1144/45 -f 450/1143/45 452/1145/45 451/1144/45 -f 453/1146/46 454/1147/46 455/1148/46 -f 454/1147/46 456/1149/46 455/1148/46 -f 453/1146/51 455/1150/51 451/1144/51 -f 455/1150/51 449/1151/51 451/1144/51 -f 456/1152/52 454/1147/52 450/1153/52 -f 454/1147/52 452/1145/52 450/1153/52 -f 455/1154/53 456/1155/53 449/1156/53 -f 456/1155/53 450/1157/53 449/1156/53 -f 451/1158/54 452/1159/54 453/1160/54 -f 452/1159/54 454/1161/54 453/1160/54 -f 457/1162/45 458/1163/45 459/1164/45 -f 458/1163/45 460/1165/45 459/1164/45 -f 461/1166/46 462/1167/46 463/1168/46 -f 462/1167/46 464/1169/46 463/1168/46 -f 461/1166/71 463/1170/71 459/1164/71 -f 463/1170/71 457/1171/71 459/1164/71 -f 464/1172/72 462/1167/72 458/1173/72 -f 462/1167/72 460/1165/72 458/1173/72 -f 463/1174/73 464/1175/73 457/1176/73 -f 464/1175/73 458/1177/73 457/1176/73 -f 459/1178/74 460/1179/74 461/1180/74 -f 460/1179/74 462/1181/74 461/1180/74 -f 465/1182/45 466/1183/45 467/1184/45 -f 466/1183/45 468/1185/45 467/1184/45 -f 469/1186/46 470/1187/46 471/1188/46 -f 470/1187/46 472/1189/46 471/1188/46 -f 469/1186/47 471/1190/47 467/1184/47 -f 471/1190/47 465/1191/47 467/1184/47 -f 472/1192/48 470/1187/48 466/1193/48 -f 470/1187/48 468/1185/48 466/1193/48 -f 471/1194/49 472/1195/49 465/1196/49 -f 472/1195/49 466/1197/49 465/1196/49 -f 467/1198/50 468/1199/50 469/1200/50 -f 468/1199/50 470/1201/50 469/1200/50 -f 473/1202/59 474/1203/59 475/1204/59 -f 474/1203/59 476/1205/59 475/1204/59 -f 477/1206/60 478/1207/60 479/1208/60 -f 478/1207/60 480/1209/60 479/1208/60 -f 477/1206/61 479/1210/61 475/1204/61 -f 479/1210/61 473/1211/61 475/1204/61 -f 480/1212/62 478/1207/62 474/1213/62 -f 478/1207/62 476/1205/62 474/1213/62 -f 479/1214/49 480/1215/49 473/1216/49 -f 480/1215/49 474/1217/49 473/1216/49 -f 475/1218/50 476/1219/50 477/1220/50 -f 476/1219/50 478/1221/50 477/1220/50 -f 481/1222/63 482/1223/63 483/1224/63 -f 482/1223/63 484/1225/63 483/1224/63 -f 485/1226/64 486/1227/64 487/1228/64 -f 486/1227/64 488/1229/64 487/1228/64 -f 485/1226/65 487/1230/65 483/1224/65 -f 487/1230/65 481/1231/65 483/1224/65 -f 488/1232/66 486/1227/66 482/1233/66 -f 486/1227/66 484/1225/66 482/1233/66 -f 487/1234/49 488/1235/49 481/1236/49 -f 488/1235/49 482/1237/49 481/1236/49 -f 483/1238/50 484/1239/50 485/1240/50 -f 484/1239/50 486/1241/50 485/1240/50 -f 489/1242/67 490/1243/67 491/1244/67 -f 490/1243/67 492/1245/67 491/1244/67 -f 493/1246/68 494/1247/68 495/1248/68 -f 494/1247/68 496/1249/68 495/1248/68 -f 493/1246/69 495/1250/69 491/1244/69 -f 495/1250/69 489/1251/69 491/1244/69 -f 496/1252/70 494/1247/70 490/1253/70 -f 494/1247/70 492/1245/70 490/1253/70 -f 495/1254/49 496/1255/49 489/1256/49 -f 496/1255/49 490/1257/49 489/1256/49 -f 491/1258/50 492/1259/50 493/1260/50 -f 492/1259/50 494/1261/50 493/1260/50 -f 497/1262/45 498/1263/45 499/1264/45 -f 498/1263/45 500/1265/45 499/1264/45 -f 501/1266/46 502/1267/46 503/1268/46 -f 502/1267/46 504/1269/46 503/1268/46 -f 501/1266/47 503/1270/47 499/1264/47 -f 503/1270/47 497/1271/47 499/1264/47 -f 504/1272/48 502/1267/48 498/1273/48 -f 502/1267/48 500/1265/48 498/1273/48 -f 503/1274/49 504/1275/49 497/1276/49 -f 504/1275/49 498/1277/49 497/1276/49 -f 499/1278/50 500/1279/50 501/1280/50 -f 500/1279/50 502/1281/50 501/1280/50 -f 505/1282/59 506/1283/59 507/1284/59 -f 506/1283/59 508/1285/59 507/1284/59 -f 509/1286/60 510/1287/60 511/1288/60 -f 510/1287/60 512/1289/60 511/1288/60 -f 509/1286/61 511/1290/61 507/1284/61 -f 511/1290/61 505/1291/61 507/1284/61 -f 512/1292/62 510/1287/62 506/1293/62 -f 510/1287/62 508/1285/62 506/1293/62 -f 511/1294/49 512/1295/49 505/1296/49 -f 512/1295/49 506/1297/49 505/1296/49 -f 507/1298/50 508/1299/50 509/1300/50 -f 508/1299/50 510/1301/50 509/1300/50 -f 513/1302/63 514/1303/63 515/1304/63 -f 514/1303/63 516/1305/63 515/1304/63 -f 517/1306/64 518/1307/64 519/1308/64 -f 518/1307/64 520/1309/64 519/1308/64 -f 517/1306/65 519/1310/65 515/1304/65 -f 519/1310/65 513/1311/65 515/1304/65 -f 520/1312/66 518/1307/66 514/1313/66 -f 518/1307/66 516/1305/66 514/1313/66 -f 519/1314/49 520/1315/49 513/1316/49 -f 520/1315/49 514/1317/49 513/1316/49 -f 515/1318/50 516/1319/50 517/1320/50 -f 516/1319/50 518/1321/50 517/1320/50 -f 521/1322/67 522/1323/67 523/1324/67 -f 522/1323/67 524/1325/67 523/1324/67 -f 525/1326/68 526/1327/68 527/1328/68 -f 526/1327/68 528/1329/68 527/1328/68 -f 525/1326/69 527/1330/69 523/1324/69 -f 527/1330/69 521/1331/69 523/1324/69 -f 528/1332/70 526/1327/70 522/1333/70 -f 526/1327/70 524/1325/70 522/1333/70 -f 527/1334/49 528/1335/49 521/1336/49 -f 528/1335/49 522/1337/49 521/1336/49 -f 523/1338/50 524/1339/50 525/1340/50 -f 524/1339/50 526/1341/50 525/1340/50 -f 529/1342/67 530/1343/67 531/1344/67 -f 530/1343/67 532/1345/67 531/1344/67 -f 533/1346/68 534/1347/68 535/1348/68 -f 534/1347/68 536/1349/68 535/1348/68 -f 533/1346/69 535/1350/69 531/1344/69 -f 535/1350/69 529/1351/69 531/1344/69 -f 536/1352/70 534/1347/70 530/1353/70 -f 534/1347/70 532/1345/70 530/1353/70 -f 535/1354/49 536/1355/49 529/1356/49 -f 536/1355/49 530/1357/49 529/1356/49 -f 531/1358/50 532/1359/50 533/1360/50 -f 532/1359/50 534/1361/50 533/1360/50 -f 537/1362/63 538/1363/63 539/1364/63 -f 538/1363/63 540/1365/63 539/1364/63 -f 541/1366/64 542/1367/64 543/1368/64 -f 542/1367/64 544/1369/64 543/1368/64 -f 541/1366/65 543/1370/65 539/1364/65 -f 543/1370/65 537/1371/65 539/1364/65 -f 544/1372/66 542/1367/66 538/1373/66 -f 542/1367/66 540/1365/66 538/1373/66 -f 543/1374/49 544/1375/49 537/1376/49 -f 544/1375/49 538/1377/49 537/1376/49 -f 539/1378/50 540/1379/50 541/1380/50 -f 540/1379/50 542/1381/50 541/1380/50 -f 545/1382/59 546/1383/59 547/1384/59 -f 546/1383/59 548/1385/59 547/1384/59 -f 549/1386/60 550/1387/60 551/1388/60 -f 550/1387/60 552/1389/60 551/1388/60 -f 549/1386/61 551/1390/61 547/1384/61 -f 551/1390/61 545/1391/61 547/1384/61 -f 552/1392/62 550/1387/62 546/1393/62 -f 550/1387/62 548/1385/62 546/1393/62 -f 551/1394/49 552/1395/49 545/1396/49 -f 552/1395/49 546/1397/49 545/1396/49 -f 547/1398/50 548/1399/50 549/1400/50 -f 548/1399/50 550/1401/50 549/1400/50 -f 553/1402/45 554/1403/45 555/1404/45 -f 554/1403/45 556/1405/45 555/1404/45 -f 557/1406/46 558/1407/46 559/1408/46 -f 558/1407/46 560/1409/46 559/1408/46 -f 557/1406/47 559/1410/47 555/1404/47 -f 559/1410/47 553/1411/47 555/1404/47 -f 560/1412/48 558/1407/48 554/1413/48 -f 558/1407/48 556/1405/48 554/1413/48 -f 559/1414/49 560/1415/49 553/1416/49 -f 560/1415/49 554/1417/49 553/1416/49 -f 555/1418/50 556/1419/50 557/1420/50 -f 556/1419/50 558/1421/50 557/1420/50 -f 561/1422/67 562/1423/67 563/1424/67 -f 562/1423/67 564/1425/67 563/1424/67 -f 565/1426/68 566/1427/68 567/1428/68 -f 566/1427/68 568/1429/68 567/1428/68 -f 565/1426/69 567/1430/69 563/1424/69 -f 567/1430/69 561/1431/69 563/1424/69 -f 568/1432/70 566/1427/70 562/1433/70 -f 566/1427/70 564/1425/70 562/1433/70 -f 567/1434/49 568/1435/49 561/1436/49 -f 568/1435/49 562/1437/49 561/1436/49 -f 563/1438/50 564/1439/50 565/1440/50 -f 564/1439/50 566/1441/50 565/1440/50 -f 569/1442/63 570/1443/63 571/1444/63 -f 570/1443/63 572/1445/63 571/1444/63 -f 573/1446/64 574/1447/64 575/1448/64 -f 574/1447/64 576/1449/64 575/1448/64 -f 573/1446/65 575/1450/65 571/1444/65 -f 575/1450/65 569/1451/65 571/1444/65 -f 576/1452/66 574/1447/66 570/1453/66 -f 574/1447/66 572/1445/66 570/1453/66 -f 575/1454/49 576/1455/49 569/1456/49 -f 576/1455/49 570/1457/49 569/1456/49 -f 571/1458/50 572/1459/50 573/1460/50 -f 572/1459/50 574/1461/50 573/1460/50 -f 577/1462/59 578/1463/59 579/1464/59 -f 578/1463/59 580/1465/59 579/1464/59 -f 581/1466/60 582/1467/60 583/1468/60 -f 582/1467/60 584/1469/60 583/1468/60 -f 581/1466/61 583/1470/61 579/1464/61 -f 583/1470/61 577/1471/61 579/1464/61 -f 584/1472/62 582/1467/62 578/1473/62 -f 582/1467/62 580/1465/62 578/1473/62 -f 583/1474/49 584/1475/49 577/1476/49 -f 584/1475/49 578/1477/49 577/1476/49 -f 579/1478/50 580/1479/50 581/1480/50 -f 580/1479/50 582/1481/50 581/1480/50 -f 585/1482/45 586/1483/45 587/1484/45 -f 586/1483/45 588/1485/45 587/1484/45 -f 589/1486/46 590/1487/46 591/1488/46 -f 590/1487/46 592/1489/46 591/1488/46 -f 589/1486/47 591/1490/47 587/1484/47 -f 591/1490/47 585/1491/47 587/1484/47 -f 592/1492/48 590/1487/48 586/1493/48 -f 590/1487/48 588/1485/48 586/1493/48 -f 591/1494/49 592/1495/49 585/1496/49 -f 592/1495/49 586/1497/49 585/1496/49 -f 587/1498/50 588/1499/50 589/1500/50 -f 588/1499/50 590/1501/50 589/1500/50 -f 593/1502/67 594/1503/67 595/1504/67 -f 594/1503/67 596/1505/67 595/1504/67 -f 597/1506/68 598/1507/68 599/1508/68 -f 598/1507/68 600/1509/68 599/1508/68 -f 597/1506/69 599/1510/69 595/1504/69 -f 599/1510/69 593/1511/69 595/1504/69 -f 600/1512/70 598/1507/70 594/1513/70 -f 598/1507/70 596/1505/70 594/1513/70 -f 599/1514/49 600/1515/49 593/1516/49 -f 600/1515/49 594/1517/49 593/1516/49 -f 595/1518/50 596/1519/50 597/1520/50 -f 596/1519/50 598/1521/50 597/1520/50 -f 601/1522/63 602/1523/63 603/1524/63 -f 602/1523/63 604/1525/63 603/1524/63 -f 605/1526/64 606/1527/64 607/1528/64 -f 606/1527/64 608/1529/64 607/1528/64 -f 605/1526/65 607/1530/65 603/1524/65 -f 607/1530/65 601/1531/65 603/1524/65 -f 608/1532/66 606/1527/66 602/1533/66 -f 606/1527/66 604/1525/66 602/1533/66 -f 607/1534/49 608/1535/49 601/1536/49 -f 608/1535/49 602/1537/49 601/1536/49 -f 603/1538/50 604/1539/50 605/1540/50 -f 604/1539/50 606/1541/50 605/1540/50 -f 609/1542/59 610/1543/59 611/1544/59 -f 610/1543/59 612/1545/59 611/1544/59 -f 613/1546/60 614/1547/60 615/1548/60 -f 614/1547/60 616/1549/60 615/1548/60 -f 613/1546/61 615/1550/61 611/1544/61 -f 615/1550/61 609/1551/61 611/1544/61 -f 616/1552/62 614/1547/62 610/1553/62 -f 614/1547/62 612/1545/62 610/1553/62 -f 615/1554/49 616/1555/49 609/1556/49 -f 616/1555/49 610/1557/49 609/1556/49 -f 611/1558/50 612/1559/50 613/1560/50 -f 612/1559/50 614/1561/50 613/1560/50 -f 617/1562/63 618/1563/63 619/1564/63 -f 618/1563/63 620/1565/63 619/1564/63 -f 621/1566/64 622/1567/64 623/1568/64 -f 622/1567/64 624/1569/64 623/1568/64 -f 621/1566/65 623/1570/65 619/1564/65 -f 623/1570/65 617/1571/65 619/1564/65 -f 624/1572/66 622/1567/66 618/1573/66 -f 622/1567/66 620/1565/66 618/1573/66 -f 623/1574/49 624/1575/49 617/1576/49 -f 624/1575/49 618/1577/49 617/1576/49 -f 619/1578/50 620/1579/50 621/1580/50 -f 620/1579/50 622/1581/50 621/1580/50 -f 625/1582/67 626/1583/67 627/1584/67 -f 626/1583/67 628/1585/67 627/1584/67 -f 629/1586/68 630/1587/68 631/1588/68 -f 630/1587/68 632/1589/68 631/1588/68 -f 629/1586/69 631/1590/69 627/1584/69 -f 631/1590/69 625/1591/69 627/1584/69 -f 632/1592/70 630/1587/70 626/1593/70 -f 630/1587/70 628/1585/70 626/1593/70 -f 631/1594/49 632/1595/49 625/1596/49 -f 632/1595/49 626/1597/49 625/1596/49 -f 627/1598/50 628/1599/50 629/1600/50 -f 628/1599/50 630/1601/50 629/1600/50 -f 633/1602/45 634/1603/45 635/1604/45 -f 634/1603/45 636/1605/45 635/1604/45 -f 637/1606/46 638/1607/46 639/1608/46 -f 638/1607/46 640/1609/46 639/1608/46 -f 637/1606/47 639/1610/47 635/1604/47 -f 639/1610/47 633/1611/47 635/1604/47 -f 640/1612/48 638/1607/48 634/1613/48 -f 638/1607/48 636/1605/48 634/1613/48 -f 639/1614/49 640/1615/49 633/1616/49 -f 640/1615/49 634/1617/49 633/1616/49 -f 635/1618/50 636/1619/50 637/1620/50 -f 636/1619/50 638/1621/50 637/1620/50 -f 641/1622/59 642/1623/59 643/1624/59 -f 642/1623/59 644/1625/59 643/1624/59 -f 645/1626/60 646/1627/60 647/1628/60 -f 646/1627/60 648/1629/60 647/1628/60 -f 645/1626/61 647/1630/61 643/1624/61 -f 647/1630/61 641/1631/61 643/1624/61 -f 648/1632/62 646/1627/62 642/1633/62 -f 646/1627/62 644/1625/62 642/1633/62 -f 647/1634/49 648/1635/49 641/1636/49 -f 648/1635/49 642/1637/49 641/1636/49 -f 643/1638/50 644/1639/50 645/1640/50 -f 644/1639/50 646/1641/50 645/1640/50 -f 649/1642/45 650/1643/45 651/1644/45 -f 650/1643/45 652/1645/45 651/1644/45 -f 653/1646/46 654/1647/46 655/1648/46 -f 654/1647/46 656/1649/46 655/1648/46 -f 653/1646/47 655/1650/47 651/1644/47 -f 655/1650/47 649/1651/47 651/1644/47 -f 656/1652/48 654/1647/48 650/1653/48 -f 654/1647/48 652/1645/48 650/1653/48 -f 655/1654/49 656/1655/49 649/1656/49 -f 656/1655/49 650/1657/49 649/1656/49 -f 651/1658/50 652/1659/50 653/1660/50 -f 652/1659/50 654/1661/50 653/1660/50 -f 657/1662/45 658/1663/45 659/1664/45 -f 658/1663/45 660/1665/45 659/1664/45 -f 661/1666/46 662/1667/46 663/1668/46 -f 662/1667/46 664/1669/46 663/1668/46 -f 661/1666/51 663/1670/51 659/1664/51 -f 663/1670/51 657/1671/51 659/1664/51 -f 664/1672/52 662/1667/52 658/1673/52 -f 662/1667/52 660/1665/52 658/1673/52 -f 663/1674/53 664/1675/53 657/1676/53 -f 664/1675/53 658/1677/53 657/1676/53 -f 659/1678/54 660/1679/54 661/1680/54 -f 660/1679/54 662/1681/54 661/1680/54 -f 665/1682/45 666/1683/45 667/1684/45 -f 666/1683/45 668/1685/45 667/1684/45 -f 669/1686/46 670/1687/46 671/1688/46 -f 670/1687/46 672/1689/46 671/1688/46 -f 669/1686/71 671/1690/71 667/1684/71 -f 671/1690/71 665/1691/71 667/1684/71 -f 672/1692/72 670/1687/72 666/1693/72 -f 670/1687/72 668/1685/72 666/1693/72 -f 671/1694/73 672/1695/73 665/1696/73 -f 672/1695/73 666/1697/73 665/1696/73 -f 667/1698/74 668/1699/74 669/1700/74 -f 668/1699/74 670/1701/74 669/1700/74 -f 673/1702/45 674/1703/45 675/1704/45 -f 674/1703/45 676/1705/45 675/1704/45 -f 677/1706/46 678/1707/46 679/1708/46 -f 678/1707/46 680/1709/46 679/1708/46 -f 677/1706/47 679/1710/47 675/1704/47 -f 679/1710/47 673/1711/47 675/1704/47 -f 680/1712/48 678/1707/48 674/1713/48 -f 678/1707/48 676/1705/48 674/1713/48 -f 679/1714/49 680/1715/49 673/1716/49 -f 680/1715/49 674/1717/49 673/1716/49 -f 675/1718/50 676/1719/50 677/1720/50 -f 676/1719/50 678/1721/50 677/1720/50 -f 681/1722/45 682/1723/45 683/1724/45 -f 682/1723/45 684/1725/45 683/1724/45 -f 685/1726/46 686/1727/46 687/1728/46 -f 686/1727/46 688/1729/46 687/1728/46 -f 685/1726/47 687/1730/47 683/1724/47 -f 687/1730/47 681/1731/47 683/1724/47 -f 688/1732/48 686/1727/48 682/1733/48 -f 686/1727/48 684/1725/48 682/1733/48 -f 687/1734/49 688/1735/49 681/1736/49 -f 688/1735/49 682/1737/49 681/1736/49 -f 683/1738/50 684/1739/50 685/1740/50 -f 684/1739/50 686/1741/50 685/1740/50 -f 689/1742/45 690/1743/45 691/1744/45 -f 690/1743/45 692/1745/45 691/1744/45 -f 693/1746/46 694/1747/46 695/1748/46 -f 694/1747/46 696/1749/46 695/1748/46 -f 693/1746/51 695/1750/51 691/1744/51 -f 695/1750/51 689/1751/51 691/1744/51 -f 696/1752/52 694/1747/52 690/1753/52 -f 694/1747/52 692/1745/52 690/1753/52 -f 695/1754/53 696/1755/53 689/1756/53 -f 696/1755/53 690/1757/53 689/1756/53 -f 691/1758/54 692/1759/54 693/1760/54 -f 692/1759/54 694/1761/54 693/1760/54 -f 697/1762/59 698/1763/59 699/1764/59 -f 698/1763/59 700/1765/59 699/1764/59 -f 701/1766/60 702/1767/60 703/1768/60 -f 702/1767/60 704/1769/60 703/1768/60 -f 701/1766/61 703/1770/61 699/1764/61 -f 703/1770/61 697/1771/61 699/1764/61 -f 704/1772/62 702/1767/62 698/1773/62 -f 702/1767/62 700/1765/62 698/1773/62 -f 703/1774/49 704/1775/49 697/1776/49 -f 704/1775/49 698/1777/49 697/1776/49 -f 699/1778/50 700/1779/50 701/1780/50 -f 700/1779/50 702/1781/50 701/1780/50 -f 705/1782/67 706/1783/67 707/1784/67 -f 706/1783/67 708/1785/67 707/1784/67 -f 709/1786/68 710/1787/68 711/1788/68 -f 710/1787/68 712/1789/68 711/1788/68 -f 709/1786/69 711/1790/69 707/1784/69 -f 711/1790/69 705/1791/69 707/1784/69 -f 712/1792/70 710/1787/70 706/1793/70 -f 710/1787/70 708/1785/70 706/1793/70 -f 711/1794/49 712/1795/49 705/1796/49 -f 712/1795/49 706/1797/49 705/1796/49 -f 707/1798/50 708/1799/50 709/1800/50 -f 708/1799/50 710/1801/50 709/1800/50 -f 713/1802/67 714/1803/67 715/1804/67 -f 714/1803/67 716/1805/67 715/1804/67 -f 717/1806/68 718/1807/68 719/1808/68 -f 718/1807/68 720/1809/68 719/1808/68 -f 717/1806/69 719/1810/69 715/1804/69 -f 719/1810/69 713/1811/69 715/1804/69 -f 720/1812/70 718/1807/70 714/1813/70 -f 718/1807/70 716/1805/70 714/1813/70 -f 719/1814/49 720/1815/49 713/1816/49 -f 720/1815/49 714/1817/49 713/1816/49 -f 715/1818/50 716/1819/50 717/1820/50 -f 716/1819/50 718/1821/50 717/1820/50 -f 721/1822/59 722/1823/59 723/1824/59 -f 722/1823/59 724/1825/59 723/1824/59 -f 725/1826/60 726/1827/60 727/1828/60 -f 726/1827/60 728/1829/60 727/1828/60 -f 725/1826/61 727/1830/61 723/1824/61 -f 727/1830/61 721/1831/61 723/1824/61 -f 728/1832/62 726/1827/62 722/1833/62 -f 726/1827/62 724/1825/62 722/1833/62 -f 727/1834/49 728/1835/49 721/1836/49 -f 728/1835/49 722/1837/49 721/1836/49 -f 723/1838/50 724/1839/50 725/1840/50 -f 724/1839/50 726/1841/50 725/1840/50 -f 729/1842/45 730/1843/45 731/1844/45 -f 730/1843/45 732/1845/45 731/1844/45 -f 733/1846/46 734/1847/46 735/1848/46 -f 734/1847/46 736/1849/46 735/1848/46 -f 733/1846/47 735/1850/47 731/1844/47 -f 735/1850/47 729/1851/47 731/1844/47 -f 736/1852/48 734/1847/48 730/1853/48 -f 734/1847/48 732/1845/48 730/1853/48 -f 735/1854/49 736/1855/49 729/1856/49 -f 736/1855/49 730/1857/49 729/1856/49 -f 731/1858/50 732/1859/50 733/1860/50 -f 732/1859/50 734/1861/50 733/1860/50 +f 229/346/74 231/347/74 223/348/74 +f 205/349/74 216/350/74 204/351/74 +f 203/352/74 216/353/74 215/354/74 +f 202/355/74 215/356/74 214/357/74 +f 202/355/74 213/358/74 201/359/74 +f 200/360/74 213/361/74 212/362/74 +f 200/360/74 211/363/74 199/364/74 +f 210/365/74 211/366/74 222/367/74 +f 210/365/74 221/368/74 209/369/74 +f 208/370/74 221/371/74 220/372/74 +f 208/370/74 219/373/74 207/374/74 +f 207/374/74 218/375/74 206/376/74 +f 205/377/74 218/378/74 217/379/74 +f 245/380/75 253/381/75 252/382/75 +f 246/383/75 247/384/75 253/381/75 +f 235/385/75 248/386/75 247/384/75 +f 236/387/75 249/388/75 248/386/75 +f 238/389/75 249/388/75 237/390/75 +f 240/391/75 298/392/75 239/393/75 +f 244/394/75 252/382/75 251/395/75 +f 260/396/74 271/397/74 259/398/74 +f 254/399/74 272/400/74 260/396/74 +f 255/401/74 261/402/74 254/399/74 +f 256/403/74 262/404/74 255/401/74 +f 257/405/74 263/406/74 256/403/74 +f 250/407/75 239/393/75 297/408/75 +f 303/409/75 243/410/75 251/395/75 +f 242/411/75 302/412/75 301/413/75 +f 241/414/75 301/413/75 300/415/75 +f 241/414/75 299/416/75 240/391/75 +f 259/398/74 270/417/74 258/418/74 +f 304/419/74 265/420/74 257/405/74 +f 258/418/74 270/417/74 269/421/74 +f 268/422/74 309/423/74 269/421/74 +f 267/424/74 308/425/74 268/422/74 +f 306/426/74 267/424/74 266/427/74 +f 305/428/74 266/427/74 265/420/74 +f 385/429/75 381/430/75 377/431/75 +f 373/432/75 369/433/75 365/434/75 +f 194/435/74 283/436/74 195/437/74 +f 193/438/74 284/439/74 194/435/74 +f 192/440/74 273/441/74 193/438/74 +f 191/442/74 274/443/74 192/440/74 +f 190/444/74 275/445/74 191/442/74 +f 195/437/74 282/446/74 196/447/74 +f 315/448/74 282/446/74 324/449/74 +f 276/450/74 314/451/74 318/452/74 +f 313/453/74 190/444/74 189/454/74 +f 188/455/74 313/453/74 189/454/74 +f 187/456/74 312/457/74 188/455/74 +f 198/458/74 311/459/74 187/456/74 +f 197/460/74 317/461/74 198/458/74 +f 196/447/74 316/462/74 197/460/74 +f 323/463/74 282/446/74 281/464/74 +f 280/465/74 323/463/74 281/464/74 +f 279/466/74 322/467/74 280/465/74 +f 320/468/74 279/466/74 278/469/74 +f 319/470/74 278/469/74 277/471/74 +f 318/452/74 277/471/74 276/450/74 +f 346/472/75 351/473/75 345/474/75 +f 351/473/75 344/475/75 345/474/75 +f 344/475/75 353/476/75 343/477/75 +f 353/476/75 342/478/75 343/477/75 +f 361/479/75 346/472/75 347/480/75 +f 360/481/75 347/480/75 348/482/75 +f 360/481/75 330/483/75 333/484/75 +f 328/485/75 354/486/75 332/487/75 +f 341/488/75 328/485/75 327/489/75 +f 340/490/75 327/489/75 325/491/75 +f 339/492/75 325/491/75 326/493/75 +f 331/494/75 339/492/75 326/493/75 +f 349/495/75 331/494/75 329/496/75 +f 330/483/75 349/495/75 329/496/75 +f 359/497/75 333/484/75 338/498/75 +f 358/499/75 338/498/75 337/500/75 +f 336/501/75 358/499/75 337/500/75 +f 356/502/75 336/501/75 335/503/75 +f 334/504/75 356/502/75 335/503/75 +f 332/487/75 355/505/75 334/504/75 +f 392/506/74 387/507/74 389/508/74 +f 399/509/76 396/510/76 401/511/76 +f 408/512/74 403/513/74 405/514/74 +f 416/515/77 414/516/77 417/517/77 +f 424/518/77 422/519/77 420/520/77 +f 421/521/76 423/522/76 419/523/76 +f 429/524/76 423/522/76 425/525/76 +f 424/518/77 430/526/77 426/527/77 +f 402/528/76 445/529/76 398/530/76 +f 418/531/77 446/532/77 448/533/77 +f 392/534/77 389/535/77 395/536/77 +f 443/537/78 450/538/78 444/539/78 +f 444/540/77 450/538/77 400/541/77 +f 449/542/76 412/543/76 410/544/76 +f 392/534/79 449/542/79 407/545/79 +f 415/546/76 449/542/76 443/547/76 +f 451/548/74 459/549/74 454/550/74 +f 476/551/77 480/552/77 478/553/77 +f 473/554/76 475/555/76 471/556/76 +f 472/557/77 478/553/77 474/558/77 +f 477/559/76 479/560/76 475/555/76 +f 223/348/74 224/561/74 227/562/74 +f 224/561/74 225/563/74 227/562/74 +f 225/563/74 226/564/74 227/562/74 +f 227/562/74 228/565/74 229/346/74 +f 229/346/74 230/566/74 231/347/74 +f 231/347/74 232/567/74 233/568/74 +f 233/568/74 234/569/74 231/347/74 +f 234/569/74 223/348/74 231/347/74 +f 227/562/74 229/346/74 223/348/74 +f 205/349/74 217/570/74 216/350/74 +f 203/352/74 204/351/74 216/353/74 +f 202/355/74 203/352/74 215/356/74 +f 202/355/74 214/571/74 213/358/74 +f 200/360/74 201/359/74 213/361/74 +f 200/360/74 212/572/74 211/363/74 +f 210/365/74 199/364/74 211/366/74 +f 210/365/74 222/573/74 221/368/74 +f 208/370/74 209/369/74 221/371/74 +f 208/370/74 220/574/74 219/373/74 +f 207/374/74 219/575/74 218/375/74 +f 205/377/74 206/376/74 218/378/74 +f 245/380/75 246/383/75 253/381/75 +f 246/383/75 235/385/75 247/384/75 +f 235/385/75 236/387/75 248/386/75 +f 236/387/75 237/390/75 249/388/75 +f 238/389/75 250/407/75 249/388/75 +f 240/391/75 299/416/75 298/392/75 +f 244/394/75 245/380/75 252/382/75 +f 260/396/74 272/400/74 271/397/74 +f 254/399/74 261/402/74 272/400/74 +f 255/401/74 262/404/74 261/402/74 +f 256/403/74 263/406/74 262/404/74 +f 257/405/74 264/576/74 263/406/74 +f 238/389/75 239/393/75 250/407/75 +f 239/393/75 298/392/75 297/408/75 +f 302/412/75 243/410/75 303/409/75 +f 243/410/75 244/394/75 251/395/75 +f 242/411/75 243/410/75 302/412/75 +f 241/414/75 242/411/75 301/413/75 +f 241/414/75 300/415/75 299/416/75 +f 259/398/74 271/397/74 270/417/74 +f 305/428/74 265/420/74 304/419/74 +f 265/420/74 264/576/74 257/405/74 +f 309/423/74 310/577/74 269/421/74 +f 310/577/74 258/418/74 269/421/74 +f 268/422/74 308/425/74 309/423/74 +f 267/424/74 307/578/74 308/425/74 +f 306/426/74 307/578/74 267/424/74 +f 305/428/74 306/426/74 266/427/74 +f 377/431/75 376/579/75 375/580/75 +f 375/580/75 386/581/75 377/431/75 +f 386/581/75 385/429/75 377/431/75 +f 385/429/75 384/582/75 381/430/75 +f 384/582/75 383/583/75 381/430/75 +f 383/583/75 382/584/75 381/430/75 +f 381/430/75 380/585/75 379/586/75 +f 379/586/75 378/587/75 381/430/75 +f 378/587/75 377/431/75 381/430/75 +f 365/434/75 364/588/75 363/589/75 +f 363/589/75 374/590/75 365/434/75 +f 374/590/75 373/432/75 365/434/75 +f 373/432/75 372/591/75 369/433/75 +f 372/591/75 371/592/75 369/433/75 +f 371/592/75 370/593/75 369/433/75 +f 369/433/75 368/594/75 367/595/75 +f 367/595/75 366/596/75 369/433/75 +f 366/596/75 365/434/75 369/433/75 +f 194/435/74 284/439/74 283/436/74 +f 193/438/74 273/441/74 284/439/74 +f 192/440/74 274/443/74 273/441/74 +f 191/442/74 275/445/74 274/443/74 +f 190/444/74 276/450/74 275/445/74 +f 195/437/74 283/436/74 282/446/74 +f 315/448/74 196/447/74 282/446/74 +f 276/450/74 190/444/74 314/451/74 +f 313/453/74 314/451/74 190/444/74 +f 188/455/74 312/457/74 313/453/74 +f 187/456/74 311/459/74 312/457/74 +f 198/458/74 317/461/74 311/459/74 +f 197/460/74 316/462/74 317/461/74 +f 196/447/74 315/448/74 316/462/74 +f 323/463/74 324/449/74 282/446/74 +f 280/465/74 322/467/74 323/463/74 +f 279/466/74 321/597/74 322/467/74 +f 320/468/74 321/597/74 279/466/74 +f 319/470/74 320/468/74 278/469/74 +f 318/452/74 319/470/74 277/471/74 +f 346/472/75 362/598/75 351/473/75 +f 351/473/75 352/599/75 344/475/75 +f 344/475/75 352/599/75 353/476/75 +f 353/476/75 354/486/75 342/478/75 +f 361/479/75 362/598/75 346/472/75 +f 360/481/75 361/479/75 347/480/75 +f 360/481/75 348/482/75 330/483/75 +f 328/485/75 342/478/75 354/486/75 +f 341/488/75 342/478/75 328/485/75 +f 340/490/75 341/488/75 327/489/75 +f 339/492/75 340/490/75 325/491/75 +f 331/494/75 350/600/75 339/492/75 +f 349/495/75 350/600/75 331/494/75 +f 330/483/75 348/482/75 349/495/75 +f 359/497/75 360/481/75 333/484/75 +f 358/499/75 359/497/75 338/498/75 +f 336/501/75 357/601/75 358/499/75 +f 356/502/75 357/601/75 336/501/75 +f 334/504/75 355/505/75 356/502/75 +f 332/487/75 354/486/75 355/505/75 +f 392/506/74 391/602/74 387/507/74 +f 388/603/76 387/507/76 394/604/76 +f 387/507/76 391/602/76 394/604/76 +f 391/602/76 393/605/76 394/604/76 +f 393/605/76 401/511/76 396/510/76 +f 394/604/76 393/605/76 396/510/76 +f 401/511/76 402/528/76 398/530/76 +f 398/530/76 399/509/76 401/511/76 +f 408/512/74 407/606/74 403/513/74 +f 408/512/77 405/514/77 411/607/77 +f 405/514/77 406/608/77 411/607/77 +f 411/607/77 413/609/77 409/610/77 +f 413/609/77 416/515/77 417/517/77 +f 417/517/77 409/610/77 413/609/77 +f 409/610/77 408/512/77 411/607/77 +f 414/516/77 418/531/77 417/517/77 +f 424/518/77 426/527/77 422/519/77 +f 421/521/76 425/525/76 423/522/76 +f 429/524/76 427/611/76 423/522/76 +f 424/518/77 428/612/77 430/526/77 +f 402/528/76 447/613/76 445/529/76 +f 418/531/77 414/516/77 446/532/77 +f 389/535/77 390/614/77 395/536/77 +f 395/536/77 397/615/77 450/538/77 +f 397/615/77 400/541/77 450/538/77 +f 450/538/77 392/534/77 395/536/77 +f 443/537/78 449/542/78 450/538/78 +f 410/544/76 404/616/76 403/617/76 +f 403/617/76 407/545/76 410/544/76 +f 407/545/76 449/542/76 410/544/76 +f 449/542/76 415/546/76 412/543/76 +f 392/534/79 450/538/79 449/542/79 +f 454/550/74 453/618/74 463/619/74 +f 463/619/74 464/620/74 451/548/74 +f 451/548/74 452/621/74 459/549/74 +f 459/549/74 460/622/74 454/550/74 +f 454/550/74 463/619/74 451/548/74 +f 473/554/76 477/559/76 475/555/76 +f 472/557/77 476/551/77 478/553/77 +s 1 +f 193/623/80 204/351/81 192/624/81 +f 192/624/81 203/352/82 191/625/82 +f 191/625/82 202/355/77 190/626/77 +f 190/626/77 201/359/83 189/627/83 +f 189/627/83 200/360/84 188/628/84 +f 188/628/84 199/364/79 187/629/79 +f 187/629/79 210/365/85 198/630/85 +f 198/630/85 209/369/86 197/631/86 +f 197/631/86 208/370/76 196/632/76 +f 196/632/76 207/374/87 195/633/87 +f 195/633/87 206/376/88 194/634/88 +f 194/634/88 205/377/80 193/635/80 +f 214/636/76 225/637/87 213/638/87 +f 221/639/82 232/640/77 220/641/77 +f 218/642/84 229/643/79 217/644/79 +f 215/645/86 226/646/76 214/636/76 +f 222/647/81 233/648/82 221/639/82 +f 212/649/88 223/650/80 211/651/80 +f 219/652/83 230/653/84 218/642/84 +f 216/654/85 227/655/86 215/645/86 +f 211/651/80 234/656/81 222/647/81 +f 213/638/87 224/657/88 212/649/88 +f 220/641/77 231/658/83 219/652/83 +f 217/659/79 228/660/85 216/654/85 +f 253/661/85 259/662/86 252/663/86 +f 248/664/84 254/665/79 247/666/79 +f 247/666/79 260/667/85 253/661/85 +f 249/668/83 255/669/84 248/664/84 +f 250/670/89 256/671/83 249/668/83 +f 252/663/86 258/672/90 251/673/90 +f 303/674/91 258/672/90 310/675/91 +f 279/676/80 290/677/81 278/678/81 +f 278/678/81 289/679/82 277/680/82 +f 277/680/82 288/681/77 276/682/77 +f 276/682/77 287/683/83 275/684/83 +f 275/684/83 286/685/84 274/686/84 +f 274/686/84 285/687/79 273/688/79 +f 273/688/79 296/689/85 284/690/85 +f 284/690/85 295/691/86 283/692/86 +f 283/692/86 294/693/76 282/694/76 +f 282/694/76 293/695/87 281/696/87 +f 281/696/87 292/697/88 280/698/88 +f 280/698/88 291/699/80 279/700/80 +f 304/701/92 250/670/89 297/702/92 +f 301/703/88 307/704/80 300/705/80 +f 298/706/82 304/701/92 297/702/92 +f 302/707/87 308/708/88 301/703/88 +f 299/709/81 305/710/82 298/706/82 +f 303/674/91 309/711/87 302/707/87 +f 300/712/80 306/713/81 299/709/81 +f 319/714/82 335/715/81 320/716/81 +f 313/717/83 328/718/89 314/719/89 +f 320/716/81 336/720/80 321/721/80 +f 315/722/90 329/723/86 316/724/86 +f 321/725/80 337/726/88 322/727/88 +f 316/724/86 331/728/85 317/729/85 +f 322/727/88 338/730/87 323/731/87 +f 317/729/85 326/732/79 311/733/79 +f 323/731/87 333/734/91 324/735/91 +f 314/719/89 332/736/92 318/737/92 +f 324/735/91 330/738/90 315/722/90 +f 311/733/79 325/739/84 312/740/84 +f 318/737/92 334/741/82 319/714/82 +f 312/740/84 327/742/83 313/717/83 +f 374/743/81 339/744/80 350/745/81 +f 367/746/86 344/747/85 343/748/86 +f 382/749/84 359/750/83 358/751/84 +f 375/752/80 352/753/88 351/754/80 +f 368/755/85 345/756/79 344/747/85 +f 383/757/83 360/758/77 359/750/83 +f 376/759/88 353/760/87 352/753/88 +f 369/761/79 346/762/84 345/763/79 +f 384/764/77 361/765/82 360/758/77 +f 377/766/87 354/767/76 353/760/87 +f 370/768/84 347/769/83 346/762/84 +f 385/770/82 362/771/81 361/765/82 +f 363/772/80 340/773/88 339/744/80 +f 378/774/76 355/775/86 354/767/76 +f 371/776/83 348/777/77 347/769/83 +f 386/778/81 351/754/80 362/771/81 +f 364/779/88 341/780/87 340/773/88 +f 379/781/86 356/782/85 355/775/86 +f 372/783/77 349/784/82 348/777/77 +f 365/785/87 342/786/76 341/780/87 +f 380/787/85 357/788/79 356/782/85 +f 373/789/82 350/745/81 349/784/82 +f 366/790/76 343/748/86 342/786/76 +f 381/791/79 358/751/84 357/792/79 +f 390/793/93 387/507/79 388/603/93 +f 394/794/93 390/793/93 388/603/93 +f 396/795/94 395/796/93 394/794/93 +f 399/797/95 397/798/94 396/795/94 +f 407/799/96 393/800/97 392/801/96 +f 406/608/93 403/802/79 404/803/93 +f 410/804/93 406/608/93 404/803/93 +f 412/805/94 411/806/93 410/804/93 +f 415/807/95 413/808/94 412/805/94 +f 414/809/95 443/810/98 446/811/99 +f 401/812/100 441/813/101 402/814/100 +f 423/815/102 428/816/103 424/817/102 +f 426/527/104 429/818/105 425/525/104 +f 430/819/105 427/820/103 429/818/105 +f 435/821/80 423/522/102 424/822/102 +f 426/527/104 425/525/104 438/823/79 +f 442/824/101 417/825/100 418/826/100 +f 401/812/100 393/800/97 439/827/101 +f 399/797/95 444/828/98 400/829/95 +f 443/810/98 416/830/95 415/807/95 +f 443/810/98 445/831/99 446/811/99 +f 402/814/100 441/813/101 447/613/106 +f 445/831/99 444/828/98 398/832/95 +f 441/813/101 448/833/106 447/613/106 +f 448/833/106 442/824/101 418/826/100 +f 458/834/107 467/835/108 455/836/109 +f 454/550/110 455/836/109 453/618/111 +f 451/837/112 457/838/113 452/839/114 +f 458/834/107 460/840/115 462/841/116 +f 455/836/109 463/842/117 453/618/111 +f 459/843/118 462/841/116 460/840/115 +f 466/844/119 467/845/108 468/846/120 +f 452/839/114 461/847/121 459/843/118 +f 464/848/122 465/849/123 466/844/119 +f 451/850/112 466/844/119 456/851/124 +f 465/849/123 455/836/109 467/845/108 +f 467/835/108 469/852/125 468/853/120 +f 456/854/124 469/852/125 457/855/113 +f 468/846/120 456/851/124 466/844/119 +f 461/847/121 470/856/126 462/841/116 +f 458/834/107 462/841/116 470/856/126 +f 457/838/113 469/857/125 461/847/121 +f 474/558/74 477/559/127 473/554/74 +f 471/858/75 476/551/128 472/557/75 +f 478/553/127 479/560/129 477/559/127 +f 475/859/128 480/860/130 476/551/128 +f 440/861/101 409/862/97 417/825/100 +f 393/800/97 440/861/101 439/827/101 +f 409/862/97 407/799/96 408/863/96 +f 393/800/97 391/864/96 392/801/96 +f 193/623/80 205/349/80 204/351/81 +f 192/624/81 204/351/81 203/352/82 +f 191/625/82 203/352/82 202/355/77 +f 190/626/77 202/355/77 201/359/83 +f 189/627/83 201/359/83 200/360/84 +f 188/628/84 200/360/84 199/364/79 +f 187/629/79 199/364/79 210/365/85 +f 198/630/85 210/365/85 209/369/86 +f 197/631/86 209/369/86 208/370/76 +f 196/632/76 208/370/76 207/374/87 +f 195/633/87 207/374/87 206/376/88 +f 194/634/88 206/376/88 205/377/80 +f 214/636/76 226/646/76 225/637/87 +f 221/639/82 233/648/82 232/640/77 +f 218/642/84 230/653/84 229/643/79 +f 215/645/86 227/655/86 226/646/76 +f 222/647/81 234/656/81 233/648/82 +f 212/649/88 224/657/88 223/650/80 +f 219/652/83 231/658/83 230/653/84 +f 216/654/85 228/660/85 227/655/86 +f 211/651/80 223/650/80 234/656/81 +f 213/638/87 225/637/87 224/657/88 +f 220/641/77 232/640/77 231/658/83 +f 217/659/79 229/865/79 228/660/85 +f 253/661/85 260/667/85 259/662/86 +f 248/664/84 255/669/84 254/665/79 +f 247/666/79 254/665/79 260/667/85 +f 249/668/83 256/671/83 255/669/84 +f 250/670/89 257/866/89 256/671/83 +f 252/663/86 259/662/86 258/672/90 +f 303/674/91 251/673/90 258/672/90 +f 279/676/80 291/867/80 290/677/81 +f 278/678/81 290/677/81 289/679/82 +f 277/680/82 289/679/82 288/681/77 +f 276/682/77 288/681/77 287/683/83 +f 275/684/83 287/683/83 286/685/84 +f 274/686/84 286/685/84 285/687/79 +f 273/688/79 285/687/79 296/689/85 +f 284/690/85 296/689/85 295/691/86 +f 283/692/86 295/691/86 294/693/76 +f 282/694/76 294/693/76 293/695/87 +f 281/696/87 293/695/87 292/697/88 +f 280/698/88 292/697/88 291/699/80 +f 304/701/92 257/866/89 250/670/89 +f 301/703/88 308/708/88 307/704/80 +f 298/706/82 305/710/82 304/701/92 +f 302/707/87 309/711/87 308/708/88 +f 299/709/81 306/713/81 305/710/82 +f 303/674/91 310/675/91 309/711/87 +f 300/712/80 307/868/80 306/713/81 +f 319/714/82 334/741/82 335/715/81 +f 313/717/83 327/742/83 328/718/89 +f 320/716/81 335/715/81 336/720/80 +f 315/722/90 330/738/90 329/723/86 +f 321/725/80 336/869/80 337/726/88 +f 316/724/86 329/723/86 331/728/85 +f 322/727/88 337/726/88 338/730/87 +f 317/729/85 331/728/85 326/732/79 +f 323/731/87 338/730/87 333/734/91 +f 314/719/89 328/718/89 332/736/92 +f 324/735/91 333/734/91 330/738/90 +f 311/733/79 326/732/79 325/739/84 +f 318/737/92 332/736/92 334/741/82 +f 312/740/84 325/739/84 327/742/83 +f 374/743/81 363/772/80 339/744/80 +f 367/746/86 368/755/85 344/747/85 +f 382/749/84 383/757/83 359/750/83 +f 375/752/80 376/759/88 352/753/88 +f 368/755/85 369/870/79 345/756/79 +f 383/757/83 384/764/77 360/758/77 +f 376/759/88 377/766/87 353/760/87 +f 369/761/79 370/768/84 346/762/84 +f 384/764/77 385/770/82 361/765/82 +f 377/766/87 378/774/76 354/767/76 +f 370/768/84 371/776/83 347/769/83 +f 385/770/82 386/778/81 362/771/81 +f 363/772/80 364/779/88 340/773/88 +f 378/774/76 379/781/86 355/775/86 +f 371/776/83 372/783/77 348/777/77 +f 386/778/81 375/752/80 351/754/80 +f 364/779/88 365/785/87 341/780/87 +f 379/781/86 380/787/85 356/782/85 +f 372/783/77 373/789/82 349/784/82 +f 365/785/87 366/790/76 342/786/76 +f 380/787/85 381/871/79 357/788/79 +f 373/789/82 374/743/81 350/745/81 +f 366/790/76 367/746/86 343/748/86 +f 381/791/79 382/749/84 358/751/84 +f 390/793/93 389/872/79 387/507/79 +f 394/794/93 395/796/93 390/793/93 +f 396/795/94 397/798/94 395/796/93 +f 399/797/95 400/829/95 397/798/94 +f 407/799/96 409/862/97 393/800/97 +f 406/608/93 405/514/79 403/802/79 +f 410/804/93 411/806/93 406/608/93 +f 412/805/94 413/808/94 411/806/93 +f 415/807/95 416/830/95 413/808/94 +f 401/812/100 439/827/101 441/813/101 +f 423/815/102 427/820/103 428/816/103 +f 426/527/104 430/819/105 429/818/105 +f 430/819/105 428/816/103 427/820/103 +f 424/822/102 420/873/80 437/874/80 +f 420/873/80 433/875/80 437/874/80 +f 431/876/80 419/523/80 435/821/80 +f 419/523/80 423/522/102 435/821/80 +f 424/822/102 437/874/80 435/821/80 +f 425/525/104 421/521/79 436/877/79 +f 421/521/79 432/878/79 436/877/79 +f 434/879/79 422/519/79 438/823/79 +f 422/519/79 426/527/104 438/823/79 +f 425/525/104 436/877/79 438/823/79 +f 442/824/101 440/861/101 417/825/100 +f 399/797/95 398/832/95 444/828/98 +f 443/810/98 414/809/95 416/830/95 +f 443/810/98 444/828/98 445/831/99 +f 441/813/101 442/824/101 448/833/106 +f 458/834/107 470/880/126 467/835/108 +f 454/550/110 458/834/107 455/836/109 +f 451/837/112 456/881/124 457/838/113 +f 458/834/107 454/550/110 460/840/115 +f 455/836/109 465/849/123 463/842/117 +f 459/843/118 461/847/121 462/841/116 +f 466/844/119 465/849/123 467/845/108 +f 452/839/114 457/838/113 461/847/121 +f 464/848/122 463/842/117 465/849/123 +f 451/850/112 464/848/122 466/844/119 +f 467/835/108 470/880/126 469/852/125 +f 456/854/124 468/853/120 469/852/125 +f 461/847/121 469/857/125 470/856/126 +f 474/558/74 478/553/127 477/559/127 +f 471/858/75 475/859/128 476/551/128 +f 478/553/127 480/552/129 479/560/129 +f 475/859/128 479/882/130 480/860/130 +f 393/800/97 409/862/97 440/861/101 diff --git a/src/main/resources/assets/hbm/models/weapons/moonlight.obj b/src/main/resources/assets/hbm/models/weapons/moonlight.obj new file mode 100644 index 000000000..aa4bfc765 --- /dev/null +++ b/src/main/resources/assets/hbm/models/weapons/moonlight.obj @@ -0,0 +1,2921 @@ +# Blender v2.79 (sub 0) OBJ File: 'nice_try_shitass' +# www.blender.org +o Circle +v 0.000000 2.000000 0.500000 +v -0.382683 1.923880 0.500000 +v -0.707107 1.707107 0.500000 +v -0.923880 1.382683 0.500000 +v -1.000000 1.000000 0.500000 +v -0.923880 0.617316 0.500000 +v -0.707107 0.292893 0.500000 +v -0.382683 0.076120 0.500000 +v 0.000000 0.000000 0.500000 +v 0.382683 0.076120 0.500000 +v 0.707107 0.292893 0.500000 +v 0.923880 0.617316 0.500000 +v 1.000000 1.000000 0.500000 +v 0.923880 1.382684 0.500000 +v 0.707107 1.707107 0.500000 +v 0.382683 1.923880 0.500000 +v 0.000000 1.750000 0.500000 +v -0.287013 1.692910 0.500000 +v -0.530330 1.530330 0.500000 +v -0.692910 1.287013 0.500000 +v -0.750000 1.000000 0.500000 +v -0.692910 0.712987 0.500000 +v -0.530330 0.469670 0.500000 +v -0.287013 0.307090 0.500000 +v 0.000000 0.250000 0.500000 +v 0.287013 0.307090 0.500000 +v 0.530330 0.469670 0.500000 +v 0.692910 0.712987 0.500000 +v 0.750000 1.000000 0.500000 +v 0.692910 1.287013 0.500000 +v 0.530330 1.530330 0.500000 +v 0.287012 1.692910 0.500000 +v 0.000000 2.250000 0.500000 +v -0.478354 2.154850 0.500000 +v -0.883883 1.883883 0.500000 +v -1.154850 1.478354 0.500000 +v -1.250000 1.000000 0.500000 +v -1.154850 0.521646 0.500000 +v -0.883883 0.116117 0.500000 +v -0.478354 -0.154850 0.500000 +v -0.000000 -0.250000 0.500000 +v 0.478354 -0.154850 0.500000 +v 0.883883 0.116117 0.500000 +v 1.154849 0.521646 0.500000 +v 1.250000 1.000000 0.500000 +v 1.154849 1.478354 0.500000 +v 0.883883 1.883883 0.500000 +v 0.478354 2.154850 0.500000 +v 0.000000 2.250000 -4.000000 +v -0.478354 2.154850 -4.000000 +v -0.883883 1.883883 -4.000000 +v -1.154850 1.478354 -4.000000 +v -1.250000 1.000000 -4.000000 +v -1.154850 0.521646 -4.000000 +v -0.883883 0.116117 -4.000000 +v -0.478354 -0.154850 -4.000000 +v -0.000000 -0.250000 -4.000000 +v 0.478354 -0.154850 -4.000000 +v 0.883883 0.116117 -4.000000 +v 1.154849 0.521646 -4.000000 +v 1.250000 1.000000 -4.000000 +v 1.154849 1.478354 -4.000000 +v 0.883883 1.883883 -4.000000 +v 0.478354 2.154850 -4.000000 +v 0.000000 2.000000 -4.000000 +v -0.382683 1.923880 -4.000000 +v -0.707107 1.707107 -4.000000 +v -0.923880 1.382683 -4.000000 +v -1.000000 1.000000 -4.000000 +v -0.923880 0.617316 -4.000000 +v -0.707107 0.292893 -4.000000 +v -0.382683 0.076120 -4.000000 +v 0.000000 0.000000 -4.000000 +v 0.382683 0.076120 -4.000000 +v 0.707107 0.292893 -4.000000 +v 0.923880 0.617316 -4.000000 +v 1.000000 1.000000 -4.000000 +v 0.923880 1.382684 -4.000000 +v 0.707107 1.707107 -4.000000 +v 0.382683 1.923880 -4.000000 +v 0.382683 1.923880 -4.500000 +v 0.707107 1.707107 -4.500000 +v 0.923880 1.382684 -4.500000 +v 1.000000 1.000000 -4.500000 +v 0.923880 0.617316 -4.500000 +v 0.707107 0.292893 -4.500000 +v 0.382683 0.076120 -4.500000 +v 0.000000 0.000000 -4.500000 +v -0.382683 0.076120 -4.500000 +v -0.707107 0.292893 -4.500000 +v -0.923880 0.617316 -4.500000 +v -1.000000 1.000000 -4.500000 +v -0.923880 1.382683 -4.500000 +v -0.707107 1.707107 -4.500000 +v -0.382683 1.923880 -4.500000 +v 0.000000 2.000000 -4.500000 +v 0.000000 2.000000 -3.500000 +v -0.382683 1.923880 -3.500000 +v -0.707107 1.707107 -3.500000 +v -0.923880 1.382683 -3.500000 +v -1.000000 1.000000 -3.500000 +v -0.923880 0.617316 -3.500000 +v -0.707107 0.292893 -3.500000 +v -0.382683 0.076120 -3.500000 +v 0.000000 0.000000 -3.500000 +v 0.382683 0.076120 -3.500000 +v 0.707107 0.292893 -3.500000 +v 0.923880 0.617316 -3.500000 +v 1.000000 1.000000 -3.500000 +v 0.923880 1.382684 -3.500000 +v 0.707107 1.707107 -3.500000 +v 0.382683 1.923880 -3.500000 +v -0.500000 0.000000 -6.000000 +v 0.500000 0.000000 -6.000000 +v -0.500000 0.000000 -7.000000 +v 0.500000 0.000000 -7.000000 +v -0.500000 -0.250000 -7.250000 +v 0.500000 -0.250000 -7.250000 +v -0.500000 -0.250000 -5.750000 +v 0.500000 -0.250000 -5.750000 +v 0.250000 0.125000 -7.187500 +v -0.250000 0.125000 -7.187500 +v 0.250000 0.125000 -5.812500 +v -0.250000 0.125000 -5.812500 +v -0.500000 -0.250000 -5.625000 +v 0.500000 -0.250000 -5.625000 +v -0.500000 0.125000 -5.625000 +v 0.500000 0.125000 -5.625000 +v 0.500000 -0.250000 -7.375000 +v -0.500000 -0.250000 -7.375000 +v 0.500000 0.125000 -7.375000 +v -0.500000 0.125000 -7.375000 +v 0.250000 0.375000 -5.812500 +v 0.250000 0.375000 -7.187500 +v -0.250000 0.375000 -7.187500 +v -0.250000 0.375000 -5.812500 +v 1.250000 0.750000 -4.375000 +v -1.250000 0.750000 -4.375000 +v 1.250000 1.250000 -4.375000 +v -1.250000 1.250000 -4.375000 +v -1.250000 1.250000 -4.125000 +v 1.250000 1.250000 -4.125000 +v -1.250000 0.750000 -4.125000 +v 1.250000 0.750000 -4.125000 +v 0.250000 2.250000 -4.125000 +v 0.250000 -0.250000 -4.125000 +v -0.250000 2.250000 -4.125000 +v -0.250000 -0.250000 -4.125000 +v -0.250000 -0.250000 -4.375000 +v -0.250000 2.250000 -4.375000 +v 0.250000 -0.250000 -4.375000 +v 0.250000 2.250000 -4.375000 +v -0.707107 2.060660 -4.125000 +v 1.060660 0.292893 -4.125000 +v -1.060660 1.707107 -4.125000 +v 0.707107 -0.060660 -4.125000 +v 0.707107 -0.060660 -4.375000 +v -1.060660 1.707107 -4.375000 +v 1.060660 0.292893 -4.375000 +v -0.707107 2.060660 -4.375000 +v 1.060660 1.707107 -4.375000 +v -0.707107 -0.060660 -4.375000 +v 0.707107 2.060660 -4.375000 +v -1.060660 0.292893 -4.375000 +v -1.060660 0.292893 -4.125000 +v 0.707107 2.060660 -4.125000 +v -0.707107 -0.060660 -4.125000 +v 1.060660 1.707107 -4.125000 +v 0.000000 2.000000 -4.500000 +v -0.382683 1.923880 -4.500000 +v -0.707107 1.707107 -4.500000 +v -0.923880 1.382683 -4.500000 +v -1.000000 1.000000 -4.500000 +v -0.923880 0.617316 -4.500000 +v -0.707107 0.292893 -4.500000 +v -0.382683 0.076120 -4.500000 +v 0.000000 0.000000 -4.500000 +v 0.382683 0.076120 -4.500000 +v 0.707107 0.292893 -4.500000 +v 0.923880 0.617316 -4.500000 +v 1.000000 1.000000 -4.500000 +v 0.923880 1.382684 -4.500000 +v 0.707107 1.707107 -4.500000 +v 0.382683 1.923880 -4.500000 +v 0.000000 1.750000 -5.500000 +v -0.287013 1.692910 -5.500000 +v -0.530330 1.530330 -5.500000 +v -0.692910 1.287013 -5.500000 +v -0.750000 1.000000 -5.500000 +v -0.692910 0.712987 -5.500000 +v -0.530330 0.469670 -5.500000 +v -0.287013 0.307090 -5.500000 +v 0.000000 0.250000 -5.500000 +v 0.287013 0.307090 -5.500000 +v 0.530330 0.469670 -5.500000 +v 0.692910 0.712987 -5.500000 +v 0.750000 1.000000 -5.500000 +v 0.692910 1.287013 -5.500000 +v 0.530330 1.530330 -5.500000 +v 0.287012 1.692910 -5.500000 +v 0.000000 1.750000 -7.500000 +v -0.287013 1.692910 -7.500000 +v -0.530330 1.530330 -7.500000 +v -0.692910 1.287013 -7.500000 +v -0.750000 1.000000 -7.500000 +v -0.692910 0.712987 -7.500000 +v -0.530330 0.469670 -7.500000 +v -0.287013 0.307090 -7.500000 +v 0.000000 0.250000 -7.500000 +v 0.287013 0.307090 -7.500000 +v 0.530330 0.469670 -7.500000 +v 0.692910 0.712987 -7.500000 +v 0.750000 1.000000 -7.500000 +v 0.692910 1.287013 -7.500000 +v 0.530330 1.530330 -7.500000 +v 0.287012 1.692910 -7.500000 +v 0.000000 1.500000 -8.000000 +v -0.191342 1.461940 -8.000000 +v -0.353553 1.353553 -8.000000 +v -0.461940 1.191342 -8.000000 +v -0.500000 1.000000 -8.000000 +v -0.461940 0.808658 -8.000000 +v -0.353553 0.646447 -8.000000 +v -0.191342 0.538060 -8.000000 +v 0.000000 0.500000 -8.000000 +v 0.191341 0.538060 -8.000000 +v 0.353553 0.646446 -8.000000 +v 0.461940 0.808658 -8.000000 +v 0.500000 1.000000 -8.000000 +v 0.461940 1.191342 -8.000000 +v 0.353553 1.353554 -8.000000 +v 0.191341 1.461940 -8.000000 +v 0.000000 2.000000 -3.500000 +v -0.382683 1.923880 -3.500000 +v -0.707107 1.707107 -3.500000 +v -0.923880 1.382683 -3.500000 +v -1.000000 1.000000 -3.500000 +v -0.923880 0.617316 -3.500000 +v -0.707107 0.292893 -3.500000 +v -0.382683 0.076120 -3.500000 +v 0.000000 0.000000 -3.500000 +v 0.382683 0.076120 -3.500000 +v 0.707107 0.292893 -3.500000 +v 0.923880 0.617316 -3.500000 +v 1.000000 1.000000 -3.500000 +v 0.923880 1.382684 -3.500000 +v 0.707107 1.707107 -3.500000 +v 0.382683 1.923880 -3.500000 +v 0.000000 1.562500 -3.500000 +v -0.215260 1.519682 -3.500000 +v -0.397748 1.397748 -3.500000 +v -0.519682 1.215260 -3.500000 +v -0.562500 1.000000 -3.500000 +v -0.519682 0.784740 -3.500000 +v -0.397748 0.602252 -3.500000 +v -0.215260 0.480318 -3.500000 +v 0.000000 0.437500 -3.500000 +v 0.215260 0.480318 -3.500000 +v 0.397747 0.602252 -3.500000 +v 0.519682 0.784740 -3.500000 +v 0.562500 1.000000 -3.500000 +v 0.519682 1.215260 -3.500000 +v 0.397747 1.397748 -3.500000 +v 0.215259 1.519682 -3.500000 +v -0.250000 -0.375000 -2.000000 +v 0.250000 -0.375000 -2.000000 +v -0.250000 -0.375000 -3.000000 +v 0.250000 -0.375000 -3.000000 +v -0.250000 -0.187500 -2.000000 +v 0.250000 -0.187500 -2.000000 +v -0.250000 -0.187500 -3.000000 +v 0.250000 -0.187500 -3.000000 +v 0.187500 -1.375000 -2.125000 +v -0.187500 -1.375000 -2.125000 +v -0.187500 -1.375000 -3.125000 +v 0.187500 -1.375000 -3.125000 +v 0.187500 -1.250000 -3.125000 +v -0.187500 -1.250000 -3.125000 +v 0.187500 -1.250000 -2.125000 +v -0.187500 -1.250000 -2.125000 +v -0.125000 -0.375000 -2.625000 +v -0.062500 -0.375000 -2.562500 +v 0.062500 -0.375000 -2.562500 +v 0.125000 -0.375000 -2.625000 +v -0.062500 -0.375000 -2.937500 +v -0.125000 -0.375000 -2.875000 +v 0.125000 -0.375000 -2.875000 +v 0.062500 -0.375000 -2.937500 +v -0.125000 -1.250000 -3.000000 +v -0.062500 -1.250000 -3.062500 +v -0.062500 -1.250000 -2.687500 +v -0.125000 -1.250000 -2.750000 +v 0.125000 -1.250000 -2.750000 +v 0.062500 -1.250000 -2.687500 +v 0.062500 -1.250000 -3.062500 +v 0.125000 -1.250000 -3.000000 +v -0.187500 -0.375000 -2.000000 +v 0.187500 -0.375000 -2.000000 +v -0.187500 -1.250000 -2.125000 +v 0.187500 -1.250000 -2.125000 +v 0.187500 -1.250000 -2.250000 +v 0.187500 -0.375000 -2.125000 +v -0.187500 -0.375000 -2.125000 +v -0.187500 -1.250000 -2.250000 +v -0.062500 -0.375000 -2.500000 +v 0.062500 -0.375000 -2.500000 +v -0.062500 -0.625000 -2.437500 +v 0.062500 -0.625000 -2.437500 +v 0.062500 -0.375000 -2.562500 +v -0.062500 -0.375000 -2.562500 +v 0.062500 -0.625000 -2.625000 +v -0.062500 -0.625000 -2.625000 +v 1.315785 0.529006 -1.250000 +v 1.065785 0.095994 -1.250000 +v 1.315785 0.529006 -2.250000 +v 1.065785 0.095994 -2.250000 +v 1.153405 0.622756 -2.250000 +v 1.153405 0.622756 -1.250000 +v 0.903405 0.189744 -1.250000 +v 0.903405 0.189744 -2.250000 +v 1.190784 0.312500 -1.812500 +v 1.212882 0.350773 -1.794194 +v 1.222034 0.366626 -1.750000 +v 1.212882 0.350773 -1.705806 +v 1.190784 0.312500 -1.687500 +v 1.168688 0.274227 -1.705806 +v 1.159534 0.258373 -1.750000 +v 1.168688 0.274227 -1.794194 +v 1.407291 0.187500 -1.812500 +v 1.429388 0.225773 -1.794194 +v 1.438541 0.241626 -1.750000 +v 1.429388 0.225773 -1.705806 +v 1.407291 0.187500 -1.687500 +v 1.385194 0.149227 -1.705806 +v 1.376041 0.133373 -1.750000 +v 1.385194 0.149227 -1.794194 +v 1.623797 0.062500 -2.062500 +v 1.645895 0.100773 -2.044194 +v 1.655047 0.116626 -2.000000 +v 1.645895 0.100773 -1.955806 +v 1.623797 0.062500 -1.937500 +v 1.601700 0.024227 -1.955806 +v 1.592547 0.008373 -2.000000 +v 1.601700 0.024227 -2.044194 +v 1.732050 -0.000000 -2.062500 +v 1.754148 0.038273 -2.044194 +v 1.763300 0.054127 -2.000000 +v 1.754148 0.038273 -1.955806 +v 1.732050 -0.000000 -1.937500 +v 1.709953 -0.038273 -1.955806 +v 1.700800 -0.054127 -2.000000 +v 1.709953 -0.038273 -2.044194 +v 1.732050 -0.000000 -2.125000 +v 1.776245 0.076546 -2.088388 +v 1.794550 0.108253 -2.000000 +v 1.776245 0.076546 -1.911612 +v 1.732050 -0.000000 -1.875000 +v 1.687856 -0.076547 -1.911612 +v 1.669550 -0.108253 -2.000000 +v 1.687856 -0.076547 -2.088388 +v 2.381570 -0.375000 -2.125000 +v 2.425764 -0.298454 -2.088388 +v 2.444070 -0.266747 -2.000000 +v 2.425764 -0.298454 -1.911612 +v 2.381570 -0.375000 -1.875000 +v 2.337376 -0.451547 -1.911612 +v 2.319070 -0.483253 -2.000000 +v 2.337376 -0.451547 -2.088388 +v 1.375000 1.250000 -2.500000 +v 1.375000 0.750000 -2.500000 +v 1.375000 1.250000 -3.000000 +v 1.375000 0.750000 -3.000000 +v 1.187500 1.250000 -3.000000 +v 1.187500 1.250000 -2.500000 +v 1.187500 0.750000 -2.500000 +v 1.187500 0.750000 -3.000000 +v 1.437500 1.437500 -2.687500 +v 1.437500 0.562500 -2.687500 +v 1.437500 1.437500 -2.812500 +v 1.437500 0.562500 -2.812500 +v 2.562500 1.437500 -2.812500 +v 2.562500 1.437500 -2.687500 +v 2.562500 0.562500 -2.687500 +v 2.562500 0.562500 -2.812500 +v 1.375000 0.500000 -2.812500 +v 1.375000 1.500000 -2.812500 +v 2.625000 0.500000 -2.812500 +v 2.625000 1.500000 -2.812500 +v 1.375000 1.500000 -2.687500 +v 1.375000 0.500000 -2.687500 +v 2.625000 1.500000 -2.687500 +v 2.625000 0.500000 -2.687500 +v 0.287012 1.692909 -3.250000 +v 0.530330 1.530331 -3.250000 +v 0.692910 1.287012 -3.250000 +v 0.750000 1.000000 -3.250000 +v 0.692910 0.712988 -3.250000 +v 0.530330 0.469669 -3.250000 +v 0.287013 0.307091 -3.250000 +v 0.000000 0.250000 -3.250000 +v -0.287013 0.307091 -3.250000 +v -0.530330 0.469669 -3.250000 +v -0.692910 0.712988 -3.250000 +v -0.750000 1.000000 -3.250000 +v -0.692910 1.287012 -3.250000 +v -0.530330 1.530331 -3.250000 +v -0.287013 1.692909 -3.250000 +v 0.000000 1.750000 -3.250000 +v 0.000000 2.000000 8.000000 +v -0.382683 1.923880 8.000000 +v -0.707107 1.707107 8.000000 +v -0.923880 1.382683 8.000000 +v -1.000000 1.000000 8.000000 +v -0.923880 0.617316 8.000000 +v -0.707107 0.292893 8.000000 +v -0.382683 0.076120 8.000000 +v 0.000000 0.000000 8.000000 +v 0.382683 0.076120 8.000000 +v 0.707107 0.292893 8.000000 +v 0.923880 0.617316 8.000000 +v 1.000000 1.000000 8.000000 +v 0.923880 1.382684 8.000000 +v 0.707107 1.707107 8.000000 +v 0.382683 1.923880 8.000000 +v 0.000000 2.000000 0.500000 +v -0.382683 1.923880 0.500000 +v -0.707107 1.707107 0.500000 +v -0.923880 1.382683 0.500000 +v -1.000000 1.000000 0.500000 +v -0.923880 0.617316 0.500000 +v -0.707107 0.292893 0.500000 +v -0.382683 0.076120 0.500000 +v 0.000000 0.000000 0.500000 +v 0.382683 0.076120 0.500000 +v 0.707107 0.292893 0.500000 +v 0.923880 0.617316 0.500000 +v 1.000000 1.000000 0.500000 +v 0.923880 1.382684 0.500000 +v 0.707107 1.707107 0.500000 +v 0.382683 1.923880 0.500000 +v 0.287012 1.692910 0.500000 +v 0.530330 1.530330 0.500000 +v 0.692910 1.287013 0.500000 +v 0.750000 1.000000 0.500000 +v 0.692910 0.712987 0.500000 +v 0.530330 0.469670 0.500000 +v 0.287013 0.307090 0.500000 +v 0.000000 0.250000 0.500000 +v -0.287013 0.307090 0.500000 +v -0.530330 0.469670 0.500000 +v -0.692910 0.712987 0.500000 +v -0.750000 1.000000 0.500000 +v -0.692910 1.287013 0.500000 +v -0.530330 1.530330 0.500000 +v -0.287013 1.692910 0.500000 +v 0.000000 1.750000 0.500000 +v 1.500000 1.375000 -1.250000 +v 1.500000 0.625000 -1.250000 +v 1.500000 1.375000 -2.250000 +v 1.500000 0.625000 -2.250000 +v 1.125000 1.375000 -2.250000 +v 1.125000 1.375000 -1.250000 +v 1.125000 0.625000 -1.250000 +v 1.125000 0.625000 -2.250000 +v 1.281250 0.968750 -2.500000 +v 1.343750 0.968750 -2.500000 +v 1.281250 1.031250 -2.500000 +v 1.343750 1.031250 -2.500000 +v 1.281250 0.968750 -2.250000 +v 1.343750 0.968750 -2.250000 +v 1.281250 1.031250 -2.250000 +v 1.343750 1.031250 -2.250000 +v 1.281250 1.093750 -2.500000 +v 1.343750 1.093750 -2.500000 +v 1.281250 1.156250 -2.500000 +v 1.343750 1.156250 -2.500000 +v 1.281250 1.093750 -2.250000 +v 1.343750 1.093750 -2.250000 +v 1.281250 1.156250 -2.250000 +v 1.343750 1.156250 -2.250000 +v 1.281250 0.843750 -2.500000 +v 1.343750 0.843750 -2.500000 +v 1.281250 0.906250 -2.500000 +v 1.343750 0.906250 -2.500000 +v 1.281250 0.843750 -2.250000 +v 1.343750 0.843750 -2.250000 +v 1.281250 0.906250 -2.250000 +v 1.343750 0.906250 -2.250000 +v -0.375000 2.500000 -1.250000 +v 0.375000 2.500000 -1.250000 +v -0.375000 2.500000 -2.250000 +v 0.375000 2.500000 -2.250000 +v -0.375000 2.125000 -2.625000 +v -0.375000 2.125000 -1.250000 +v 0.375000 2.125000 -1.250000 +v 0.375000 2.125000 -2.625000 +v 0.375000 2.750000 -2.500000 +v 0.375000 2.750000 -1.000000 +v 0.551776 2.676777 -2.500000 +v 0.551776 2.676777 -1.000000 +v 0.625000 2.500000 -2.500000 +v 0.625000 2.500000 -1.000000 +v 0.551776 2.323223 -2.500000 +v 0.551776 2.323223 -1.000000 +v 0.375000 2.250000 -2.500000 +v 0.375000 2.250000 -1.000000 +v 0.198223 2.323223 -2.500000 +v 0.198223 2.323223 -1.000000 +v 0.125000 2.500000 -2.500000 +v 0.125000 2.500000 -1.000000 +v 0.198223 2.676777 -2.500000 +v 0.198223 2.676777 -1.000000 +v -0.218750 2.450000 -1.250000 +v -0.293880 2.418880 -1.250000 +v -0.325000 2.343750 -1.250000 +v -0.293880 2.268620 -1.250000 +v -0.218750 2.237500 -1.250000 +v -0.143620 2.268620 -1.250000 +v -0.112500 2.343750 -1.250000 +v -0.143620 2.418880 -1.250000 +v -0.218750 2.450000 -1.187500 +v -0.293880 2.418880 -1.187500 +v -0.325000 2.343750 -1.187500 +v -0.293880 2.268620 -1.187500 +v -0.218750 2.237500 -1.187500 +v -0.143620 2.268620 -1.187500 +v -0.112500 2.343750 -1.187500 +v -0.143620 2.418880 -1.187500 +v 0.507582 2.632582 -1.000000 +v 0.375000 2.687500 -1.000000 +v 0.562500 2.500000 -1.000000 +v 0.507582 2.367418 -1.000000 +v 0.375000 2.312500 -1.000000 +v 0.242417 2.367418 -1.000000 +v 0.187500 2.500000 -1.000000 +v 0.242417 2.632582 -1.000000 +v 0.507582 2.632582 -0.875000 +v 0.375000 2.687500 -0.875000 +v 0.562500 2.500000 -0.875000 +v 0.507582 2.367418 -0.875000 +v 0.375000 2.312500 -0.875000 +v 0.242417 2.367418 -0.875000 +v 0.187500 2.500000 -0.875000 +v 0.242417 2.632582 -0.875000 +v 0.000000 2.312500 -1.500000 +v 0.883883 1.883883 -1.625000 +v 0.478354 2.154849 -1.625000 +v 0.000000 2.312500 -1.625000 +v 0.000000 2.250000 -1.625000 +v 1.312500 1.000000 -1.625000 +v 1.250000 1.000000 -1.625000 +v 0.478354 2.154850 -1.500000 +v 0.883883 1.883883 -1.500000 +v 1.154849 1.478354 -1.500000 +v 1.250000 1.000000 -1.500000 +v 0.000000 2.250000 -1.500000 +v 1.312500 1.000000 -1.500000 +v 1.212592 1.502272 -1.500000 +v 0.928077 1.928078 -1.500000 +v 0.502271 2.212592 -1.500000 +v 1.154849 1.478354 -1.625000 +v 1.212592 1.502272 -1.625000 +v 0.928077 1.928078 -1.625000 +v 0.502271 2.212592 -1.625000 +v 0.502271 2.212592 -2.000000 +v 0.928077 1.928078 -2.000000 +v 1.212592 1.502272 -2.000000 +v 1.154849 1.478354 -2.000000 +v 0.502271 2.212592 -1.875000 +v 0.928077 1.928078 -1.875000 +v 1.212592 1.502272 -1.875000 +v 1.312500 1.000000 -1.875000 +v 0.000000 2.250000 -1.875000 +v 1.250000 1.000000 -1.875000 +v 1.154849 1.478354 -1.875000 +v 0.883883 1.883883 -1.875000 +v 0.478354 2.154850 -1.875000 +v 1.250000 1.000000 -2.000000 +v 1.312500 1.000000 -2.000000 +v 0.000000 2.250000 -2.000000 +v 0.000000 2.312500 -2.000000 +v 0.478354 2.154849 -2.000000 +v 0.883883 1.883883 -2.000000 +v 0.000000 2.312500 -1.875000 +v 0.000000 1.750000 8.000000 +v -0.287013 1.692910 8.000000 +v -0.530330 1.530330 8.000000 +v -0.692910 1.287013 8.000000 +v -0.750000 1.000000 8.000000 +v -0.692910 0.712987 8.000000 +v -0.530330 0.469670 8.000000 +v -0.287013 0.307090 8.000000 +v 0.000000 0.250000 8.000000 +v 0.287013 0.307090 8.000000 +v 0.530330 0.469670 8.000000 +v 0.692910 0.712987 8.000000 +v 0.750000 1.000000 8.000000 +v 0.692910 1.287013 8.000000 +v 0.530330 1.530330 8.000000 +v 0.287012 1.692910 8.000000 +v 0.000000 1.750000 -3.500000 +v -0.287013 1.692910 -3.500000 +v -0.530330 1.530330 -3.500000 +v -0.692910 1.287013 -3.500000 +v -0.750000 1.000000 -3.500000 +v -0.692910 0.712987 -3.500000 +v -0.530330 0.469670 -3.500000 +v -0.287013 0.307090 -3.500000 +v 0.000000 0.250000 -3.500000 +v 0.287013 0.307090 -3.500000 +v 0.530330 0.469670 -3.500000 +v 0.692910 0.712987 -3.500000 +v 0.750000 1.000000 -3.500000 +v 0.692910 1.287013 -3.500000 +v 0.530330 1.530330 -3.500000 +v 0.287012 1.692910 -3.500000 +v 0.287012 1.692909 -1.000000 +v 0.530330 1.530331 -1.000000 +v 0.692910 1.287012 -1.000000 +v 0.750000 1.000000 -1.000000 +v 0.692910 0.712988 -1.000000 +v 0.530330 0.469669 -1.000000 +v 0.287013 0.307091 -1.000000 +v 0.000000 0.250000 -1.000000 +v -0.287013 0.307091 -1.000000 +v -0.530330 0.469669 -1.000000 +v -0.692910 0.712988 -1.000000 +v -0.750000 1.000000 -1.000000 +v -0.692910 1.287012 -1.000000 +v -0.530330 1.530331 -1.000000 +v -0.287013 1.692909 -1.000000 +v 0.000000 1.750000 -1.000000 +v 0.179382 1.433068 0.000000 +v 0.331456 1.331457 0.000000 +v 0.433069 1.179382 0.000000 +v 0.468750 1.000000 0.000000 +v 0.433069 0.820618 0.000000 +v 0.331456 0.668543 0.000000 +v 0.179383 0.566932 0.000000 +v 0.000000 0.531250 0.000000 +v -0.179383 0.566932 0.000000 +v -0.331456 0.668543 0.000000 +v -0.433069 0.820618 0.000000 +v -0.468750 1.000000 0.000000 +v -0.433069 1.179382 0.000000 +v -0.331456 1.331457 0.000000 +v -0.179383 1.433068 0.000000 +v 0.000000 1.468750 0.000000 +v 0.000000 1.000000 0.500000 +vt 0.455224 0.320312 +vt 0.462687 0.375000 +vt 0.455224 0.367188 +vt 0.455224 0.382812 +vt 0.462687 0.437500 +vt 0.455224 0.429688 +vt 0.455224 0.492188 +vt 0.455224 0.445312 +vt 0.462687 0.500000 +vt 0.455224 0.554688 +vt 0.455224 0.507812 +vt 0.462687 0.562500 +vt 0.455224 0.617188 +vt 0.455224 0.570312 +vt 0.462687 0.625000 +vt 0.455224 0.679688 +vt 0.455224 0.632812 +vt 0.455224 0.695312 +vt 0.462687 0.750000 +vt 0.455224 0.742188 +vt 0.455224 0.804688 +vt 0.455224 0.757812 +vt 0.455224 0.820312 +vt 0.462687 0.875000 +vt 0.455224 0.867188 +vt 0.455224 0.929688 +vt 0.455224 0.882812 +vt 0.455224 0.945312 +vt 0.462687 1.000000 +vt 0.455224 0.992188 +vt 0.455224 0.007812 +vt 0.462687 0.062500 +vt 0.455224 0.054688 +vt 0.455224 0.117188 +vt 0.455224 0.070312 +vt 0.462687 0.125000 +vt 0.455224 0.179688 +vt 0.455224 0.132812 +vt 0.462687 0.187500 +vt 0.455224 0.242188 +vt 0.455224 0.195312 +vt 0.462687 0.250000 +vt 0.455224 0.304688 +vt 0.455224 0.257812 +vt 0.604478 0.257812 +vt 0.597015 0.312500 +vt 0.597015 0.250000 +vt 0.604478 0.320312 +vt 0.597015 0.375000 +vt 0.604478 0.382812 +vt 0.597015 0.437500 +vt 0.604478 0.492188 +vt 0.597015 0.500000 +vt 0.604478 0.554688 +vt 0.597015 0.562500 +vt 0.604478 0.570312 +vt 0.597015 0.625000 +vt 0.604478 0.632812 +vt 0.597015 0.687500 +vt 0.604478 0.695312 +vt 0.597015 0.750000 +vt 0.604478 0.757812 +vt 0.597015 0.812500 +vt 0.604478 0.820312 +vt 0.597015 0.875000 +vt 0.604478 0.882812 +vt 0.597015 0.937500 +vt 0.604478 0.945312 +vt 0.597015 1.000000 +vt 0.604478 0.007812 +vt 0.597015 0.062500 +vt 0.597015 0.000000 +vt 0.604478 0.070312 +vt 0.597015 0.125000 +vt 0.604478 0.179688 +vt 0.597015 0.187500 +vt 0.604478 0.195312 +vt 0.668136 0.865446 +vt 0.629147 0.797819 +vt 0.645297 0.634554 +vt 0.705005 0.634623 +vt 0.743971 0.702209 +vt 0.727831 0.865378 +vt 0.085821 0.796875 +vt 0.115672 0.671875 +vt 0.115672 0.796875 +vt 0.078358 0.796875 +vt 0.085821 0.671875 +vt 0.123134 0.671875 +vt 0.022388 0.656250 +vt 0.063433 0.671875 +vt 0.011194 0.671875 +vt 0.011194 0.796875 +vt 0.014925 0.843750 +vt 0.022388 0.812500 +vt 0.078358 0.625000 +vt 0.063433 0.656250 +vt 0.063433 0.625000 +vt 0.000000 0.796875 +vt 0.000000 0.671875 +vt 0.126866 0.796875 +vt 0.123134 0.796875 +vt 0.175373 0.625000 +vt 0.134328 0.656250 +vt 0.134328 0.625000 +vt 0.119403 0.625000 +vt 0.078358 0.656250 +vt 0.063433 0.796875 +vt 0.074627 0.671875 +vt 0.074627 0.796875 +vt 0.078358 0.671875 +vt 0.119403 0.656250 +vt 0.126866 0.765625 +vt 0.134328 0.828125 +vt 0.126866 0.828125 +vt 0.216418 0.828125 +vt 0.208955 0.765625 +vt 0.216418 0.765625 +vt 0.134328 0.671875 +vt 0.208955 0.734375 +vt 0.134328 0.734375 +vt 0.208955 0.765625 +vt 0.134328 0.828125 +vt 0.134328 0.765625 +vt 0.134328 0.859375 +vt 0.208955 0.828125 +vt 0.208955 0.859375 +vt 0.216418 0.828125 +vt 0.216418 0.765625 +vt 0.126866 0.765625 +vt 0.126866 0.828125 +vt 0.134328 0.859375 +vt 0.208955 0.828125 +vt 0.208955 0.859375 +vt 0.208955 0.734375 +vt 0.134328 0.765625 +vt 0.134328 0.734375 +vt 0.134328 0.671875 +vt 0.126866 0.765625 +vt 0.134328 0.828125 +vt 0.126866 0.828125 +vt 0.216418 0.828125 +vt 0.208955 0.765625 +vt 0.216418 0.765625 +vt 0.134328 0.859375 +vt 0.208955 0.828125 +vt 0.208955 0.859375 +vt 0.208955 0.734375 +vt 0.134328 0.765625 +vt 0.134328 0.734375 +vt 0.134328 0.671875 +vt 0.134328 0.671875 +vt 0.208955 0.734375 +vt 0.134328 0.734375 +vt 0.134328 0.765625 +vt 0.208955 0.828125 +vt 0.134328 0.828125 +vt 0.134328 0.859375 +vt 0.208955 0.859375 +vt 0.216418 0.828125 +vt 0.208955 0.765625 +vt 0.216418 0.765625 +vt 0.126866 0.765625 +vt 0.126866 0.828125 +vt 0.810345 0.643319 +vt 0.831446 0.643319 +vt 0.831446 0.731681 +vt 0.626866 0.421875 +vt 0.619403 0.468750 +vt 0.619403 0.421875 +vt 0.619403 0.328125 +vt 0.626866 0.367188 +vt 0.619403 0.375000 +vt 0.626866 0.234375 +vt 0.619403 0.281250 +vt 0.619403 0.234375 +vt 0.626866 0.140625 +vt 0.619403 0.187500 +vt 0.619403 0.140625 +vt 0.626866 0.046875 +vt 0.619403 0.093750 +vt 0.619403 0.046875 +vt 0.626866 0.703125 +vt 0.619403 0.750000 +vt 0.619403 0.703125 +vt 0.626866 0.609375 +vt 0.619403 0.656250 +vt 0.619403 0.609375 +vt 0.626866 0.515625 +vt 0.619403 0.562500 +vt 0.619403 0.515625 +vt 0.619403 0.000000 +vt 0.626866 0.039062 +vt 0.626866 0.695312 +vt 0.626866 0.601562 +vt 0.626866 0.507812 +vt 0.626866 0.414062 +vt 0.626866 0.281250 +vt 0.626866 0.226562 +vt 0.626866 0.132812 +vt 0.449627 0.773438 +vt 0.419776 0.835938 +vt 0.419776 0.773438 +vt 0.455224 0.835938 +vt 0.449627 0.835938 +vt 0.414179 0.773438 +vt 0.419776 0.859375 +vt 0.449627 0.750000 +vt 0.389925 0.750000 +vt 0.360075 0.796875 +vt 0.360075 0.750000 +vt 0.410448 0.968750 +vt 0.414179 0.859375 +vt 0.414179 0.968750 +vt 0.395522 0.968750 +vt 0.399254 0.859375 +vt 0.399254 0.968750 +vt 0.360075 0.812500 +vt 0.389925 0.859375 +vt 0.360075 0.859375 +vt 0.408582 0.968750 +vt 0.401119 0.859375 +vt 0.408582 0.859375 +vt 0.401119 0.968750 +vt 0.410448 0.859375 +vt 0.416045 0.859375 +vt 0.416045 0.968750 +vt 0.425373 0.859375 +vt 0.423507 0.968750 +vt 0.423507 0.859375 +vt 0.360075 0.875000 +vt 0.389925 0.812500 +vt 0.393657 0.859375 +vt 0.389925 0.796875 +vt 0.356343 0.812500 +vt 0.425373 0.859375 +vt 0.436567 0.968750 +vt 0.425373 0.968750 +vt 0.440298 0.968750 +vt 0.451493 0.859375 +vt 0.451493 0.968750 +vt 0.455224 0.859375 +vt 0.397388 0.781250 +vt 0.389925 0.796875 +vt 0.389925 0.781250 +vt 0.436567 0.859375 +vt 0.399254 0.750000 +vt 0.402985 0.781250 +vt 0.080224 0.820312 +vt 0.110075 0.882812 +vt 0.080224 0.882812 +vt 0.397388 0.796875 +vt 0.401119 0.828125 +vt 0.399254 0.828125 +vt 0.402985 0.796875 +vt 0.110075 0.796875 +vt 0.110075 0.820312 +vt 0.115672 0.820312 +vt 0.115672 0.882812 +vt 0.074627 0.820312 +vt 0.080224 0.906250 +vt 0.764925 0.851562 +vt 0.766791 0.843750 +vt 0.766791 0.859375 +vt 0.764925 0.757812 +vt 0.766791 0.750000 +vt 0.766791 0.765625 +vt 0.764925 0.789062 +vt 0.766791 0.781250 +vt 0.766791 0.796875 +vt 0.764925 0.835938 +vt 0.766791 0.828125 +vt 0.764925 0.859375 +vt 0.766791 0.875000 +vt 0.764925 0.867188 +vt 0.764925 0.765625 +vt 0.764925 0.773438 +vt 0.764925 0.796875 +vt 0.766791 0.812500 +vt 0.764925 0.804688 +vt 0.764925 0.820312 +vt 0.789154 0.765625 +vt 0.792910 0.749897 +vt 0.796666 0.765625 +vt 0.132463 0.882812 +vt 0.147388 0.945312 +vt 0.132463 0.945312 +vt 0.830224 0.937500 +vt 0.833955 0.812500 +vt 0.833955 0.937500 +vt 0.126866 0.882812 +vt 0.147388 0.859375 +vt 0.147388 0.882812 +vt 0.132463 0.968750 +vt 0.152985 0.945312 +vt 0.789179 0.812500 +vt 0.792910 0.937500 +vt 0.789179 0.937500 +vt 0.830224 0.953125 +vt 0.828358 0.820312 +vt 0.794776 0.835938 +vt 0.794776 0.820312 +vt 0.839552 0.929688 +vt 0.835821 0.820312 +vt 0.839552 0.820312 +vt 0.830224 0.812500 +vt 0.792910 0.796875 +vt 0.830224 0.796875 +vt 0.828358 0.929688 +vt 0.794776 0.929688 +vt 0.792910 0.812500 +vt 0.835821 0.929688 +vt 0.869403 0.820312 +vt 0.871269 0.937500 +vt 0.869403 0.929688 +vt 0.871269 0.812500 +vt 0.865672 0.929688 +vt 0.865672 0.820312 +vt 0.794776 0.914062 +vt 0.231343 0.468750 +vt 0.223881 0.507812 +vt 0.223881 0.468750 +vt 0.231343 0.093750 +vt 0.223881 0.046875 +vt 0.231343 0.046875 +vt 0.223881 0.421875 +vt 0.231343 0.421875 +vt 0.231343 -0.000000 +vt 0.223881 0.039062 +vt 0.223881 0.000000 +vt 0.223881 0.375000 +vt 0.231343 0.375000 +vt 0.231343 0.703125 +vt 0.223881 0.742188 +vt 0.223881 0.703125 +vt 0.223881 0.328125 +vt 0.231343 0.328125 +vt 0.231343 0.656250 +vt 0.223881 0.695312 +vt 0.223881 0.656250 +vt 0.223881 0.281250 +vt 0.231343 0.281250 +vt 0.231343 0.609375 +vt 0.223881 0.648438 +vt 0.223881 0.609375 +vt 0.223881 0.234375 +vt 0.231343 0.234375 +vt 0.231343 0.562500 +vt 0.223881 0.601562 +vt 0.223881 0.562500 +vt 0.231343 0.187500 +vt 0.223881 0.226562 +vt 0.223881 0.187500 +vt 0.223881 0.140625 +vt 0.231343 0.140625 +vt 0.223881 0.515625 +vt 0.231343 0.515625 +vt 0.223881 0.132812 +vt 0.223881 0.093750 +vt 0.313433 0.796875 +vt 0.343284 0.890625 +vt 0.313433 0.890625 +vt 0.242537 0.796875 +vt 0.250000 0.789062 +vt 0.250000 0.796875 +vt 0.343284 0.796875 +vt 0.354478 0.890625 +vt 0.302239 0.796875 +vt 0.343284 0.750000 +vt 0.313433 0.937500 +vt 0.242537 0.812500 +vt 0.250000 0.804688 +vt 0.250000 0.812500 +vt 0.242537 0.804688 +vt 0.242537 0.789062 +vt 0.250000 0.781250 +vt 0.242537 0.828125 +vt 0.250000 0.820312 +vt 0.250000 0.828125 +vt 0.242537 0.843750 +vt 0.250000 0.835938 +vt 0.250000 0.843750 +vt 0.242537 0.835938 +vt 0.242537 0.820312 +vt 0.250000 0.812500 +vt 0.242537 0.765625 +vt 0.250000 0.757812 +vt 0.250000 0.765625 +vt 0.242537 0.781250 +vt 0.250000 0.773438 +vt 0.250000 0.781250 +vt 0.242537 0.773438 +vt 0.242537 0.757812 +vt 0.250000 0.750000 +vt 0.261194 0.796875 +vt 0.291045 0.890625 +vt 0.261194 0.890625 +vt 0.291045 0.796875 +vt 0.302239 0.890625 +vt 0.250000 0.796875 +vt 0.261194 0.750000 +vt 0.302239 0.750000 +vt 0.261194 0.937500 +vt 0.875000 0.742188 +vt 0.873134 0.757812 +vt 0.873134 0.742188 +vt 0.921958 0.634135 +vt 0.932520 0.634135 +vt 0.932520 0.678365 +vt 0.925373 0.734382 +vt 0.929103 0.750000 +vt 0.925373 0.765618 +vt 0.875000 0.671875 +vt 0.873134 0.687500 +vt 0.873134 0.671875 +vt 0.875000 0.789062 +vt 0.873134 0.804688 +vt 0.873134 0.789062 +vt 0.873134 0.718750 +vt 0.875000 0.718750 +vt 0.873134 0.695312 +vt 0.875000 0.695312 +vt 0.873134 0.648438 +vt 0.875000 0.648438 +vt 0.873134 0.765625 +vt 0.875000 0.765625 +vt 0.873134 0.625000 +vt 0.875000 0.625000 +vt 0.925373 0.687509 +vt 0.929329 0.694371 +vt 0.930968 0.710938 +vt 0.074627 0.843750 +vt 0.059701 0.851562 +vt 0.059701 0.843750 +vt 0.074627 0.875000 +vt 0.059701 0.867188 +vt 0.074627 0.867188 +vt 0.074627 0.875000 +vt 0.059701 0.867188 +vt 0.074627 0.867188 +vt 0.044776 0.851562 +vt 0.029851 0.843750 +vt 0.044776 0.843750 +vt 0.029851 0.851562 +vt 0.014925 0.843750 +vt 0.029851 0.867188 +vt 0.014925 0.875000 +vt 0.014925 0.867188 +vt 0.044776 0.867188 +vt 0.029851 0.875000 +vt 0.044776 0.875000 +vt 0.074627 0.843750 +vt 0.059701 0.851562 +vt 0.059701 0.843750 +vt 0.014925 0.625000 +vt 0.059701 0.625000 +vt 0.063433 0.625000 +vt 0.059701 0.843750 +vt 0.052239 0.812500 +vt 0.864481 0.745016 +vt 0.840742 0.745016 +vt 0.840743 0.645609 +vt 0.044776 0.851562 +vt 0.029851 0.843750 +vt 0.044776 0.843750 +vt 0.029851 0.851562 +vt 0.014925 0.843750 +vt 0.029851 0.867188 +vt 0.014925 0.875000 +vt 0.014925 0.867188 +vt 0.044776 0.867188 +vt 0.029851 0.875000 +vt 0.044776 0.875000 +vt 0.462687 0.312500 +vt 0.462687 0.687500 +vt 0.462687 0.812500 +vt 0.462687 0.937500 +vt 0.462687 0.000000 +vt 0.604478 0.304688 +vt 0.604478 0.367188 +vt 0.604478 0.429688 +vt 0.604478 0.445312 +vt 0.604478 0.507812 +vt 0.604478 0.617188 +vt 0.604478 0.679688 +vt 0.604478 0.742188 +vt 0.604478 0.804688 +vt 0.604478 0.867188 +vt 0.604478 0.929688 +vt 0.604478 0.992188 +vt 0.604478 0.054688 +vt 0.604478 0.117188 +vt 0.604478 0.132812 +vt 0.604478 0.242188 +vt 0.656716 0.874957 +vt 0.645297 0.865445 +vt 0.635616 0.838358 +vt 0.626876 0.750000 +vt 0.629147 0.702181 +vt 0.635616 0.661642 +vt 0.656716 0.625043 +vt 0.668136 0.634554 +vt 0.677817 0.661642 +vt 0.684285 0.702181 +vt 0.686557 0.750000 +vt 0.684285 0.797819 +vt 0.677817 0.838358 +vt 0.716418 0.874884 +vt 0.705005 0.865378 +vt 0.695330 0.838306 +vt 0.688865 0.797791 +vt 0.686595 0.750000 +vt 0.688865 0.702209 +vt 0.695330 0.661694 +vt 0.716418 0.625117 +vt 0.727831 0.634623 +vt 0.737506 0.661694 +vt 0.746241 0.750000 +vt 0.743971 0.797791 +vt 0.737506 0.838306 +vt 0.052239 0.656250 +vt 0.011194 0.843750 +vt 0.126866 0.671875 +vt 0.175373 0.656250 +vt 0.208955 0.671875 +vt 0.208955 0.671875 +vt 0.208955 0.671875 +vt 0.208955 0.671875 +vt 0.826605 0.745225 +vt 0.820895 0.749981 +vt 0.815185 0.745225 +vt 0.810345 0.731681 +vt 0.807110 0.711411 +vt 0.805975 0.687500 +vt 0.807110 0.663589 +vt 0.815185 0.629775 +vt 0.820895 0.625019 +vt 0.826605 0.629775 +vt 0.834680 0.663589 +vt 0.835816 0.687500 +vt 0.834680 0.711411 +vt 0.626866 0.460938 +vt 0.626866 0.328125 +vt 0.626866 0.273438 +vt 0.626866 0.179688 +vt 0.626866 0.085938 +vt 0.626866 0.742188 +vt 0.626866 0.648438 +vt 0.626866 0.554688 +vt 0.626866 0.000000 +vt 0.626866 0.656250 +vt 0.626866 0.562500 +vt 0.626866 0.468750 +vt 0.626866 0.375000 +vt 0.626866 0.320312 +vt 0.626866 0.187500 +vt 0.626866 0.093750 +vt 0.455224 0.773438 +vt 0.414179 0.835938 +vt 0.449627 0.859375 +vt 0.419776 0.750000 +vt 0.395522 0.859375 +vt 0.425373 0.968750 +vt 0.389925 0.875000 +vt 0.393657 0.812500 +vt 0.356343 0.859375 +vt 0.440298 0.859375 +vt 0.455224 0.968750 +vt 0.401119 0.750000 +vt 0.080224 0.796875 +vt 0.074627 0.882812 +vt 0.110075 0.906250 +vt 0.764925 0.843750 +vt 0.764925 0.750000 +vt 0.764925 0.781250 +vt 0.764925 0.828125 +vt 0.764925 0.812500 +vt 0.795566 0.776746 +vt 0.792910 0.781353 +vt 0.790255 0.776746 +vt 0.790255 0.754503 +vt 0.795566 0.754503 +vt 0.126866 0.945312 +vt 0.132463 0.859375 +vt 0.147388 0.968750 +vt 0.152985 0.882812 +vt 0.792910 0.953125 +vt 0.828358 0.835938 +vt 0.828358 0.914062 +vt 0.223881 0.085938 +vt 0.223881 0.460938 +vt 0.223881 0.414062 +vt 0.231343 0.750000 +vt 0.223881 0.367188 +vt 0.223881 0.320312 +vt 0.223881 0.273438 +vt 0.223881 0.179688 +vt 0.223881 0.554688 +vt 0.354478 0.796875 +vt 0.302239 0.890625 +vt 0.313433 0.750000 +vt 0.343284 0.937500 +vt 0.242537 0.781250 +vt 0.242537 0.812500 +vt 0.242537 0.750000 +vt 0.302239 0.796875 +vt 0.250000 0.890625 +vt 0.302239 0.937500 +vt 0.927239 0.687525 +vt 0.921958 0.678365 +vt 0.919770 0.656250 +vt 0.927239 0.624975 +vt 0.934708 0.656250 +vt 0.922736 0.761044 +vt 0.921643 0.750000 +vt 0.922736 0.738956 +vt 0.928010 0.738957 +vt 0.928010 0.761044 +vt 0.875000 0.812500 +vt 0.873134 0.734375 +vt 0.873134 0.710938 +vt 0.873134 0.664062 +vt 0.873134 0.781250 +vt 0.873134 0.640625 +vt 0.929329 0.727504 +vt 0.925373 0.734367 +vt 0.921417 0.727504 +vt 0.919778 0.710938 +vt 0.921417 0.694371 +vt 0.074627 0.851562 +vt 0.059701 0.875000 +vt 0.059701 0.875000 +vt 0.014925 0.851562 +vt 0.074627 0.851562 +vt 0.011194 0.625000 +vt 0.063433 0.843750 +vt 0.846188 0.630372 +vt 0.852612 0.625022 +vt 0.859036 0.630372 +vt 0.864481 0.645610 +vt 0.868120 0.668414 +vt 0.869398 0.695313 +vt 0.868120 0.722212 +vt 0.859036 0.760253 +vt 0.852612 0.765604 +vt 0.846188 0.760253 +vt 0.837104 0.722212 +vt 0.835826 0.695313 +vt 0.837104 0.668414 +vt 0.014925 0.851562 +vt 0.000000 0.156250 +vt 0.223881 0.195312 +vt 0.000000 0.195312 +vt 0.000000 -0.000000 +vt 0.223881 0.039062 +vt 0.000000 0.039062 +vt 0.000000 0.507812 +vt 0.223881 0.546875 +vt 0.000000 0.546875 +vt 0.000000 0.351562 +vt 0.223881 0.390625 +vt 0.000000 0.390625 +vt 0.223881 0.234375 +vt 0.000000 0.234375 +vt 0.223881 0.078125 +vt 0.000000 0.078125 +vt 0.223881 0.585938 +vt 0.000000 0.585938 +vt 0.223881 0.429688 +vt 0.000000 0.429688 +vt 0.223881 0.273438 +vt 0.000000 0.273438 +vt 0.223881 0.117188 +vt 0.000000 0.117188 +vt 0.223881 0.625000 +vt 0.000000 0.625000 +vt 0.223881 0.468750 +vt 0.000000 0.468750 +vt 0.000000 0.312500 +vt 0.223881 0.351562 +vt 0.223881 0.507812 +vt 0.223881 0.156250 +vt 0.223881 0.312500 +vt 0.776119 0.562500 +vt 0.746269 0.515625 +vt 0.776119 0.515625 +vt 0.776119 0.187500 +vt 0.746269 0.140625 +vt 0.776119 0.140625 +vt 0.776119 0.609375 +vt 0.746269 0.562500 +vt 0.776119 0.234375 +vt 0.746269 0.187500 +vt 0.776119 0.656250 +vt 0.746269 0.609375 +vt 0.776119 0.281250 +vt 0.746269 0.234375 +vt 0.776119 0.703125 +vt 0.746269 0.656250 +vt 0.776119 0.328125 +vt 0.746269 0.281250 +vt 0.776119 0.750000 +vt 0.746269 0.703125 +vt 0.776119 0.421875 +vt 0.746269 0.375000 +vt 0.776119 0.375000 +vt 0.746269 0.328125 +vt 0.776119 0.046875 +vt 0.746269 -0.000000 +vt 0.776119 -0.000000 +vt 0.776119 0.468750 +vt 0.746269 0.421875 +vt 0.776119 0.093750 +vt 0.746269 0.046875 +vt 0.746269 0.468750 +vt 0.746269 0.093750 +vt 0.776119 0.281250 +vt 0.805970 0.234375 +vt 0.805970 0.273438 +vt 0.776119 0.656250 +vt 0.805970 0.695312 +vt 0.776119 0.703125 +vt 0.805970 0.320312 +vt 0.776119 0.328125 +vt 0.805970 0.742188 +vt 0.776119 0.750000 +vt 0.776119 0.421875 +vt 0.805970 0.375000 +vt 0.805970 0.414062 +vt 0.805970 0.367188 +vt 0.776119 0.375000 +vt 0.776119 0.046875 +vt 0.805970 -0.000000 +vt 0.805970 0.039062 +vt 0.776119 0.468750 +vt 0.805970 0.421875 +vt 0.805970 0.460938 +vt 0.805970 0.085938 +vt 0.776119 0.093750 +vt 0.776119 0.515625 +vt 0.805970 0.468750 +vt 0.805970 0.507812 +vt 0.805970 0.132812 +vt 0.776119 0.140625 +vt 0.805970 0.554688 +vt 0.776119 0.562500 +vt 0.805970 0.179688 +vt 0.776119 0.187500 +vt 0.776119 0.609375 +vt 0.805970 0.562500 +vt 0.805970 0.601562 +vt 0.776119 0.234375 +vt 0.805970 0.187500 +vt 0.805970 0.226562 +vt 0.805970 0.648438 +vt 0.805970 0.117188 +vt 0.865672 0.156250 +vt 0.805970 0.156250 +vt 0.805970 0.468750 +vt 0.865672 0.507812 +vt 0.805970 0.507812 +vt 0.865672 0.195312 +vt 0.805970 0.195312 +vt 0.865672 0.546875 +vt 0.805970 0.546875 +vt 0.865672 0.234375 +vt 0.805970 0.234375 +vt 0.865672 0.585938 +vt 0.805970 0.585938 +vt 0.865672 0.273438 +vt 0.805970 0.273438 +vt 0.865672 0.625000 +vt 0.805970 0.625000 +vt 0.805970 0.312500 +vt 0.865672 0.351562 +vt 0.805970 0.351562 +vt 0.865672 0.312500 +vt 0.865672 0.039062 +vt 0.865672 0.390625 +vt 0.805970 0.390625 +vt 0.865672 0.078125 +vt 0.805970 0.078125 +vt 0.865672 0.429688 +vt 0.805970 0.429688 +vt 0.865672 0.117188 +vt 0.865672 0.468750 +vt 0.880597 0.203125 +vt 0.880597 0.242188 +vt 0.880597 0.281250 +vt 0.880597 0.320312 +vt 0.880597 0.359375 +vt 0.880597 0.421875 +vt 0.880597 0.437500 +vt 0.880597 0.500000 +vt 0.880597 0.515625 +vt 0.880597 0.578125 +vt 0.880597 0.593750 +vt 0.865672 -0.000000 +vt 0.880597 0.031250 +vt 0.880597 0.070312 +vt 0.880597 0.085938 +vt 0.880597 0.125000 +vt 0.880597 0.187500 +vt 0.604478 0.000000 +vt 0.604478 0.046875 +vt 0.604478 0.421875 +vt 0.604478 0.468750 +vt 0.604478 0.093750 +vt 0.604478 0.515625 +vt 0.604478 0.140625 +vt 0.604478 0.562500 +vt 0.604478 0.187500 +vt 0.604478 0.609375 +vt 0.604478 0.234375 +vt 0.604478 0.656250 +vt 0.604478 0.281250 +vt 0.604478 0.703125 +vt 0.604478 0.328125 +vt 0.604478 0.750000 +vt 0.604478 0.375000 +vt 1.000000 0.242188 +vt 0.992537 0.273438 +vt 0.992537 0.234375 +vt 1.000000 0.007812 +vt 0.992537 0.039062 +vt 0.992537 0.000000 +vt 0.992537 0.351562 +vt 1.000000 0.382812 +vt 0.992537 0.390625 +vt 1.000000 0.554688 +vt 0.992537 0.585938 +vt 0.992537 0.546875 +vt 1.000000 0.320312 +vt 0.992537 0.312500 +vt 1.000000 0.164062 +vt 0.992537 0.195312 +vt 0.992537 0.156250 +vt 1.000000 0.617188 +vt 0.992537 0.625000 +vt 1.000000 0.398438 +vt 0.992537 0.429688 +vt 0.992537 0.078125 +vt 1.000000 0.109375 +vt 0.992537 0.117188 +vt 1.000000 0.476562 +vt 0.992537 0.507812 +vt 0.992537 0.468750 +vt 1.000000 0.539062 +vt 1.000000 0.148438 +vt 1.000000 0.304688 +vt 1.000000 0.203125 +vt 1.000000 0.070312 +vt 1.000000 0.460938 +vt 0.746269 0.773438 +vt 0.753731 0.765625 +vt 0.753731 0.773438 +vt 0.746269 0.796875 +vt 0.753731 0.789062 +vt 0.753731 0.796875 +vt 0.746269 0.804688 +vt 0.753731 0.812500 +vt 0.746269 0.812500 +vt 0.746269 0.757812 +vt 0.746269 0.765625 +vt 0.746269 0.781250 +vt 0.753731 0.781250 +vt 0.746269 0.789062 +vt 0.753731 0.804688 +vt 0.746269 0.750000 +vt 0.753731 0.757812 +vt 0.761194 0.812500 +vt 0.761194 0.757812 +vt 0.761194 0.765625 +vt 0.761194 0.773438 +vt 0.761194 0.781250 +vt 0.761194 0.789062 +vt 0.761194 0.804688 +vt 0.761194 0.750000 +vt 0.761194 0.796875 +vt 0.764925 0.789062 +vt 0.764925 0.796875 +vt 0.764925 0.804688 +vt 0.764925 0.812500 +vt 0.764925 0.765625 +vt 0.764925 0.773438 +vt 0.764925 0.781250 +vt 0.789179 0.812500 +vt 0.789179 0.828125 +vt 0.789179 0.859375 +vt 0.789179 0.765625 +vt 0.789179 0.781250 +vt 0.789179 0.796875 +vt 0.789179 0.843750 +vt 0.789179 0.875000 +vt 0.455224 0.046875 +vt 0.455224 0.468750 +vt 0.455224 0.093750 +vt 0.455224 0.515625 +vt 0.455224 0.140625 +vt 0.455224 0.562500 +vt 0.455224 0.187500 +vt 0.455224 0.609375 +vt 0.455224 0.234375 +vt 0.455224 0.656250 +vt 0.455224 0.281250 +vt 0.455224 0.703125 +vt 0.455224 0.375000 +vt 0.455224 0.328125 +vt 0.455224 -0.000000 +vt 0.455224 0.421875 +vt 0.919776 0.695312 +vt 0.919776 0.718750 +vt 0.919776 0.671875 +vt 0.919776 0.648438 +vt 0.919776 0.625000 +vt 0.919776 0.789062 +vt 0.919776 0.812500 +vt 0.919776 0.765625 +vt 0.919776 0.742188 +vt 0.921642 0.765625 +vt 0.919776 0.757812 +vt 0.921642 0.757812 +vt 0.921642 0.750000 +vt 0.919776 0.742188 +vt 0.921642 0.742188 +vt 0.921642 0.796875 +vt 0.919776 0.789062 +vt 0.921642 0.789062 +vt 0.921642 0.781250 +vt 0.919776 0.773438 +vt 0.921642 0.773438 +vt 0.919776 0.750000 +vt 0.919776 0.734375 +vt 0.921642 0.734375 +vt 0.919776 0.781250 +vt 0.919776 0.765625 +vt 0.869403 0.765625 +vt 0.869403 0.625000 +vt 0.869403 0.671875 +vt 0.869403 0.742188 +vt 0.869403 0.789062 +vt 0.869403 0.648438 +vt 0.869403 0.695312 +vt 0.869403 0.718750 +vt 0.626866 0.273438 +vt 0.746269 0.312500 +vt 0.626866 0.312500 +vt 0.626866 0.195312 +vt 0.746269 0.234375 +vt 0.626866 0.234375 +vt 0.626866 0.117188 +vt 0.746269 0.156250 +vt 0.626866 0.156250 +vt 0.746269 0.351562 +vt 0.626866 0.351562 +vt 0.626866 0.585938 +vt 0.746269 0.625000 +vt 0.626866 0.625000 +vt 0.746269 0.195312 +vt 0.626866 0.039062 +vt 0.746269 0.078125 +vt 0.626866 0.078125 +vt 0.626866 0.429688 +vt 0.746269 0.468750 +vt 0.626866 0.468750 +vt 0.626866 0.390625 +vt 0.746269 0.429688 +vt 0.626866 -0.000000 +vt 0.746269 0.039062 +vt 0.746269 0.273438 +vt 0.626866 0.507812 +vt 0.746269 0.546875 +vt 0.626866 0.546875 +vt 0.746269 0.117188 +vt 0.746269 0.507812 +vt 0.746269 0.390625 +vt 0.746269 0.585938 +vt 0.925373 0.156250 +vt 0.925373 0.078125 +vt 0.925373 0.585938 +vt 0.925373 0.468750 +vt 0.925373 0.390625 +vt 0.925373 0.507812 +vt 0.925373 0.234375 +vt 0.925373 0.117188 +vt 0.925373 0.000000 +vt 0.925373 0.273438 +vt 0.925373 0.351562 +vt 0.925373 0.195312 +vt 0.925373 0.546875 +vt 0.925373 0.429688 +vt 0.925373 0.312500 +vt 0.925373 0.039062 +vt 0.895522 0.007812 +vt 0.895522 0.320312 +vt 0.895522 0.539062 +vt 0.895522 0.515625 +vt 0.895522 0.164062 +vt 0.895522 0.304688 +vt 0.895522 0.281250 +vt 0.895522 0.226562 +vt 0.895522 0.203125 +vt 0.895522 0.554688 +vt 0.895522 0.070312 +vt 0.895522 0.046875 +vt 0.895522 0.617188 +vt 0.895522 0.593750 +vt 0.895522 0.085938 +vt 0.895522 0.398438 +vt 0.895522 0.242188 +vt 0.895522 0.125000 +vt 0.895522 0.437500 +vt 0.895522 0.382812 +vt 0.895522 0.359375 +vt 0.895522 0.476562 +vt 0.895522 0.460938 +vt 0.880597 0.445312 +vt 0.880597 0.367188 +vt 0.895522 0.031250 +vt 0.880597 0.015625 +vt 0.895522 0.343750 +vt 0.880597 0.328125 +vt 0.880597 0.523438 +vt 0.895522 0.187500 +vt 0.880597 0.171875 +vt 0.880597 0.289062 +vt 0.880597 0.210938 +vt 0.895522 0.578125 +vt 0.880597 0.562500 +vt 0.880597 0.054688 +vt 0.880597 0.601562 +vt 0.895522 0.109375 +vt 0.880597 0.093750 +vt 0.895522 0.421875 +vt 0.880597 0.406250 +vt 0.895522 0.265625 +vt 0.880597 0.250000 +vt 0.895522 0.148438 +vt 0.880597 0.132812 +vt 0.895522 0.500000 +vt 0.880597 0.484375 +vt 0.223881 -0.000000 +vt 0.746269 0.750000 +vt 0.805970 0.656250 +vt 0.805970 0.281250 +vt 0.805970 0.703125 +vt 0.805970 0.328125 +vt 0.776119 -0.000000 +vt 0.805970 0.046875 +vt 0.805970 0.093750 +vt 0.805970 0.515625 +vt 0.805970 0.140625 +vt 0.805970 0.609375 +vt 0.880597 0.226562 +vt 0.880597 0.265625 +vt 0.880597 0.304688 +vt 0.880597 0.343750 +vt 0.880597 0.382812 +vt 0.880597 0.398438 +vt 0.880597 0.460938 +vt 0.880597 0.476562 +vt 0.880597 0.539062 +vt 0.880597 0.554688 +vt 0.880597 0.617188 +vt 0.880597 0.007812 +vt 0.880597 0.046875 +vt 0.880597 0.109375 +vt 0.880597 0.148438 +vt 0.880597 0.164062 +vt 1.000000 0.265625 +vt 1.000000 0.031250 +vt 1.000000 0.359375 +vt 1.000000 0.578125 +vt 1.000000 0.343750 +vt 1.000000 0.187500 +vt 1.000000 0.593750 +vt 1.000000 0.421875 +vt 1.000000 0.085938 +vt 1.000000 0.500000 +vt 1.000000 0.515625 +vt 1.000000 0.125000 +vt 1.000000 0.281250 +vt 1.000000 0.226562 +vt 1.000000 0.046875 +vt 1.000000 0.437500 +vt 0.753731 0.750000 +vt 0.789179 0.750000 +vt 0.455224 0.750000 +vt 0.919776 0.796875 +vt 0.869403 0.781250 +vt 0.869403 0.640625 +vt 0.869403 0.687500 +vt 0.869403 0.757812 +vt 0.869403 0.804688 +vt 0.869403 0.664062 +vt 0.869403 0.710938 +vt 0.869403 0.734375 +vt 0.746269 0.000000 +vt 0.925373 0.625000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 -0.7071 -0.7071 +vn 1.0000 0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn -0.7071 0.7071 0.0000 +vn 0.7071 -0.7071 0.0000 +vn -0.7071 -0.7071 0.0000 +vn 0.7071 0.7071 0.0000 +vn 0.0000 0.1414 -0.9899 +vn 0.0000 -0.1414 0.9899 +vn 0.7035 -0.1005 0.7035 +vn 0.7035 0.1005 -0.7035 +vn -0.7035 0.1005 -0.7035 +vn -0.7035 -0.1005 0.7035 +vn 0.0000 0.2425 0.9701 +vn 0.8660 -0.5000 0.0000 +vn -0.5000 -0.8660 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.8660 0.5000 -0.0000 +vn 0.0000 0.7071 -0.7071 +vn 0.9239 -0.3827 0.0000 +vn 0.3827 0.9239 0.0000 +vn -0.9239 0.3827 0.0000 +vn -0.3827 -0.9239 0.0000 +vn -0.3827 0.9239 0.0000 +vn -0.9239 -0.3827 0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.9239 0.3827 0.0000 +vn 0.6860 0.6860 -0.2425 +vn 0.8963 0.3713 -0.2425 +vn -0.6860 -0.6860 -0.2425 +vn -0.3713 -0.8963 -0.2425 +vn 0.3713 0.8963 -0.2425 +vn -0.0000 -0.9701 -0.2425 +vn -0.3713 0.8963 -0.2425 +vn -0.0000 0.9701 -0.2425 +vn 0.3713 -0.8963 -0.2425 +vn -0.6860 0.6860 -0.2425 +vn 0.6860 -0.6860 -0.2425 +vn -0.8963 0.3713 -0.2425 +vn 0.8963 -0.3713 -0.2425 +vn -0.9701 -0.0000 -0.2425 +vn 0.9701 0.0000 -0.2425 +vn -0.8963 -0.3713 -0.2425 +vn 0.8263 0.3423 -0.4472 +vn 0.6325 0.6325 -0.4472 +vn 0.3423 0.8263 -0.4472 +vn -0.0000 0.8944 -0.4472 +vn -0.3423 0.8263 -0.4472 +vn -0.6325 0.6325 -0.4472 +vn -0.8263 0.3423 -0.4472 +vn -0.8944 -0.0000 -0.4472 +vn -0.8263 -0.3423 -0.4472 +vn -0.6325 -0.6325 -0.4472 +vn -0.3423 -0.8263 -0.4472 +vn -0.0000 -0.8944 -0.4472 +vn 0.3423 -0.8263 -0.4472 +vn 0.6325 -0.6325 -0.4472 +vn 0.8263 -0.3423 -0.4472 +vn 0.8944 -0.0000 -0.4472 +vn 0.5657 0.5657 -0.6000 +vn 0.3061 0.7391 -0.6000 +vn 0.0000 -0.8000 -0.6000 +vn 0.3061 -0.7391 -0.6000 +vn -0.3061 0.7391 -0.6000 +vn -0.5657 0.5657 -0.6000 +vn -0.5657 -0.5657 -0.6000 +vn -0.3061 -0.7391 -0.6000 +vn 0.0000 0.8000 -0.6000 +vn 0.8000 0.0000 -0.6000 +vn 0.7391 0.3061 -0.6000 +vn -0.7391 0.3061 -0.6000 +vn 0.5657 -0.5657 -0.6000 +vn 0.7391 -0.3061 -0.6000 +vn -0.8000 -0.0000 -0.6000 +vn -0.7391 -0.3061 -0.6000 +vn 0.3536 0.6124 -0.7071 +vn 0.5738 0.8140 0.0899 +vn 0.1205 0.7727 -0.6233 +vn -0.6089 -0.4907 -0.6233 +vn -0.4181 -0.9040 0.0899 +vn -0.3536 -0.6124 0.7071 +vn 0.3058 -0.1766 0.9356 +vn 0.3536 0.6124 0.7071 +vn -0.3639 0.2101 -0.9074 +vn -0.3536 -0.6124 -0.7071 +vn -0.0595 -0.7094 0.7023 +vn 0.5846 0.4062 0.7023 +vn 0.3639 -0.2101 0.9074 +vn 0.6089 0.4907 0.6233 +vn 0.4181 0.9040 -0.0899 +vn 0.0595 0.7094 -0.7023 +vn -0.3058 0.1766 -0.9356 +vn -0.5846 -0.4062 -0.7023 +vn -0.1205 -0.7727 0.6233 +vn -0.5738 -0.8140 -0.0899 +vn 0.1951 0.9808 -0.0000 +vn 0.9808 0.1951 0.0000 +vn 0.3684 -0.8894 0.2707 +vn 0.0000 -0.8777 0.4792 +vn 0.0000 -0.9627 0.2707 +vn -0.3684 0.8894 0.2707 +vn 0.0000 0.8777 0.4792 +vn 0.0000 0.9627 0.2707 +vn -0.8894 -0.3684 0.2707 +vn -0.6206 -0.6207 0.4792 +vn -0.8109 -0.3359 0.4792 +vn 0.8894 0.3684 0.2707 +vn 0.8777 0.0000 0.4792 +vn 0.9627 0.0000 0.2707 +vn 0.3684 0.8894 0.2707 +vn 0.3359 0.8109 0.4792 +vn 0.6206 0.6207 0.4792 +vn 0.8109 0.3359 0.4792 +vn -0.3684 -0.8894 0.2707 +vn -0.6807 -0.6807 0.2707 +vn 0.6206 -0.6207 0.4792 +vn 0.3359 -0.8109 0.4792 +vn -0.3359 -0.8109 0.4792 +vn 0.8894 -0.3684 0.2707 +vn 0.6807 -0.6807 0.2707 +vn -0.8894 0.3684 0.2707 +vn -0.6206 0.6207 0.4792 +vn -0.6807 0.6807 0.2707 +vn 0.6807 0.6807 0.2707 +vn 0.8109 -0.3359 0.4792 +vn -0.9627 -0.0000 0.2707 +vn -0.8109 0.3359 0.4792 +vn -0.3359 0.8109 0.4792 +vn -0.8777 -0.0000 0.4792 +s off +f 14/1/1 47/2/1 15/3/1 +f 15/4/1 48/5/1 16/6/1 +f 48/5/1 1/7/1 16/8/1 +f 33/9/1 2/10/1 1/11/1 +f 34/12/1 3/13/1 2/14/1 +f 35/15/1 4/16/1 3/17/1 +f 4/18/1 37/19/1 5/20/1 +f 37/19/1 6/21/1 5/22/1 +f 6/23/1 39/24/1 7/25/1 +f 39/24/1 8/26/1 7/27/1 +f 8/28/1 41/29/1 9/30/1 +f 9/31/1 42/32/1 10/33/1 +f 42/32/1 11/34/1 10/35/1 +f 43/36/1 12/37/1 11/38/1 +f 44/39/1 13/40/1 12/41/1 +f 45/42/1 14/43/1 13/44/1 +f 77/45/2 62/46/2 61/47/2 +f 78/48/2 63/49/2 62/46/2 +f 79/50/2 64/51/2 63/49/2 +f 64/51/2 65/52/2 49/53/2 +f 49/53/2 66/54/2 50/55/2 +f 66/56/2 51/57/2 50/55/2 +f 67/58/2 52/59/2 51/57/2 +f 68/60/2 53/61/2 52/59/2 +f 69/62/2 54/63/2 53/61/2 +f 70/64/2 55/65/2 54/63/2 +f 71/66/2 56/67/2 55/65/2 +f 72/68/2 57/69/2 56/67/2 +f 73/70/2 58/71/2 57/72/2 +f 74/73/2 59/74/2 58/71/2 +f 59/74/2 76/75/2 60/76/2 +f 76/77/2 61/47/2 60/76/2 +f 112/78/1 100/79/1 104/80/1 +f 87/81/2 91/82/2 95/83/2 +f 115/84/3 114/85/3 113/86/3 +f 117/87/4 116/88/4 115/84/4 +f 120/89/5 113/86/5 114/85/5 +f 114/90/6 131/91/6 128/92/6 +f 131/91/7 127/93/7 128/92/7 +f 119/94/8 127/93/8 113/95/8 +f 123/96/1 136/97/1 124/98/1 +f 128/92/1 125/99/1 126/100/1 +f 120/89/3 125/101/3 119/102/3 +f 124/103/8 135/104/8 122/105/8 +f 121/106/6 133/107/6 123/96/6 +f 132/108/2 129/109/2 130/110/2 +f 117/87/3 129/109/3 118/111/3 +f 122/105/2 134/112/2 121/106/2 +f 145/113/7 150/114/7 147/115/7 +f 148/116/3 151/117/3 146/118/3 +f 142/119/1 143/120/1 144/121/1 +f 138/122/2 139/123/2 137/124/2 +f 143/120/3 137/124/3 144/121/3 +f 142/125/7 140/126/7 141/127/7 +f 141/128/8 138/122/8 143/129/8 +f 144/130/6 139/123/6 142/131/6 +f 147/132/8 149/133/8 148/134/8 +f 146/135/6 152/136/6 145/137/6 +f 151/117/2 150/114/2 152/136/2 +f 147/138/1 146/135/1 145/137/1 +f 153/139/9 158/140/9 155/141/9 +f 156/142/10 159/143/10 154/144/10 +f 155/145/11 157/146/11 156/147/11 +f 154/148/12 160/149/12 153/150/12 +f 159/143/2 158/140/2 160/149/2 +f 155/151/1 154/148/1 153/150/1 +f 166/152/1 167/153/1 168/154/1 +f 161/155/2 164/156/2 163/157/2 +f 167/153/10 161/155/10 168/154/10 +f 166/158/9 164/156/9 165/159/9 +f 165/160/11 162/161/11 167/162/11 +f 168/163/12 163/157/12 166/164/12 +f 227/165/2 223/166/2 219/167/2 +f 602/168/2 235/169/2 234/170/2 +f 248/171/2 601/172/2 233/173/2 +f 614/174/2 247/175/2 246/176/2 +f 612/177/2 245/178/2 244/179/2 +f 610/180/2 243/181/2 242/182/2 +f 608/183/2 241/184/2 240/185/2 +f 606/186/2 239/187/2 238/188/2 +f 604/189/2 237/190/2 236/191/2 +f 241/192/2 610/193/2 242/182/2 +f 239/187/2 608/194/2 240/185/2 +f 237/190/2 606/195/2 238/188/2 +f 235/169/2 604/196/2 236/191/2 +f 233/173/2 602/197/2 234/170/2 +f 615/198/2 248/171/2 247/175/2 +f 245/178/2 614/199/2 246/176/2 +f 243/181/2 612/200/2 244/179/2 +f 267/201/3 266/202/3 265/203/3 +f 267/201/2 272/204/2 268/205/2 +f 266/202/1 269/206/1 265/203/1 +f 268/205/6 270/207/6 266/202/6 +f 265/203/8 271/208/8 267/201/8 +f 275/209/3 273/210/3 274/211/3 +f 288/212/13 290/213/13 285/214/13 +f 282/215/14 294/216/14 283/217/14 +f 279/218/7 278/219/7 280/220/7 +f 287/221/6 293/222/6 296/223/6 +f 294/216/15 284/224/15 283/217/15 +f 288/212/16 296/223/16 295/225/16 +f 285/214/17 289/226/17 286/227/17 +f 291/228/18 281/229/18 292/230/18 +f 286/227/8 292/230/8 281/229/8 +f 278/219/8 274/231/8 280/220/8 +f 277/232/2 275/233/2 278/219/2 +f 279/218/6 276/234/6 277/232/6 +f 280/220/1 273/235/1 279/218/1 +f 299/236/14 298/237/14 297/238/14 +f 302/239/13 304/240/13 303/241/13 +f 299/242/8 303/241/8 304/240/8 +f 307/243/19 306/244/19 305/245/19 +f 300/246/6 302/239/6 298/237/6 +f 305/247/8 312/248/8 307/243/8 +f 314/249/20 315/250/20 313/251/20 +f 308/252/6 309/253/6 306/254/6 +f 307/243/3 311/255/3 308/252/3 +f 314/249/21 320/256/21 316/257/21 +f 315/250/2 320/258/2 317/259/2 +f 313/251/1 319/260/1 314/249/1 +f 315/250/22 318/261/22 313/251/22 +f 350/262/23 359/263/23 358/264/23 +f 348/265/23 357/266/23 356/267/23 +f 346/268/23 355/269/23 354/270/23 +f 351/271/23 360/272/23 359/263/23 +f 350/273/23 357/274/23 349/275/23 +f 348/276/23 355/269/23 347/277/23 +f 346/278/23 353/279/23 345/280/23 +f 352/281/23 353/279/23 360/272/23 +f 365/282/20 367/283/20 361/284/20 +f 370/285/6 371/286/6 369/287/6 +f 386/288/8 390/289/8 389/290/8 +f 369/287/1 375/291/1 370/285/1 +f 370/285/3 376/292/3 372/293/3 +f 371/286/7 374/294/7 369/287/7 +f 372/293/2 373/295/2 371/286/2 +f 392/296/6 388/297/6 391/298/6 +f 389/299/7 388/297/7 386/288/7 +f 380/300/7 383/301/7 384/302/7 +f 379/303/6 378/304/6 380/305/6 +f 385/306/3 392/307/3 390/308/3 +f 380/300/2 386/288/2 379/309/2 +f 381/310/2 387/311/2 384/302/2 +f 379/309/2 388/297/2 381/310/2 +f 384/302/2 385/306/2 380/300/2 +f 377/312/1 390/289/1 378/304/1 +f 383/313/1 391/314/1 382/315/1 +f 382/315/1 389/290/1 377/312/1 +f 378/304/1 392/316/1 383/313/1 +f 383/313/8 381/317/8 384/318/8 +f 382/319/3 379/309/3 381/310/3 +f 411/320/1 588/321/1 587/322/1 +f 419/323/1 594/324/1 418/325/1 +f 411/320/1 586/326/1 410/327/1 +f 417/328/1 594/329/1 593/330/1 +f 410/327/1 585/331/1 409/332/1 +f 416/333/1 593/334/1 592/335/1 +f 409/332/1 600/336/1 424/337/1 +f 415/338/1 592/339/1 591/340/1 +f 424/337/1 599/341/1 423/342/1 +f 414/343/1 591/344/1 590/345/1 +f 423/342/1 598/346/1 422/347/1 +f 413/348/1 590/349/1 589/350/1 +f 421/351/1 598/352/1 597/353/1 +f 421/351/1 596/354/1 420/355/1 +f 413/348/1 588/356/1 412/357/1 +f 419/323/1 596/358/1 595/359/1 +f 458/360/6 459/361/6 457/362/6 +f 472/363/6 466/364/6 468/365/6 +f 460/366/2 461/367/2 459/361/2 +f 457/362/1 463/368/1 458/360/1 +f 458/360/3 464/369/3 460/366/3 +f 459/361/7 462/370/7 457/362/7 +f 469/371/8 467/372/8 465/373/8 +f 471/374/7 468/365/7 467/372/7 +f 470/375/3 465/376/3 466/364/3 +f 480/377/6 474/378/6 476/379/6 +f 477/380/8 475/381/8 473/382/8 +f 479/383/7 476/379/7 475/381/7 +f 478/384/3 473/385/3 474/378/3 +f 488/386/6 482/387/6 484/388/6 +f 485/389/8 483/390/8 481/391/8 +f 487/392/7 484/388/7 483/390/7 +f 486/393/3 481/394/3 482/387/3 +f 490/395/7 491/396/7 489/397/7 +f 492/398/24 493/399/24 491/396/24 +f 489/397/1 495/400/1 490/395/1 +f 492/398/6 495/401/6 496/402/6 +f 491/396/8 494/403/8 489/397/8 +f 512/404/1 535/405/1 536/406/1 +f 503/407/2 507/408/2 511/409/2 +f 525/410/1 527/411/1 521/412/1 +f 502/413/1 529/414/1 531/415/1 +f 508/416/1 533/417/1 534/418/1 +f 512/404/1 530/419/1 498/420/1 +f 498/420/1 529/421/1 500/422/1 +f 502/413/1 532/423/1 504/424/1 +f 508/416/1 535/425/1 510/426/1 +f 504/424/1 533/427/1 506/428/1 +f 541/429/1 540/430/1 539/431/1 +f 555/432/1 558/433/1 554/434/1 +f 551/435/2 562/436/2 550/437/2 +f 578/438/2 567/439/2 579/440/2 +f 559/441/1 552/442/1 553/443/1 +f 558/433/1 553/443/1 554/434/1 +f 560/444/1 556/445/1 552/442/1 +f 564/446/2 549/447/2 548/448/2 +f 563/449/2 547/450/2 564/446/2 +f 562/436/2 546/451/2 563/449/2 +f 574/452/1 571/453/1 575/454/1 +f 128/92/6 120/455/6 114/90/6 +f 131/91/6 118/456/6 129/457/6 +f 132/108/8 117/458/8 115/459/8 +f 127/93/8 115/459/8 113/95/8 +f 251/460/2 263/461/2 259/462/2 +f 570/463/1 577/464/1 576/465/1 +f 571/453/1 576/465/1 575/454/1 +f 569/466/1 573/467/1 577/464/1 +f 565/468/2 580/469/2 581/470/2 +f 566/471/2 582/472/2 565/468/2 +f 567/439/2 583/473/2 566/471/2 +f 14/1/1 46/474/1 47/2/1 +f 15/4/1 47/2/1 48/5/1 +f 48/5/1 33/9/1 1/7/1 +f 33/9/1 34/12/1 2/10/1 +f 34/12/1 35/15/1 3/13/1 +f 35/15/1 36/475/1 4/16/1 +f 4/18/1 36/475/1 37/19/1 +f 37/19/1 38/476/1 6/21/1 +f 6/23/1 38/476/1 39/24/1 +f 39/24/1 40/477/1 8/26/1 +f 8/28/1 40/477/1 41/29/1 +f 9/31/1 41/478/1 42/32/1 +f 42/32/1 43/36/1 11/34/1 +f 43/36/1 44/39/1 12/37/1 +f 44/39/1 45/42/1 13/40/1 +f 45/42/1 46/474/1 14/43/1 +f 77/45/2 78/479/2 62/46/2 +f 78/48/2 79/480/2 63/49/2 +f 79/50/2 80/481/2 64/51/2 +f 64/51/2 80/482/2 65/52/2 +f 49/53/2 65/483/2 66/54/2 +f 66/56/2 67/484/2 51/57/2 +f 67/58/2 68/485/2 52/59/2 +f 68/60/2 69/486/2 53/61/2 +f 69/62/2 70/487/2 54/63/2 +f 70/64/2 71/488/2 55/65/2 +f 71/66/2 72/489/2 56/67/2 +f 72/68/2 73/490/2 57/69/2 +f 73/70/2 74/491/2 58/71/2 +f 74/73/2 75/492/2 59/74/2 +f 59/74/2 75/493/2 76/75/2 +f 76/77/2 77/494/2 61/47/2 +f 112/78/1 97/495/1 98/496/1 +f 98/496/1 99/497/1 112/78/1 +f 99/497/1 100/79/1 112/78/1 +f 100/79/1 101/498/1 102/499/1 +f 102/499/1 103/500/1 100/79/1 +f 103/500/1 104/80/1 100/79/1 +f 104/80/1 105/501/1 106/502/1 +f 106/502/1 107/503/1 108/504/1 +f 108/504/1 109/505/1 112/78/1 +f 109/505/1 110/506/1 112/78/1 +f 110/506/1 111/507/1 112/78/1 +f 104/80/1 106/502/1 112/78/1 +f 106/502/1 108/504/1 112/78/1 +f 95/83/2 96/508/2 81/509/2 +f 81/509/2 82/510/2 83/511/2 +f 83/511/2 84/512/2 87/81/2 +f 84/512/2 85/513/2 87/81/2 +f 85/513/2 86/514/2 87/81/2 +f 87/81/2 88/515/2 89/516/2 +f 89/516/2 90/517/2 87/81/2 +f 90/517/2 91/82/2 87/81/2 +f 91/82/2 92/518/2 93/519/2 +f 93/519/2 94/520/2 91/82/2 +f 94/520/2 95/83/2 91/82/2 +f 95/83/2 81/509/2 87/81/2 +f 81/509/2 83/511/2 87/81/2 +f 115/84/3 116/88/3 114/85/3 +f 117/87/4 118/111/4 116/88/4 +f 120/89/5 119/102/5 113/86/5 +f 114/90/6 116/521/6 131/91/6 +f 131/91/7 132/108/7 127/93/7 +f 119/94/8 125/522/8 127/93/8 +f 123/96/1 133/107/1 136/97/1 +f 128/92/1 127/93/1 125/99/1 +f 120/89/3 126/523/3 125/101/3 +f 124/103/8 136/524/8 135/104/8 +f 121/106/6 134/112/6 133/107/6 +f 132/108/2 131/91/2 129/109/2 +f 117/87/3 130/110/3 129/109/3 +f 122/105/2 135/104/2 134/112/2 +f 145/113/7 152/136/7 150/114/7 +f 148/116/3 149/133/3 151/117/3 +f 142/119/1 141/525/1 143/120/1 +f 138/122/2 140/126/2 139/123/2 +f 143/120/3 138/122/3 137/124/3 +f 142/125/7 139/123/7 140/126/7 +f 141/128/8 140/126/8 138/122/8 +f 144/130/6 137/124/6 139/123/6 +f 147/132/8 150/114/8 149/133/8 +f 146/135/6 151/117/6 152/136/6 +f 151/117/2 149/133/2 150/114/2 +f 147/138/1 148/526/1 146/135/1 +f 153/139/9 160/149/9 158/140/9 +f 156/142/10 157/146/10 159/143/10 +f 155/145/11 158/140/11 157/146/11 +f 154/148/12 159/143/12 160/149/12 +f 159/143/2 157/146/2 158/140/2 +f 155/151/1 156/527/1 154/148/1 +f 166/152/1 165/528/1 167/153/1 +f 161/155/2 162/161/2 164/156/2 +f 167/153/10 162/161/10 161/155/10 +f 166/158/9 163/157/9 164/156/9 +f 165/160/11 164/156/11 162/161/11 +f 168/163/12 161/155/12 163/157/12 +f 219/167/2 218/529/2 217/530/2 +f 217/530/2 232/531/2 219/167/2 +f 232/531/2 231/532/2 219/167/2 +f 231/532/2 230/533/2 229/534/2 +f 229/534/2 228/535/2 227/165/2 +f 227/165/2 226/536/2 223/166/2 +f 226/536/2 225/537/2 223/166/2 +f 225/537/2 224/538/2 223/166/2 +f 223/166/2 222/539/2 221/540/2 +f 221/540/2 220/541/2 219/167/2 +f 231/532/2 229/534/2 219/167/2 +f 229/534/2 227/165/2 219/167/2 +f 223/166/2 221/540/2 219/167/2 +f 602/168/2 603/542/2 235/169/2 +f 248/171/2 616/543/2 601/172/2 +f 614/174/2 615/544/2 247/175/2 +f 612/177/2 613/545/2 245/178/2 +f 610/180/2 611/546/2 243/181/2 +f 608/183/2 609/547/2 241/184/2 +f 606/186/2 607/548/2 239/187/2 +f 604/189/2 605/549/2 237/190/2 +f 241/192/2 609/550/2 610/193/2 +f 239/187/2 607/551/2 608/194/2 +f 237/190/2 605/552/2 606/195/2 +f 235/169/2 603/553/2 604/196/2 +f 233/173/2 601/554/2 602/197/2 +f 615/198/2 616/555/2 248/171/2 +f 245/178/2 613/556/2 614/199/2 +f 243/181/2 611/557/2 612/200/2 +f 267/201/3 268/205/3 266/202/3 +f 267/201/2 271/558/2 272/204/2 +f 266/202/1 270/559/1 269/206/1 +f 268/205/6 272/560/6 270/207/6 +f 265/203/8 269/561/8 271/208/8 +f 275/209/3 276/234/3 273/210/3 +f 288/212/13 295/225/13 290/213/13 +f 282/215/14 291/562/14 294/216/14 +f 279/218/7 277/232/7 278/219/7 +f 287/221/6 284/224/6 293/222/6 +f 294/216/15 293/222/15 284/224/15 +f 288/212/16 287/221/16 296/223/16 +f 285/214/17 290/213/17 289/226/17 +f 291/228/18 282/563/18 281/229/18 +f 286/227/8 289/226/8 292/230/8 +f 278/219/8 275/564/8 274/231/8 +f 277/232/2 276/565/2 275/233/2 +f 279/218/6 273/210/6 276/234/6 +f 280/220/1 274/566/1 273/235/1 +f 299/236/14 300/246/14 298/237/14 +f 302/239/13 301/567/13 304/240/13 +f 299/242/8 297/568/8 303/241/8 +f 307/243/19 308/252/19 306/244/19 +f 300/246/6 301/567/6 302/239/6 +f 305/247/8 310/569/8 312/248/8 +f 314/249/20 316/257/20 315/250/20 +f 308/252/6 311/255/6 309/253/6 +f 307/243/3 312/248/3 311/255/3 +f 314/249/21 319/570/21 320/256/21 +f 315/250/2 316/257/2 320/258/2 +f 313/251/1 318/571/1 319/260/1 +f 315/250/22 317/572/22 318/261/22 +f 350/262/23 351/573/23 359/263/23 +f 348/265/23 349/574/23 357/266/23 +f 346/268/23 347/575/23 355/269/23 +f 351/271/23 352/576/23 360/272/23 +f 350/273/23 358/264/23 357/274/23 +f 348/276/23 356/267/23 355/269/23 +f 346/278/23 354/270/23 353/279/23 +f 352/281/23 345/577/23 353/279/23 +f 361/284/20 362/578/20 363/579/20 +f 363/579/20 364/580/20 365/282/20 +f 365/282/20 366/581/20 367/283/20 +f 367/283/20 368/582/20 361/284/20 +f 361/284/20 363/579/20 365/282/20 +f 370/285/6 372/293/6 371/286/6 +f 386/288/8 385/306/8 390/289/8 +f 369/287/1 374/583/1 375/291/1 +f 370/285/3 375/584/3 376/292/3 +f 371/286/7 373/585/7 374/294/7 +f 372/293/2 376/586/2 373/295/2 +f 392/296/6 387/311/6 388/297/6 +f 389/299/7 391/587/7 388/297/7 +f 380/300/7 378/588/7 383/301/7 +f 379/303/6 377/312/6 378/304/6 +f 385/306/3 387/311/3 392/307/3 +f 380/300/2 385/306/2 386/288/2 +f 381/310/2 388/297/2 387/311/2 +f 379/309/2 386/288/2 388/297/2 +f 384/302/2 387/311/2 385/306/2 +f 377/312/1 389/290/1 390/289/1 +f 383/313/1 392/316/1 391/314/1 +f 382/315/1 391/314/1 389/290/1 +f 378/304/1 390/289/1 392/316/1 +f 383/313/8 382/315/8 381/317/8 +f 382/319/3 377/589/3 379/309/3 +f 411/320/1 412/357/1 588/321/1 +f 419/323/1 595/590/1 594/324/1 +f 411/320/1 587/591/1 586/326/1 +f 417/328/1 418/325/1 594/329/1 +f 410/327/1 586/592/1 585/331/1 +f 416/333/1 417/593/1 593/334/1 +f 409/332/1 585/594/1 600/336/1 +f 415/338/1 416/333/1 592/339/1 +f 424/337/1 600/595/1 599/341/1 +f 414/343/1 415/338/1 591/344/1 +f 423/342/1 599/596/1 598/346/1 +f 413/348/1 414/343/1 590/349/1 +f 421/351/1 422/347/1 598/352/1 +f 421/351/1 597/597/1 596/354/1 +f 413/348/1 589/598/1 588/356/1 +f 419/323/1 420/355/1 596/358/1 +f 458/360/6 460/366/6 459/361/6 +f 472/363/6 470/375/6 466/364/6 +f 460/366/2 464/599/2 461/367/2 +f 457/362/1 462/600/1 463/368/1 +f 458/360/3 463/601/3 464/369/3 +f 459/361/7 461/602/7 462/370/7 +f 469/371/8 471/374/8 467/372/8 +f 471/374/7 472/363/7 468/365/7 +f 470/375/3 469/603/3 465/376/3 +f 480/377/6 478/384/6 474/378/6 +f 477/380/8 479/383/8 475/381/8 +f 479/383/7 480/377/7 476/379/7 +f 478/384/3 477/604/3 473/385/3 +f 488/386/6 486/393/6 482/387/6 +f 485/389/8 487/392/8 483/390/8 +f 487/392/7 488/386/7 484/388/7 +f 486/393/3 485/605/3 481/394/3 +f 490/395/7 492/398/7 491/396/7 +f 492/398/24 496/606/24 493/399/24 +f 489/397/1 494/607/1 495/400/1 +f 492/398/6 490/395/6 495/401/6 +f 491/396/8 493/608/8 494/403/8 +f 512/404/1 510/426/1 535/405/1 +f 511/409/2 497/609/2 499/610/2 +f 499/610/2 501/611/2 511/409/2 +f 501/611/2 503/407/2 511/409/2 +f 503/407/2 505/612/2 507/408/2 +f 507/408/2 509/613/2 511/409/2 +f 521/412/1 522/614/1 523/615/1 +f 523/615/1 524/616/1 525/410/1 +f 525/410/1 526/617/1 527/411/1 +f 527/411/1 528/618/1 521/412/1 +f 521/412/1 523/615/1 525/410/1 +f 502/413/1 500/422/1 529/414/1 +f 508/416/1 506/619/1 533/417/1 +f 512/404/1 536/620/1 530/419/1 +f 498/420/1 530/621/1 529/421/1 +f 502/413/1 531/622/1 532/423/1 +f 508/416/1 534/623/1 535/425/1 +f 504/424/1 532/624/1 533/427/1 +f 539/431/1 537/625/1 538/626/1 +f 538/626/1 544/627/1 539/431/1 +f 544/627/1 543/628/1 539/431/1 +f 543/628/1 542/629/1 539/431/1 +f 542/629/1 541/429/1 539/431/1 +f 555/432/1 557/630/1 558/433/1 +f 551/435/2 561/631/2 562/436/2 +f 578/438/2 568/632/2 567/439/2 +f 559/441/1 560/444/1 552/442/1 +f 558/433/1 559/441/1 553/443/1 +f 560/444/1 545/633/1 556/445/1 +f 564/446/2 547/450/2 549/447/2 +f 563/449/2 546/451/2 547/450/2 +f 562/436/2 561/631/2 546/451/2 +f 574/452/1 572/634/1 571/453/1 +f 128/92/6 126/635/6 120/455/6 +f 131/91/6 116/521/6 118/456/6 +f 132/108/8 130/636/8 117/458/8 +f 127/93/8 132/108/8 115/459/8 +f 259/462/2 258/637/2 257/638/2 +f 257/638/2 256/639/2 259/462/2 +f 256/639/2 255/640/2 259/462/2 +f 255/640/2 254/641/2 253/642/2 +f 253/642/2 252/643/2 251/460/2 +f 251/460/2 250/644/2 263/461/2 +f 250/644/2 249/645/2 263/461/2 +f 249/645/2 264/646/2 263/461/2 +f 263/461/2 262/647/2 261/648/2 +f 261/648/2 260/649/2 259/462/2 +f 255/640/2 253/642/2 259/462/2 +f 253/642/2 251/460/2 259/462/2 +f 263/461/2 261/648/2 259/462/2 +f 570/463/1 569/466/1 577/464/1 +f 571/453/1 570/463/1 576/465/1 +f 569/466/1 584/650/1 573/467/1 +f 565/468/2 582/472/2 580/469/2 +f 566/471/2 583/473/2 582/472/2 +f 567/439/2 568/632/2 583/473/2 +s 1 +f 589/651/6 453/652/25 588/653/25 +f 593/654/7 449/655/26 592/656/26 +f 596/657/27 446/658/9 595/659/9 +f 600/660/28 442/661/11 599/662/11 +f 588/653/25 454/663/10 587/664/10 +f 592/656/26 450/665/12 591/666/12 +f 595/659/9 447/667/29 594/668/29 +f 599/662/11 443/669/30 598/670/30 +f 587/664/10 455/671/31 586/672/31 +f 591/666/12 451/673/32 590/674/32 +f 594/668/29 448/675/7 593/676/7 +f 598/670/30 444/677/8 597/678/8 +f 585/679/3 441/680/28 600/660/28 +f 597/678/8 445/681/27 596/657/27 +f 590/674/32 452/682/6 589/651/6 +f 586/672/31 456/683/3 585/679/3 +f 36/475/27 53/61/8 37/19/8 +f 44/39/25 61/47/6 45/42/6 +f 37/19/8 54/63/30 38/476/30 +f 45/42/6 62/46/32 46/474/32 +f 38/476/30 55/65/11 39/24/11 +f 46/474/32 63/49/12 47/2/12 +f 39/24/11 56/67/28 40/477/28 +f 47/2/12 64/51/26 48/5/26 +f 40/477/28 57/69/3 41/29/3 +f 33/9/7 50/55/29 34/12/29 +f 48/5/26 49/53/7 33/9/7 +f 41/478/3 58/71/31 42/32/31 +f 34/12/29 51/57/9 35/15/9 +f 42/32/31 59/74/10 43/36/10 +f 35/15/9 52/59/27 36/475/27 +f 43/36/10 60/76/25 44/39/25 +f 92/684/8 100/685/27 93/686/27 +f 84/687/6 108/688/25 85/689/25 +f 91/690/30 101/691/8 92/684/8 +f 83/692/32 109/693/6 84/687/6 +f 90/694/11 102/695/30 91/690/30 +f 82/696/12 110/697/32 83/692/32 +f 89/698/28 103/699/11 90/694/11 +f 81/700/26 111/701/12 82/696/12 +f 88/702/3 104/703/28 89/698/28 +f 95/704/29 97/705/7 96/706/7 +f 96/706/7 112/707/26 81/700/26 +f 87/708/31 105/709/3 88/710/3 +f 94/711/9 98/712/29 95/704/29 +f 86/713/10 106/714/31 87/708/31 +f 93/686/27 99/715/9 94/711/9 +f 85/689/25 107/716/10 86/713/10 +f 183/717/33 198/718/34 199/719/33 +f 175/720/35 192/721/36 176/722/36 +f 183/717/33 200/723/37 184/724/37 +f 176/722/36 193/725/38 177/726/38 +f 170/727/39 185/728/40 186/729/39 +f 184/724/37 185/730/40 169/731/40 +f 178/732/41 193/733/38 194/734/41 +f 171/735/42 186/736/39 187/737/42 +f 178/732/41 195/738/43 179/739/43 +f 172/740/44 187/741/42 188/742/44 +f 179/739/43 196/743/45 180/744/45 +f 172/740/44 189/745/46 173/746/46 +f 180/744/45 197/747/47 181/748/47 +f 174/749/48 189/750/46 190/751/48 +f 182/752/34 197/753/47 198/754/34 +f 174/749/48 191/755/35 175/720/35 +f 196/756/25 213/757/6 197/758/6 +f 189/759/8 206/760/30 190/761/30 +f 197/758/6 214/762/32 198/763/32 +f 190/761/30 207/764/11 191/765/11 +f 198/763/32 215/766/12 199/767/12 +f 191/765/11 208/768/28 192/769/28 +f 199/767/12 216/770/26 200/771/26 +f 192/769/28 209/772/3 193/773/3 +f 185/774/7 202/775/29 186/776/29 +f 200/771/26 201/777/7 185/774/7 +f 193/733/3 210/778/31 194/734/31 +f 186/776/29 203/779/9 187/780/9 +f 194/734/31 211/781/10 195/782/10 +f 187/780/9 204/783/27 188/784/27 +f 195/782/10 212/785/25 196/756/25 +f 188/784/27 205/786/8 189/759/8 +f 230/787/49 215/766/50 214/762/49 +f 231/788/50 216/770/51 215/766/50 +f 232/789/51 201/777/52 216/770/51 +f 217/790/52 202/775/53 201/777/52 +f 218/791/53 203/779/54 202/775/53 +f 203/779/54 220/792/55 204/783/55 +f 220/793/55 205/786/56 204/783/55 +f 205/786/56 222/794/57 206/760/57 +f 222/795/57 207/764/58 206/760/57 +f 207/764/58 224/796/59 208/768/59 +f 224/797/59 209/772/60 208/768/59 +f 209/798/60 226/799/61 210/778/61 +f 210/778/61 227/800/62 211/781/62 +f 227/801/62 212/785/63 211/781/62 +f 228/802/63 213/757/64 212/785/63 +f 213/757/64 230/803/49 214/762/49 +f 73/804/7 242/182/29 74/805/29 +f 66/806/31 235/169/10 67/807/10 +f 74/805/29 243/181/9 75/808/9 +f 67/807/10 236/191/25 68/809/25 +f 75/808/9 244/179/27 76/810/27 +f 68/809/25 237/190/6 69/811/6 +f 76/810/27 245/178/8 77/812/8 +f 69/811/6 238/188/32 70/813/32 +f 77/812/8 246/176/30 78/814/30 +f 70/813/32 239/187/12 71/815/12 +f 78/814/30 247/175/11 79/816/11 +f 71/815/12 240/185/26 72/817/26 +f 79/816/11 248/171/28 80/818/28 +f 72/817/26 241/184/7 73/819/7 +f 65/820/3 234/170/31 66/806/31 +f 80/818/28 233/173/3 65/820/3 +f 263/821/65 393/822/66 394/823/65 +f 257/824/67 399/825/68 400/826/67 +f 407/827/69 251/828/70 406/829/70 +f 255/830/71 401/831/72 402/832/71 +f 249/833/73 407/827/69 408/834/73 +f 261/835/74 395/836/75 396/837/74 +f 401/831/72 257/838/67 400/839/67 +f 251/840/70 405/841/76 406/829/70 +f 398/842/77 260/843/78 397/844/78 +f 253/845/79 403/846/80 404/847/79 +f 403/846/80 255/848/71 402/832/71 +f 397/844/78 261/849/74 396/837/74 +f 393/822/66 249/850/73 408/834/73 +f 262/851/75 394/823/65 395/836/75 +f 399/825/68 259/852/77 398/842/77 +f 405/841/76 253/853/79 404/847/79 +f 322/854/81 331/855/82 330/856/83 +f 327/857/21 336/858/84 335/859/85 +f 326/860/86 333/861/87 325/862/1 +f 324/863/88 331/855/82 323/864/22 +f 321/865/2 330/856/83 329/866/89 +f 321/865/2 336/858/84 328/867/90 +f 326/860/86 335/859/85 334/868/91 +f 325/869/1 332/870/92 324/863/88 +f 334/868/91 341/871/93 333/861/87 +f 331/855/82 340/872/94 339/873/95 +f 329/866/89 338/874/96 337/875/97 +f 329/866/89 344/876/98 336/858/84 +f 335/859/85 342/877/99 334/868/91 +f 332/870/92 341/878/93 340/872/94 +f 330/856/83 339/873/95 338/874/96 +f 336/858/84 343/879/100 335/859/85 +f 343/879/100 352/880/90 351/881/21 +f 341/871/93 350/882/86 349/883/1 +f 339/873/95 348/265/88 347/884/22 +f 337/875/97 346/885/81 345/886/2 +f 337/875/97 352/880/90 344/876/98 +f 342/877/99 351/881/21 350/882/86 +f 341/878/93 348/265/88 340/872/94 +f 339/873/95 346/885/81 338/874/96 +f 354/270/81 361/887/2 353/279/2 +f 353/279/2 368/888/90 360/272/90 +f 359/263/21 366/889/86 358/264/86 +f 357/266/1 364/890/88 356/267/88 +f 354/270/81 363/891/22 362/892/81 +f 359/263/21 368/888/90 367/893/21 +f 357/274/1 366/889/86 365/894/1 +f 356/267/88 363/891/22 355/269/22 +f 434/895/31 419/323/10 418/325/31 +f 427/896/9 412/357/27 411/320/9 +f 435/897/10 420/355/25 419/323/10 +f 428/898/27 413/348/8 412/357/27 +f 436/899/25 421/351/6 420/355/25 +f 429/900/8 414/343/30 413/348/8 +f 437/901/6 422/347/32 421/351/6 +f 430/902/30 415/338/11 414/343/30 +f 438/903/32 423/342/12 422/347/32 +f 431/904/11 416/333/28 415/338/11 +f 439/905/12 424/337/26 423/342/12 +f 432/906/28 417/593/3 416/333/28 +f 425/907/7 410/327/29 409/332/7 +f 440/908/26 409/332/7 424/337/26 +f 433/909/3 418/325/31 417/328/3 +f 426/910/29 411/320/9 410/327/29 +f 498/420/7 499/911/12 497/912/7 +f 500/422/12 501/913/6 499/911/12 +f 502/413/6 503/914/10 501/913/6 +f 504/424/10 505/915/3 503/914/10 +f 506/619/3 507/916/11 505/917/3 +f 508/416/11 509/918/8 507/916/11 +f 510/426/8 511/919/9 509/918/8 +f 512/404/9 497/912/7 511/919/9 +f 513/920/7 528/921/12 520/922/12 +f 519/923/6 526/924/10 518/925/10 +f 517/926/3 524/927/11 516/928/11 +f 515/929/8 522/930/9 514/931/9 +f 520/922/12 527/932/6 519/923/6 +f 518/925/10 525/933/3 517/934/3 +f 516/928/11 523/935/8 515/929/8 +f 514/931/9 521/936/7 513/920/7 +f 534/623/11 543/937/8 535/425/8 +f 532/624/10 541/938/3 533/427/3 +f 529/414/12 539/939/6 531/415/6 +f 535/405/8 544/940/9 536/406/9 +f 533/417/3 542/941/11 534/418/11 +f 531/622/6 540/942/10 532/423/10 +f 530/621/7 537/943/12 529/421/12 +f 536/620/9 538/944/7 530/419/7 +f 560/444/26 548/448/101 545/633/101 +f 557/630/102 562/436/32 558/433/32 +f 558/433/32 563/449/12 559/441/12 +f 559/441/12 564/446/26 560/444/26 +f 18/945/31 601/946/3 17/947/3 +f 20/948/25 603/949/10 19/950/10 +f 22/951/32 605/952/6 21/953/6 +f 17/947/3 616/954/28 32/955/28 +f 26/956/29 609/957/7 25/958/7 +f 21/953/6 604/959/25 20/948/25 +f 24/960/26 607/961/12 23/962/12 +f 30/963/30 613/964/8 29/965/8 +f 31/966/11 614/967/30 30/963/30 +f 25/968/7 608/969/26 24/960/26 +f 19/950/10 602/970/31 18/945/31 +f 28/971/27 611/972/9 27/973/9 +f 23/962/12 606/974/32 22/951/32 +f 29/965/8 612/975/27 28/971/27 +f 32/955/28 615/976/11 31/966/11 +f 27/973/9 610/977/29 26/956/29 +f 395/836/32 620/978/6 396/837/6 +f 397/844/25 622/979/10 398/842/10 +f 400/839/3 625/980/28 401/831/28 +f 403/846/30 628/981/8 404/847/8 +f 405/841/27 630/982/9 406/829/9 +f 402/832/11 627/983/30 403/846/30 +f 393/822/26 618/984/12 394/823/12 +f 396/837/6 621/985/25 397/844/25 +f 399/825/31 624/986/3 400/826/3 +f 408/834/7 617/987/26 393/822/26 +f 406/829/9 631/988/29 407/827/29 +f 394/823/12 619/989/32 395/836/32 +f 401/831/28 626/990/11 402/832/11 +f 404/847/8 629/991/27 405/841/27 +f 407/827/29 632/992/7 408/834/7 +f 398/842/10 623/993/31 399/825/31 +f 623/993/103 640/994/104 624/986/105 +f 631/988/106 648/995/107 632/992/108 +f 627/983/109 642/996/110 643/997/111 +f 619/989/112 636/998/113 620/978/114 +f 617/987/115 648/999/107 633/1000/116 +f 619/989/112 634/1001/117 635/1002/118 +f 625/980/119 642/1003/110 626/990/120 +f 623/993/103 638/1004/121 639/1005/122 +f 625/980/119 640/1006/104 641/1007/123 +f 621/985/124 638/1008/121 622/979/125 +f 629/991/126 646/1009/127 630/982/128 +f 617/987/115 634/1010/117 618/984/129 +f 620/978/114 637/1011/130 621/985/124 +f 628/981/131 645/1012/132 629/991/126 +f 631/988/106 646/1013/127 647/1014/133 +f 627/983/109 644/1015/134 628/981/131 +f 644/1016/134 649/1017/1 645/1012/132 +f 646/1013/127 649/1018/1 647/1014/133 +f 639/1019/122 649/1020/1 640/994/104 +f 647/1021/133 649/1022/1 648/995/107 +f 642/996/110 649/1023/1 643/997/111 +f 635/1024/118 649/1025/1 636/998/113 +f 648/999/107 649/1026/1 633/1000/116 +f 634/1001/117 649/1027/1 635/1002/118 +f 641/1028/123 649/1029/1 642/1003/110 +f 638/1004/121 649/1030/1 639/1005/122 +f 640/1006/104 649/1031/1 641/1007/123 +f 637/1032/130 649/1033/1 638/1008/121 +f 645/1034/132 649/1035/1 646/1009/127 +f 633/1036/116 649/1037/1 634/1010/117 +f 636/1038/113 649/1039/1 637/1011/130 +f 643/1040/111 649/1041/1 644/1015/134 +f 569/466/26 581/470/101 584/650/101 +f 572/634/102 567/439/32 571/453/32 +f 571/453/32 566/471/12 570/463/12 +f 570/463/12 565/468/26 569/466/26 +f 589/651/6 452/682/6 453/652/25 +f 593/654/7 448/1042/7 449/655/26 +f 596/657/27 445/681/27 446/658/9 +f 600/660/28 441/680/28 442/661/11 +f 588/653/25 453/652/25 454/663/10 +f 592/656/26 449/655/26 450/665/12 +f 595/659/9 446/658/9 447/667/29 +f 599/662/11 442/661/11 443/669/30 +f 587/664/10 454/663/10 455/671/31 +f 591/666/12 450/665/12 451/673/32 +f 594/668/29 447/667/29 448/675/7 +f 598/670/30 443/669/30 444/677/8 +f 585/679/3 456/683/3 441/680/28 +f 597/678/8 444/677/8 445/681/27 +f 590/674/32 451/673/32 452/682/6 +f 586/672/31 455/671/31 456/683/3 +f 36/475/27 52/59/27 53/61/8 +f 44/39/25 60/76/25 61/47/6 +f 37/19/8 53/61/8 54/63/30 +f 45/42/6 61/47/6 62/46/32 +f 38/476/30 54/63/30 55/65/11 +f 46/474/32 62/46/32 63/49/12 +f 39/24/11 55/65/11 56/67/28 +f 47/2/12 63/49/12 64/51/26 +f 40/477/28 56/67/28 57/69/3 +f 33/9/7 49/53/7 50/55/29 +f 48/5/26 64/51/26 49/53/7 +f 41/478/3 57/72/3 58/71/31 +f 34/12/29 50/55/29 51/57/9 +f 42/32/31 58/71/31 59/74/10 +f 35/15/9 51/57/9 52/59/27 +f 43/36/10 59/74/10 60/76/25 +f 92/684/8 101/691/8 100/685/27 +f 84/687/6 109/693/6 108/688/25 +f 91/690/30 102/695/30 101/691/8 +f 83/692/32 110/697/32 109/693/6 +f 90/694/11 103/699/11 102/695/30 +f 82/696/12 111/701/12 110/697/32 +f 89/698/28 104/703/28 103/699/11 +f 81/700/26 112/707/26 111/701/12 +f 88/702/3 105/1043/3 104/703/28 +f 95/704/29 98/712/29 97/705/7 +f 96/706/7 97/705/7 112/707/26 +f 87/708/31 106/714/31 105/709/3 +f 94/711/9 99/715/9 98/712/29 +f 86/713/10 107/716/10 106/714/31 +f 93/686/27 100/685/27 99/715/9 +f 85/689/25 108/688/25 107/716/10 +f 183/717/33 182/752/34 198/718/34 +f 175/720/35 191/1044/35 192/721/36 +f 183/717/33 199/1045/33 200/723/37 +f 176/722/36 192/1046/36 193/725/38 +f 170/727/39 169/731/40 185/728/40 +f 184/724/37 200/1047/37 185/730/40 +f 178/732/41 177/1048/38 193/733/38 +f 171/735/42 170/727/39 186/736/39 +f 178/732/41 194/1049/41 195/738/43 +f 172/740/44 171/735/42 187/741/42 +f 179/739/43 195/1050/43 196/743/45 +f 172/740/44 188/1051/44 189/745/46 +f 180/744/45 196/1052/45 197/747/47 +f 174/749/48 173/746/46 189/750/46 +f 182/752/34 181/748/47 197/753/47 +f 174/749/48 190/1053/48 191/755/35 +f 196/756/25 212/785/25 213/757/6 +f 189/759/8 205/786/8 206/760/30 +f 197/758/6 213/757/6 214/762/32 +f 190/761/30 206/760/30 207/764/11 +f 198/763/32 214/762/32 215/766/12 +f 191/765/11 207/764/11 208/768/28 +f 199/767/12 215/766/12 216/770/26 +f 192/769/28 208/768/28 209/772/3 +f 185/774/7 201/777/7 202/775/29 +f 200/771/26 216/770/26 201/777/7 +f 193/733/3 209/798/3 210/778/31 +f 186/776/29 202/775/29 203/779/9 +f 194/734/31 210/778/31 211/781/10 +f 187/780/9 203/779/9 204/783/27 +f 195/782/10 211/781/10 212/785/25 +f 188/784/27 204/783/27 205/786/8 +f 230/787/49 231/1054/50 215/766/50 +f 231/788/50 232/1055/51 216/770/51 +f 232/789/51 217/1056/52 201/777/52 +f 217/790/52 218/1057/53 202/775/53 +f 218/791/53 219/1058/54 203/779/54 +f 203/779/54 219/1059/54 220/792/55 +f 220/793/55 221/1060/56 205/786/56 +f 205/786/56 221/1061/56 222/794/57 +f 222/795/57 223/1062/58 207/764/58 +f 207/764/58 223/1063/58 224/796/59 +f 224/797/59 225/1064/60 209/772/60 +f 209/798/60 225/1065/60 226/799/61 +f 210/778/61 226/1066/61 227/800/62 +f 227/801/62 228/1067/63 212/785/63 +f 228/802/63 229/1068/64 213/757/64 +f 213/757/64 229/1069/64 230/803/49 +f 73/804/7 241/192/7 242/182/29 +f 66/806/31 234/170/31 235/169/10 +f 74/805/29 242/182/29 243/181/9 +f 67/807/10 235/169/10 236/191/25 +f 75/808/9 243/181/9 244/179/27 +f 68/809/25 236/191/25 237/190/6 +f 76/810/27 244/179/27 245/178/8 +f 69/811/6 237/190/6 238/188/32 +f 77/812/8 245/178/8 246/176/30 +f 70/813/32 238/188/32 239/187/12 +f 78/814/30 246/176/30 247/175/11 +f 71/815/12 239/187/12 240/185/26 +f 79/816/11 247/175/11 248/171/28 +f 72/817/26 240/185/26 241/184/7 +f 65/820/3 233/173/3 234/170/31 +f 80/818/28 248/171/28 233/173/3 +f 263/821/65 264/1070/66 393/822/66 +f 257/824/67 258/1071/68 399/825/68 +f 407/827/69 250/1072/69 251/828/70 +f 255/830/71 256/1073/72 401/831/72 +f 249/833/73 250/1074/69 407/827/69 +f 261/835/74 262/1075/75 395/836/75 +f 401/831/72 256/1076/72 257/838/67 +f 251/840/70 252/1077/76 405/841/76 +f 398/842/77 259/1078/77 260/843/78 +f 253/845/79 254/1079/80 403/846/80 +f 403/846/80 254/1080/80 255/848/71 +f 397/844/78 260/1081/78 261/849/74 +f 393/822/66 264/1082/66 249/850/73 +f 262/851/75 263/1083/65 394/823/65 +f 399/825/68 258/1084/68 259/852/77 +f 405/841/76 252/1085/76 253/853/79 +f 322/854/81 323/864/22 331/855/82 +f 327/857/21 328/867/90 336/858/84 +f 326/860/86 334/868/91 333/861/87 +f 324/863/88 332/870/92 331/855/82 +f 321/865/2 322/854/81 330/856/83 +f 321/865/2 329/866/89 336/858/84 +f 326/860/86 327/857/21 335/859/85 +f 325/869/1 333/1086/87 332/870/92 +f 334/868/91 342/877/99 341/871/93 +f 331/855/82 332/870/92 340/872/94 +f 329/866/89 330/856/83 338/874/96 +f 329/866/89 337/875/97 344/876/98 +f 335/859/85 343/879/100 342/877/99 +f 332/870/92 333/1086/87 341/878/93 +f 330/856/83 331/855/82 339/873/95 +f 336/858/84 344/876/98 343/879/100 +f 343/879/100 344/876/98 352/880/90 +f 341/871/93 342/877/99 350/882/86 +f 339/873/95 340/872/94 348/265/88 +f 337/875/97 338/874/96 346/885/81 +f 337/875/97 345/886/2 352/880/90 +f 342/877/99 343/879/100 351/881/21 +f 341/878/93 349/574/1 348/265/88 +f 339/873/95 347/884/22 346/885/81 +f 354/270/81 362/892/81 361/887/2 +f 353/279/2 361/887/2 368/888/90 +f 359/263/21 367/893/21 366/889/86 +f 357/266/1 365/1087/1 364/890/88 +f 354/270/81 355/269/22 363/891/22 +f 359/263/21 360/272/90 368/888/90 +f 357/274/1 358/264/86 366/889/86 +f 356/267/88 364/890/88 363/891/22 +f 434/895/31 435/897/10 419/323/10 +f 427/896/9 428/898/27 412/357/27 +f 435/897/10 436/899/25 420/355/25 +f 428/898/27 429/900/8 413/348/8 +f 436/899/25 437/901/6 421/351/6 +f 429/900/8 430/902/30 414/343/30 +f 437/901/6 438/903/32 422/347/32 +f 430/902/30 431/904/11 415/338/11 +f 438/903/32 439/905/12 423/342/12 +f 431/904/11 432/906/28 416/333/28 +f 439/905/12 440/908/26 424/337/26 +f 432/906/28 433/1088/3 417/593/3 +f 425/907/7 426/910/29 410/327/29 +f 440/908/26 425/907/7 409/332/7 +f 433/909/3 434/895/31 418/325/31 +f 426/910/29 427/896/9 411/320/9 +f 498/420/7 500/422/12 499/911/12 +f 500/422/12 502/413/6 501/913/6 +f 502/413/6 504/424/10 503/914/10 +f 504/424/10 506/428/3 505/915/3 +f 506/619/3 508/416/11 507/916/11 +f 508/416/11 510/426/8 509/918/8 +f 510/426/8 512/404/9 511/919/9 +f 512/404/9 498/420/7 497/912/7 +f 513/920/7 521/936/7 528/921/12 +f 519/923/6 527/932/6 526/924/10 +f 517/926/3 525/1089/3 524/927/11 +f 515/929/8 523/935/8 522/930/9 +f 520/922/12 528/921/12 527/932/6 +f 518/925/10 526/924/10 525/933/3 +f 516/928/11 524/927/11 523/935/8 +f 514/931/9 522/930/9 521/936/7 +f 534/623/11 542/1090/11 543/937/8 +f 532/624/10 540/1091/10 541/938/3 +f 529/414/12 537/1092/12 539/939/6 +f 535/405/8 543/1093/8 544/940/9 +f 533/417/3 541/1094/3 542/941/11 +f 531/622/6 539/1095/6 540/942/10 +f 530/621/7 538/1096/7 537/943/12 +f 536/620/9 544/1097/9 538/944/7 +f 560/444/26 564/446/26 548/448/101 +f 557/630/102 550/437/102 562/436/32 +f 558/433/32 562/436/32 563/449/12 +f 559/441/12 563/449/12 564/446/26 +f 18/945/31 602/970/31 601/946/3 +f 20/948/25 604/959/25 603/949/10 +f 22/951/32 606/974/32 605/952/6 +f 17/947/3 601/946/3 616/954/28 +f 26/956/29 610/977/29 609/957/7 +f 21/953/6 605/952/6 604/959/25 +f 24/960/26 608/969/26 607/961/12 +f 30/963/30 614/967/30 613/964/8 +f 31/966/11 615/976/11 614/967/30 +f 25/968/7 609/1098/7 608/969/26 +f 19/950/10 603/949/10 602/970/31 +f 28/971/27 612/975/27 611/972/9 +f 23/962/12 607/961/12 606/974/32 +f 29/965/8 613/964/8 612/975/27 +f 32/955/28 616/954/28 615/976/11 +f 27/973/9 611/972/9 610/977/29 +f 395/836/32 619/989/32 620/978/6 +f 397/844/25 621/985/25 622/979/10 +f 400/839/3 624/1099/3 625/980/28 +f 403/846/30 627/983/30 628/981/8 +f 405/841/27 629/991/27 630/982/9 +f 402/832/11 626/990/11 627/983/30 +f 393/822/26 617/987/26 618/984/12 +f 396/837/6 620/978/6 621/985/25 +f 399/825/31 623/993/31 624/986/3 +f 408/834/7 632/992/7 617/987/26 +f 406/829/9 630/982/9 631/988/29 +f 394/823/12 618/984/12 619/989/32 +f 401/831/28 625/980/28 626/990/11 +f 404/847/8 628/981/8 629/991/27 +f 407/827/29 631/988/29 632/992/7 +f 398/842/10 622/979/10 623/993/31 +f 623/993/103 639/1019/122 640/994/104 +f 631/988/106 647/1021/133 648/995/107 +f 627/983/109 626/990/120 642/996/110 +f 619/989/112 635/1024/118 636/998/113 +f 617/987/115 632/992/108 648/999/107 +f 619/989/112 618/984/129 634/1001/117 +f 625/980/119 641/1028/123 642/1003/110 +f 623/993/103 622/979/125 638/1004/121 +f 625/980/119 624/1099/105 640/1006/104 +f 621/985/124 637/1032/130 638/1008/121 +f 629/991/126 645/1034/132 646/1009/127 +f 617/987/115 633/1036/116 634/1010/117 +f 620/978/114 636/1038/113 637/1011/130 +f 628/981/131 644/1016/134 645/1012/132 +f 631/988/106 630/982/128 646/1013/127 +f 627/983/109 643/1040/111 644/1015/134 +f 569/466/26 565/468/26 581/470/101 +f 572/634/102 579/440/102 567/439/32 +f 571/453/32 567/439/32 566/471/12 +f 570/463/12 566/471/12 565/468/26 diff --git a/src/main/resources/assets/hbm/models/weapons/pepperbox.obj b/src/main/resources/assets/hbm/models/weapons/pepperbox.obj index a138f7e89..5682c46c4 100644 --- a/src/main/resources/assets/hbm/models/weapons/pepperbox.obj +++ b/src/main/resources/assets/hbm/models/weapons/pepperbox.obj @@ -1,6 +1,6 @@ # Blender v2.79 (sub 0) OBJ File: 'pepperbox.blend' # www.blender.org -o Circle +o Cylinder v 0.000000 0.125000 7.000000 v -0.088388 0.088388 7.000000 v -0.125000 -0.000000 7.000000 @@ -161,658 +161,6 @@ v -0.270633 0.156250 6.000000 v -0.251902 0.298529 6.000000 v -0.339262 0.412380 6.000000 v -0.481541 0.431111 6.000000 -v 0.000000 1.000000 0.000000 -v -0.500000 0.866025 0.000000 -v -0.866025 0.500000 0.000000 -v -1.000000 -0.000000 -0.000000 -v -0.866025 -0.500000 -0.000000 -v -0.500000 -0.866025 -0.000000 -v 0.000000 -1.000000 -0.000000 -v 0.500000 -0.866026 -0.000000 -v 0.866025 -0.500000 -0.000000 -v 1.000000 -0.000000 -0.000000 -v 0.866026 0.499999 0.000000 -v 0.500000 0.866025 0.000000 -v -0.500000 0.866025 -0.500000 -v 0.000000 1.000000 -0.500000 -v -0.866025 0.500000 -0.500000 -v -1.000000 -0.000000 -0.500000 -v -0.866025 -0.500000 -0.500000 -v -0.500000 -0.866025 -0.500000 -v 0.000000 -1.000000 -0.500000 -v 0.500000 -0.866026 -0.500000 -v 0.866025 -0.500000 -0.500000 -v 1.000000 -0.000000 -0.500000 -v 0.866026 0.500000 -0.500000 -v 0.500000 0.866025 -0.500000 -v 0.875000 -0.875000 -0.125000 -v 0.875000 0.125000 -0.125000 -v 0.875000 -0.875000 -0.375000 -v 0.875000 0.125000 -0.375000 -v 1.125000 -0.875000 -0.125000 -v 1.125000 -0.125000 -0.125000 -v 1.125000 -0.875000 -0.375000 -v 1.125000 -0.125000 -0.375000 -v -1.125000 -0.125000 -0.125000 -v 0.875000 -1.125000 -0.125000 -v -1.125000 -0.875000 -0.125000 -v 1.125000 -1.125000 -0.125000 -v 0.875000 -0.875000 6.125000 -v 1.125000 -0.875000 6.125000 -v 0.875000 -1.125000 6.125000 -v 1.125000 -1.125000 6.125000 -v 0.875000 -0.875000 6.375000 -v 1.125000 -0.875000 6.375000 -v -1.125000 -0.125000 -0.375000 -v -1.125000 -0.875000 -0.375000 -v 0.875000 0.625000 6.125000 -v 1.125000 0.625000 6.125000 -v 0.875000 0.625000 6.375000 -v 1.125000 0.625000 6.375000 -v 0.625000 0.875000 6.125000 -v 0.625000 0.875000 6.375000 -v -0.625000 0.875000 6.125000 -v -0.625000 0.875000 6.375000 -v 0.625000 1.125000 6.125000 -v 0.625000 1.125000 6.375000 -v -0.625000 1.125000 6.125000 -v -0.625000 1.125000 6.375000 -v -0.875000 -0.875000 -0.125000 -v -0.875000 0.125000 -0.125000 -v -0.875000 -0.875000 -0.375000 -v -0.875000 0.125000 -0.375000 -v -1.125000 -1.125000 -0.125000 -v -0.875000 -1.125000 -0.125000 -v -1.125000 -0.875000 6.125000 -v -0.875000 -0.875000 6.125000 -v -1.125000 -1.125000 6.125000 -v -0.875000 -1.125000 6.125000 -v -1.125000 -0.875000 6.375000 -v -0.875000 -0.875000 6.375000 -v -1.125000 0.625000 6.125000 -v -0.875000 0.625000 6.125000 -v -1.125000 0.625000 6.375000 -v -0.875000 0.625000 6.375000 -v -0.875000 -0.375000 -0.500000 -v 0.875000 -0.375000 -0.500000 -v -0.875000 0.375000 -0.500000 -v 0.875000 0.375000 -0.500000 -v -0.375000 0.875000 -0.500000 -v -0.375000 -0.875000 -0.500000 -v 0.375000 0.875000 -0.500000 -v 0.375000 -0.875000 -0.500000 -v -0.875000 -0.375000 -3.000000 -v 0.875000 -0.375000 -3.000000 -v -0.875000 0.375000 -3.000000 -v 0.875000 0.375000 -3.000000 -v -0.375000 0.875000 -3.000000 -v -0.375000 -0.875000 -3.000000 -v 0.375000 0.875000 -3.000000 -v 0.375000 -0.875000 -3.000000 -v -0.875000 -1.625000 -4.875000 -v 0.875000 -1.625000 -4.875000 -v -0.875000 -0.875000 -5.250000 -v 0.875000 -0.875000 -5.250000 -v -0.375000 -0.375000 -5.500000 -v -0.375000 -2.125000 -4.625000 -v 0.375000 -0.375000 -5.500000 -v 0.375000 -2.125000 -4.625000 -v -0.875000 -2.875000 -5.750000 -v 0.875000 -2.875000 -5.750000 -v -0.875000 -2.125000 -6.500000 -v 0.875000 -2.125000 -6.500000 -v -0.375000 -1.625000 -7.000000 -v -0.375000 -3.375000 -5.250000 -v 0.375000 -1.625000 -7.000000 -v 0.375000 -3.375000 -5.250000 -v 0.875000 0.250000 -0.500000 -v 1.000000 0.250000 -0.500000 -v 0.875000 0.250000 -1.000000 -v 1.000000 0.250000 -1.000000 -v 0.875000 0.375000 -1.000000 -v 0.875000 0.375000 -0.500000 -v 1.000000 0.375000 -0.500000 -v 1.000000 0.375000 -1.000000 -v 0.625000 0.375000 -2.125000 -v 0.625000 0.551777 -2.051777 -v 0.625000 0.625000 -1.875000 -v 0.625000 0.551777 -1.698223 -v 0.625000 0.375000 -1.625000 -v 0.625000 0.198223 -1.698223 -v 0.625000 0.125000 -1.875000 -v 0.625000 0.198223 -2.051777 -v 1.000000 0.375000 -2.125000 -v 1.000000 0.551777 -2.051777 -v 1.000000 0.625000 -1.875000 -v 1.000000 0.551777 -1.698223 -v 1.000000 0.375000 -1.625000 -v 1.000000 0.198223 -1.698223 -v 1.000000 0.125000 -1.875000 -v 1.000000 0.198223 -2.051777 -v 0.906250 0.500000 -1.750000 -v 0.968750 0.500000 -1.750000 -v 0.906250 0.500000 -2.000000 -v 0.968750 0.500000 -2.000000 -v 0.906250 1.375000 -1.750000 -v 0.968750 1.375000 -1.750000 -v 0.906250 1.375000 -2.000000 -v 0.968750 1.375000 -2.000000 -v 0.906250 1.500000 -2.000000 -v 0.906250 1.500000 -1.625000 -v 0.968750 1.500000 -1.625000 -v 0.968750 1.500000 -2.000000 -v -0.875000 0.250000 -0.500000 -v -1.000000 0.250000 -0.500000 -v -0.875000 0.250000 -1.000000 -v -1.000000 0.250000 -1.000000 -v -0.875000 0.375000 -1.000000 -v -0.875000 0.375000 -0.500000 -v -1.000000 0.375000 -0.500000 -v -1.000000 0.375000 -1.000000 -v -0.125000 -0.875000 -1.250000 -v 0.125000 -0.875000 -1.250000 -v -0.125000 -0.875000 -1.500000 -v 0.125000 -0.875000 -1.500000 -v -0.125000 -1.250000 -1.250000 -v 0.125000 -1.250000 -1.250000 -v -0.125000 -1.250000 -1.500000 -v 0.125000 -1.250000 -1.500000 -v -0.125000 -2.000000 -1.750000 -v 0.125000 -2.000000 -1.750000 -v 0.125000 -1.500000 -1.750000 -v -0.125000 -1.500000 -1.750000 -v 0.125000 -2.000000 -1.000000 -v -0.125000 -2.000000 -1.000000 -v 0.125000 -1.500000 -1.000000 -v -0.125000 -1.500000 -1.000000 -v -0.125000 -1.500000 -0.875000 -v -0.125000 -1.250000 -1.125000 -v 0.125000 -1.250000 -1.125000 -v 0.125000 -1.500000 -0.875000 -v -0.125000 -1.250000 -1.625000 -v -0.125000 -1.500000 -1.875000 -v 0.125000 -1.500000 -1.875000 -v 0.125000 -1.250000 -1.625000 -v -0.125000 -2.250000 -1.125000 -v -0.125000 -2.000000 -0.875000 -v 0.125000 -2.000000 -0.875000 -v 0.125000 -2.250000 -1.125000 -v 0.125000 -2.250000 -1.625000 -v 0.125000 -2.000000 -1.875000 -v -0.125000 -2.000000 -1.875000 -v -0.125000 -2.250000 -1.625000 -v -0.125000 -1.375000 -1.125000 -v 0.125000 -1.375000 -1.125000 -v -0.125000 -1.375000 -1.625000 -v 0.125000 -1.375000 -1.625000 -v -0.125000 -2.125000 -1.125000 -v 0.125000 -2.125000 -1.125000 -v 0.125000 -2.125000 -1.625000 -v -0.125000 -2.125000 -1.625000 -v -0.187500 0.875000 -0.562500 -v 0.187500 0.875000 -0.562500 -v -0.187500 0.875000 -0.937500 -v 0.187500 0.875000 -0.937500 -v -0.187500 1.375000 -0.812500 -v -0.187500 1.375000 -0.687500 -v 0.187500 1.375000 -0.687500 -v 0.187500 1.375000 -0.812500 -v -0.062500 1.375000 -0.687500 -v 0.062500 1.375000 -0.687500 -v 0.062500 1.375000 -0.812500 -v -0.062500 1.375000 -0.812500 -v -0.062500 1.125000 -0.625000 -v 0.062500 1.125000 -0.625000 -v 0.062500 1.125000 -0.875000 -v -0.062500 1.125000 -0.875000 -v 0.000000 0.875000 8.062500 -v -0.437500 0.757773 8.062500 -v -0.757772 0.437500 8.062500 -v -0.875000 -0.000000 8.062500 -v -0.757772 -0.437500 8.062500 -v -0.437500 -0.757773 8.062500 -v 0.000000 -0.875000 8.062500 -v 0.437500 -0.757773 8.062500 -v 0.757772 -0.437500 8.062500 -v 0.875000 -0.000000 8.062500 -v 0.757772 0.437500 8.062500 -v 0.437500 0.757773 8.062500 -v 0.000000 0.875000 8.312500 -v -0.437500 0.757773 8.312500 -v -0.757772 0.437500 8.312500 -v -0.875000 -0.000000 8.312500 -v -0.757772 -0.437500 8.312500 -v -0.437500 -0.757773 8.312500 -v 0.000000 -0.875000 8.312500 -v 0.437500 -0.757773 8.312500 -v 0.757772 -0.437500 8.312500 -v 0.875000 -0.000000 8.312500 -v 0.757772 0.437500 8.312500 -v 0.437500 0.757773 8.312500 -v 0.000000 0.500000 8.187500 -v -0.132583 0.500000 8.132584 -v -0.187500 0.500000 8.000000 -v -0.132583 0.500000 7.867418 -v 0.000000 0.500000 7.812500 -v 0.132583 0.500000 7.867418 -v 0.187500 0.500000 8.000000 -v 0.132583 0.500000 8.132584 -v 0.000000 0.367418 8.132584 -v 0.000000 0.312500 8.000000 -v 0.000000 0.367418 7.867418 -v 0.000000 0.632583 7.867418 -v 0.000000 0.687500 8.000000 -v 0.000000 0.632583 8.132584 -v 0.093750 0.406250 8.132584 -v 0.132583 0.367418 8.000000 -v 0.093750 0.406250 7.867418 -v -0.093750 0.593750 7.867418 -v -0.132583 0.632583 8.000000 -v -0.093750 0.593750 8.132584 -v 0.093750 0.593750 8.132584 -v 0.132583 0.632583 8.000000 -v 0.093750 0.593750 7.867418 -v -0.093750 0.406250 7.867418 -v -0.132583 0.367418 8.000000 -v -0.093750 0.406250 8.132584 -v 0.187500 -0.500000 8.000000 -v -0.187500 -0.500000 8.000000 -v 0.000000 -0.312500 8.000000 -v 0.000000 -0.687500 8.000000 -v -0.132583 -0.367418 8.000000 -v 0.132583 -0.632583 8.000000 -v -0.132583 -0.632583 8.000000 -v 0.132583 -0.367418 8.000000 -v 0.000000 -0.750000 8.000000 -v 0.176776 -0.676777 8.000000 -v 0.250000 -0.500000 8.000000 -v 0.176777 -0.323224 8.000000 -v 0.000000 -0.250000 8.000000 -v -0.176777 -0.323224 8.000000 -v -0.250000 -0.500000 8.000000 -v -0.176777 -0.676777 8.000000 -v 0.000000 -0.312500 8.062500 -v -0.132583 -0.367418 8.062500 -v 0.132583 -0.367418 8.062500 -v 0.187500 -0.500000 8.062500 -v 0.132583 -0.632583 8.062500 -v 0.000000 -0.687500 8.062500 -v -0.132583 -0.632583 8.062500 -v -0.187500 -0.500000 8.062500 -v 0.176776 -0.676777 8.062500 -v 0.000000 -0.750000 8.062500 -v 0.250000 -0.500000 8.062500 -v 0.176777 -0.323224 8.062500 -v 0.000000 -0.250000 8.062500 -v -0.176777 -0.323224 8.062500 -v -0.250000 -0.500000 8.062500 -v -0.176777 -0.676777 8.062500 -v 0.000000 0.250000 8.312500 -v -0.125000 0.216506 8.312500 -v -0.216506 0.125000 8.312500 -v -0.250000 0.000000 8.312500 -v -0.216506 -0.125000 8.312500 -v -0.125000 -0.216506 8.312500 -v 0.000000 -0.250000 8.312500 -v 0.125000 -0.216506 8.312500 -v 0.216506 -0.125000 8.312500 -v 0.250000 0.000000 8.312500 -v 0.216506 0.125000 8.312500 -v 0.125000 0.216506 8.312500 -v 0.000000 0.250000 8.812500 -v -0.125000 0.216506 8.812500 -v -0.216506 0.125000 8.812500 -v -0.250000 0.000000 8.812500 -v -0.216506 -0.125000 8.812500 -v -0.125000 -0.216506 8.812500 -v 0.000000 -0.250000 8.812500 -v 0.125000 -0.216506 8.812500 -v 0.216506 -0.125000 8.812500 -v 0.250000 0.000000 8.812500 -v 0.216506 0.125000 8.812500 -v 0.125000 0.216506 8.812500 -v 0.000000 0.625000 8.812500 -v -0.312500 0.541265 8.812500 -v -0.541266 0.312500 8.812500 -v -0.625000 0.000000 8.812500 -v -0.541266 -0.312500 8.812500 -v -0.312500 -0.541265 8.812500 -v 0.000000 -0.625000 8.812500 -v 0.312500 -0.541265 8.812500 -v 0.541265 -0.312500 8.812500 -v 0.625000 0.000000 8.812500 -v 0.541266 0.312500 8.812500 -v 0.312500 0.541265 8.812500 -v 0.000000 0.625000 9.062500 -v -0.312500 0.541265 9.062500 -v -0.541266 0.312500 9.062500 -v -0.625000 0.000000 9.062500 -v -0.541266 -0.312500 9.062500 -v -0.312500 -0.541265 9.062500 -v 0.000000 -0.625000 9.062500 -v 0.312500 -0.541265 9.062500 -v 0.541265 -0.312500 9.062500 -v 0.625000 0.000000 9.062500 -v 0.541266 0.312500 9.062500 -v 0.312500 0.541265 9.062500 -v -0.625000 0.375000 -2.125000 -v -0.625000 0.551777 -2.051777 -v -0.625000 0.625000 -1.875000 -v -0.625000 0.551777 -1.698223 -v -0.625000 0.375000 -1.625000 -v -0.625000 0.198223 -1.698223 -v -0.625000 0.125000 -1.875000 -v -0.625000 0.198223 -2.051777 -v -1.000000 0.375000 -2.125000 -v -1.000000 0.551777 -2.051777 -v -1.000000 0.625000 -1.875000 -v -1.000000 0.551777 -1.698223 -v -1.000000 0.375000 -1.625000 -v -1.000000 0.198223 -1.698223 -v -1.000000 0.125000 -1.875000 -v -1.000000 0.198223 -2.051777 -v -0.906250 0.500000 -1.750000 -v -0.968750 0.500000 -1.750000 -v -0.906250 0.500000 -2.000000 -v -0.968750 0.500000 -2.000000 -v -0.906250 1.375000 -1.750000 -v -0.968750 1.375000 -1.750000 -v -0.906250 1.375000 -2.000000 -v -0.968750 1.375000 -2.000000 -v -0.906250 1.500000 -2.000000 -v -0.906250 1.500000 -1.625000 -v -0.968750 1.500000 -1.625000 -v -0.968750 1.500000 -2.000000 -v 0.000000 -0.500000 8.187500 -v 0.132583 -0.500000 8.132584 -v 0.187500 -0.500000 8.000000 -v 0.132583 -0.500000 7.867418 -v 0.000000 -0.500000 7.812500 -v -0.132583 -0.500000 7.867418 -v -0.187500 -0.500000 8.000000 -v -0.132583 -0.500000 8.132584 -v 0.000000 -0.367418 8.132584 -v 0.000000 -0.312500 8.000000 -v 0.000000 -0.367418 7.867418 -v 0.000000 -0.632583 7.867418 -v 0.000000 -0.687500 8.000000 -v 0.000000 -0.632583 8.132584 -v -0.093750 -0.406250 8.132584 -v -0.132583 -0.367418 8.000000 -v -0.093750 -0.406250 7.867418 -v 0.093750 -0.593750 7.867418 -v 0.132583 -0.632583 8.000000 -v 0.093750 -0.593750 8.132584 -v -0.093750 -0.593750 8.132584 -v -0.132583 -0.632583 8.000000 -v -0.093750 -0.593750 7.867418 -v 0.093750 -0.406250 7.867418 -v 0.132583 -0.367418 8.000000 -v 0.093750 -0.406250 8.132584 -v -0.187500 0.500000 8.000000 -v 0.187500 0.500000 8.000000 -v 0.000000 0.312500 8.000000 -v 0.000000 0.687500 8.000000 -v 0.132583 0.367418 8.000000 -v -0.132583 0.632583 8.000000 -v 0.132583 0.632583 8.000000 -v -0.132583 0.367418 8.000000 -v 0.000000 0.750000 8.000000 -v -0.176776 0.676777 8.000000 -v -0.250000 0.500000 8.000000 -v -0.176777 0.323224 8.000000 -v 0.000000 0.250000 8.000000 -v 0.176777 0.323224 8.000000 -v 0.250000 0.500000 8.000000 -v 0.176777 0.676777 8.000000 -v 0.000000 0.312500 8.062500 -v 0.132583 0.367418 8.062500 -v -0.132583 0.367418 8.062500 -v -0.187500 0.500000 8.062500 -v -0.132583 0.632583 8.062500 -v 0.000000 0.687500 8.062500 -v 0.132583 0.632583 8.062500 -v 0.187500 0.500000 8.062500 -v -0.176776 0.676777 8.062500 -v 0.000000 0.750000 8.062500 -v -0.250000 0.500000 8.062500 -v -0.176777 0.323224 8.062500 -v 0.000000 0.250000 8.062500 -v 0.176777 0.323224 8.062500 -v 0.250000 0.500000 8.062500 -v 0.176777 0.676777 8.062500 -v 0.433013 0.250000 8.187500 -v 0.366722 0.364820 8.132584 -v 0.339263 0.412380 8.000000 -v 0.366722 0.364820 7.867418 -v 0.433013 0.250000 7.812500 -v 0.499304 0.135180 7.867418 -v 0.526763 0.087620 8.000000 -v 0.499304 0.135180 8.132584 -v 0.318193 0.183709 8.132584 -v 0.270633 0.156250 8.000000 -v 0.318193 0.183709 7.867418 -v 0.547833 0.316292 7.867418 -v 0.595393 0.343750 8.000000 -v 0.547833 0.316292 8.132584 -v 0.398698 0.121935 8.132584 -v 0.384484 0.068889 8.000000 -v 0.398698 0.121935 7.867418 -v 0.467328 0.378065 7.867418 -v 0.481542 0.431112 8.000000 -v 0.467328 0.378065 8.132584 -v 0.561078 0.215685 8.132584 -v 0.614124 0.201472 8.000000 -v 0.561078 0.215685 7.867418 -v 0.304948 0.284315 7.867418 -v 0.251902 0.298529 8.000000 -v 0.304948 0.284315 8.132584 -v -0.339263 -0.412380 8.000000 -v -0.526763 -0.087620 8.000000 -v -0.270633 -0.156250 8.000000 -v -0.595393 -0.343750 8.000000 -v -0.384484 -0.068889 8.000000 -v -0.481542 -0.431112 8.000000 -v -0.614124 -0.201472 8.000000 -v -0.251902 -0.298529 8.000000 -v -0.649519 -0.375000 8.000000 -v -0.497718 -0.491482 8.000000 -v -0.308013 -0.466507 8.000000 -v -0.191531 -0.314705 8.000000 -v -0.216507 -0.125000 8.000000 -v -0.368308 -0.008519 8.000000 -v -0.558013 -0.033494 8.000000 -v -0.674495 -0.185295 8.000000 -v -0.270633 -0.156250 8.062500 -v -0.384484 -0.068889 8.062500 -v -0.251902 -0.298529 8.062500 -v -0.339263 -0.412380 8.062500 -v -0.481542 -0.431112 8.062500 -v -0.595393 -0.343750 8.062500 -v -0.614124 -0.201472 8.062500 -v -0.526763 -0.087620 8.062500 -v -0.497718 -0.491482 8.062500 -v -0.649519 -0.375000 8.062500 -v -0.308013 -0.466507 8.062500 -v -0.191531 -0.314705 8.062500 -v -0.216507 -0.125000 8.062500 -v -0.368308 -0.008519 8.062500 -v -0.558013 -0.033494 8.062500 -v -0.674495 -0.185295 8.062500 -v -0.433013 -0.250000 8.187500 -v -0.366722 -0.364820 8.132584 -v -0.339263 -0.412380 8.000000 -v -0.366722 -0.364820 7.867418 -v -0.433013 -0.250000 7.812500 -v -0.499304 -0.135180 7.867418 -v -0.526763 -0.087620 8.000000 -v -0.499304 -0.135180 8.132584 -v -0.318193 -0.183709 8.132584 -v -0.270633 -0.156250 8.000000 -v -0.318193 -0.183709 7.867418 -v -0.547833 -0.316292 7.867418 -v -0.595393 -0.343750 8.000000 -v -0.547833 -0.316292 8.132584 -v -0.398698 -0.121935 8.132584 -v -0.384484 -0.068889 8.000000 -v -0.398698 -0.121935 7.867418 -v -0.467328 -0.378065 7.867418 -v -0.481542 -0.431112 8.000000 -v -0.467328 -0.378065 8.132584 -v -0.561078 -0.215685 8.132584 -v -0.614124 -0.201472 8.000000 -v -0.561078 -0.215685 7.867418 -v -0.304948 -0.284315 7.867418 -v -0.251902 -0.298529 8.000000 -v -0.304948 -0.284315 8.132584 -v 0.339263 0.412380 8.000000 -v 0.526763 0.087620 8.000000 -v 0.270633 0.156250 8.000000 -v 0.595393 0.343750 8.000000 -v 0.384484 0.068889 8.000000 -v 0.481542 0.431112 8.000000 -v 0.614124 0.201472 8.000000 -v 0.251902 0.298529 8.000000 -v 0.649519 0.375000 8.000000 -v 0.497718 0.491482 8.000000 -v 0.308013 0.466507 8.000000 -v 0.191531 0.314705 8.000000 -v 0.216507 0.125000 8.000000 -v 0.368308 0.008519 8.000000 -v 0.558013 0.033494 8.000000 -v 0.674495 0.185295 8.000000 -v 0.270633 0.156250 8.062500 -v 0.384484 0.068889 8.062500 -v 0.251902 0.298529 8.062500 -v 0.339263 0.412380 8.062500 -v 0.481542 0.431112 8.062500 -v 0.595393 0.343750 8.062500 -v 0.614124 0.201472 8.062500 -v 0.526763 0.087620 8.062500 -v 0.497718 0.491482 8.062500 -v 0.649519 0.375000 8.062500 -v 0.308013 0.466507 8.062500 -v 0.191531 0.314705 8.062500 -v 0.216507 0.125000 8.062500 -v 0.368308 0.008519 8.062500 -v 0.558013 0.033494 8.062500 -v 0.674495 0.185295 8.062500 -v 0.433013 -0.250000 8.187500 -v 0.499304 -0.135180 8.132584 -v 0.526763 -0.087620 8.000000 -v 0.499304 -0.135180 7.867418 -v 0.433013 -0.250000 7.812500 -v 0.366722 -0.364820 7.867418 -v 0.339263 -0.412380 8.000000 -v 0.366722 -0.364820 8.132584 -v 0.318193 -0.183709 8.132584 -v 0.270633 -0.156250 8.000000 -v 0.318193 -0.183709 7.867418 -v 0.547833 -0.316292 7.867418 -v 0.595393 -0.343750 8.000000 -v 0.547833 -0.316292 8.132584 -v 0.304948 -0.284315 8.132584 -v 0.251902 -0.298529 8.000000 -v 0.304948 -0.284315 7.867418 -v 0.561078 -0.215685 7.867418 -v 0.614124 -0.201472 8.000000 -v 0.561078 -0.215685 8.132584 -v 0.467328 -0.378065 8.132584 -v 0.481542 -0.431112 8.000000 -v 0.467328 -0.378065 7.867418 -v 0.398698 -0.121935 7.867418 -v 0.384484 -0.068889 8.000000 -v 0.398698 -0.121935 8.132584 -v -0.526763 0.087620 8.000000 -v -0.339263 0.412380 8.000000 -v -0.270633 0.156250 8.000000 -v -0.595393 0.343750 8.000000 -v -0.251902 0.298529 8.000000 -v -0.614124 0.201472 8.000000 -v -0.481542 0.431112 8.000000 -v -0.384484 0.068889 8.000000 -v -0.649519 0.375000 8.000000 -v -0.674495 0.185296 8.000000 -v -0.558013 0.033494 8.000000 -v -0.368308 0.008518 8.000000 -v -0.216507 0.125000 8.000000 -v -0.191531 0.314705 8.000000 -v -0.308013 0.466507 8.000000 -v -0.497718 0.491482 8.000000 -v -0.270633 0.156250 8.062500 -v -0.251902 0.298529 8.062500 -v -0.384484 0.068889 8.062500 -v -0.526763 0.087620 8.062500 -v -0.614124 0.201472 8.062500 -v -0.595393 0.343750 8.062500 -v -0.481542 0.431112 8.062500 -v -0.339263 0.412380 8.062500 -v -0.674495 0.185296 8.062500 -v -0.649519 0.375000 8.062500 -v -0.558013 0.033494 8.062500 -v -0.368308 0.008518 8.062500 -v -0.216507 0.125000 8.062500 -v -0.191531 0.314705 8.062500 -v -0.308013 0.466507 8.062500 -v -0.497718 0.491482 8.062500 -v -0.433013 0.250000 8.187500 -v -0.499304 0.135180 8.132584 -v -0.526763 0.087620 8.000000 -v -0.499304 0.135180 7.867418 -v -0.433013 0.250000 7.812500 -v -0.366722 0.364820 7.867418 -v -0.339263 0.412380 8.000000 -v -0.366722 0.364820 8.132584 -v -0.318193 0.183709 8.132584 -v -0.270633 0.156250 8.000000 -v -0.318193 0.183709 7.867418 -v -0.547833 0.316292 7.867418 -v -0.595393 0.343750 8.000000 -v -0.547833 0.316292 8.132584 -v -0.304948 0.284315 8.132584 -v -0.251902 0.298529 8.000000 -v -0.304948 0.284315 7.867418 -v -0.561078 0.215685 7.867418 -v -0.614124 0.201472 8.000000 -v -0.561078 0.215685 8.132584 -v -0.467328 0.378065 8.132584 -v -0.481542 0.431112 8.000000 -v -0.467328 0.378065 7.867418 -v -0.398698 0.121935 7.867418 -v -0.384484 0.068889 8.000000 -v -0.398698 0.121935 8.132584 -v 0.526763 -0.087620 8.000000 -v 0.339263 -0.412380 8.000000 -v 0.270633 -0.156250 8.000000 -v 0.595393 -0.343750 8.000000 -v 0.251902 -0.298529 8.000000 -v 0.614124 -0.201472 8.000000 -v 0.481542 -0.431112 8.000000 -v 0.384484 -0.068889 8.000000 -v 0.649519 -0.375000 8.000000 -v 0.674495 -0.185296 8.000000 -v 0.558013 -0.033494 8.000000 -v 0.368308 -0.008518 8.000000 -v 0.216507 -0.125000 8.000000 -v 0.191531 -0.314705 8.000000 -v 0.308013 -0.466507 8.000000 -v 0.497718 -0.491482 8.000000 -v 0.270633 -0.156250 8.062500 -v 0.251902 -0.298529 8.062500 -v 0.384484 -0.068889 8.062500 -v 0.526763 -0.087620 8.062500 -v 0.614124 -0.201472 8.062500 -v 0.595393 -0.343750 8.062500 -v 0.481542 -0.431112 8.062500 -v 0.339263 -0.412380 8.062500 -v 0.674495 -0.185296 8.062500 -v 0.649519 -0.375000 8.062500 -v 0.558013 -0.033494 8.062500 -v 0.368308 -0.008518 8.062500 -v 0.216507 -0.125000 8.062500 -v 0.191531 -0.314705 8.062500 -v 0.308013 -0.466507 8.062500 -v 0.497718 -0.491482 8.062500 vt 0.241282 0.246079 vt 0.233209 0.265596 vt 0.225136 0.246079 @@ -910,351 +258,6 @@ vt 0.244403 0.374973 vt 0.244403 0.328152 vt 0.249994 0.351562 vt 0.244403 0.374973 -vt 0.276412 0.187560 -vt 0.328065 0.187560 -vt 0.302239 0.374880 -vt 0.276412 0.437560 -vt 0.302239 0.375120 -vt 0.328065 0.562440 -vt -0.000000 0.125000 -vt 0.029851 0.093750 -vt 0.029851 0.125000 -vt 0.007463 0.062500 -vt 0.029851 0.062500 -vt 0.029851 0.031250 -vt 0.007463 0.031250 -vt 0.029851 0.000000 -vt 0.037313 0.031250 -vt -0.000000 0.062500 -vt 0.619403 0.031250 -vt 0.597015 0.062500 -vt 0.597015 0.031250 -vt 0.037313 0.093750 -vt 0.223881 0.125000 -vt 0.037313 0.125000 -vt 0.619403 0.062500 -vt 0.597015 0.093750 -vt 0.037313 0.125000 -vt 0.231343 0.000000 -vt 0.276119 0.031250 -vt 0.231343 0.031250 -vt 0.037313 0.031250 -vt 0.223881 0.062500 -vt 0.037313 0.062500 -vt 0.037313 -0.000000 -vt 0.223881 0.031250 -vt 0.223881 0.093750 -vt 0.231343 0.125000 -vt 0.223881 0.125000 -vt 0.231343 0.093750 -vt 0.626866 0.093750 -vt 0.597015 0.125000 -vt 0.223881 0.031250 -vt 0.231343 0.062500 -vt 0.279851 0.093750 -vt 0.291045 0.125000 -vt 0.279851 0.125000 -vt 0.276119 0.125000 -vt 0.276119 0.093750 -vt 0.276119 0.062500 -vt 0.294776 0.093750 -vt 0.332090 0.125000 -vt 0.294776 0.125000 -vt 0.332090 0.062500 -vt 0.332090 0.093750 -vt 0.332090 0.000000 -vt 0.294776 0.031250 -vt 0.294776 0.000000 -vt 0.332090 0.031250 -vt 0.291045 0.000000 -vt 0.279851 0.000000 -vt 0.294776 0.062500 -vt 0.597015 0.000000 -vt 0.589552 0.125000 -vt 0.626866 0.031250 -vt 0.626866 0.062500 -vt 0.589552 0.062500 -vt 0.402985 0.031250 -vt 0.589552 0.031250 -vt 0.589552 0.031250 -vt 0.395522 0.031250 -vt 0.350746 0.000000 -vt 0.395522 0.000000 -vt 0.589552 0.125000 -vt 0.402985 0.093750 -vt 0.589552 0.093750 -vt 0.402985 0.000000 -vt 0.589552 0.000000 -vt 0.402985 0.062500 -vt 0.402985 0.031250 -vt 0.395522 0.062500 -vt 0.402985 0.125000 -vt 0.395522 0.125000 -vt 0.395522 0.093750 -vt 0.350746 0.031250 -vt 0.350746 0.062500 -vt 0.350746 0.093750 -vt 0.335821 0.093750 -vt 0.347015 0.125000 -vt 0.335821 0.125000 -vt 0.347015 0.000000 -vt 0.335821 0.000000 -vt 0.347015 0.093750 -vt 0.570895 0.828125 -vt 0.548507 0.671875 -vt 0.570895 0.609375 -vt 0.656716 0.562500 -vt 0.641791 0.578125 -vt 0.641791 0.562500 -vt 0.641791 0.593750 -vt 0.656716 0.609375 -vt 0.641791 0.609375 -vt 0.660448 0.578125 -vt 0.656716 0.593750 -vt 0.656716 0.578125 -vt 0.638060 0.593750 -vt 0.638060 0.578125 -vt 0.735075 0.187432 -vt 0.727628 0.156250 -vt 0.735075 0.125068 -vt 0.679105 0.421875 -vt 0.690298 0.437500 -vt 0.679105 0.437500 -vt 0.682836 0.406250 -vt 0.690298 0.421875 -vt 0.690298 0.296875 -vt 0.682836 0.296875 -vt 0.701493 0.296875 -vt 0.694030 0.406250 -vt 0.694030 0.296875 -vt 0.690298 0.406250 -vt 0.679105 0.406250 -vt 0.679105 0.296875 -vt 0.701493 0.406250 -vt 0.694030 0.421875 -vt 0.675373 0.421875 -vt 0.675373 0.437500 -vt 0.641791 0.593750 -vt 0.656716 0.609375 -vt 0.641791 0.609375 -vt 0.656716 0.562500 -vt 0.641791 0.578125 -vt 0.641791 0.562500 -vt 0.656716 0.578125 -vt 0.660448 0.593750 -vt 0.656716 0.593750 -vt 0.638060 0.578125 -vt 0.638060 0.593750 -vt 0.119403 0.828125 -vt 0.126866 0.781250 -vt 0.126866 0.828125 -vt 0.104478 0.828125 -vt 0.111940 0.781250 -vt 0.111940 0.828125 -vt 0.119403 0.781250 -vt 0.134328 0.781250 -vt 0.134328 0.828125 -vt 0.041045 0.859375 -vt 0.026119 0.875000 -vt 0.026119 0.859375 -vt 0.078358 0.828125 -vt 0.093284 0.812500 -vt 0.093284 0.828125 -vt 0.026119 0.828125 -vt 0.041045 0.812500 -vt 0.041045 0.828125 -vt 0.093284 0.859375 -vt 0.078358 0.875000 -vt 0.078358 0.859375 -vt 0.067164 0.859375 -vt 0.052239 0.875000 -vt 0.052239 0.859375 -vt 0.052239 0.828125 -vt 0.067164 0.812500 -vt 0.067164 0.828125 -vt 0.000000 0.828125 -vt 0.014925 0.812500 -vt 0.014925 0.828125 -vt 0.014925 0.859375 -vt 0.000000 0.875000 -vt 0.000000 0.859375 -vt 0.018657 0.875000 -vt 0.022388 0.875000 -vt 0.022388 0.812500 -vt 0.044776 0.875000 -vt 0.048507 0.812500 -vt 0.044776 0.812500 -vt 0.070896 0.875000 -vt 0.074627 0.875000 -vt 0.074627 0.812500 -vt 0.104478 0.859375 -vt 0.097015 0.875000 -vt 0.100746 0.812500 -vt 0.097015 0.812500 -vt 0.690298 0.203125 -vt 0.694030 0.187500 -vt 0.694030 0.203125 -vt 0.675373 0.171875 -vt 0.675373 0.218750 -vt 0.716418 0.218750 -vt 0.701493 0.187500 -vt 0.716418 0.171875 -vt 0.697761 0.203125 -vt 0.701493 0.203125 -vt 0.686567 0.281250 -vt 0.694030 0.296875 -vt 0.686567 0.296875 -vt 0.705224 0.296875 -vt 0.697761 0.265625 -vt 0.705224 0.281250 -vt 0.694030 0.234375 -vt 0.697761 0.234375 -vt 0.701493 0.265625 -vt 0.697761 0.156250 -vt 0.697761 0.187500 -vt 0.694030 0.156250 -vt 0.690298 0.187500 -vt 0.690298 0.125000 -vt 0.701493 0.125000 -vt 0.697761 0.296875 -vt 0.694030 0.265625 -vt 0.574405 0.179713 -vt 0.619624 0.179713 -vt 0.597015 0.343699 -vt 0.574406 0.507787 -vt 0.574406 0.398463 -vt 0.597015 0.343801 -vt 0.671642 0.484375 -vt 0.667910 0.468750 -vt 0.671642 0.468750 -vt 0.667910 0.500000 -vt 0.667910 0.484375 -vt 0.671642 0.500000 -vt 0.667910 0.515625 -vt 0.671642 0.515625 -vt 0.667910 0.531250 -vt 0.671642 0.546875 -vt 0.671642 0.531250 -vt 0.667910 0.562500 -vt 0.667910 0.546875 -vt 0.671642 0.453125 -vt 0.667910 0.437500 -vt 0.671642 0.437500 -vt 0.667910 0.453125 -vt 0.640568 0.398416 -vt 0.656716 0.281294 -vt 0.672865 0.398416 -vt 0.640568 0.164085 -vt 0.672864 0.164085 -vt 0.656716 0.281206 -vt 0.600746 0.609375 -vt 0.623134 0.765625 -vt 0.600746 0.828125 -vt 0.729809 0.178299 -vt 0.735075 0.187432 -vt 0.735075 0.125068 -vt 0.690298 0.437500 -vt 0.679105 0.421875 -vt 0.679105 0.437500 -vt 0.682836 0.406250 -vt 0.690298 0.421875 -vt 0.690298 0.406250 -vt 0.690298 0.296875 -vt 0.682836 0.296875 -vt 0.694030 0.406250 -vt 0.701493 0.296875 -vt 0.694030 0.296875 -vt 0.679105 0.406250 -vt 0.679105 0.296875 -vt 0.694030 0.421875 -vt 0.701493 0.406250 -vt 0.675373 0.421875 -vt 0.675373 0.437500 -vt 0.671642 0.484375 -vt 0.667910 0.468750 -vt 0.671642 0.468750 -vt 0.667910 0.500000 -vt 0.667910 0.484375 -vt 0.671642 0.500000 -vt 0.667910 0.515625 -vt 0.671642 0.515625 -vt 0.667910 0.531250 -vt 0.671642 0.546875 -vt 0.671642 0.531250 -vt 0.667910 0.562500 -vt 0.667910 0.546875 -vt 0.671642 0.453125 -vt 0.667910 0.437500 -vt 0.671642 0.437500 -vt 0.667910 0.453125 -vt 0.671642 0.484375 -vt 0.667910 0.468750 -vt 0.671642 0.468750 -vt 0.667910 0.500000 -vt 0.667910 0.484375 -vt 0.671642 0.500000 -vt 0.667910 0.515625 -vt 0.671642 0.515625 -vt 0.667910 0.531250 -vt 0.671642 0.546875 -vt 0.671642 0.531250 -vt 0.667910 0.562500 -vt 0.667910 0.546875 -vt 0.671642 0.453125 -vt 0.667910 0.437500 -vt 0.671642 0.437500 -vt 0.667910 0.453125 -vt 0.671642 0.484375 -vt 0.667910 0.468750 -vt 0.671642 0.468750 -vt 0.667910 0.500000 -vt 0.667910 0.484375 -vt 0.671642 0.500000 -vt 0.667910 0.515625 -vt 0.671642 0.515625 -vt 0.667910 0.531250 -vt 0.671642 0.546875 -vt 0.671642 0.531250 -vt 0.667910 0.562500 -vt 0.667910 0.546875 -vt 0.671642 0.453125 -vt 0.667910 0.437500 -vt 0.671642 0.437500 -vt 0.667910 0.453125 -vt 0.671642 0.484375 -vt 0.667910 0.468750 -vt 0.671642 0.468750 -vt 0.667910 0.500000 -vt 0.667910 0.484375 -vt 0.671642 0.500000 -vt 0.667910 0.515625 -vt 0.671642 0.515625 -vt 0.667910 0.531250 -vt 0.671642 0.546875 -vt 0.671642 0.531250 -vt 0.667910 0.562500 -vt 0.667910 0.546875 -vt 0.671642 0.453125 -vt 0.667910 0.437500 -vt 0.671642 0.437500 -vt 0.667910 0.453125 -vt 0.671642 0.484375 -vt 0.667910 0.468750 -vt 0.671642 0.468750 -vt 0.667910 0.500000 -vt 0.667910 0.484375 -vt 0.671642 0.500000 -vt 0.667910 0.515625 -vt 0.671642 0.515625 -vt 0.667910 0.531250 -vt 0.671642 0.546875 -vt 0.671642 0.531250 -vt 0.667910 0.562500 -vt 0.667910 0.546875 -vt 0.671642 0.453125 -vt 0.667910 0.437500 -vt 0.671642 0.437500 -vt 0.667910 0.453125 vt 0.657842 0.464038 vt 0.656762 0.453126 vt 0.657842 0.442213 @@ -1310,107 +313,6 @@ vt 0.238812 0.351562 vt 0.240450 0.335009 vt 0.248356 0.335009 vt 0.248356 0.368116 -vt 0.287328 0.358149 -vt 0.276412 0.312440 -vt 0.272417 0.250000 -vt 0.287328 0.141851 -vt 0.302239 0.125120 -vt 0.317150 0.141851 -vt 0.332061 0.250000 -vt 0.328065 0.312440 -vt 0.317150 0.358149 -vt 0.317150 0.608149 -vt 0.302239 0.624880 -vt 0.287328 0.608149 -vt 0.276412 0.562440 -vt 0.272417 0.500000 -vt 0.287328 0.391851 -vt 0.317150 0.391851 -vt 0.328065 0.437560 -vt 0.332061 0.500000 -vt -0.000000 0.093750 -vt -0.000000 0.000000 -vt -0.000000 0.031250 -vt 0.276119 0.000000 -vt 0.223881 0.000000 -vt 0.626866 0.125000 -vt 0.291045 0.093750 -vt 0.626866 0.000000 -vt 0.402985 0.125000 -vt 0.350746 0.125000 -vt 0.548507 0.765625 -vt 0.660448 0.593750 -vt 0.742521 0.156250 -vt 0.740340 0.178299 -vt 0.729809 0.178299 -vt 0.729809 0.134201 -vt 0.740340 0.134201 -vt 0.705224 0.421875 -vt 0.660448 0.578125 -vt 0.104478 0.781250 -vt 0.041045 0.875000 -vt 0.078358 0.812500 -vt 0.026119 0.812500 -vt 0.093284 0.875000 -vt 0.067164 0.875000 -vt 0.052239 0.812500 -vt 0.000000 0.812500 -vt 0.014925 0.875000 -vt 0.018657 0.812500 -vt 0.048507 0.875000 -vt 0.070896 0.812500 -vt 0.100746 0.875000 -vt 0.104478 0.828125 -vt 0.690298 0.265625 -vt 0.583961 0.329052 -vt 0.574405 0.289037 -vt 0.570908 0.234375 -vt 0.583961 0.139698 -vt 0.597015 0.125051 -vt 0.610068 0.139698 -vt 0.623122 0.234375 -vt 0.619624 0.289037 -vt 0.610068 0.329052 -vt 0.619624 0.507787 -vt 0.610068 0.547802 -vt 0.597015 0.562449 -vt 0.583961 0.547802 -vt 0.570908 0.453125 -vt 0.583961 0.358448 -vt 0.610068 0.358448 -vt 0.619624 0.398463 -vt 0.623122 0.453125 -vt 0.671642 0.562500 -vt 0.666040 0.426995 -vt 0.656716 0.437456 -vt 0.647393 0.426995 -vt 0.638070 0.359375 -vt 0.640568 0.320335 -vt 0.647393 0.291755 -vt 0.666040 0.291755 -vt 0.672865 0.320335 -vt 0.675363 0.359375 -vt 0.647393 0.270745 -vt 0.640568 0.242166 -vt 0.638070 0.203125 -vt 0.647393 0.135505 -vt 0.656716 0.125044 -vt 0.666039 0.135505 -vt 0.675363 0.203125 -vt 0.672864 0.242166 -vt 0.666039 0.270745 -vt 0.623134 0.671875 -vt 0.740340 0.178299 -vt 0.742521 0.156250 -vt 0.740340 0.134201 -vt 0.729809 0.134201 -vt 0.727628 0.156250 -vt 0.705224 0.421875 -vt 0.671642 0.562500 -vt 0.671642 0.562500 -vt 0.671642 0.562500 -vt 0.671642 0.562500 -vt 0.671642 0.562500 vt 0.656716 0.531250 vt 0.652985 0.515625 vt 0.656716 0.515625 @@ -1555,6 +457,2917 @@ vt 0.238806 0.359375 vt 0.238806 0.437500 vt 0.238806 0.437500 vt 0.238806 0.390625 +vt 0.652985 0.562500 +vt 0.208955 0.125000 +vt 0.238806 0.328125 +vt 0.238806 0.328125 +vt 0.238806 0.328125 +vt 0.238806 0.328125 +vt 0.238806 0.328125 +vt 0.238806 0.328125 +vn 0.0000 0.0000 1.0000 +vn -0.8660 -0.5000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn -0.8660 0.5000 0.0000 +vn 0.8660 0.5000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn -0.7071 0.7071 0.0000 +vn 0.7071 0.7071 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.7071 -0.7071 0.0000 +vn -0.7071 -0.7071 0.0000 +vn 0.1499 0.9887 0.0000 +vn 0.7813 0.6242 0.0000 +vn 0.1499 -0.9887 0.0000 +vn -0.2208 -0.9753 0.0000 +vn 0.7813 -0.6242 0.0000 +vn 0.9550 -0.2965 0.0000 +vn -0.7813 0.6242 0.0000 +vn -0.1499 0.9887 0.0000 +vn -0.7813 -0.6242 0.0000 +vn -0.9550 -0.2965 0.0000 +vn -0.9550 0.2965 0.0000 +vn 0.2208 -0.9753 0.0000 +vn -0.1499 -0.9887 0.0000 +vn 0.9550 0.2965 0.0000 +vn 0.9312 0.3645 0.0000 +vn 0.9312 -0.3645 0.0000 +vn -0.9312 0.3645 0.0000 +vn -0.7343 0.6788 0.0000 +vn -0.2208 0.9753 0.0000 +vn -0.7343 -0.6788 0.0000 +vn -0.9312 -0.3645 0.0000 +vn 0.7343 -0.6788 0.0000 +vn 0.2208 0.9753 0.0000 +vn 0.7343 0.6788 0.0000 +vn 0.9659 -0.2588 0.0000 +vn 0.2588 -0.9659 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.9659 -0.2588 0.0000 +vn 0.2588 0.9659 0.0000 +vn -0.5000 0.8660 0.0000 +vn -0.9659 0.2588 0.0000 +vn 0.9659 0.2588 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.2588 0.9659 0.0000 +vn -0.2588 -0.9659 0.0000 +vn 0.5000 -0.8660 0.0000 +s off +f 29/1/1 13/2/1 53/3/1 +f 61/4/1 63/5/1 58/6/1 +f 73/7/1 74/8/1 49/9/1 +f 68/10/1 67/11/1 9/12/1 +f 72/13/1 71/14/1 25/15/1 +f 76/16/1 75/17/1 41/18/1 +f 65/19/1 66/20/1 17/21/1 +f 69/22/1 70/23/1 33/24/1 +f 81/25/1 82/26/1 39/27/1 +f 11/28/1 86/29/1 55/30/1 +f 80/31/1 79/32/1 15/33/1 +f 84/34/1 83/35/1 31/36/1 +f 19/37/1 87/38/1 47/39/1 +f 77/40/1 78/41/1 23/42/1 +f 39/27/1 52/43/1 51/44/1 +f 37/45/1 52/43/1 38/46/1 +f 12/47/1 55/30/1 54/48/1 +f 12/47/1 53/3/1 13/2/1 +f 14/49/1 27/50/1 15/33/1 +f 14/49/1 29/1/1 28/51/1 +f 30/52/1 43/53/1 31/36/1 +f 29/1/1 44/54/1 30/52/1 +f 19/37/1 46/55/1 20/56/1 +f 20/56/1 45/57/1 21/58/1 +f 23/42/1 36/59/1 35/60/1 +f 21/58/1 36/59/1 22/61/1 +f 69/62/2 94/63/2 70/64/2 +f 68/65/3 91/66/3 67/67/3 +f 76/68/4 99/69/4 75/70/4 +f 73/71/5 98/72/5 74/73/5 +f 72/74/6 95/75/6 71/76/6 +f 65/77/7 90/78/7 66/79/7 +f 135/80/1 136/81/1 129/82/1 +f 151/83/1 152/84/1 145/85/1 +f 125/86/1 127/87/1 121/88/1 +f 143/89/1 144/90/1 137/91/1 +f 159/92/1 160/93/1 153/94/1 +f 117/95/1 119/96/1 113/97/1 +f 53/3/1 37/45/1 29/1/1 +f 37/45/1 21/58/1 29/1/1 +f 21/58/1 45/57/1 29/1/1 +f 58/6/1 57/98/1 59/99/1 +f 59/99/1 60/100/1 61/4/1 +f 61/4/1 62/101/1 63/5/1 +f 63/5/1 64/102/1 58/6/1 +f 58/6/1 59/99/1 61/4/1 +f 81/25/1 50/103/1 74/8/1 +f 50/103/1 49/9/1 74/8/1 +f 49/9/1 56/104/1 73/7/1 +f 56/104/1 86/29/1 73/7/1 +f 85/105/1 10/106/1 67/11/1 +f 10/106/1 9/12/1 67/11/1 +f 9/12/1 16/107/1 68/10/1 +f 16/107/1 79/32/1 68/10/1 +f 80/31/1 26/108/1 71/14/1 +f 26/108/1 25/15/1 71/14/1 +f 25/15/1 32/109/1 72/13/1 +f 32/109/1 83/35/1 72/13/1 +f 84/34/1 42/110/1 75/17/1 +f 42/110/1 41/18/1 75/17/1 +f 41/18/1 48/111/1 76/16/1 +f 48/111/1 87/38/1 76/16/1 +f 88/112/1 18/113/1 66/20/1 +f 18/113/1 17/21/1 66/20/1 +f 17/21/1 24/114/1 65/19/1 +f 24/114/1 78/41/1 65/19/1 +f 77/40/1 34/115/1 70/23/1 +f 34/115/1 33/24/1 70/23/1 +f 33/24/1 40/116/1 69/22/1 +f 40/116/1 82/26/1 69/22/1 +f 82/26/1 40/116/1 39/27/1 +f 39/27/1 51/44/1 81/25/1 +f 51/44/1 50/103/1 81/25/1 +f 11/28/1 10/106/1 85/105/1 +f 85/105/1 86/29/1 11/28/1 +f 86/29/1 56/104/1 55/30/1 +f 79/32/1 16/107/1 15/33/1 +f 15/33/1 27/50/1 80/31/1 +f 27/50/1 26/108/1 80/31/1 +f 83/35/1 32/109/1 31/36/1 +f 31/36/1 43/53/1 84/34/1 +f 43/53/1 42/110/1 84/34/1 +f 19/37/1 18/113/1 88/112/1 +f 88/112/1 87/38/1 19/37/1 +f 87/38/1 48/111/1 47/39/1 +f 78/41/1 24/114/1 23/42/1 +f 23/42/1 35/60/1 77/40/1 +f 35/60/1 34/115/1 77/40/1 +f 39/27/1 38/46/1 52/43/1 +f 37/45/1 53/3/1 52/43/1 +f 12/47/1 11/28/1 55/30/1 +f 12/47/1 54/48/1 53/3/1 +f 14/49/1 28/51/1 27/50/1 +f 14/49/1 13/2/1 29/1/1 +f 30/52/1 44/54/1 43/53/1 +f 29/1/1 45/57/1 44/54/1 +f 19/37/1 47/39/1 46/55/1 +f 20/56/1 46/55/1 45/57/1 +f 23/42/1 22/61/1 36/59/1 +f 21/58/1 37/45/1 36/59/1 +f 69/62/2 93/117/2 94/63/2 +f 68/65/3 92/118/3 91/66/3 +f 76/68/4 100/119/4 99/69/4 +f 73/71/5 97/120/5 98/72/5 +f 72/74/6 96/121/6 95/75/6 +f 65/77/7 89/122/7 90/78/7 +f 129/82/1 130/123/1 131/124/1 +f 131/124/1 132/125/1 129/82/1 +f 132/125/1 133/126/1 129/82/1 +f 133/126/1 134/127/1 129/82/1 +f 134/127/1 135/80/1 129/82/1 +f 145/85/1 146/128/1 147/129/1 +f 147/129/1 148/130/1 145/85/1 +f 148/130/1 149/131/1 145/85/1 +f 149/131/1 150/132/1 145/85/1 +f 150/132/1 151/83/1 145/85/1 +f 121/88/1 122/133/1 123/134/1 +f 123/134/1 124/135/1 125/86/1 +f 125/86/1 126/136/1 127/87/1 +f 127/87/1 128/137/1 121/88/1 +f 121/88/1 123/134/1 125/86/1 +f 137/91/1 138/138/1 139/139/1 +f 139/139/1 140/140/1 137/91/1 +f 140/140/1 141/141/1 137/91/1 +f 141/141/1 142/142/1 137/91/1 +f 142/142/1 143/89/1 137/91/1 +f 153/94/1 154/143/1 155/144/1 +f 155/144/1 156/145/1 153/94/1 +f 156/145/1 157/146/1 153/94/1 +f 157/146/1 158/147/1 153/94/1 +f 158/147/1 159/92/1 153/94/1 +f 113/97/1 114/148/1 115/149/1 +f 115/149/1 116/150/1 117/95/1 +f 117/95/1 118/151/1 119/96/1 +f 119/96/1 120/152/1 113/97/1 +f 113/97/1 115/149/1 117/95/1 +s 1 +f 3/153/8 57/154/9 2/155/9 +f 8/156/10 63/157/11 7/158/11 +f 6/159/12 61/160/7 5/161/7 +f 3/153/8 60/162/13 59/163/8 +f 2/155/9 58/164/3 1/165/3 +f 1/165/3 64/166/10 8/156/10 +f 7/158/11 62/167/12 6/159/12 +f 5/168/7 60/162/13 4/169/13 +f 80/170/14 103/171/15 79/172/15 +f 87/173/16 100/119/17 76/68/17 +f 88/174/18 111/175/16 87/173/16 +f 66/176/19 112/177/18 88/174/18 +f 85/178/20 110/179/21 86/180/21 +f 78/181/22 89/122/23 65/77/23 +f 67/67/24 109/182/20 85/178/20 +f 70/64/25 101/183/26 77/184/26 +f 79/172/15 92/118/27 68/65/27 +f 84/185/28 107/186/29 83/187/29 +f 82/188/30 93/117/31 69/62/31 +f 71/76/32 104/189/14 80/170/14 +f 77/184/26 102/190/22 78/181/22 +f 74/73/33 105/191/34 81/192/34 +f 83/187/29 96/121/35 72/74/35 +f 81/192/34 106/193/30 82/188/30 +f 86/180/21 97/120/36 73/71/36 +f 75/70/37 108/194/28 84/185/28 +f 29/195/6 132/196/38 28/197/38 +f 56/198/39 159/199/40 55/200/40 +f 16/201/13 119/202/8 15/203/8 +f 43/204/40 146/205/41 42/206/41 +f 30/207/42 133/208/6 29/209/6 +f 49/210/4 160/211/39 56/198/39 +f 9/212/7 120/213/13 16/201/13 +f 44/214/39 147/215/40 43/204/40 +f 31/216/43 134/217/42 30/207/42 +f 18/218/9 121/219/3 17/220/3 +f 45/221/4 148/222/39 44/214/39 +f 32/223/44 135/224/43 31/216/43 +f 19/225/8 122/226/9 18/218/9 +f 46/227/45 149/228/4 45/229/4 +f 25/230/2 136/231/44 32/223/44 +f 20/232/13 123/233/8 19/225/8 +f 47/234/46 150/235/45 46/227/45 +f 34/236/42 137/237/6 33/238/6 +f 21/239/7 124/240/13 20/232/13 +f 48/241/47 151/242/46 47/234/46 +f 35/243/43 138/244/42 34/236/42 +f 22/245/12 125/246/7 21/247/7 +f 41/248/5 152/249/47 48/241/47 +f 36/250/44 139/251/43 35/243/43 +f 23/252/11 126/253/12 22/245/12 +f 50/254/45 153/255/4 49/210/4 +f 10/256/12 113/257/7 9/212/7 +f 37/258/2 140/259/44 36/250/44 +f 24/260/10 127/261/11 23/252/11 +f 51/262/46 154/263/45 50/254/45 +f 11/264/11 114/265/12 10/256/12 +f 38/266/48 141/267/2 37/268/2 +f 17/220/3 128/269/10 24/260/10 +f 52/270/47 155/271/46 51/262/46 +f 12/272/10 115/273/11 11/264/11 +f 39/274/49 142/275/48 38/266/48 +f 26/276/48 129/277/2 25/230/2 +f 53/278/5 156/279/47 52/270/47 +f 13/280/3 116/281/10 12/272/10 +f 40/282/38 143/283/49 39/274/49 +f 27/284/49 130/285/48 26/276/48 +f 54/286/41 157/287/5 53/288/5 +f 14/289/9 117/290/3 13/291/3 +f 33/238/6 144/292/38 40/282/38 +f 28/197/38 131/293/49 27/284/49 +f 55/200/40 158/294/41 54/286/41 +f 15/203/8 118/295/9 14/289/9 +f 42/206/41 145/296/5 41/248/5 +f 3/153/8 59/163/8 57/154/9 +f 8/156/10 64/166/10 63/157/11 +f 6/159/12 62/167/12 61/160/7 +f 3/153/8 4/169/13 60/162/13 +f 2/155/9 57/154/9 58/164/3 +f 1/165/3 58/164/3 64/166/10 +f 7/158/11 63/157/11 62/167/12 +f 5/168/7 61/297/7 60/162/13 +f 80/170/14 104/189/14 103/171/15 +f 87/173/16 111/175/16 100/119/17 +f 88/174/18 112/177/18 111/175/16 +f 66/176/19 90/298/19 112/177/18 +f 85/178/20 109/182/20 110/179/21 +f 78/181/22 102/190/22 89/122/23 +f 67/67/24 91/66/24 109/182/20 +f 70/64/25 94/63/25 101/183/26 +f 79/172/15 103/171/15 92/118/27 +f 84/185/28 108/194/28 107/186/29 +f 82/188/30 106/193/30 93/117/31 +f 71/76/32 95/75/32 104/189/14 +f 77/184/26 101/183/26 102/190/22 +f 74/73/33 98/72/33 105/191/34 +f 83/187/29 107/186/29 96/121/35 +f 81/192/34 105/191/34 106/193/30 +f 86/180/21 110/179/21 97/120/36 +f 75/70/37 99/69/37 108/194/28 +f 29/195/6 133/299/6 132/196/38 +f 56/198/39 160/211/39 159/199/40 +f 16/201/13 120/213/13 119/202/8 +f 43/204/40 147/215/40 146/205/41 +f 30/207/42 134/217/42 133/208/6 +f 49/210/4 153/255/4 160/211/39 +f 9/212/7 113/257/7 120/213/13 +f 44/214/39 148/222/39 147/215/40 +f 31/216/43 135/224/43 134/217/42 +f 18/218/9 122/226/9 121/219/3 +f 45/221/4 149/300/4 148/222/39 +f 32/223/44 136/231/44 135/224/43 +f 19/225/8 123/233/8 122/226/9 +f 46/227/45 150/235/45 149/228/4 +f 25/230/2 129/277/2 136/231/44 +f 20/232/13 124/240/13 123/233/8 +f 47/234/46 151/242/46 150/235/45 +f 34/236/42 138/244/42 137/237/6 +f 21/239/7 125/301/7 124/240/13 +f 48/241/47 152/249/47 151/242/46 +f 35/243/43 139/251/43 138/244/42 +f 22/245/12 126/253/12 125/246/7 +f 41/248/5 145/296/5 152/249/47 +f 36/250/44 140/259/44 139/251/43 +f 23/252/11 127/261/11 126/253/12 +f 50/254/45 154/263/45 153/255/4 +f 10/256/12 114/265/12 113/257/7 +f 37/258/2 141/302/2 140/259/44 +f 24/260/10 128/269/10 127/261/11 +f 51/262/46 155/271/46 154/263/45 +f 11/264/11 115/273/11 114/265/12 +f 38/266/48 142/275/48 141/267/2 +f 17/220/3 121/219/3 128/269/10 +f 52/270/47 156/279/47 155/271/46 +f 12/272/10 116/281/10 115/273/11 +f 39/274/49 143/283/49 142/275/48 +f 26/276/48 130/285/48 129/277/2 +f 53/278/5 157/303/5 156/279/47 +f 13/280/3 117/304/3 116/281/10 +f 40/282/38 144/292/38 143/283/49 +f 27/284/49 131/293/49 130/285/48 +f 54/286/41 158/294/41 157/287/5 +f 14/289/9 118/295/9 117/290/3 +f 33/238/6 137/237/6 144/292/38 +f 28/197/38 132/196/38 131/293/49 +f 55/200/40 159/199/40 158/294/41 +f 15/203/8 119/202/8 118/295/9 +f 42/206/41 146/205/41 145/296/5 +o Speedloader +v 0.000000 0.875000 8.062500 +v -0.437500 0.757773 8.062500 +v -0.757772 0.437500 8.062500 +v -0.875000 -0.000000 8.062500 +v -0.757772 -0.437500 8.062500 +v -0.437500 -0.757773 8.062500 +v 0.000000 -0.875000 8.062500 +v 0.437500 -0.757773 8.062500 +v 0.757772 -0.437500 8.062500 +v 0.875000 -0.000000 8.062500 +v 0.757772 0.437500 8.062500 +v 0.437500 0.757773 8.062500 +v 0.000000 0.875000 8.312500 +v -0.437500 0.757773 8.312500 +v -0.757772 0.437500 8.312500 +v -0.875000 -0.000000 8.312500 +v -0.757772 -0.437500 8.312500 +v -0.437500 -0.757773 8.312500 +v 0.000000 -0.875000 8.312500 +v 0.437500 -0.757773 8.312500 +v 0.757772 -0.437500 8.312500 +v 0.875000 -0.000000 8.312500 +v 0.757772 0.437500 8.312500 +v 0.437500 0.757773 8.312500 +v 0.187500 -0.500000 8.000000 +v -0.187500 -0.500000 8.000000 +v 0.000000 -0.312500 8.000000 +v 0.000000 -0.687500 8.000000 +v -0.132583 -0.367418 8.000000 +v 0.132583 -0.632583 8.000000 +v -0.132583 -0.632583 8.000000 +v 0.132583 -0.367418 8.000000 +v 0.000000 -0.750000 8.000000 +v 0.176776 -0.676777 8.000000 +v 0.250000 -0.500000 8.000000 +v 0.176777 -0.323224 8.000000 +v 0.000000 -0.250000 8.000000 +v -0.176777 -0.323224 8.000000 +v -0.250000 -0.500000 8.000000 +v -0.176777 -0.676777 8.000000 +v 0.000000 -0.312500 8.062500 +v -0.132583 -0.367418 8.062500 +v 0.132583 -0.367418 8.062500 +v 0.187500 -0.500000 8.062500 +v 0.132583 -0.632583 8.062500 +v 0.000000 -0.687500 8.062500 +v -0.132583 -0.632583 8.062500 +v -0.187500 -0.500000 8.062500 +v 0.176776 -0.676777 8.062500 +v 0.000000 -0.750000 8.062500 +v 0.250000 -0.500000 8.062500 +v 0.176777 -0.323224 8.062500 +v 0.000000 -0.250000 8.062500 +v -0.176777 -0.323224 8.062500 +v -0.250000 -0.500000 8.062500 +v -0.176777 -0.676777 8.062500 +v 0.000000 0.250000 8.312500 +v -0.125000 0.216506 8.312500 +v -0.216506 0.125000 8.312500 +v -0.250000 0.000000 8.312500 +v -0.216506 -0.125000 8.312500 +v -0.125000 -0.216506 8.312500 +v 0.000000 -0.250000 8.312500 +v 0.125000 -0.216506 8.312500 +v 0.216506 -0.125000 8.312500 +v 0.250000 0.000000 8.312500 +v 0.216506 0.125000 8.312500 +v 0.125000 0.216506 8.312500 +v 0.000000 0.250000 8.812500 +v -0.125000 0.216506 8.812500 +v -0.216506 0.125000 8.812500 +v -0.250000 0.000000 8.812500 +v -0.216506 -0.125000 8.812500 +v -0.125000 -0.216506 8.812500 +v 0.000000 -0.250000 8.812500 +v 0.125000 -0.216506 8.812500 +v 0.216506 -0.125000 8.812500 +v 0.250000 0.000000 8.812500 +v 0.216506 0.125000 8.812500 +v 0.125000 0.216506 8.812500 +v 0.000000 0.625000 8.812500 +v -0.312500 0.541265 8.812500 +v -0.541266 0.312500 8.812500 +v -0.625000 0.000000 8.812500 +v -0.541266 -0.312500 8.812500 +v -0.312500 -0.541265 8.812500 +v 0.000000 -0.625000 8.812500 +v 0.312500 -0.541265 8.812500 +v 0.541265 -0.312500 8.812500 +v 0.625000 0.000000 8.812500 +v 0.541266 0.312500 8.812500 +v 0.312500 0.541265 8.812500 +v 0.000000 0.625000 9.062500 +v -0.312500 0.541265 9.062500 +v -0.541266 0.312500 9.062500 +v -0.625000 0.000000 9.062500 +v -0.541266 -0.312500 9.062500 +v -0.312500 -0.541265 9.062500 +v 0.000000 -0.625000 9.062500 +v 0.312500 -0.541265 9.062500 +v 0.541265 -0.312500 9.062500 +v 0.625000 0.000000 9.062500 +v 0.541266 0.312500 9.062500 +v 0.312500 0.541265 9.062500 +v -0.187500 0.500000 8.000000 +v 0.187500 0.500000 8.000000 +v 0.000000 0.312500 8.000000 +v 0.000000 0.687500 8.000000 +v 0.132583 0.367418 8.000000 +v -0.132583 0.632583 8.000000 +v 0.132583 0.632583 8.000000 +v -0.132583 0.367418 8.000000 +v 0.000000 0.750000 8.000000 +v -0.176776 0.676777 8.000000 +v -0.250000 0.500000 8.000000 +v -0.176777 0.323224 8.000000 +v 0.000000 0.250000 8.000000 +v 0.176777 0.323224 8.000000 +v 0.250000 0.500000 8.000000 +v 0.176777 0.676777 8.000000 +v 0.000000 0.312500 8.062500 +v 0.132583 0.367418 8.062500 +v -0.132583 0.367418 8.062500 +v -0.187500 0.500000 8.062500 +v -0.132583 0.632583 8.062500 +v 0.000000 0.687500 8.062500 +v 0.132583 0.632583 8.062500 +v 0.187500 0.500000 8.062500 +v -0.176776 0.676777 8.062500 +v 0.000000 0.750000 8.062500 +v -0.250000 0.500000 8.062500 +v -0.176777 0.323224 8.062500 +v 0.000000 0.250000 8.062500 +v 0.176777 0.323224 8.062500 +v 0.250000 0.500000 8.062500 +v 0.176777 0.676777 8.062500 +v -0.339263 -0.412380 8.000000 +v -0.526763 -0.087620 8.000000 +v -0.270633 -0.156250 8.000000 +v -0.595393 -0.343750 8.000000 +v -0.384484 -0.068889 8.000000 +v -0.481542 -0.431112 8.000000 +v -0.614124 -0.201472 8.000000 +v -0.251902 -0.298529 8.000000 +v -0.649519 -0.375000 8.000000 +v -0.497718 -0.491482 8.000000 +v -0.308013 -0.466507 8.000000 +v -0.191531 -0.314705 8.000000 +v -0.216507 -0.125000 8.000000 +v -0.368308 -0.008519 8.000000 +v -0.558013 -0.033494 8.000000 +v -0.674495 -0.185295 8.000000 +v -0.270633 -0.156250 8.062500 +v -0.384484 -0.068889 8.062500 +v -0.251902 -0.298529 8.062500 +v -0.339263 -0.412380 8.062500 +v -0.481542 -0.431112 8.062500 +v -0.595393 -0.343750 8.062500 +v -0.614124 -0.201472 8.062500 +v -0.526763 -0.087620 8.062500 +v -0.497718 -0.491482 8.062500 +v -0.649519 -0.375000 8.062500 +v -0.308013 -0.466507 8.062500 +v -0.191531 -0.314705 8.062500 +v -0.216507 -0.125000 8.062500 +v -0.368308 -0.008519 8.062500 +v -0.558013 -0.033494 8.062500 +v -0.674495 -0.185295 8.062500 +v 0.339263 0.412380 8.000000 +v 0.526763 0.087620 8.000000 +v 0.270633 0.156250 8.000000 +v 0.595393 0.343750 8.000000 +v 0.384484 0.068889 8.000000 +v 0.481542 0.431112 8.000000 +v 0.614124 0.201472 8.000000 +v 0.251902 0.298529 8.000000 +v 0.649519 0.375000 8.000000 +v 0.497718 0.491482 8.000000 +v 0.308013 0.466507 8.000000 +v 0.191531 0.314705 8.000000 +v 0.216507 0.125000 8.000000 +v 0.368308 0.008519 8.000000 +v 0.558013 0.033494 8.000000 +v 0.674495 0.185295 8.000000 +v 0.270633 0.156250 8.062500 +v 0.384484 0.068889 8.062500 +v 0.251902 0.298529 8.062500 +v 0.339263 0.412380 8.062500 +v 0.481542 0.431112 8.062500 +v 0.595393 0.343750 8.062500 +v 0.614124 0.201472 8.062500 +v 0.526763 0.087620 8.062500 +v 0.497718 0.491482 8.062500 +v 0.649519 0.375000 8.062500 +v 0.308013 0.466507 8.062500 +v 0.191531 0.314705 8.062500 +v 0.216507 0.125000 8.062500 +v 0.368308 0.008519 8.062500 +v 0.558013 0.033494 8.062500 +v 0.674495 0.185295 8.062500 +v -0.526763 0.087620 8.000000 +v -0.339263 0.412380 8.000000 +v -0.270633 0.156250 8.000000 +v -0.595393 0.343750 8.000000 +v -0.251902 0.298529 8.000000 +v -0.614124 0.201472 8.000000 +v -0.481542 0.431112 8.000000 +v -0.384484 0.068889 8.000000 +v -0.649519 0.375000 8.000000 +v -0.674495 0.185296 8.000000 +v -0.558013 0.033494 8.000000 +v -0.368308 0.008518 8.000000 +v -0.216507 0.125000 8.000000 +v -0.191531 0.314705 8.000000 +v -0.308013 0.466507 8.000000 +v -0.497718 0.491482 8.000000 +v -0.270633 0.156250 8.062500 +v -0.251902 0.298529 8.062500 +v -0.384484 0.068889 8.062500 +v -0.526763 0.087620 8.062500 +v -0.614124 0.201472 8.062500 +v -0.595393 0.343750 8.062500 +v -0.481542 0.431112 8.062500 +v -0.339263 0.412380 8.062500 +v -0.674495 0.185296 8.062500 +v -0.649519 0.375000 8.062500 +v -0.558013 0.033494 8.062500 +v -0.368308 0.008518 8.062500 +v -0.216507 0.125000 8.062500 +v -0.191531 0.314705 8.062500 +v -0.308013 0.466507 8.062500 +v -0.497718 0.491482 8.062500 +v 0.526763 -0.087620 8.000000 +v 0.339263 -0.412380 8.000000 +v 0.270633 -0.156250 8.000000 +v 0.595393 -0.343750 8.000000 +v 0.251902 -0.298529 8.000000 +v 0.614124 -0.201472 8.000000 +v 0.481542 -0.431112 8.000000 +v 0.384484 -0.068889 8.000000 +v 0.649519 -0.375000 8.000000 +v 0.674495 -0.185296 8.000000 +v 0.558013 -0.033494 8.000000 +v 0.368308 -0.008518 8.000000 +v 0.216507 -0.125000 8.000000 +v 0.191531 -0.314705 8.000000 +v 0.308013 -0.466507 8.000000 +v 0.497718 -0.491482 8.000000 +v 0.270633 -0.156250 8.062500 +v 0.251902 -0.298529 8.062500 +v 0.384484 -0.068889 8.062500 +v 0.526763 -0.087620 8.062500 +v 0.614124 -0.201472 8.062500 +v 0.595393 -0.343750 8.062500 +v 0.481542 -0.431112 8.062500 +v 0.339263 -0.412380 8.062500 +v 0.674495 -0.185296 8.062500 +v 0.649519 -0.375000 8.062500 +v 0.558013 -0.033494 8.062500 +v 0.368308 -0.008518 8.062500 +v 0.216507 -0.125000 8.062500 +v 0.191531 -0.314705 8.062500 +v 0.308013 -0.466507 8.062500 +v 0.497718 -0.491482 8.062500 +vt 0.574405 0.179713 +vt 0.619624 0.179713 +vt 0.597015 0.343699 +vt 0.574406 0.507787 +vt 0.574406 0.398463 +vt 0.597015 0.343801 +vt 0.671642 0.484375 +vt 0.667910 0.468750 +vt 0.671642 0.468750 +vt 0.667910 0.500000 +vt 0.667910 0.484375 +vt 0.671642 0.500000 +vt 0.667910 0.515625 +vt 0.671642 0.515625 +vt 0.667910 0.531250 +vt 0.671642 0.546875 +vt 0.671642 0.531250 +vt 0.667910 0.562500 +vt 0.667910 0.546875 +vt 0.671642 0.453125 +vt 0.667910 0.437500 +vt 0.671642 0.437500 +vt 0.667910 0.453125 +vt 0.640568 0.398416 +vt 0.656716 0.281294 +vt 0.672865 0.398416 +vt 0.640568 0.164085 +vt 0.672864 0.164085 +vt 0.656716 0.281206 +vt 0.671642 0.484375 +vt 0.667910 0.468750 +vt 0.671642 0.468750 +vt 0.667910 0.500000 +vt 0.667910 0.484375 +vt 0.671642 0.500000 +vt 0.667910 0.515625 +vt 0.671642 0.515625 +vt 0.667910 0.531250 +vt 0.671642 0.546875 +vt 0.671642 0.531250 +vt 0.667910 0.562500 +vt 0.667910 0.546875 +vt 0.671642 0.453125 +vt 0.667910 0.437500 +vt 0.671642 0.437500 +vt 0.667910 0.453125 +vt 0.671642 0.484375 +vt 0.667910 0.468750 +vt 0.671642 0.468750 +vt 0.667910 0.500000 +vt 0.667910 0.484375 +vt 0.671642 0.500000 +vt 0.667910 0.515625 +vt 0.671642 0.515625 +vt 0.667910 0.531250 +vt 0.671642 0.546875 +vt 0.671642 0.531250 +vt 0.667910 0.562500 +vt 0.667910 0.546875 +vt 0.671642 0.453125 +vt 0.667910 0.437500 +vt 0.671642 0.437500 +vt 0.667910 0.453125 +vt 0.671642 0.484375 +vt 0.667910 0.468750 +vt 0.671642 0.468750 +vt 0.667910 0.500000 +vt 0.667910 0.484375 +vt 0.671642 0.500000 +vt 0.667910 0.515625 +vt 0.671642 0.515625 +vt 0.667910 0.531250 +vt 0.671642 0.546875 +vt 0.671642 0.531250 +vt 0.667910 0.562500 +vt 0.667910 0.546875 +vt 0.671642 0.453125 +vt 0.667910 0.437500 +vt 0.671642 0.437500 +vt 0.667910 0.453125 +vt 0.671642 0.484375 +vt 0.667910 0.468750 +vt 0.671642 0.468750 +vt 0.667910 0.500000 +vt 0.667910 0.484375 +vt 0.671642 0.500000 +vt 0.667910 0.515625 +vt 0.671642 0.515625 +vt 0.667910 0.531250 +vt 0.671642 0.546875 +vt 0.671642 0.531250 +vt 0.667910 0.562500 +vt 0.667910 0.546875 +vt 0.671642 0.453125 +vt 0.667910 0.437500 +vt 0.671642 0.437500 +vt 0.667910 0.453125 +vt 0.671642 0.484375 +vt 0.667910 0.468750 +vt 0.671642 0.468750 +vt 0.667910 0.500000 +vt 0.667910 0.484375 +vt 0.671642 0.500000 +vt 0.667910 0.515625 +vt 0.671642 0.515625 +vt 0.667910 0.531250 +vt 0.671642 0.546875 +vt 0.671642 0.531250 +vt 0.667910 0.562500 +vt 0.667910 0.546875 +vt 0.671642 0.453125 +vt 0.667910 0.437500 +vt 0.671642 0.437500 +vt 0.667910 0.453125 +vt 0.583961 0.329052 +vt 0.574405 0.289037 +vt 0.570908 0.234375 +vt 0.583961 0.139698 +vt 0.597015 0.125051 +vt 0.610068 0.139698 +vt 0.623122 0.234375 +vt 0.619624 0.289037 +vt 0.610068 0.329052 +vt 0.619624 0.507787 +vt 0.610068 0.547802 +vt 0.597015 0.562449 +vt 0.583961 0.547802 +vt 0.570908 0.453125 +vt 0.583961 0.358448 +vt 0.610068 0.358448 +vt 0.619624 0.398463 +vt 0.623122 0.453125 +vt 0.671642 0.562500 +vt 0.666040 0.426995 +vt 0.656716 0.437456 +vt 0.647393 0.426995 +vt 0.638070 0.359375 +vt 0.640568 0.320335 +vt 0.647393 0.291755 +vt 0.666040 0.291755 +vt 0.672865 0.320335 +vt 0.675363 0.359375 +vt 0.647393 0.270745 +vt 0.640568 0.242166 +vt 0.638070 0.203125 +vt 0.647393 0.135505 +vt 0.656716 0.125044 +vt 0.666039 0.135505 +vt 0.675363 0.203125 +vt 0.672864 0.242166 +vt 0.666039 0.270745 +vt 0.671642 0.562500 +vt 0.671642 0.562500 +vt 0.671642 0.562500 +vt 0.671642 0.562500 +vt 0.671642 0.562500 +vt 0.630597 0.187500 +vt 0.623134 0.125000 +vt 0.630597 0.125000 +vt 0.630597 0.750000 +vt 0.623134 0.687500 +vt 0.630597 0.687500 +vt 0.630597 0.437500 +vt 0.623134 0.375000 +vt 0.630597 0.375000 +vt 0.630597 0.562500 +vt 0.623134 0.500000 +vt 0.630597 0.500000 +vt 0.630597 0.250000 +vt 0.623134 0.187500 +vt 0.630597 0.812500 +vt 0.623134 0.750000 +vt 0.623134 0.437500 +vt 0.630597 0.625000 +vt 0.623134 0.562500 +vt 0.630597 0.312500 +vt 0.623134 0.250000 +vt 0.630597 0.875000 +vt 0.623134 0.812500 +vt 0.623134 0.625000 +vt 0.623134 0.312500 +vt 0.664179 0.468750 +vt 0.675373 0.484375 +vt 0.675373 0.453125 +vt 0.664179 0.484375 +vt 0.664179 0.500000 +vt 0.675373 0.562500 +vt 0.664179 0.515625 +vt 0.675373 0.546875 +vt 0.664179 0.531250 +vt 0.675373 0.531250 +vt 0.664179 0.546875 +vt 0.675373 0.515625 +vt 0.664179 0.437500 +vt 0.675373 0.500000 +vt 0.664179 0.453125 +vt 0.675373 0.468750 +vt 0.570895 0.265625 +vt 0.555970 0.250000 +vt 0.570895 0.250000 +vt 0.570895 0.187500 +vt 0.555970 0.171875 +vt 0.570895 0.171875 +vt 0.570895 0.140625 +vt 0.555970 0.125000 +vt 0.570895 0.125000 +vt 0.570895 0.281250 +vt 0.555970 0.265625 +vt 0.570895 0.203125 +vt 0.555970 0.187500 +vt 0.570895 0.234375 +vt 0.555970 0.218750 +vt 0.570895 0.218750 +vt 0.570895 0.156250 +vt 0.555970 0.140625 +vt 0.570895 0.296875 +vt 0.555970 0.281250 +vt 0.555970 0.203125 +vt 0.555970 0.234375 +vt 0.555970 0.156250 +vt 0.570895 0.312500 +vt 0.555970 0.296875 +vt 0.638060 0.359375 +vt 0.630597 0.312500 +vt 0.638060 0.312500 +vt 0.638060 0.453125 +vt 0.630597 0.406250 +vt 0.638060 0.406250 +vt 0.638060 0.218750 +vt 0.630597 0.171875 +vt 0.638060 0.171875 +vt 0.638060 0.640625 +vt 0.630597 0.593750 +vt 0.638060 0.593750 +vt 0.630597 0.359375 +vt 0.638060 0.500000 +vt 0.630597 0.453125 +vt 0.638060 0.265625 +vt 0.630597 0.218750 +vt 0.638060 0.687500 +vt 0.630597 0.640625 +vt 0.638060 0.546875 +vt 0.630597 0.500000 +vt 0.630597 0.265625 +vt 0.630597 0.125000 +vt 0.638060 0.125000 +vt 0.630597 0.546875 +vt 0.664179 0.468750 +vt 0.675373 0.484375 +vt 0.675373 0.453125 +vt 0.664179 0.484375 +vt 0.664179 0.500000 +vt 0.675373 0.562500 +vt 0.664179 0.515625 +vt 0.675373 0.546875 +vt 0.664179 0.531250 +vt 0.675373 0.531250 +vt 0.664179 0.546875 +vt 0.675373 0.515625 +vt 0.664179 0.437500 +vt 0.675373 0.500000 +vt 0.664179 0.453125 +vt 0.675373 0.468750 +vt 0.664179 0.468750 +vt 0.675373 0.484375 +vt 0.675373 0.453125 +vt 0.664179 0.484375 +vt 0.664179 0.500000 +vt 0.675373 0.562500 +vt 0.664179 0.515625 +vt 0.675373 0.546875 +vt 0.664179 0.531250 +vt 0.675373 0.531250 +vt 0.664179 0.546875 +vt 0.675373 0.515625 +vt 0.664179 0.437500 +vt 0.675373 0.500000 +vt 0.664179 0.453125 +vt 0.675373 0.468750 +vt 0.664179 0.468750 +vt 0.675373 0.484375 +vt 0.675373 0.453125 +vt 0.664179 0.484375 +vt 0.664179 0.500000 +vt 0.675373 0.562500 +vt 0.664179 0.515625 +vt 0.675373 0.546875 +vt 0.664179 0.531250 +vt 0.675373 0.531250 +vt 0.664179 0.546875 +vt 0.675373 0.515625 +vt 0.664179 0.437500 +vt 0.675373 0.500000 +vt 0.664179 0.453125 +vt 0.675373 0.468750 +vt 0.664179 0.468750 +vt 0.675373 0.484375 +vt 0.675373 0.453125 +vt 0.664179 0.484375 +vt 0.664179 0.500000 +vt 0.675373 0.562500 +vt 0.664179 0.515625 +vt 0.675373 0.546875 +vt 0.664179 0.531250 +vt 0.675373 0.531250 +vt 0.664179 0.546875 +vt 0.675373 0.515625 +vt 0.664179 0.437500 +vt 0.675373 0.500000 +vt 0.664179 0.453125 +vt 0.675373 0.468750 +vt 0.664179 0.468750 +vt 0.675373 0.484375 +vt 0.675373 0.453125 +vt 0.664179 0.484375 +vt 0.664179 0.500000 +vt 0.675373 0.562500 +vt 0.664179 0.515625 +vt 0.675373 0.546875 +vt 0.664179 0.531250 +vt 0.675373 0.531250 +vt 0.664179 0.546875 +vt 0.675373 0.515625 +vt 0.664179 0.437500 +vt 0.675373 0.500000 +vt 0.664179 0.453125 +vt 0.675373 0.468750 +vt 0.623134 0.875000 +vt 0.675373 0.437500 +vt 0.664179 0.562500 +vt 0.555970 0.312500 +vt 0.630597 0.687500 +vt 0.675373 0.437500 +vt 0.664179 0.562500 +vt 0.675373 0.437500 +vt 0.664179 0.562500 +vt 0.675373 0.437500 +vt 0.664179 0.562500 +vt 0.675373 0.437500 +vt 0.664179 0.562500 +vt 0.675373 0.437500 +vt 0.664179 0.562500 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.5000 -0.8660 0.0000 +vn -0.0000 -1.0000 0.0000 +vn -0.8660 -0.5000 0.0000 +vn -1.0000 -0.0000 0.0000 +vn 0.5000 0.8660 0.0000 +vn 0.8660 0.5000 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.8660 0.5000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn -0.7071 -0.7071 0.0000 +vn 0.7071 0.7071 0.0000 +vn 0.7071 -0.7071 0.0000 +vn -0.7071 0.7071 0.0000 +vn -0.9659 0.2588 0.0000 +vn 0.9659 -0.2588 0.0000 +vn -0.2588 -0.9659 0.0000 +vn 0.2588 0.9659 0.0000 +vn -0.2588 0.9659 0.0000 +vn 0.2588 -0.9659 0.0000 +vn -0.9659 -0.2588 0.0000 +vn 0.9659 0.2588 0.0000 +s off +f 177/305/50 181/306/50 173/307/50 +f 171/308/51 169/309/51 167/310/51 +f 191/311/51 199/312/51 186/313/51 +f 191/311/51 193/314/51 200/315/51 +f 188/316/51 194/317/51 193/314/51 +f 190/318/51 195/319/51 194/317/51 +f 192/320/51 195/319/51 185/321/51 +f 192/320/51 197/322/51 196/323/51 +f 189/324/51 197/325/51 187/326/51 +f 189/324/51 199/312/51 198/327/51 +f 251/328/51 247/329/51 243/330/51 +f 257/331/50 261/332/50 253/333/50 +f 271/334/51 279/335/51 266/336/51 +f 271/334/51 273/337/51 280/338/51 +f 268/339/51 274/340/51 273/337/51 +f 270/341/51 275/342/51 274/340/51 +f 272/343/51 275/342/51 265/344/51 +f 272/343/51 277/345/51 276/346/51 +f 269/347/51 277/348/51 267/349/51 +f 269/347/51 279/335/51 278/350/51 +f 303/351/51 311/352/51 298/353/51 +f 303/351/51 305/354/51 312/355/51 +f 300/356/51 306/357/51 305/354/51 +f 302/358/51 307/359/51 306/357/51 +f 304/360/51 307/359/51 297/361/51 +f 304/360/51 309/362/51 308/363/51 +f 301/364/51 309/365/51 299/366/51 +f 301/364/51 311/352/51 310/367/51 +f 335/368/51 343/369/51 330/370/51 +f 335/368/51 337/371/51 344/372/51 +f 332/373/51 338/374/51 337/371/51 +f 334/375/51 339/376/51 338/374/51 +f 336/377/51 339/376/51 329/378/51 +f 336/377/51 341/379/51 340/380/51 +f 333/381/51 341/382/51 331/383/51 +f 333/381/51 343/369/51 342/384/51 +f 367/385/51 375/386/51 362/387/51 +f 367/385/51 369/388/51 376/389/51 +f 364/390/51 370/391/51 369/388/51 +f 366/392/51 371/393/51 370/391/51 +f 368/394/51 371/393/51 361/395/51 +f 368/394/51 373/396/51 372/397/51 +f 365/398/51 373/399/51 363/400/51 +f 365/398/51 375/386/51 374/401/51 +f 399/402/51 407/403/51 394/404/51 +f 399/402/51 401/405/51 408/406/51 +f 396/407/51 402/408/51 401/405/51 +f 398/409/51 403/410/51 402/408/51 +f 400/411/51 403/410/51 393/412/51 +f 400/411/51 405/413/51 404/414/51 +f 397/415/51 405/416/51 395/417/51 +f 397/415/51 407/403/51 406/418/51 +f 173/307/50 174/419/50 175/420/50 +f 175/420/50 176/421/50 173/307/50 +f 176/421/50 177/305/50 173/307/50 +f 177/305/50 178/422/50 179/423/50 +f 179/423/50 180/424/50 181/306/50 +f 181/306/50 182/425/50 183/426/50 +f 183/426/50 184/427/50 173/307/50 +f 177/305/50 179/423/50 181/306/50 +f 181/306/50 183/426/50 173/307/50 +f 163/428/51 162/429/51 161/430/51 +f 161/430/51 172/431/51 171/308/51 +f 171/308/51 170/432/51 169/309/51 +f 169/309/51 168/433/51 167/310/51 +f 167/310/51 166/434/51 165/435/51 +f 165/435/51 164/436/51 167/310/51 +f 164/436/51 163/428/51 167/310/51 +f 163/428/51 161/430/51 167/310/51 +f 161/430/51 171/308/51 167/310/51 +f 191/311/51 200/315/51 199/312/51 +f 191/311/51 188/316/51 193/314/51 +f 188/316/51 190/318/51 194/317/51 +f 190/318/51 185/321/51 195/319/51 +f 192/320/51 196/323/51 195/319/51 +f 192/320/51 187/437/51 197/322/51 +f 189/324/51 198/327/51 197/325/51 +f 189/324/51 186/313/51 199/312/51 +f 243/330/51 242/438/51 251/328/51 +f 242/438/51 241/439/51 251/328/51 +f 241/439/51 252/440/51 251/328/51 +f 251/328/51 250/441/51 249/442/51 +f 249/442/51 248/443/51 251/328/51 +f 248/443/51 247/329/51 251/328/51 +f 247/329/51 246/444/51 243/330/51 +f 246/444/51 245/445/51 243/330/51 +f 245/445/51 244/446/51 243/330/51 +f 253/333/50 254/447/50 257/331/50 +f 254/447/50 255/448/50 257/331/50 +f 255/448/50 256/449/50 257/331/50 +f 257/331/50 258/450/50 261/332/50 +f 258/450/50 259/451/50 261/332/50 +f 259/451/50 260/452/50 261/332/50 +f 261/332/50 262/453/50 263/454/50 +f 263/454/50 264/455/50 261/332/50 +f 264/455/50 253/333/50 261/332/50 +f 271/334/51 280/338/51 279/335/51 +f 271/334/51 268/339/51 273/337/51 +f 268/339/51 270/341/51 274/340/51 +f 270/341/51 265/344/51 275/342/51 +f 272/343/51 276/346/51 275/342/51 +f 272/343/51 267/456/51 277/345/51 +f 269/347/51 278/350/51 277/348/51 +f 269/347/51 266/336/51 279/335/51 +f 303/351/51 312/355/51 311/352/51 +f 303/351/51 300/356/51 305/354/51 +f 300/356/51 302/358/51 306/357/51 +f 302/358/51 297/361/51 307/359/51 +f 304/360/51 308/363/51 307/359/51 +f 304/360/51 299/457/51 309/362/51 +f 301/364/51 310/367/51 309/365/51 +f 301/364/51 298/353/51 311/352/51 +f 335/368/51 344/372/51 343/369/51 +f 335/368/51 332/373/51 337/371/51 +f 332/373/51 334/375/51 338/374/51 +f 334/375/51 329/378/51 339/376/51 +f 336/377/51 340/380/51 339/376/51 +f 336/377/51 331/458/51 341/379/51 +f 333/381/51 342/384/51 341/382/51 +f 333/381/51 330/370/51 343/369/51 +f 367/385/51 376/389/51 375/386/51 +f 367/385/51 364/390/51 369/388/51 +f 364/390/51 366/392/51 370/391/51 +f 366/392/51 361/395/51 371/393/51 +f 368/394/51 372/397/51 371/393/51 +f 368/394/51 363/459/51 373/396/51 +f 365/398/51 374/401/51 373/399/51 +f 365/398/51 362/387/51 375/386/51 +f 399/402/51 408/406/51 407/403/51 +f 399/402/51 396/407/51 401/405/51 +f 396/407/51 398/409/51 402/408/51 +f 398/409/51 393/412/51 403/410/51 +f 400/411/51 404/414/51 403/410/51 +f 400/411/51 395/460/51 405/413/51 +f 397/415/51 406/418/51 405/416/51 +f 397/415/51 394/404/51 407/403/51 +s 1 +f 168/461/52 179/462/53 167/463/53 +f 165/464/54 176/465/55 164/466/55 +f 172/467/56 183/468/57 171/469/57 +f 162/470/58 173/471/59 161/472/59 +f 169/473/60 180/474/52 168/461/52 +f 166/475/61 177/476/54 165/464/54 +f 161/472/59 184/477/56 172/467/56 +f 163/478/62 174/479/58 162/470/58 +f 170/480/63 181/481/60 169/473/60 +f 167/482/53 178/483/61 166/475/61 +f 164/466/55 175/484/62 163/478/62 +f 171/469/57 182/485/63 170/480/63 +f 200/315/64 215/486/55 199/312/55 +f 186/313/63 207/487/65 191/311/65 +f 187/326/53 202/488/66 189/324/66 +f 193/314/53 216/489/64 200/315/64 +f 194/317/66 210/490/53 193/314/53 +f 192/320/64 201/491/53 187/437/53 +f 195/319/63 209/492/66 194/317/66 +f 185/321/55 203/493/64 192/320/64 +f 196/323/65 211/494/63 195/319/63 +f 190/318/67 204/495/55 185/321/55 +f 197/322/59 212/496/65 196/323/65 +f 188/316/59 205/497/67 190/318/67 +f 198/327/67 213/498/59 197/325/59 +f 191/311/65 206/499/59 188/316/59 +f 199/312/55 214/500/67 198/327/67 +f 189/324/66 208/501/63 186/313/63 +f 220/502/55 231/503/62 219/504/62 +f 227/505/57 238/506/63 226/507/63 +f 224/508/52 235/509/53 223/510/53 +f 221/511/54 232/512/55 220/502/55 +f 228/513/56 239/514/57 227/505/57 +f 218/515/58 229/516/59 217/517/59 +f 225/518/60 236/519/52 224/508/52 +f 222/520/61 233/521/54 221/511/54 +f 217/517/59 240/522/56 228/513/56 +f 219/504/62 230/523/58 218/515/58 +f 226/507/63 237/524/60 225/518/60 +f 223/525/53 234/526/61 222/520/61 +f 252/527/56 263/528/57 251/529/57 +f 242/530/58 253/531/59 241/532/59 +f 249/533/60 260/534/52 248/535/52 +f 246/536/61 257/537/54 245/538/54 +f 241/532/59 264/539/56 252/527/56 +f 243/540/62 254/541/58 242/530/58 +f 250/542/63 261/543/60 249/533/60 +f 247/544/53 258/545/61 246/536/61 +f 244/546/55 255/547/62 243/540/62 +f 251/529/57 262/548/63 250/542/63 +f 248/535/52 259/549/53 247/550/53 +f 245/538/54 256/551/55 244/546/55 +f 280/338/65 295/552/63 279/335/63 +f 266/336/55 287/553/64 271/334/64 +f 267/349/59 282/554/67 269/347/67 +f 273/337/59 296/555/65 280/338/65 +f 274/340/67 290/556/59 273/337/59 +f 272/343/65 281/557/59 267/456/59 +f 275/342/55 289/558/67 274/340/67 +f 265/344/63 283/559/65 272/343/65 +f 276/346/64 291/560/55 275/342/55 +f 270/341/66 284/561/63 265/344/63 +f 277/345/53 292/562/64 276/346/64 +f 268/339/53 285/563/66 270/341/66 +f 278/350/66 293/564/53 277/348/53 +f 271/334/64 286/565/53 268/339/53 +f 279/335/63 294/566/66 278/350/66 +f 269/347/67 288/567/55 266/336/55 +f 312/355/68 327/568/58 311/352/58 +f 298/353/52 319/569/69 303/351/69 +f 299/366/54 314/570/70 301/364/70 +f 305/354/54 328/571/68 312/355/68 +f 306/357/70 322/572/54 305/354/54 +f 304/360/68 313/573/54 299/457/54 +f 307/359/52 321/574/70 306/357/70 +f 297/361/58 315/575/68 304/360/68 +f 308/363/69 323/576/52 307/359/52 +f 302/358/71 316/577/58 297/361/58 +f 309/362/57 324/578/69 308/363/69 +f 300/356/57 317/579/71 302/358/71 +f 310/367/71 325/580/57 309/365/57 +f 303/351/69 318/581/57 300/356/57 +f 311/352/58 326/582/71 310/367/71 +f 301/364/70 320/583/52 298/353/52 +f 344/372/69 359/584/52 343/369/52 +f 330/370/58 351/585/68 335/368/68 +f 331/383/57 346/586/71 333/381/71 +f 337/371/57 360/587/69 344/372/69 +f 338/374/71 354/588/57 337/371/57 +f 336/377/69 345/589/57 331/458/57 +f 339/376/58 353/590/71 338/374/71 +f 329/378/52 347/591/69 336/377/69 +f 340/380/68 355/592/58 339/376/58 +f 334/375/70 348/593/52 329/378/52 +f 341/379/54 356/594/68 340/380/68 +f 332/373/54 349/595/70 334/375/70 +f 342/384/70 357/596/54 341/382/54 +f 335/368/68 350/597/54 332/373/54 +f 343/369/52 358/598/70 342/384/70 +f 333/381/71 352/599/58 330/370/58 +f 376/389/72 391/600/56 375/386/56 +f 362/387/61 383/601/73 367/385/73 +f 363/400/62 378/602/74 365/398/74 +f 369/388/62 392/603/72 376/389/72 +f 370/391/74 386/604/62 369/388/62 +f 368/394/72 377/605/62 363/459/62 +f 371/393/61 385/606/74 370/391/74 +f 361/395/56 379/607/72 368/394/72 +f 372/397/73 387/608/61 371/393/61 +f 366/392/75 380/609/56 361/395/56 +f 373/396/60 388/610/73 372/397/73 +f 364/390/60 381/611/75 366/392/75 +f 374/401/75 389/612/60 373/399/60 +f 367/385/73 382/613/60 364/390/60 +f 375/386/56 390/614/75 374/401/75 +f 365/398/74 384/615/61 362/387/61 +f 408/406/73 423/616/61 407/403/61 +f 394/404/56 415/617/72 399/402/72 +f 395/417/60 410/618/75 397/415/75 +f 401/405/60 424/619/73 408/406/73 +f 402/408/75 418/620/60 401/405/60 +f 400/411/73 409/621/60 395/460/60 +f 403/410/56 417/622/75 402/408/75 +f 393/412/61 411/623/73 400/411/73 +f 404/414/72 419/624/56 403/410/56 +f 398/409/74 412/625/61 393/412/61 +f 405/413/62 420/626/72 404/414/72 +f 396/407/62 413/627/74 398/409/74 +f 406/418/74 421/628/62 405/416/62 +f 399/402/72 414/629/62 396/407/62 +f 407/403/61 422/630/74 406/418/74 +f 397/415/75 416/631/56 394/404/56 +f 168/461/52 180/474/52 179/462/53 +f 165/464/54 177/476/54 176/465/55 +f 172/467/56 184/477/56 183/468/57 +f 162/470/58 174/479/58 173/471/59 +f 169/473/60 181/481/60 180/474/52 +f 166/475/61 178/483/61 177/476/54 +f 161/472/59 173/471/59 184/477/56 +f 163/478/62 175/484/62 174/479/58 +f 170/480/63 182/485/63 181/481/60 +f 167/482/53 179/632/53 178/483/61 +f 164/466/55 176/465/55 175/484/62 +f 171/469/57 183/468/57 182/485/63 +f 200/315/64 216/489/64 215/486/55 +f 186/313/63 208/501/63 207/487/65 +f 187/326/53 201/633/53 202/488/66 +f 193/314/53 210/490/53 216/489/64 +f 194/317/66 209/492/66 210/490/53 +f 192/320/64 203/493/64 201/491/53 +f 195/319/63 211/494/63 209/492/66 +f 185/321/55 204/495/55 203/493/64 +f 196/323/65 212/496/65 211/494/63 +f 190/318/67 205/497/67 204/495/55 +f 197/322/59 213/634/59 212/496/65 +f 188/316/59 206/499/59 205/497/67 +f 198/327/67 214/500/67 213/498/59 +f 191/311/65 207/487/65 206/499/59 +f 199/312/55 215/486/55 214/500/67 +f 189/324/66 202/488/66 208/501/63 +f 220/502/55 232/512/55 231/503/62 +f 227/505/57 239/514/57 238/506/63 +f 224/508/52 236/519/52 235/509/53 +f 221/511/54 233/521/54 232/512/55 +f 228/513/56 240/522/56 239/514/57 +f 218/515/58 230/523/58 229/516/59 +f 225/518/60 237/524/60 236/519/52 +f 222/520/61 234/526/61 233/521/54 +f 217/517/59 229/516/59 240/522/56 +f 219/504/62 231/503/62 230/523/58 +f 226/507/63 238/506/63 237/524/60 +f 223/525/53 235/635/53 234/526/61 +f 252/527/56 264/539/56 263/528/57 +f 242/530/58 254/541/58 253/531/59 +f 249/533/60 261/543/60 260/534/52 +f 246/536/61 258/545/61 257/537/54 +f 241/532/59 253/531/59 264/539/56 +f 243/540/62 255/547/62 254/541/58 +f 250/542/63 262/548/63 261/543/60 +f 247/544/53 259/636/53 258/545/61 +f 244/546/55 256/551/55 255/547/62 +f 251/529/57 263/528/57 262/548/63 +f 248/535/52 260/534/52 259/549/53 +f 245/538/54 257/537/54 256/551/55 +f 280/338/65 296/555/65 295/552/63 +f 266/336/55 288/567/55 287/553/64 +f 267/349/59 281/637/59 282/554/67 +f 273/337/59 290/556/59 296/555/65 +f 274/340/67 289/558/67 290/556/59 +f 272/343/65 283/559/65 281/557/59 +f 275/342/55 291/560/55 289/558/67 +f 265/344/63 284/561/63 283/559/65 +f 276/346/64 292/562/64 291/560/55 +f 270/341/66 285/563/66 284/561/63 +f 277/345/53 293/638/53 292/562/64 +f 268/339/53 286/565/53 285/563/66 +f 278/350/66 294/566/66 293/564/53 +f 271/334/64 287/553/64 286/565/53 +f 279/335/63 295/552/63 294/566/66 +f 269/347/67 282/554/67 288/567/55 +f 312/355/68 328/571/68 327/568/58 +f 298/353/52 320/583/52 319/569/69 +f 299/366/54 313/639/54 314/570/70 +f 305/354/54 322/572/54 328/571/68 +f 306/357/70 321/574/70 322/572/54 +f 304/360/68 315/575/68 313/573/54 +f 307/359/52 323/576/52 321/574/70 +f 297/361/58 316/577/58 315/575/68 +f 308/363/69 324/578/69 323/576/52 +f 302/358/71 317/579/71 316/577/58 +f 309/362/57 325/640/57 324/578/69 +f 300/356/57 318/581/57 317/579/71 +f 310/367/71 326/582/71 325/580/57 +f 303/351/69 319/569/69 318/581/57 +f 311/352/58 327/568/58 326/582/71 +f 301/364/70 314/570/70 320/583/52 +f 344/372/69 360/587/69 359/584/52 +f 330/370/58 352/599/58 351/585/68 +f 331/383/57 345/641/57 346/586/71 +f 337/371/57 354/588/57 360/587/69 +f 338/374/71 353/590/71 354/588/57 +f 336/377/69 347/591/69 345/589/57 +f 339/376/58 355/592/58 353/590/71 +f 329/378/52 348/593/52 347/591/69 +f 340/380/68 356/594/68 355/592/58 +f 334/375/70 349/595/70 348/593/52 +f 341/379/54 357/642/54 356/594/68 +f 332/373/54 350/597/54 349/595/70 +f 342/384/70 358/598/70 357/596/54 +f 335/368/68 351/585/68 350/597/54 +f 343/369/52 359/584/52 358/598/70 +f 333/381/71 346/586/71 352/599/58 +f 376/389/72 392/603/72 391/600/56 +f 362/387/61 384/615/61 383/601/73 +f 363/400/62 377/643/62 378/602/74 +f 369/388/62 386/604/62 392/603/72 +f 370/391/74 385/606/74 386/604/62 +f 368/394/72 379/607/72 377/605/62 +f 371/393/61 387/608/61 385/606/74 +f 361/395/56 380/609/56 379/607/72 +f 372/397/73 388/610/73 387/608/61 +f 366/392/75 381/611/75 380/609/56 +f 373/396/60 389/644/60 388/610/73 +f 364/390/60 382/613/60 381/611/75 +f 374/401/75 390/614/75 389/612/60 +f 367/385/73 383/601/73 382/613/60 +f 375/386/56 391/600/56 390/614/75 +f 365/398/74 378/602/74 384/615/61 +f 408/406/73 424/619/73 423/616/61 +f 394/404/56 416/631/56 415/617/72 +f 395/417/60 409/645/60 410/618/75 +f 401/405/60 418/620/60 424/619/73 +f 402/408/75 417/622/75 418/620/60 +f 400/411/73 411/623/73 409/621/60 +f 403/410/56 419/624/56 417/622/75 +f 393/412/61 412/625/61 411/623/73 +f 404/414/72 420/626/72 419/624/56 +f 398/409/74 413/627/74 412/625/61 +f 405/413/62 421/646/62 420/626/72 +f 396/407/62 414/629/62 413/627/74 +f 406/418/74 422/630/74 421/628/62 +f 399/402/72 415/617/72 414/629/62 +f 407/403/61 423/616/61 422/630/74 +f 397/415/75 410/618/75 416/631/56 +o Shot +v 0.000000 0.500000 8.187500 +v -0.132583 0.500000 8.132584 +v -0.187500 0.500000 8.000000 +v -0.132583 0.500000 7.867418 +v 0.000000 0.500000 7.812500 +v 0.132583 0.500000 7.867418 +v 0.187500 0.500000 8.000000 +v 0.132583 0.500000 8.132584 +v 0.000000 0.367418 8.132584 +v 0.000000 0.312500 8.000000 +v 0.000000 0.367418 7.867418 +v 0.000000 0.632583 7.867418 +v 0.000000 0.687500 8.000000 +v 0.000000 0.632583 8.132584 +v 0.093750 0.406250 8.132584 +v 0.132583 0.367418 8.000000 +v 0.093750 0.406250 7.867418 +v -0.093750 0.593750 7.867418 +v -0.132583 0.632583 8.000000 +v -0.093750 0.593750 8.132584 +v 0.093750 0.593750 8.132584 +v 0.132583 0.632583 8.000000 +v 0.093750 0.593750 7.867418 +v -0.093750 0.406250 7.867418 +v -0.132583 0.367418 8.000000 +v -0.093750 0.406250 8.132584 +v 0.000000 -0.500000 8.187500 +v 0.132583 -0.500000 8.132584 +v 0.187500 -0.500000 8.000000 +v 0.132583 -0.500000 7.867418 +v 0.000000 -0.500000 7.812500 +v -0.132583 -0.500000 7.867418 +v -0.187500 -0.500000 8.000000 +v -0.132583 -0.500000 8.132584 +v 0.000000 -0.367418 8.132584 +v 0.000000 -0.312500 8.000000 +v 0.000000 -0.367418 7.867418 +v 0.000000 -0.632583 7.867418 +v 0.000000 -0.687500 8.000000 +v 0.000000 -0.632583 8.132584 +v -0.093750 -0.406250 8.132584 +v -0.132583 -0.367418 8.000000 +v -0.093750 -0.406250 7.867418 +v 0.093750 -0.593750 7.867418 +v 0.132583 -0.632583 8.000000 +v 0.093750 -0.593750 8.132584 +v -0.093750 -0.593750 8.132584 +v -0.132583 -0.632583 8.000000 +v -0.093750 -0.593750 7.867418 +v 0.093750 -0.406250 7.867418 +v 0.132583 -0.367418 8.000000 +v 0.093750 -0.406250 8.132584 +v 0.433013 0.250000 8.187500 +v 0.366722 0.364820 8.132584 +v 0.339263 0.412380 8.000000 +v 0.366722 0.364820 7.867418 +v 0.433013 0.250000 7.812500 +v 0.499304 0.135180 7.867418 +v 0.526763 0.087620 8.000000 +v 0.499304 0.135180 8.132584 +v 0.318193 0.183709 8.132584 +v 0.270633 0.156250 8.000000 +v 0.318193 0.183709 7.867418 +v 0.547833 0.316292 7.867418 +v 0.595393 0.343750 8.000000 +v 0.547833 0.316292 8.132584 +v 0.398698 0.121935 8.132584 +v 0.384484 0.068889 8.000000 +v 0.398698 0.121935 7.867418 +v 0.467328 0.378065 7.867418 +v 0.481542 0.431112 8.000000 +v 0.467328 0.378065 8.132584 +v 0.561078 0.215685 8.132584 +v 0.614124 0.201472 8.000000 +v 0.561078 0.215685 7.867418 +v 0.304948 0.284315 7.867418 +v 0.251902 0.298529 8.000000 +v 0.304948 0.284315 8.132584 +v -0.433013 -0.250000 8.187500 +v -0.366722 -0.364820 8.132584 +v -0.339263 -0.412380 8.000000 +v -0.366722 -0.364820 7.867418 +v -0.433013 -0.250000 7.812500 +v -0.499304 -0.135180 7.867418 +v -0.526763 -0.087620 8.000000 +v -0.499304 -0.135180 8.132584 +v -0.318193 -0.183709 8.132584 +v -0.270633 -0.156250 8.000000 +v -0.318193 -0.183709 7.867418 +v -0.547833 -0.316292 7.867418 +v -0.595393 -0.343750 8.000000 +v -0.547833 -0.316292 8.132584 +v -0.398698 -0.121935 8.132584 +v -0.384484 -0.068889 8.000000 +v -0.398698 -0.121935 7.867418 +v -0.467328 -0.378065 7.867418 +v -0.481542 -0.431112 8.000000 +v -0.467328 -0.378065 8.132584 +v -0.561078 -0.215685 8.132584 +v -0.614124 -0.201472 8.000000 +v -0.561078 -0.215685 7.867418 +v -0.304948 -0.284315 7.867418 +v -0.251902 -0.298529 8.000000 +v -0.304948 -0.284315 8.132584 +v 0.433013 -0.250000 8.187500 +v 0.499304 -0.135180 8.132584 +v 0.526763 -0.087620 8.000000 +v 0.499304 -0.135180 7.867418 +v 0.433013 -0.250000 7.812500 +v 0.366722 -0.364820 7.867418 +v 0.339263 -0.412380 8.000000 +v 0.366722 -0.364820 8.132584 +v 0.318193 -0.183709 8.132584 +v 0.270633 -0.156250 8.000000 +v 0.318193 -0.183709 7.867418 +v 0.547833 -0.316292 7.867418 +v 0.595393 -0.343750 8.000000 +v 0.547833 -0.316292 8.132584 +v 0.304948 -0.284315 8.132584 +v 0.251902 -0.298529 8.000000 +v 0.304948 -0.284315 7.867418 +v 0.561078 -0.215685 7.867418 +v 0.614124 -0.201472 8.000000 +v 0.561078 -0.215685 8.132584 +v 0.467328 -0.378065 8.132584 +v 0.481542 -0.431112 8.000000 +v 0.467328 -0.378065 7.867418 +v 0.398698 -0.121935 7.867418 +v 0.384484 -0.068889 8.000000 +v 0.398698 -0.121935 8.132584 +v -0.433013 0.250000 8.187500 +v -0.499304 0.135180 8.132584 +v -0.526763 0.087620 8.000000 +v -0.499304 0.135180 7.867418 +v -0.433013 0.250000 7.812500 +v -0.366722 0.364820 7.867418 +v -0.339263 0.412380 8.000000 +v -0.366722 0.364820 8.132584 +v -0.318193 0.183709 8.132584 +v -0.270633 0.156250 8.000000 +v -0.318193 0.183709 7.867418 +v -0.547833 0.316292 7.867418 +v -0.595393 0.343750 8.000000 +v -0.547833 0.316292 8.132584 +v -0.304948 0.284315 8.132584 +v -0.251902 0.298529 8.000000 +v -0.304948 0.284315 7.867418 +v -0.561078 0.215685 7.867418 +v -0.614124 0.201472 8.000000 +v -0.561078 0.215685 8.132584 +v -0.467328 0.378065 8.132584 +v -0.481542 0.431112 8.000000 +v -0.467328 0.378065 7.867418 +v -0.398698 0.121935 7.867418 +v -0.384484 0.068889 8.000000 +v -0.398698 0.121935 8.132584 +vt 0.641791 0.437500 +vt 0.645522 0.453125 +vt 0.641791 0.453125 +vt 0.645965 0.438018 +vt 0.649254 0.453125 +vt 0.645522 0.546875 +vt 0.641791 0.562500 +vt 0.641791 0.546875 +vt 0.649254 0.546875 +vt 0.645522 0.562500 +vt 0.645522 0.531250 +vt 0.641791 0.531250 +vt 0.649254 0.531250 +vt 0.641791 0.515625 +vt 0.645522 0.515625 +vt 0.641791 0.500000 +vt 0.645522 0.500000 +vt 0.645522 0.484375 +vt 0.641791 0.484375 +vt 0.645522 0.468750 +vt 0.641791 0.468750 +vt 0.638060 0.468750 +vt 0.638060 0.484375 +vt 0.638060 0.500000 +vt 0.638060 0.515625 +vt 0.638060 0.531250 +vt 0.638060 0.546875 +vt 0.638060 0.437500 +vt 0.638060 0.453125 +vt 0.649254 0.468750 +vt 0.649254 0.484375 +vt 0.649254 0.500000 +vt 0.652985 0.468750 +vt 0.652985 0.484375 +vt 0.649254 0.515625 +vt 0.652985 0.500000 +vt 0.652985 0.515625 +vt 0.652985 0.531250 +vt 0.652985 0.546875 +vt 0.649254 0.562500 +vt 0.649254 0.437500 +vt 0.652985 0.437500 +vt 0.652985 0.453125 +vt 0.641791 0.437500 +vt 0.645522 0.453125 +vt 0.641791 0.453125 +vt 0.645965 0.438018 +vt 0.649254 0.453125 +vt 0.645522 0.546875 +vt 0.641791 0.562500 +vt 0.641791 0.546875 +vt 0.649254 0.546875 +vt 0.645522 0.562500 +vt 0.645522 0.531250 +vt 0.641791 0.531250 +vt 0.649254 0.531250 +vt 0.641791 0.515625 +vt 0.645522 0.515625 +vt 0.641791 0.500000 +vt 0.645522 0.500000 +vt 0.645522 0.484375 +vt 0.641791 0.484375 +vt 0.645522 0.468750 +vt 0.641791 0.468750 +vt 0.638060 0.468750 +vt 0.638060 0.484375 +vt 0.638060 0.500000 +vt 0.638060 0.515625 +vt 0.638060 0.531250 +vt 0.638060 0.546875 +vt 0.638060 0.437500 +vt 0.638060 0.453125 +vt 0.649254 0.468750 +vt 0.649254 0.484375 +vt 0.649254 0.500000 +vt 0.652985 0.468750 +vt 0.652985 0.484375 +vt 0.649254 0.515625 +vt 0.652985 0.500000 +vt 0.652985 0.515625 +vt 0.652985 0.531250 +vt 0.652985 0.546875 +vt 0.649254 0.562500 +vt 0.649254 0.437500 +vt 0.652985 0.437500 +vt 0.652985 0.453125 +vt 0.641791 0.437500 +vt 0.645522 0.453125 +vt 0.641791 0.453125 +vt 0.649254 0.437500 +vt 0.645965 0.438018 +vt 0.641791 0.546875 +vt 0.645522 0.562500 +vt 0.641791 0.562500 +vt 0.649254 0.546875 +vt 0.645522 0.546875 +vt 0.645522 0.531250 +vt 0.641791 0.531250 +vt 0.649254 0.531250 +vt 0.645522 0.515625 +vt 0.641791 0.515625 +vt 0.645522 0.500000 +vt 0.641791 0.500000 +vt 0.645522 0.484375 +vt 0.641791 0.484375 +vt 0.645522 0.468750 +vt 0.641791 0.468750 +vt 0.638060 0.468750 +vt 0.638060 0.484375 +vt 0.638060 0.500000 +vt 0.638060 0.515625 +vt 0.638060 0.531250 +vt 0.638060 0.546875 +vt 0.638060 0.437500 +vt 0.638060 0.453125 +vt 0.649254 0.453125 +vt 0.649254 0.468750 +vt 0.649254 0.484375 +vt 0.649254 0.500000 +vt 0.652985 0.468750 +vt 0.652985 0.484375 +vt 0.649254 0.515625 +vt 0.652985 0.500000 +vt 0.652985 0.515625 +vt 0.652985 0.531250 +vt 0.652985 0.546875 +vt 0.649254 0.562500 +vt 0.652985 0.437500 +vt 0.652985 0.453125 +vt 0.641791 0.437500 +vt 0.645522 0.453125 +vt 0.641791 0.453125 +vt 0.649254 0.437500 +vt 0.645965 0.438018 +vt 0.641791 0.546875 +vt 0.645522 0.562500 +vt 0.641791 0.562500 +vt 0.649254 0.546875 +vt 0.645522 0.546875 +vt 0.645522 0.531250 +vt 0.641791 0.531250 +vt 0.649254 0.531250 +vt 0.645522 0.515625 +vt 0.641791 0.515625 +vt 0.645522 0.500000 +vt 0.641791 0.500000 +vt 0.645522 0.484375 +vt 0.641791 0.484375 +vt 0.645522 0.468750 +vt 0.641791 0.468750 +vt 0.638060 0.468750 +vt 0.638060 0.484375 +vt 0.638060 0.500000 +vt 0.638060 0.515625 +vt 0.638060 0.531250 +vt 0.638060 0.546875 +vt 0.638060 0.437500 +vt 0.638060 0.453125 +vt 0.649254 0.453125 +vt 0.649254 0.468750 +vt 0.649254 0.484375 +vt 0.649254 0.500000 +vt 0.652985 0.468750 +vt 0.652985 0.484375 +vt 0.649254 0.515625 +vt 0.652985 0.500000 +vt 0.652985 0.515625 +vt 0.652985 0.531250 +vt 0.652985 0.546875 +vt 0.649254 0.562500 +vt 0.652985 0.437500 +vt 0.652985 0.453125 +vt 0.645965 0.438018 +vt 0.641791 0.453125 +vt 0.641791 0.437500 +vt 0.649254 0.437500 +vt 0.645522 0.453125 +vt 0.645522 0.546875 +vt 0.641791 0.562500 +vt 0.641791 0.546875 +vt 0.649254 0.562500 +vt 0.649254 0.546875 +vt 0.645522 0.531250 +vt 0.641791 0.531250 +vt 0.649254 0.531250 +vt 0.645522 0.515625 +vt 0.641791 0.515625 +vt 0.645522 0.500000 +vt 0.641791 0.500000 +vt 0.641791 0.484375 +vt 0.645522 0.468750 +vt 0.641791 0.468750 +vt 0.645522 0.484375 +vt 0.638060 0.468750 +vt 0.638060 0.484375 +vt 0.638060 0.500000 +vt 0.638060 0.515625 +vt 0.638060 0.531250 +vt 0.638060 0.546875 +vt 0.638060 0.437500 +vt 0.638060 0.453125 +vt 0.649254 0.453125 +vt 0.649254 0.468750 +vt 0.649254 0.484375 +vt 0.649254 0.500000 +vt 0.652985 0.468750 +vt 0.652985 0.484375 +vt 0.649254 0.515625 +vt 0.652985 0.500000 +vt 0.652985 0.515625 +vt 0.652985 0.531250 +vt 0.652985 0.546875 +vt 0.652985 0.437500 +vt 0.652985 0.453125 +vt 0.645965 0.438018 +vt 0.641791 0.453125 +vt 0.641791 0.437500 +vt 0.649254 0.437500 +vt 0.645522 0.453125 +vt 0.645522 0.546875 +vt 0.641791 0.562500 +vt 0.641791 0.546875 +vt 0.649254 0.562500 +vt 0.649254 0.546875 +vt 0.645522 0.531250 +vt 0.641791 0.531250 +vt 0.649254 0.531250 +vt 0.645522 0.515625 +vt 0.641791 0.515625 +vt 0.645522 0.500000 +vt 0.641791 0.500000 +vt 0.641791 0.484375 +vt 0.645522 0.468750 +vt 0.641791 0.468750 +vt 0.645522 0.484375 +vt 0.638060 0.468750 +vt 0.638060 0.484375 +vt 0.638060 0.500000 +vt 0.638060 0.515625 +vt 0.638060 0.531250 +vt 0.638060 0.546875 +vt 0.638060 0.437500 +vt 0.638060 0.453125 +vt 0.649254 0.453125 +vt 0.649254 0.468750 +vt 0.649254 0.484375 +vt 0.649254 0.500000 +vt 0.652985 0.468750 +vt 0.652985 0.484375 +vt 0.649254 0.515625 +vt 0.652985 0.500000 +vt 0.652985 0.515625 +vt 0.652985 0.531250 +vt 0.652985 0.546875 +vt 0.652985 0.437500 +vt 0.652985 0.453125 +vt 0.645522 0.562500 +vt 0.645522 0.562500 +vn 0.0000 -0.7486 0.6630 +vn 0.7071 -0.7071 -0.0000 +vn 0.5293 -0.5294 0.6630 +vn -0.0000 -1.0000 -0.0000 +vn 0.5294 -0.5294 -0.6630 +vn -0.7071 -0.7071 -0.0000 +vn -0.5293 -0.5294 0.6630 +vn -0.5294 -0.5294 -0.6630 +vn -1.0000 0.0000 -0.0000 +vn -0.7486 -0.0000 0.6630 +vn -0.7486 -0.0000 -0.6630 +vn -0.5293 0.5294 0.6630 +vn -0.7071 0.7071 -0.0000 +vn 0.0000 0.7486 0.6630 +vn 0.0000 1.0000 -0.0000 +vn 0.7071 0.7071 -0.0000 +vn 0.5293 0.5294 0.6630 +vn 1.0000 0.0000 -0.0000 +vn 0.7486 -0.0000 0.6630 +vn 0.0000 -0.0000 1.0000 +vn 0.7486 -0.0000 -0.6630 +vn 0.5294 0.5294 -0.6630 +vn 0.0000 0.7486 -0.6630 +vn -0.0000 -0.0000 -1.0000 +vn -0.5294 0.5294 -0.6630 +vn 0.0000 -0.7486 -0.6630 +vn -0.6483 -0.3743 0.6630 +vn -0.2588 -0.9659 -0.0000 +vn -0.1938 -0.7231 0.6630 +vn -0.6483 -0.3743 -0.6630 +vn -0.8660 -0.5000 -0.0000 +vn -0.7231 0.1938 0.6630 +vn -0.7231 0.1938 -0.6630 +vn -0.9659 0.2588 -0.0000 +vn -0.5000 0.8660 -0.0000 +vn -0.3743 0.6483 0.6630 +vn -0.3743 0.6483 -0.6630 +vn 0.2588 0.9659 -0.0000 +vn 0.1938 0.7231 0.6630 +vn 0.8660 0.5000 -0.0000 +vn 0.6483 0.3743 0.6630 +vn 0.9659 -0.2588 -0.0000 +vn 0.7231 -0.1938 0.6630 +vn 0.5000 -0.8660 -0.0000 +vn 0.3743 -0.6483 0.6630 +vn -0.1938 -0.7231 -0.6630 +vn 0.3743 -0.6483 -0.6630 +vn 0.7231 -0.1938 -0.6630 +vn 0.6483 0.3743 -0.6630 +vn 0.1938 0.7231 -0.6630 +vn -0.8660 0.5000 -0.0000 +vn -0.7231 -0.1938 0.6630 +vn -0.6483 0.3743 0.6630 +vn -0.6483 0.3743 -0.6630 +vn -0.9659 -0.2588 -0.0000 +vn -0.2588 0.9659 -0.0000 +vn -0.1938 0.7231 0.6630 +vn -0.1938 0.7231 -0.6630 +vn 0.5000 0.8660 -0.0000 +vn 0.3743 0.6483 0.6630 +vn 0.3743 0.6483 -0.6630 +vn 0.9659 0.2588 -0.0000 +vn 0.7231 0.1938 0.6630 +vn 0.8660 -0.5000 -0.0000 +vn 0.6483 -0.3743 0.6630 +vn 0.1938 -0.7231 0.6630 +vn -0.5000 -0.8660 -0.0000 +vn -0.3743 -0.6483 0.6630 +vn 0.2588 -0.9659 -0.0000 +vn -0.7231 -0.1938 -0.6630 +vn -0.3743 -0.6483 -0.6630 +vn 0.1938 -0.7231 -0.6630 +vn 0.6483 -0.3743 -0.6630 +vn 0.7231 0.1938 -0.6630 +s 1 +f 433/647/76 440/648/77 439/649/78 +f 434/650/79 441/651/80 440/648/77 +f 449/652/81 433/653/76 450/654/82 +f 448/655/83 434/656/79 449/652/81 +f 427/657/84 450/654/82 426/658/85 +f 448/655/83 427/657/84 428/659/86 +f 444/660/87 427/657/84 426/658/85 +f 443/661/88 438/662/89 437/663/90 +f 446/664/91 438/662/89 445/665/92 +f 439/649/78 431/666/93 432/667/94 +f 431/666/93 445/665/92 432/667/94 +f 432/667/94 445/665/92 425/668/95 +f 445/665/92 438/662/89 425/669/95 +f 444/660/87 425/670/95 438/662/89 +f 425/671/95 444/660/87 426/658/85 +f 425/672/95 426/658/85 450/654/82 +f 450/654/82 433/653/76 425/673/95 +f 439/649/78 425/674/95 433/647/76 +f 425/675/95 439/649/78 432/667/94 +f 440/648/77 430/676/96 431/666/93 +f 446/664/91 430/676/96 447/677/97 +f 437/663/90 447/677/97 436/678/98 +f 429/679/99 447/677/97 430/676/96 +f 447/677/97 429/680/99 436/678/98 +f 442/681/100 437/663/90 436/678/98 +f 427/657/84 442/681/100 428/659/86 +f 429/682/99 442/681/100 436/678/98 +f 428/659/86 442/681/100 429/683/99 +f 428/659/86 429/684/99 448/655/83 +f 448/655/83 429/685/99 435/686/101 +f 441/651/80 435/687/101 429/688/99 +f 429/689/99 430/676/96 441/651/80 +f 459/690/89 466/691/88 465/692/87 +f 460/693/90 467/694/100 466/691/88 +f 475/695/91 459/696/89 476/697/92 +f 474/698/97 460/699/90 475/695/91 +f 453/700/93 476/697/92 452/701/94 +f 474/698/97 453/700/93 454/702/96 +f 470/703/78 453/700/93 452/701/94 +f 469/704/77 464/705/76 463/706/79 +f 472/707/81 464/705/76 471/708/82 +f 465/692/87 457/709/84 458/710/85 +f 457/709/84 471/708/82 458/710/85 +f 458/710/85 471/708/82 451/711/95 +f 471/708/82 464/705/76 451/712/95 +f 470/703/78 451/713/95 464/705/76 +f 451/714/95 470/703/78 452/701/94 +f 451/715/95 452/701/94 476/697/92 +f 476/697/92 459/696/89 451/716/95 +f 465/692/87 451/717/95 459/690/89 +f 451/718/95 465/692/87 458/710/85 +f 466/691/88 456/719/86 457/709/84 +f 472/707/81 456/719/86 473/720/83 +f 463/706/79 473/720/83 462/721/101 +f 455/722/99 473/720/83 456/719/86 +f 473/720/83 455/723/99 462/721/101 +f 468/724/80 463/706/79 462/721/101 +f 453/700/93 468/724/80 454/702/96 +f 455/725/99 468/724/80 462/721/101 +f 454/702/96 468/724/80 455/726/99 +f 454/702/96 455/727/99 474/698/97 +f 474/698/97 455/728/99 461/729/98 +f 467/694/100 461/730/98 455/731/99 +f 455/732/99 456/719/86 467/694/100 +f 485/733/102 492/734/103 491/735/104 +f 487/736/105 492/734/103 486/737/106 +f 502/738/107 486/739/106 485/740/102 +f 500/741/108 486/739/106 501/742/109 +f 479/743/110 502/738/107 478/744/111 +f 500/741/108 479/743/110 480/745/112 +f 495/746/113 478/744/111 496/747/114 +f 489/748/115 496/747/114 490/749/116 +f 498/750/117 490/749/116 497/751/118 +f 491/735/104 483/752/119 484/753/120 +f 484/753/120 498/750/117 497/751/118 +f 484/753/120 497/751/118 477/754/95 +f 497/751/118 490/749/116 477/755/95 +f 496/747/114 477/756/95 490/749/116 +f 477/757/95 496/747/114 478/744/111 +f 477/758/95 478/744/111 502/738/107 +f 502/738/107 485/740/102 477/759/95 +f 491/735/104 477/760/95 485/733/102 +f 477/761/95 491/735/104 484/753/120 +f 483/752/119 493/762/121 482/763/122 +f 499/764/123 483/752/119 482/763/122 +f 489/748/115 499/764/123 488/765/124 +f 481/766/99 499/764/123 482/763/122 +f 499/764/123 481/767/99 488/765/124 +f 494/768/125 489/748/115 488/765/124 +f 480/745/112 495/746/113 494/768/125 +f 481/769/99 494/768/125 488/765/124 +f 480/745/112 494/768/125 481/770/99 +f 480/745/112 481/771/99 500/741/108 +f 500/741/108 481/772/99 487/773/105 +f 493/762/121 487/736/105 481/774/99 +f 481/775/99 482/763/122 493/762/121 +f 511/776/116 518/777/113 517/778/114 +f 513/779/124 518/777/113 512/780/115 +f 528/781/118 512/782/115 511/783/116 +f 526/784/123 512/782/115 527/785/117 +f 505/786/119 528/781/118 504/787/120 +f 526/784/123 505/786/119 506/788/122 +f 521/789/103 504/787/120 522/790/104 +f 515/791/106 522/790/104 516/792/102 +f 524/793/109 516/792/102 523/794/107 +f 517/778/114 509/795/110 510/796/111 +f 510/796/111 524/793/109 523/794/107 +f 510/796/111 523/794/107 503/797/95 +f 523/794/107 516/792/102 503/798/95 +f 522/790/104 503/799/95 516/792/102 +f 503/800/95 522/790/104 504/787/120 +f 503/801/95 504/787/120 528/781/118 +f 528/781/118 511/783/116 503/802/95 +f 517/778/114 503/803/95 511/776/116 +f 503/804/95 517/778/114 510/796/111 +f 509/795/110 519/805/125 508/806/112 +f 525/807/108 509/795/110 508/806/112 +f 515/791/106 525/807/108 514/808/105 +f 507/809/99 525/807/108 508/806/112 +f 525/807/108 507/810/99 514/808/105 +f 520/811/121 515/791/106 514/808/105 +f 506/788/122 521/789/103 520/811/121 +f 507/812/99 520/811/121 514/808/105 +f 506/788/122 520/811/121 507/813/99 +f 506/788/122 507/814/99 526/784/123 +f 526/784/123 507/815/99 513/816/124 +f 519/805/125 513/779/124 507/817/99 +f 507/818/99 508/806/112 519/805/125 +f 538/819/126 543/820/127 537/821/128 +f 539/822/129 544/823/130 538/819/126 +f 553/824/131 537/825/128 554/826/132 +f 539/827/129 553/824/131 552/828/133 +f 531/829/134 554/826/132 530/830/135 +f 532/831/136 553/824/131 531/829/134 +f 547/832/137 530/830/135 548/833/138 +f 541/834/139 548/833/138 542/835/140 +f 549/836/141 541/834/139 542/835/140 +f 543/820/127 535/837/142 536/838/143 +f 536/838/143 550/839/144 549/836/141 +f 536/838/143 549/836/141 529/840/95 +f 549/836/141 542/835/140 529/841/95 +f 548/833/138 529/842/95 542/835/140 +f 529/843/95 548/833/138 530/830/135 +f 529/844/95 530/830/135 554/826/132 +f 554/826/132 537/825/128 529/845/95 +f 543/820/127 529/846/95 537/821/128 +f 529/847/95 543/820/127 536/838/143 +f 535/837/142 545/848/145 534/849/146 +f 551/850/147 535/837/142 534/849/146 +f 541/834/139 551/850/147 540/851/148 +f 533/852/99 551/850/147 534/849/146 +f 551/850/147 533/853/99 540/851/148 +f 546/854/149 541/834/139 540/851/148 +f 531/829/134 546/854/149 532/831/136 +f 533/855/99 546/854/149 540/851/148 +f 532/831/136 546/854/149 533/856/99 +f 532/831/136 533/857/99 552/828/133 +f 552/828/133 533/858/99 539/827/129 +f 545/848/145 539/822/129 533/859/99 +f 533/860/99 534/849/146 545/848/145 +f 564/861/139 569/862/138 563/863/140 +f 565/864/148 570/865/137 564/861/139 +f 579/866/144 563/867/140 580/868/141 +f 565/869/148 579/866/144 578/870/147 +f 557/871/142 580/868/141 556/872/143 +f 558/873/146 579/866/144 557/871/142 +f 573/874/130 556/872/143 574/875/127 +f 567/876/126 574/875/127 568/877/128 +f 575/878/132 567/876/126 568/877/128 +f 569/862/138 561/879/134 562/880/135 +f 562/880/135 576/881/131 575/878/132 +f 562/880/135 575/878/132 555/882/95 +f 575/878/132 568/877/128 555/883/95 +f 574/875/127 555/884/95 568/877/128 +f 555/885/95 574/875/127 556/872/143 +f 555/886/95 556/872/143 580/868/141 +f 580/868/141 563/867/140 555/887/95 +f 569/862/138 555/888/95 563/863/140 +f 555/889/95 569/862/138 562/880/135 +f 561/879/134 571/890/149 560/891/136 +f 577/892/133 561/879/134 560/891/136 +f 567/876/126 577/892/133 566/893/129 +f 559/894/99 577/892/133 560/891/136 +f 577/892/133 559/895/99 566/893/129 +f 572/896/145 567/876/126 566/893/129 +f 557/871/142 572/896/145 558/873/146 +f 559/897/99 572/896/145 566/893/129 +f 558/873/146 572/896/145 559/898/99 +f 558/873/146 559/899/99 578/870/147 +f 578/870/147 559/900/99 565/869/148 +f 571/890/149 565/864/148 559/901/99 +f 559/902/99 560/891/136 571/890/149 +f 433/647/76 434/650/79 440/648/77 +f 434/650/79 435/687/101 441/651/80 +f 449/652/81 434/656/79 433/653/76 +f 448/655/83 435/686/101 434/656/79 +f 427/657/84 449/652/81 450/654/82 +f 448/655/83 449/652/81 427/657/84 +f 444/660/87 443/661/88 427/657/84 +f 443/661/88 444/660/87 438/662/89 +f 446/664/91 437/663/90 438/662/89 +f 439/649/78 440/648/77 431/666/93 +f 431/666/93 446/664/91 445/665/92 +f 440/648/77 441/651/80 430/676/96 +f 446/664/91 431/666/93 430/676/96 +f 437/663/90 446/664/91 447/677/97 +f 442/681/100 443/661/88 437/663/90 +f 427/657/84 443/661/88 442/681/100 +f 459/690/89 460/693/90 466/691/88 +f 460/693/90 461/730/98 467/694/100 +f 475/695/91 460/699/90 459/696/89 +f 474/698/97 461/729/98 460/699/90 +f 453/700/93 475/695/91 476/697/92 +f 474/698/97 475/695/91 453/700/93 +f 470/703/78 469/704/77 453/700/93 +f 469/704/77 470/703/78 464/705/76 +f 472/707/81 463/706/79 464/705/76 +f 465/692/87 466/691/88 457/709/84 +f 457/709/84 472/707/81 471/708/82 +f 466/691/88 467/694/100 456/719/86 +f 472/707/81 457/709/84 456/719/86 +f 463/706/79 472/707/81 473/720/83 +f 468/724/80 469/704/77 463/706/79 +f 453/700/93 469/704/77 468/724/80 +f 485/733/102 486/737/106 492/734/103 +f 487/736/105 493/762/121 492/734/103 +f 502/738/107 501/742/109 486/739/106 +f 500/741/108 487/773/105 486/739/106 +f 479/743/110 501/742/109 502/738/107 +f 500/741/108 501/742/109 479/743/110 +f 495/746/113 479/743/110 478/744/111 +f 489/748/115 495/746/113 496/747/114 +f 498/750/117 489/748/115 490/749/116 +f 491/735/104 492/734/103 483/752/119 +f 484/753/120 483/752/119 498/750/117 +f 483/752/119 492/734/103 493/762/121 +f 499/764/123 498/750/117 483/752/119 +f 489/748/115 498/750/117 499/764/123 +f 494/768/125 495/746/113 489/748/115 +f 480/745/112 479/743/110 495/746/113 +f 511/776/116 512/780/115 518/777/113 +f 513/779/124 519/805/125 518/777/113 +f 528/781/118 527/785/117 512/782/115 +f 526/784/123 513/816/124 512/782/115 +f 505/786/119 527/785/117 528/781/118 +f 526/784/123 527/785/117 505/786/119 +f 521/789/103 505/786/119 504/787/120 +f 515/791/106 521/789/103 522/790/104 +f 524/793/109 515/791/106 516/792/102 +f 517/778/114 518/777/113 509/795/110 +f 510/796/111 509/795/110 524/793/109 +f 509/795/110 518/777/113 519/805/125 +f 525/807/108 524/793/109 509/795/110 +f 515/791/106 524/793/109 525/807/108 +f 520/811/121 521/789/103 515/791/106 +f 506/788/122 505/786/119 521/789/103 +f 538/819/126 544/823/130 543/820/127 +f 539/822/129 545/848/145 544/823/130 +f 553/824/131 538/903/126 537/825/128 +f 539/827/129 538/903/126 553/824/131 +f 531/829/134 553/824/131 554/826/132 +f 532/831/136 552/828/133 553/824/131 +f 547/832/137 531/829/134 530/830/135 +f 541/834/139 547/832/137 548/833/138 +f 549/836/141 550/839/144 541/834/139 +f 543/820/127 544/823/130 535/837/142 +f 536/838/143 535/837/142 550/839/144 +f 535/837/142 544/823/130 545/848/145 +f 551/850/147 550/839/144 535/837/142 +f 541/834/139 550/839/144 551/850/147 +f 546/854/149 547/832/137 541/834/139 +f 531/829/134 547/832/137 546/854/149 +f 564/861/139 570/865/137 569/862/138 +f 565/864/148 571/890/149 570/865/137 +f 579/866/144 564/904/139 563/867/140 +f 565/869/148 564/904/139 579/866/144 +f 557/871/142 579/866/144 580/868/141 +f 558/873/146 578/870/147 579/866/144 +f 573/874/130 557/871/142 556/872/143 +f 567/876/126 573/874/130 574/875/127 +f 575/878/132 576/881/131 567/876/126 +f 569/862/138 570/865/137 561/879/134 +f 562/880/135 561/879/134 576/881/131 +f 561/879/134 570/865/137 571/890/149 +f 577/892/133 576/881/131 561/879/134 +f 567/876/126 576/881/131 577/892/133 +f 572/896/145 573/874/130 567/876/126 +f 557/871/142 573/874/130 572/896/145 +o Hammer +v 0.625000 0.375000 -2.125000 +v 0.625000 0.551777 -2.051777 +v 0.625000 0.625000 -1.875000 +v 0.625000 0.551777 -1.698223 +v 0.625000 0.375000 -1.625000 +v 0.625000 0.198223 -1.698223 +v 0.625000 0.125000 -1.875000 +v 0.625000 0.198223 -2.051777 +v 1.000000 0.375000 -2.125000 +v 1.000000 0.551777 -2.051777 +v 1.000000 0.625000 -1.875000 +v 1.000000 0.551777 -1.698223 +v 1.000000 0.375000 -1.625000 +v 1.000000 0.198223 -1.698223 +v 1.000000 0.125000 -1.875000 +v 1.000000 0.198223 -2.051777 +v 0.906250 0.500000 -1.750000 +v 0.968750 0.500000 -1.750000 +v 0.906250 0.500000 -2.000000 +v 0.968750 0.500000 -2.000000 +v 0.906250 1.375000 -1.750000 +v 0.968750 1.375000 -1.750000 +v 0.906250 1.375000 -2.000000 +v 0.968750 1.375000 -2.000000 +v 0.906250 1.500000 -2.000000 +v 0.906250 1.500000 -1.625000 +v 0.968750 1.500000 -1.625000 +v 0.968750 1.500000 -2.000000 +v -0.625000 0.375000 -2.125000 +v -0.625000 0.551777 -2.051777 +v -0.625000 0.625000 -1.875000 +v -0.625000 0.551777 -1.698223 +v -0.625000 0.375000 -1.625000 +v -0.625000 0.198223 -1.698223 +v -0.625000 0.125000 -1.875000 +v -0.625000 0.198223 -2.051777 +v -1.000000 0.375000 -2.125000 +v -1.000000 0.551777 -2.051777 +v -1.000000 0.625000 -1.875000 +v -1.000000 0.551777 -1.698223 +v -1.000000 0.375000 -1.625000 +v -1.000000 0.198223 -1.698223 +v -1.000000 0.125000 -1.875000 +v -1.000000 0.198223 -2.051777 +v -0.906250 0.500000 -1.750000 +v -0.968750 0.500000 -1.750000 +v -0.906250 0.500000 -2.000000 +v -0.968750 0.500000 -2.000000 +v -0.906250 1.375000 -1.750000 +v -0.968750 1.375000 -1.750000 +v -0.906250 1.375000 -2.000000 +v -0.968750 1.375000 -2.000000 +v -0.906250 1.500000 -2.000000 +v -0.906250 1.500000 -1.625000 +v -0.968750 1.500000 -1.625000 +v -0.968750 1.500000 -2.000000 +vt 0.735075 0.187432 +vt 0.727628 0.156250 +vt 0.735075 0.125068 +vt 0.679105 0.421875 +vt 0.690298 0.437500 +vt 0.679105 0.437500 +vt 0.682836 0.406250 +vt 0.690298 0.421875 +vt 0.690298 0.296875 +vt 0.682836 0.296875 +vt 0.701493 0.296875 +vt 0.694030 0.406250 +vt 0.694030 0.296875 +vt 0.690298 0.406250 +vt 0.679105 0.406250 +vt 0.679105 0.296875 +vt 0.701493 0.406250 +vt 0.694030 0.421875 +vt 0.675373 0.421875 +vt 0.675373 0.437500 +vt 0.729809 0.178299 +vt 0.735075 0.187432 +vt 0.735075 0.125068 +vt 0.690298 0.437500 +vt 0.679105 0.421875 +vt 0.679105 0.437500 +vt 0.682836 0.406250 +vt 0.690298 0.421875 +vt 0.690298 0.406250 +vt 0.690298 0.296875 +vt 0.682836 0.296875 +vt 0.694030 0.406250 +vt 0.701493 0.296875 +vt 0.694030 0.296875 +vt 0.679105 0.406250 +vt 0.679105 0.296875 +vt 0.694030 0.421875 +vt 0.701493 0.406250 +vt 0.675373 0.421875 +vt 0.675373 0.437500 +vt 0.742521 0.156250 +vt 0.740340 0.178299 +vt 0.729809 0.178299 +vt 0.729809 0.134201 +vt 0.740340 0.134201 +vt 0.705224 0.421875 +vt 0.740340 0.178299 +vt 0.742521 0.156250 +vt 0.740340 0.134201 +vt 0.729809 0.134201 +vt 0.727628 0.156250 +vt 0.705224 0.421875 +vt 0.727612 0.140625 +vt 0.716418 0.125000 +vt 0.727612 0.125000 +vt 0.727612 0.234375 +vt 0.716418 0.218750 +vt 0.727612 0.218750 +vt 0.727612 0.203125 +vt 0.716418 0.187500 +vt 0.727612 0.187500 +vt 0.727612 0.171875 +vt 0.716418 0.156250 +vt 0.727612 0.156250 +vt 0.716418 0.140625 +vt 0.727612 0.250000 +vt 0.716418 0.234375 +vt 0.716418 0.203125 +vt 0.716418 0.171875 +vt 0.716418 0.125000 +vt 0.727612 0.140625 +vt 0.727612 0.125000 +vt 0.716418 0.218750 +vt 0.727612 0.234375 +vt 0.727612 0.218750 +vt 0.716418 0.187500 +vt 0.727612 0.203125 +vt 0.727612 0.187500 +vt 0.716418 0.156250 +vt 0.727612 0.171875 +vt 0.727612 0.156250 +vt 0.716418 0.140625 +vt 0.716418 0.234375 +vt 0.727612 0.250000 +vt 0.716418 0.203125 +vt 0.716418 0.171875 +vt 0.716418 0.250000 +vt 0.716418 0.250000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 -0.7071 -0.7071 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.7071 -0.7071 +s off +f 591/905/150 593/906/150 595/907/150 +f 607/908/151 605/909/151 606/910/151 +f 602/911/150 608/912/150 607/908/150 +f 600/913/150 602/911/150 598/914/150 +f 597/915/152 603/916/152 599/917/152 +f 599/917/153 604/918/153 600/913/153 +f 598/914/154 601/919/154 597/920/154 +f 601/921/152 605/922/152 603/916/152 +f 603/916/153 608/912/153 604/918/153 +f 602/923/155 606/910/155 601/924/155 +f 620/925/152 619/926/152 623/927/152 +f 633/928/151 635/929/151 634/930/151 +f 630/931/152 636/932/152 632/933/152 +f 630/931/152 628/934/152 626/935/152 +f 631/936/150 625/937/150 627/938/150 +f 632/933/153 627/938/153 628/934/153 +f 629/939/154 626/935/154 625/940/154 +f 633/941/150 629/942/150 631/936/150 +f 636/932/153 631/936/153 632/933/153 +f 634/930/155 630/943/155 629/944/155 +f 589/945/150 590/946/150 591/905/150 +f 591/905/150 592/947/150 593/906/150 +f 593/906/150 594/948/150 595/907/150 +f 595/907/150 596/949/150 589/945/150 +f 589/945/150 591/905/150 595/907/150 +f 607/908/151 608/912/151 605/909/151 +f 602/911/150 604/918/150 608/912/150 +f 600/913/150 604/918/150 602/911/150 +f 597/915/152 601/921/152 603/916/152 +f 599/917/153 603/916/153 604/918/153 +f 598/914/154 602/911/154 601/919/154 +f 601/921/152 606/950/152 605/922/152 +f 603/916/153 605/922/153 608/912/153 +f 602/923/155 607/908/155 606/910/155 +f 619/926/152 618/951/152 623/927/152 +f 618/951/152 617/952/152 623/927/152 +f 617/952/152 624/953/152 623/927/152 +f 623/927/152 622/954/152 621/955/152 +f 621/955/152 620/925/152 623/927/152 +f 633/928/151 636/932/151 635/929/151 +f 630/931/152 635/929/152 636/932/152 +f 630/931/152 632/933/152 628/934/152 +f 631/936/150 629/942/150 625/937/150 +f 632/933/153 631/936/153 627/938/153 +f 629/939/154 630/931/154 626/935/154 +f 633/941/150 634/956/150 629/942/150 +f 636/932/153 633/941/153 631/936/153 +f 634/930/155 635/929/155 630/943/155 +s 1 +f 588/957/156 595/958/157 587/959/157 +f 586/960/155 593/961/154 585/962/154 +f 584/963/158 591/964/151 583/965/151 +f 582/966/159 589/967/153 581/968/153 +f 581/968/153 596/969/156 588/957/156 +f 587/970/157 594/971/155 586/960/155 +f 585/962/154 592/972/158 584/963/158 +f 583/965/151 590/973/159 582/966/159 +f 623/974/157 616/975/156 615/976/157 +f 621/977/154 614/978/155 613/979/154 +f 619/980/151 612/981/158 611/982/151 +f 617/983/153 610/984/159 609/985/153 +f 624/986/156 609/985/153 616/975/156 +f 622/987/155 615/988/157 614/978/155 +f 620/989/158 613/979/154 612/981/158 +f 618/990/159 611/982/151 610/984/159 +f 588/957/156 596/969/156 595/958/157 +f 586/960/155 594/971/155 593/961/154 +f 584/963/158 592/972/158 591/964/151 +f 582/966/159 590/973/159 589/967/153 +f 581/968/153 589/967/153 596/969/156 +f 587/970/157 595/991/157 594/971/155 +f 585/962/154 593/961/154 592/972/158 +f 583/965/151 591/964/151 590/973/159 +f 623/974/157 624/986/156 616/975/156 +f 621/977/154 622/987/155 614/978/155 +f 619/980/151 620/989/158 612/981/158 +f 617/983/153 618/990/159 610/984/159 +f 624/986/156 617/983/153 609/985/153 +f 622/987/155 623/992/157 615/988/157 +f 620/989/158 621/977/154 613/979/154 +f 618/990/159 619/980/151 611/982/151 +o Trigger +v -0.125000 -0.875000 -1.250000 +v 0.125000 -0.875000 -1.250000 +v -0.125000 -0.875000 -1.500000 +v 0.125000 -0.875000 -1.500000 +v -0.125000 -1.250000 -1.250000 +v 0.125000 -1.250000 -1.250000 +v -0.125000 -1.250000 -1.500000 +v 0.125000 -1.250000 -1.500000 +v -0.125000 -2.000000 -1.750000 +v 0.125000 -2.000000 -1.750000 +v 0.125000 -1.500000 -1.750000 +v -0.125000 -1.500000 -1.750000 +v 0.125000 -2.000000 -1.000000 +v -0.125000 -2.000000 -1.000000 +v 0.125000 -1.500000 -1.000000 +v -0.125000 -1.500000 -1.000000 +v -0.125000 -1.500000 -0.875000 +v -0.125000 -1.250000 -1.125000 +v 0.125000 -1.250000 -1.125000 +v 0.125000 -1.500000 -0.875000 +v -0.125000 -1.250000 -1.625000 +v -0.125000 -1.500000 -1.875000 +v 0.125000 -1.500000 -1.875000 +v 0.125000 -1.250000 -1.625000 +v -0.125000 -2.250000 -1.125000 +v -0.125000 -2.000000 -0.875000 +v 0.125000 -2.000000 -0.875000 +v 0.125000 -2.250000 -1.125000 +v 0.125000 -2.250000 -1.625000 +v 0.125000 -2.000000 -1.875000 +v -0.125000 -2.000000 -1.875000 +v -0.125000 -2.250000 -1.625000 +v -0.125000 -1.375000 -1.125000 +v 0.125000 -1.375000 -1.125000 +v -0.125000 -1.375000 -1.625000 +v 0.125000 -1.375000 -1.625000 +v -0.125000 -2.125000 -1.125000 +v 0.125000 -2.125000 -1.125000 +v 0.125000 -2.125000 -1.625000 +v -0.125000 -2.125000 -1.625000 +vt 0.119403 0.828125 +vt 0.126866 0.781250 +vt 0.126866 0.828125 +vt 0.104478 0.828125 +vt 0.111940 0.781250 +vt 0.111940 0.828125 +vt 0.119403 0.781250 +vt 0.134328 0.781250 +vt 0.134328 0.828125 +vt 0.041045 0.859375 +vt 0.026119 0.875000 +vt 0.026119 0.859375 +vt 0.078358 0.828125 +vt 0.093284 0.812500 +vt 0.093284 0.828125 +vt 0.026119 0.828125 +vt 0.041045 0.812500 +vt 0.041045 0.828125 +vt 0.093284 0.859375 +vt 0.078358 0.875000 +vt 0.078358 0.859375 +vt 0.067164 0.859375 +vt 0.052239 0.875000 +vt 0.052239 0.859375 +vt 0.052239 0.828125 +vt 0.067164 0.812500 +vt 0.067164 0.828125 +vt 0.000000 0.828125 +vt 0.014925 0.812500 +vt 0.014925 0.828125 +vt 0.014925 0.859375 +vt 0.000000 0.875000 +vt 0.000000 0.859375 +vt 0.018657 0.875000 +vt 0.022388 0.875000 +vt 0.022388 0.812500 +vt 0.044776 0.875000 +vt 0.048507 0.812500 +vt 0.044776 0.812500 +vt 0.070896 0.875000 +vt 0.074627 0.875000 +vt 0.074627 0.812500 +vt 0.104478 0.859375 +vt 0.097015 0.875000 +vt 0.100746 0.812500 +vt 0.097015 0.812500 +vt 0.104478 0.781250 +vt 0.041045 0.875000 +vt 0.078358 0.812500 +vt 0.026119 0.812500 +vt 0.093284 0.875000 +vt 0.067164 0.875000 +vt 0.052239 0.812500 +vt 0.000000 0.812500 +vt 0.014925 0.875000 +vt 0.018657 0.812500 +vt 0.048507 0.875000 +vt 0.070896 0.812500 +vt 0.100746 0.875000 +vt 0.104478 0.828125 +vt 0.014925 0.781250 +vt 0.000000 0.781250 +vt 0.022388 0.781250 +vt 0.018657 0.781250 +vt 0.026119 0.781250 +vt 0.044776 0.781250 +vt 0.052239 0.781250 +vt 0.070896 0.781250 +vt 0.093284 0.781250 +vt 0.078358 0.781250 +vt 0.100746 0.781250 +vt 0.041045 0.781250 +vt 0.048507 0.781250 +vt 0.067164 0.781250 +vt 0.074627 0.781250 +vt 0.097015 0.781250 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 0.0000 1.0000 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.9239 -0.3827 +vn 0.0000 0.9239 0.3827 +vn 0.0000 0.3827 -0.9239 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.9239 -0.3827 +vn 0.0000 0.3827 0.9239 +vn 0.0000 -0.3827 0.9239 +s off +f 640/993/160 643/994/160 639/995/160 +f 637/996/161 642/997/161 638/998/161 +f 638/998/162 644/999/162 640/993/162 +f 639/995/163 641/1000/163 637/1001/163 +f 653/1002/163 650/1003/163 662/1004/163 +f 659/1005/162 646/1006/162 666/1007/162 +f 663/1008/162 651/1009/162 656/1010/162 +f 667/1011/163 648/1012/163 658/1013/163 +f 657/1014/163 669/1015/163 654/1016/163 +f 655/1017/162 672/1018/162 660/1019/162 +f 665/1020/162 674/1021/162 664/1022/162 +f 661/1023/163 676/1024/163 668/1025/163 +f 673/1026/163 662/1004/163 650/1027/163 +f 664/1022/162 649/1028/162 663/1008/162 +f 654/1016/163 652/1029/163 653/1002/163 +f 670/1030/162 656/1010/162 651/1031/162 +f 671/1032/163 658/1013/163 648/1033/163 +f 660/1019/162 647/1034/162 659/1005/162 +f 668/1035/163 645/1036/163 667/1011/163 +f 675/1037/162 666/1007/162 646/1038/162 +f 640/993/160 644/999/160 643/994/160 +f 637/996/161 641/1039/161 642/997/161 +f 638/998/162 642/997/162 644/999/162 +f 639/995/163 643/994/163 641/1000/163 +f 653/1002/163 652/1040/163 650/1003/163 +f 659/1005/162 647/1041/162 646/1006/162 +f 663/1008/162 649/1042/162 651/1009/162 +f 667/1011/163 645/1043/163 648/1012/163 +f 657/1014/163 671/1044/163 669/1015/163 +f 655/1017/162 670/1045/162 672/1018/162 +f 665/1020/162 675/1046/162 674/1021/162 +f 661/1023/163 673/1047/163 676/1024/163 +f 673/1026/163 661/1023/163 662/1004/163 +f 664/1022/162 674/1048/162 649/1028/162 +f 654/1016/163 669/1049/163 652/1029/163 +f 670/1030/162 655/1017/162 656/1010/162 +f 671/1032/163 657/1014/163 658/1013/163 +f 660/1019/162 672/1050/162 647/1034/162 +f 668/1035/163 676/1051/163 645/1036/163 +f 675/1037/162 665/1052/162 666/1007/162 +s 1 +f 660/1019/164 654/1016/165 655/1017/165 +f 659/1005/166 667/1011/167 658/1013/166 +f 661/1023/168 665/1020/169 664/1022/168 +f 656/1010/170 654/1016/165 653/1002/170 +f 658/1013/166 660/1019/164 659/1005/166 +f 664/1022/168 662/1004/171 661/1023/168 +f 668/1035/169 666/1007/167 665/1052/169 +f 653/1002/170 663/1008/171 656/1010/170 +f 673/1053/164 675/1046/165 676/1054/165 +f 650/1055/166 674/1048/164 673/1056/164 +f 650/1057/166 651/1009/167 649/1042/166 +f 652/1058/167 670/1030/169 651/1031/167 +f 669/1059/169 672/1018/168 670/1045/169 +f 671/1060/168 647/1034/171 672/1050/168 +f 645/1061/170 647/1041/171 648/1062/171 +f 646/1038/170 676/1063/165 675/1037/165 +f 660/1019/164 657/1014/164 654/1016/165 +f 659/1005/166 666/1007/167 667/1011/167 +f 661/1023/168 668/1025/169 665/1020/169 +f 656/1010/170 655/1017/165 654/1016/165 +f 658/1013/166 657/1014/164 660/1019/164 +f 664/1022/168 663/1008/171 662/1004/171 +f 668/1035/169 667/1011/167 666/1007/167 +f 653/1002/170 662/1004/171 663/1008/171 +f 673/1053/164 674/1021/164 675/1046/165 +f 650/1055/166 649/1028/166 674/1048/164 +f 650/1057/166 652/1064/167 651/1009/167 +f 652/1058/167 669/1065/169 670/1030/169 +f 669/1059/169 671/1066/168 672/1018/168 +f 671/1060/168 648/1067/171 647/1034/171 +f 645/1061/170 646/1006/170 647/1041/171 +f 646/1038/170 645/1068/170 676/1063/165 +o Grip +v 0.000000 1.000000 0.000000 +v -0.500000 0.866025 0.000000 +v -0.866025 0.500000 0.000000 +v -1.000000 -0.000000 -0.000000 +v -0.866025 -0.500000 -0.000000 +v -0.500000 -0.866025 -0.000000 +v 0.000000 -1.000000 -0.000000 +v 0.500000 -0.866026 -0.000000 +v 0.866025 -0.500000 -0.000000 +v 1.000000 -0.000000 -0.000000 +v 0.866026 0.499999 0.000000 +v 0.500000 0.866025 0.000000 +v -0.500000 0.866025 -0.500000 +v 0.000000 1.000000 -0.500000 +v -0.866025 0.500000 -0.500000 +v -1.000000 -0.000000 -0.500000 +v -0.866025 -0.500000 -0.500000 +v -0.500000 -0.866025 -0.500000 +v 0.000000 -1.000000 -0.500000 +v 0.500000 -0.866026 -0.500000 +v 0.866025 -0.500000 -0.500000 +v 1.000000 -0.000000 -0.500000 +v 0.866026 0.500000 -0.500000 +v 0.500000 0.866025 -0.500000 +v 0.875000 -0.875000 -0.125000 +v 0.875000 0.125000 -0.125000 +v 0.875000 -0.875000 -0.375000 +v 0.875000 0.125000 -0.375000 +v 1.125000 -0.875000 -0.125000 +v 1.125000 -0.125000 -0.125000 +v 1.125000 -0.875000 -0.375000 +v 1.125000 -0.125000 -0.375000 +v -1.125000 -0.125000 -0.125000 +v 0.875000 -1.125000 -0.125000 +v -1.125000 -0.875000 -0.125000 +v 1.125000 -1.125000 -0.125000 +v 0.875000 -0.875000 6.125000 +v 1.125000 -0.875000 6.125000 +v 0.875000 -1.125000 6.125000 +v 1.125000 -1.125000 6.125000 +v 0.875000 -0.875000 6.375000 +v 1.125000 -0.875000 6.375000 +v -1.125000 -0.125000 -0.375000 +v -1.125000 -0.875000 -0.375000 +v 0.875000 0.625000 6.125000 +v 1.125000 0.625000 6.125000 +v 0.875000 0.625000 6.375000 +v 1.125000 0.625000 6.375000 +v 0.625000 0.875000 6.125000 +v 0.625000 0.875000 6.375000 +v -0.625000 0.875000 6.125000 +v -0.625000 0.875000 6.375000 +v 0.625000 1.125000 6.125000 +v 0.625000 1.125000 6.375000 +v -0.625000 1.125000 6.125000 +v -0.625000 1.125000 6.375000 +v -0.875000 -0.875000 -0.125000 +v -0.875000 0.125000 -0.125000 +v -0.875000 -0.875000 -0.375000 +v -0.875000 0.125000 -0.375000 +v -1.125000 -1.125000 -0.125000 +v -0.875000 -1.125000 -0.125000 +v -1.125000 -0.875000 6.125000 +v -0.875000 -0.875000 6.125000 +v -1.125000 -1.125000 6.125000 +v -0.875000 -1.125000 6.125000 +v -1.125000 -0.875000 6.375000 +v -0.875000 -0.875000 6.375000 +v -1.125000 0.625000 6.125000 +v -0.875000 0.625000 6.125000 +v -1.125000 0.625000 6.375000 +v -0.875000 0.625000 6.375000 +v -0.875000 -0.375000 -0.500000 +v 0.875000 -0.375000 -0.500000 +v -0.875000 0.375000 -0.500000 +v 0.875000 0.375000 -0.500000 +v -0.375000 0.875000 -0.500000 +v -0.375000 -0.875000 -0.500000 +v 0.375000 0.875000 -0.500000 +v 0.375000 -0.875000 -0.500000 +v -0.875000 -0.375000 -3.000000 +v 0.875000 -0.375000 -3.000000 +v -0.875000 0.375000 -3.000000 +v 0.875000 0.375000 -3.000000 +v -0.375000 0.875000 -3.000000 +v -0.375000 -0.875000 -3.000000 +v 0.375000 0.875000 -3.000000 +v 0.375000 -0.875000 -3.000000 +v -0.875000 -1.625000 -4.875000 +v 0.875000 -1.625000 -4.875000 +v -0.875000 -0.875000 -5.250000 +v 0.875000 -0.875000 -5.250000 +v -0.375000 -0.375000 -5.500000 +v -0.375000 -2.125000 -4.625000 +v 0.375000 -0.375000 -5.500000 +v 0.375000 -2.125000 -4.625000 +v -0.875000 -2.875000 -5.750000 +v 0.875000 -2.875000 -5.750000 +v -0.875000 -2.125000 -6.500000 +v 0.875000 -2.125000 -6.500000 +v -0.375000 -1.625000 -7.000000 +v -0.375000 -3.375000 -5.250000 +v 0.375000 -1.625000 -7.000000 +v 0.375000 -3.375000 -5.250000 +v 0.875000 0.250000 -0.500000 +v 1.000000 0.250000 -0.500000 +v 0.875000 0.250000 -1.000000 +v 1.000000 0.250000 -1.000000 +v 0.875000 0.375000 -1.000000 +v 0.875000 0.375000 -0.500000 +v 1.000000 0.375000 -0.500000 +v 1.000000 0.375000 -1.000000 +v -0.875000 0.250000 -0.500000 +v -1.000000 0.250000 -0.500000 +v -0.875000 0.250000 -1.000000 +v -1.000000 0.250000 -1.000000 +v -0.875000 0.375000 -1.000000 +v -0.875000 0.375000 -0.500000 +v -1.000000 0.375000 -0.500000 +v -1.000000 0.375000 -1.000000 +v -0.187500 0.875000 -0.562500 +v 0.187500 0.875000 -0.562500 +v -0.187500 0.875000 -0.937500 +v 0.187500 0.875000 -0.937500 +v -0.187500 1.375000 -0.812500 +v -0.187500 1.375000 -0.687500 +v 0.187500 1.375000 -0.687500 +v 0.187500 1.375000 -0.812500 +v -0.062500 1.375000 -0.687500 +v 0.062500 1.375000 -0.687500 +v 0.062500 1.375000 -0.812500 +v -0.062500 1.375000 -0.812500 +v -0.062500 1.125000 -0.625000 +v 0.062500 1.125000 -0.625000 +v 0.062500 1.125000 -0.875000 +v -0.062500 1.125000 -0.875000 +vt 0.276412 0.187560 +vt 0.328065 0.187560 +vt 0.302239 0.374880 +vt 0.276412 0.437560 +vt 0.302239 0.375120 +vt 0.328065 0.562440 +vt -0.000000 0.125000 +vt 0.029851 0.093750 +vt 0.029851 0.125000 +vt 0.007463 0.062500 +vt 0.029851 0.062500 +vt 0.029851 0.031250 +vt 0.007463 0.031250 +vt 0.029851 0.000000 +vt 0.037313 0.031250 +vt -0.000000 0.062500 +vt 0.619403 0.031250 +vt 0.597015 0.062500 +vt 0.597015 0.031250 +vt 0.037313 0.093750 +vt 0.223881 0.125000 +vt 0.037313 0.125000 +vt 0.619403 0.062500 +vt 0.597015 0.093750 +vt 0.037313 0.125000 +vt 0.231343 0.000000 +vt 0.276119 0.031250 +vt 0.231343 0.031250 +vt 0.037313 0.031250 +vt 0.223881 0.062500 +vt 0.037313 0.062500 +vt 0.037313 -0.000000 +vt 0.223881 0.031250 +vt 0.223881 0.093750 +vt 0.231343 0.125000 +vt 0.223881 0.125000 +vt 0.231343 0.093750 +vt 0.626866 0.093750 +vt 0.597015 0.125000 +vt 0.223881 0.031250 +vt 0.231343 0.062500 +vt 0.279851 0.093750 +vt 0.291045 0.125000 +vt 0.279851 0.125000 +vt 0.276119 0.125000 +vt 0.276119 0.093750 +vt 0.276119 0.062500 +vt 0.294776 0.093750 +vt 0.332090 0.125000 +vt 0.294776 0.125000 +vt 0.332090 0.062500 +vt 0.332090 0.093750 +vt 0.332090 0.000000 +vt 0.294776 0.031250 +vt 0.294776 0.000000 +vt 0.332090 0.031250 +vt 0.291045 0.000000 +vt 0.279851 0.000000 +vt 0.294776 0.062500 +vt 0.597015 0.000000 +vt 0.589552 0.125000 +vt 0.626866 0.031250 +vt 0.626866 0.062500 +vt 0.589552 0.062500 +vt 0.402985 0.031250 +vt 0.589552 0.031250 +vt 0.589552 0.031250 +vt 0.395522 0.031250 +vt 0.350746 0.000000 +vt 0.395522 0.000000 +vt 0.589552 0.125000 +vt 0.402985 0.093750 +vt 0.589552 0.093750 +vt 0.402985 0.000000 +vt 0.589552 0.000000 +vt 0.402985 0.062500 +vt 0.402985 0.031250 +vt 0.395522 0.062500 +vt 0.402985 0.125000 +vt 0.395522 0.125000 +vt 0.395522 0.093750 +vt 0.350746 0.031250 +vt 0.350746 0.062500 +vt 0.350746 0.093750 +vt 0.335821 0.093750 +vt 0.347015 0.125000 +vt 0.335821 0.125000 +vt 0.347015 0.000000 +vt 0.335821 0.000000 +vt 0.347015 0.093750 +vt 0.570895 0.828125 +vt 0.548507 0.671875 +vt 0.570895 0.609375 +vt 0.656716 0.562500 +vt 0.641791 0.578125 +vt 0.641791 0.562500 +vt 0.641791 0.593750 +vt 0.656716 0.609375 +vt 0.641791 0.609375 +vt 0.660448 0.578125 +vt 0.656716 0.593750 +vt 0.656716 0.578125 +vt 0.638060 0.593750 +vt 0.638060 0.578125 +vt 0.641791 0.593750 +vt 0.656716 0.609375 +vt 0.641791 0.609375 +vt 0.656716 0.562500 +vt 0.641791 0.578125 +vt 0.641791 0.562500 +vt 0.656716 0.578125 +vt 0.660448 0.593750 +vt 0.656716 0.593750 +vt 0.638060 0.578125 +vt 0.638060 0.593750 +vt 0.690298 0.203125 +vt 0.694030 0.187500 +vt 0.694030 0.203125 +vt 0.675373 0.171875 +vt 0.675373 0.218750 +vt 0.716418 0.218750 +vt 0.701493 0.187500 +vt 0.716418 0.171875 +vt 0.697761 0.203125 +vt 0.701493 0.203125 +vt 0.686567 0.281250 +vt 0.694030 0.296875 +vt 0.686567 0.296875 +vt 0.705224 0.296875 +vt 0.697761 0.265625 +vt 0.705224 0.281250 +vt 0.694030 0.234375 +vt 0.697761 0.234375 +vt 0.701493 0.265625 +vt 0.697761 0.156250 +vt 0.697761 0.187500 +vt 0.694030 0.156250 +vt 0.690298 0.187500 +vt 0.690298 0.125000 +vt 0.701493 0.125000 +vt 0.697761 0.296875 +vt 0.694030 0.265625 +vt 0.600746 0.609375 +vt 0.623134 0.765625 +vt 0.600746 0.828125 +vt 0.287328 0.358149 +vt 0.276412 0.312440 +vt 0.272417 0.250000 +vt 0.287328 0.141851 +vt 0.302239 0.125120 +vt 0.317150 0.141851 +vt 0.332061 0.250000 +vt 0.328065 0.312440 +vt 0.317150 0.358149 +vt 0.317150 0.608149 +vt 0.302239 0.624880 +vt 0.287328 0.608149 +vt 0.276412 0.562440 +vt 0.272417 0.500000 +vt 0.287328 0.391851 +vt 0.317150 0.391851 +vt 0.328065 0.437560 +vt 0.332061 0.500000 +vt -0.000000 0.093750 +vt -0.000000 0.000000 +vt -0.000000 0.031250 +vt 0.276119 0.000000 +vt 0.223881 0.000000 +vt 0.626866 0.125000 +vt 0.291045 0.093750 +vt 0.626866 0.000000 +vt 0.402985 0.125000 +vt 0.350746 0.125000 +vt 0.548507 0.765625 +vt 0.660448 0.593750 +vt 0.660448 0.578125 +vt 0.690298 0.265625 +vt 0.623134 0.671875 vt 0.257463 0.625000 vt 0.272388 0.687500 vt 0.257463 0.687500 @@ -1626,528 +3439,20 @@ vt 0.503731 1.000000 vt 0.548507 0.875000 vt 0.548507 1.000000 vt 0.496269 0.875000 -vt 0.727612 0.140625 -vt 0.716418 0.125000 -vt 0.727612 0.125000 -vt 0.727612 0.234375 -vt 0.716418 0.218750 -vt 0.727612 0.218750 -vt 0.727612 0.203125 -vt 0.716418 0.187500 -vt 0.727612 0.187500 -vt 0.727612 0.171875 -vt 0.716418 0.156250 -vt 0.727612 0.156250 -vt 0.716418 0.140625 -vt 0.727612 0.250000 -vt 0.716418 0.234375 -vt 0.716418 0.203125 -vt 0.716418 0.171875 -vt 0.014925 0.781250 -vt 0.000000 0.781250 -vt 0.022388 0.781250 -vt 0.018657 0.781250 -vt 0.026119 0.781250 -vt 0.044776 0.781250 -vt 0.052239 0.781250 -vt 0.070896 0.781250 -vt 0.093284 0.781250 -vt 0.078358 0.781250 -vt 0.100746 0.781250 vt 0.488806 0.125000 vt 0.548507 0.437500 vt 0.548507 0.125000 -vt 0.630597 0.187500 -vt 0.623134 0.125000 -vt 0.630597 0.125000 -vt 0.630597 0.750000 -vt 0.623134 0.687500 -vt 0.630597 0.687500 -vt 0.630597 0.437500 -vt 0.623134 0.375000 -vt 0.630597 0.375000 -vt 0.630597 0.562500 -vt 0.623134 0.500000 -vt 0.630597 0.500000 -vt 0.630597 0.250000 -vt 0.623134 0.187500 -vt 0.630597 0.812500 -vt 0.623134 0.750000 -vt 0.623134 0.437500 -vt 0.630597 0.625000 -vt 0.623134 0.562500 -vt 0.630597 0.312500 -vt 0.623134 0.250000 -vt 0.630597 0.875000 -vt 0.623134 0.812500 -vt 0.623134 0.625000 -vt 0.623134 0.312500 -vt 0.641791 0.437500 -vt 0.645522 0.453125 -vt 0.641791 0.453125 -vt 0.645965 0.438018 -vt 0.649254 0.453125 -vt 0.645522 0.546875 -vt 0.641791 0.562500 -vt 0.641791 0.546875 -vt 0.649254 0.546875 -vt 0.645522 0.562500 -vt 0.645522 0.531250 -vt 0.641791 0.531250 -vt 0.649254 0.531250 -vt 0.641791 0.515625 -vt 0.645522 0.515625 -vt 0.641791 0.500000 -vt 0.645522 0.500000 -vt 0.645522 0.484375 -vt 0.641791 0.484375 -vt 0.645522 0.468750 -vt 0.641791 0.468750 -vt 0.638060 0.468750 -vt 0.638060 0.484375 -vt 0.638060 0.500000 -vt 0.638060 0.515625 -vt 0.638060 0.531250 -vt 0.638060 0.546875 -vt 0.638060 0.437500 -vt 0.638060 0.453125 -vt 0.649254 0.468750 -vt 0.649254 0.484375 -vt 0.649254 0.500000 -vt 0.652985 0.468750 -vt 0.652985 0.484375 -vt 0.649254 0.515625 -vt 0.652985 0.500000 -vt 0.652985 0.515625 -vt 0.652985 0.531250 -vt 0.652985 0.546875 -vt 0.649254 0.562500 -vt 0.649254 0.437500 -vt 0.652985 0.437500 -vt 0.652985 0.453125 -vt 0.664179 0.468750 -vt 0.675373 0.484375 -vt 0.675373 0.453125 -vt 0.664179 0.484375 -vt 0.664179 0.500000 -vt 0.675373 0.562500 -vt 0.664179 0.515625 -vt 0.675373 0.546875 -vt 0.664179 0.531250 -vt 0.675373 0.531250 -vt 0.664179 0.546875 -vt 0.675373 0.515625 -vt 0.664179 0.437500 -vt 0.675373 0.500000 -vt 0.664179 0.453125 -vt 0.675373 0.468750 -vt 0.570895 0.265625 -vt 0.555970 0.250000 -vt 0.570895 0.250000 -vt 0.570895 0.187500 -vt 0.555970 0.171875 -vt 0.570895 0.171875 -vt 0.570895 0.140625 -vt 0.555970 0.125000 -vt 0.570895 0.125000 -vt 0.570895 0.281250 -vt 0.555970 0.265625 -vt 0.570895 0.203125 -vt 0.555970 0.187500 -vt 0.570895 0.234375 -vt 0.555970 0.218750 -vt 0.570895 0.218750 -vt 0.570895 0.156250 -vt 0.555970 0.140625 -vt 0.570895 0.296875 -vt 0.555970 0.281250 -vt 0.555970 0.203125 -vt 0.555970 0.234375 -vt 0.555970 0.156250 -vt 0.570895 0.312500 -vt 0.555970 0.296875 -vt 0.638060 0.359375 -vt 0.630597 0.312500 -vt 0.638060 0.312500 -vt 0.638060 0.453125 -vt 0.630597 0.406250 -vt 0.638060 0.406250 -vt 0.638060 0.218750 -vt 0.630597 0.171875 -vt 0.638060 0.171875 -vt 0.638060 0.640625 -vt 0.630597 0.593750 -vt 0.638060 0.593750 -vt 0.630597 0.359375 -vt 0.638060 0.500000 -vt 0.630597 0.453125 -vt 0.638060 0.265625 -vt 0.630597 0.218750 -vt 0.638060 0.687500 -vt 0.630597 0.640625 -vt 0.638060 0.546875 -vt 0.630597 0.500000 -vt 0.630597 0.265625 -vt 0.630597 0.125000 -vt 0.638060 0.125000 -vt 0.630597 0.546875 -vt 0.716418 0.125000 -vt 0.727612 0.140625 -vt 0.727612 0.125000 -vt 0.716418 0.218750 -vt 0.727612 0.234375 -vt 0.727612 0.218750 -vt 0.716418 0.187500 -vt 0.727612 0.203125 -vt 0.727612 0.187500 -vt 0.716418 0.156250 -vt 0.727612 0.171875 -vt 0.727612 0.156250 -vt 0.716418 0.140625 -vt 0.716418 0.234375 -vt 0.727612 0.250000 -vt 0.716418 0.203125 -vt 0.716418 0.171875 -vt 0.641791 0.437500 -vt 0.645522 0.453125 -vt 0.641791 0.453125 -vt 0.645965 0.438018 -vt 0.649254 0.453125 -vt 0.645522 0.546875 -vt 0.641791 0.562500 -vt 0.641791 0.546875 -vt 0.649254 0.546875 -vt 0.645522 0.562500 -vt 0.645522 0.531250 -vt 0.641791 0.531250 -vt 0.649254 0.531250 -vt 0.641791 0.515625 -vt 0.645522 0.515625 -vt 0.641791 0.500000 -vt 0.645522 0.500000 -vt 0.645522 0.484375 -vt 0.641791 0.484375 -vt 0.645522 0.468750 -vt 0.641791 0.468750 -vt 0.638060 0.468750 -vt 0.638060 0.484375 -vt 0.638060 0.500000 -vt 0.638060 0.515625 -vt 0.638060 0.531250 -vt 0.638060 0.546875 -vt 0.638060 0.437500 -vt 0.638060 0.453125 -vt 0.649254 0.468750 -vt 0.649254 0.484375 -vt 0.649254 0.500000 -vt 0.652985 0.468750 -vt 0.652985 0.484375 -vt 0.649254 0.515625 -vt 0.652985 0.500000 -vt 0.652985 0.515625 -vt 0.652985 0.531250 -vt 0.652985 0.546875 -vt 0.649254 0.562500 -vt 0.649254 0.437500 -vt 0.652985 0.437500 -vt 0.652985 0.453125 -vt 0.664179 0.468750 -vt 0.675373 0.484375 -vt 0.675373 0.453125 -vt 0.664179 0.484375 -vt 0.664179 0.500000 -vt 0.675373 0.562500 -vt 0.664179 0.515625 -vt 0.675373 0.546875 -vt 0.664179 0.531250 -vt 0.675373 0.531250 -vt 0.664179 0.546875 -vt 0.675373 0.515625 -vt 0.664179 0.437500 -vt 0.675373 0.500000 -vt 0.664179 0.453125 -vt 0.675373 0.468750 -vt 0.641791 0.437500 -vt 0.645522 0.453125 -vt 0.641791 0.453125 -vt 0.649254 0.437500 -vt 0.645965 0.438018 -vt 0.641791 0.546875 -vt 0.645522 0.562500 -vt 0.641791 0.562500 -vt 0.649254 0.546875 -vt 0.645522 0.546875 -vt 0.645522 0.531250 -vt 0.641791 0.531250 -vt 0.649254 0.531250 -vt 0.645522 0.515625 -vt 0.641791 0.515625 -vt 0.645522 0.500000 -vt 0.641791 0.500000 -vt 0.645522 0.484375 -vt 0.641791 0.484375 -vt 0.645522 0.468750 -vt 0.641791 0.468750 -vt 0.638060 0.468750 -vt 0.638060 0.484375 -vt 0.638060 0.500000 -vt 0.638060 0.515625 -vt 0.638060 0.531250 -vt 0.638060 0.546875 -vt 0.638060 0.437500 -vt 0.638060 0.453125 -vt 0.649254 0.453125 -vt 0.649254 0.468750 -vt 0.649254 0.484375 -vt 0.649254 0.500000 -vt 0.652985 0.468750 -vt 0.652985 0.484375 -vt 0.649254 0.515625 -vt 0.652985 0.500000 -vt 0.652985 0.515625 -vt 0.652985 0.531250 -vt 0.652985 0.546875 -vt 0.649254 0.562500 -vt 0.652985 0.437500 -vt 0.652985 0.453125 -vt 0.664179 0.468750 -vt 0.675373 0.484375 -vt 0.675373 0.453125 -vt 0.664179 0.484375 -vt 0.664179 0.500000 -vt 0.675373 0.562500 -vt 0.664179 0.515625 -vt 0.675373 0.546875 -vt 0.664179 0.531250 -vt 0.675373 0.531250 -vt 0.664179 0.546875 -vt 0.675373 0.515625 -vt 0.664179 0.437500 -vt 0.675373 0.500000 -vt 0.664179 0.453125 -vt 0.675373 0.468750 -vt 0.641791 0.437500 -vt 0.645522 0.453125 -vt 0.641791 0.453125 -vt 0.649254 0.437500 -vt 0.645965 0.438018 -vt 0.641791 0.546875 -vt 0.645522 0.562500 -vt 0.641791 0.562500 -vt 0.649254 0.546875 -vt 0.645522 0.546875 -vt 0.645522 0.531250 -vt 0.641791 0.531250 -vt 0.649254 0.531250 -vt 0.645522 0.515625 -vt 0.641791 0.515625 -vt 0.645522 0.500000 -vt 0.641791 0.500000 -vt 0.645522 0.484375 -vt 0.641791 0.484375 -vt 0.645522 0.468750 -vt 0.641791 0.468750 -vt 0.638060 0.468750 -vt 0.638060 0.484375 -vt 0.638060 0.500000 -vt 0.638060 0.515625 -vt 0.638060 0.531250 -vt 0.638060 0.546875 -vt 0.638060 0.437500 -vt 0.638060 0.453125 -vt 0.649254 0.453125 -vt 0.649254 0.468750 -vt 0.649254 0.484375 -vt 0.649254 0.500000 -vt 0.652985 0.468750 -vt 0.652985 0.484375 -vt 0.649254 0.515625 -vt 0.652985 0.500000 -vt 0.652985 0.515625 -vt 0.652985 0.531250 -vt 0.652985 0.546875 -vt 0.649254 0.562500 -vt 0.652985 0.437500 -vt 0.652985 0.453125 -vt 0.664179 0.468750 -vt 0.675373 0.484375 -vt 0.675373 0.453125 -vt 0.664179 0.484375 -vt 0.664179 0.500000 -vt 0.675373 0.562500 -vt 0.664179 0.515625 -vt 0.675373 0.546875 -vt 0.664179 0.531250 -vt 0.675373 0.531250 -vt 0.664179 0.546875 -vt 0.675373 0.515625 -vt 0.664179 0.437500 -vt 0.675373 0.500000 -vt 0.664179 0.453125 -vt 0.675373 0.468750 -vt 0.645965 0.438018 -vt 0.641791 0.453125 -vt 0.641791 0.437500 -vt 0.649254 0.437500 -vt 0.645522 0.453125 -vt 0.645522 0.546875 -vt 0.641791 0.562500 -vt 0.641791 0.546875 -vt 0.649254 0.562500 -vt 0.649254 0.546875 -vt 0.645522 0.531250 -vt 0.641791 0.531250 -vt 0.649254 0.531250 -vt 0.645522 0.515625 -vt 0.641791 0.515625 -vt 0.645522 0.500000 -vt 0.641791 0.500000 -vt 0.641791 0.484375 -vt 0.645522 0.468750 -vt 0.641791 0.468750 -vt 0.645522 0.484375 -vt 0.638060 0.468750 -vt 0.638060 0.484375 -vt 0.638060 0.500000 -vt 0.638060 0.515625 -vt 0.638060 0.531250 -vt 0.638060 0.546875 -vt 0.638060 0.437500 -vt 0.638060 0.453125 -vt 0.649254 0.453125 -vt 0.649254 0.468750 -vt 0.649254 0.484375 -vt 0.649254 0.500000 -vt 0.652985 0.468750 -vt 0.652985 0.484375 -vt 0.649254 0.515625 -vt 0.652985 0.500000 -vt 0.652985 0.515625 -vt 0.652985 0.531250 -vt 0.652985 0.546875 -vt 0.652985 0.437500 -vt 0.652985 0.453125 -vt 0.664179 0.468750 -vt 0.675373 0.484375 -vt 0.675373 0.453125 -vt 0.664179 0.484375 -vt 0.664179 0.500000 -vt 0.675373 0.562500 -vt 0.664179 0.515625 -vt 0.675373 0.546875 -vt 0.664179 0.531250 -vt 0.675373 0.531250 -vt 0.664179 0.546875 -vt 0.675373 0.515625 -vt 0.664179 0.437500 -vt 0.675373 0.500000 -vt 0.664179 0.453125 -vt 0.675373 0.468750 -vt 0.645965 0.438018 -vt 0.641791 0.453125 -vt 0.641791 0.437500 -vt 0.649254 0.437500 -vt 0.645522 0.453125 -vt 0.645522 0.546875 -vt 0.641791 0.562500 -vt 0.641791 0.546875 -vt 0.649254 0.562500 -vt 0.649254 0.546875 -vt 0.645522 0.531250 -vt 0.641791 0.531250 -vt 0.649254 0.531250 -vt 0.645522 0.515625 -vt 0.641791 0.515625 -vt 0.645522 0.500000 -vt 0.641791 0.500000 -vt 0.641791 0.484375 -vt 0.645522 0.468750 -vt 0.641791 0.468750 -vt 0.645522 0.484375 -vt 0.638060 0.468750 -vt 0.638060 0.484375 -vt 0.638060 0.500000 -vt 0.638060 0.515625 -vt 0.638060 0.531250 -vt 0.638060 0.546875 -vt 0.638060 0.437500 -vt 0.638060 0.453125 -vt 0.649254 0.453125 -vt 0.649254 0.468750 -vt 0.649254 0.484375 -vt 0.649254 0.500000 -vt 0.652985 0.468750 -vt 0.652985 0.484375 -vt 0.649254 0.515625 -vt 0.652985 0.500000 -vt 0.652985 0.515625 -vt 0.652985 0.531250 -vt 0.652985 0.546875 -vt 0.652985 0.437500 -vt 0.652985 0.453125 -vt 0.664179 0.468750 -vt 0.675373 0.484375 -vt 0.675373 0.453125 -vt 0.664179 0.484375 -vt 0.664179 0.500000 -vt 0.675373 0.562500 -vt 0.664179 0.515625 -vt 0.675373 0.546875 -vt 0.664179 0.531250 -vt 0.675373 0.531250 -vt 0.664179 0.546875 -vt 0.675373 0.515625 -vt 0.664179 0.437500 -vt 0.675373 0.500000 -vt 0.664179 0.453125 -vt 0.675373 0.468750 -vt 0.652985 0.562500 -vt 0.208955 0.125000 -vt 0.238806 0.328125 -vt 0.238806 0.328125 -vt 0.238806 0.328125 -vt 0.238806 0.328125 -vt 0.238806 0.328125 -vt 0.238806 0.328125 vt 0.272388 0.125000 vt 0.406716 0.687500 vt 0.406716 0.875000 vt 0.406716 0.312500 -vt 0.716418 0.250000 -vt 0.041045 0.781250 -vt 0.048507 0.781250 -vt 0.067164 0.781250 -vt 0.074627 0.781250 -vt 0.097015 0.781250 -vt 0.623134 0.875000 -vt 0.675373 0.437500 -vt 0.664179 0.562500 -vt 0.555970 0.312500 -vt 0.630597 0.687500 -vt 0.716418 0.250000 -vt 0.675373 0.437500 -vt 0.664179 0.562500 -vt 0.675373 0.437500 -vt 0.664179 0.562500 -vt 0.675373 0.437500 -vt 0.664179 0.562500 -vt 0.645522 0.562500 -vt 0.675373 0.437500 -vt 0.664179 0.562500 -vt 0.645522 0.562500 -vt 0.675373 0.437500 -vt 0.664179 0.562500 -vn 0.0000 0.0000 1.0000 -vn -0.8660 -0.5000 0.0000 -vn 0.0000 1.0000 0.0000 -vn 0.8660 -0.5000 0.0000 -vn -0.8660 0.5000 0.0000 -vn 0.8660 0.5000 0.0000 -vn 0.0000 -1.0000 0.0000 +vn 0.0000 -0.0000 1.0000 vn 0.0000 0.0000 -1.0000 vn -1.0000 0.0000 0.0000 vn 1.0000 0.0000 0.0000 vn 0.7071 0.7071 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 0.0000 vn 0.0000 -0.7071 -0.7071 vn -0.7071 -0.7071 0.0000 vn 0.0000 -0.7071 0.7071 @@ -2155,42 +3460,14 @@ vn -0.7071 0.7071 0.0000 vn 0.7071 -0.7071 0.0000 vn 0.0000 0.2425 0.9701 vn 0.0000 0.2425 -0.9701 -vn 0.1499 0.9887 0.0000 -vn 0.7813 0.6242 0.0000 -vn 0.1499 -0.9887 0.0000 -vn -0.2208 -0.9753 0.0000 -vn 0.7813 -0.6242 0.0000 -vn 0.9550 -0.2965 0.0000 -vn -0.7813 0.6242 0.0000 -vn -0.1499 0.9887 0.0000 -vn -0.7813 -0.6242 0.0000 -vn -0.9550 -0.2965 0.0000 -vn -0.9550 0.2965 0.0000 -vn 0.2208 -0.9753 0.0000 -vn -0.1499 -0.9887 0.0000 -vn 0.9550 0.2965 0.0000 -vn 0.9312 0.3645 0.0000 -vn 0.9312 -0.3645 0.0000 -vn -0.9312 0.3645 0.0000 -vn -0.7343 0.6788 0.0000 -vn -0.2208 0.9753 0.0000 -vn -0.7343 -0.6788 0.0000 -vn -0.9312 -0.3645 0.0000 -vn 0.7343 -0.6788 0.0000 -vn 0.2208 0.9753 0.0000 -vn 0.7343 0.6788 0.0000 -vn 0.9659 -0.2588 0.0000 -vn 0.2588 -0.9659 0.0000 -vn -0.5000 -0.8660 0.0000 -vn -0.9659 -0.2588 0.0000 -vn 0.2588 0.9659 0.0000 -vn -0.5000 0.8660 0.0000 -vn -0.9659 0.2588 0.0000 -vn 0.9659 0.2588 0.0000 -vn 0.5000 0.8660 0.0000 -vn -0.2588 0.9659 0.0000 -vn -0.2588 -0.9659 0.0000 +vn -0.8660 0.5000 0.0000 +vn 0.8660 0.5000 0.0000 vn 0.5000 -0.8660 0.0000 +vn -0.8660 -0.5000 -0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5000 0.8660 0.0000 +vn 0.8660 -0.5000 0.0000 +vn -0.5000 -0.8660 0.0000 vn 0.9474 -0.3073 0.0890 vn 0.9239 0.3827 0.0000 vn 0.9239 -0.3827 0.0000 @@ -2222,1424 +3499,242 @@ vn 0.3909 -0.4393 0.8089 vn -0.3909 -0.4393 0.8089 vn -0.9530 0.2142 -0.2142 vn -0.9414 -0.1935 0.2764 -vn 0.0000 0.7071 0.7071 -vn 0.0000 0.7071 -0.7071 -vn 0.0000 0.9239 -0.3827 -vn 0.0000 0.9239 0.3827 -vn 0.0000 0.3827 -0.9239 -vn 0.0000 -0.3827 -0.9239 -vn 0.0000 -0.9239 0.3827 -vn 0.0000 -0.9239 -0.3827 -vn 0.0000 0.3827 0.9239 -vn 0.0000 -0.3827 0.9239 vn 0.9414 -0.1935 0.2764 -vn 0.0000 -0.7486 0.6630 -vn 0.5293 -0.5294 0.6630 -vn 0.5294 -0.5294 -0.6630 -vn -0.5293 -0.5294 0.6630 -vn -0.5294 -0.5294 -0.6630 -vn -0.7486 -0.0000 0.6630 -vn -0.7486 -0.0000 -0.6630 -vn -0.5293 0.5294 0.6630 -vn 0.0000 0.7486 0.6630 -vn 0.5293 0.5294 0.6630 -vn 0.7486 -0.0000 0.6630 -vn 0.7486 -0.0000 -0.6630 -vn 0.5294 0.5294 -0.6630 -vn 0.0000 0.7486 -0.6630 -vn -0.5294 0.5294 -0.6630 -vn 0.0000 -0.7486 -0.6630 -vn -0.6483 -0.3743 0.6630 -vn -0.1938 -0.7231 0.6630 -vn -0.6483 -0.3743 -0.6630 -vn -0.7231 0.1938 0.6630 -vn -0.7231 0.1938 -0.6630 -vn -0.3743 0.6483 0.6630 -vn -0.3743 0.6483 -0.6630 -vn 0.1938 0.7231 0.6630 -vn 0.6483 0.3743 0.6630 -vn 0.7231 -0.1938 0.6630 -vn 0.3743 -0.6483 0.6630 -vn -0.1938 -0.7231 -0.6630 -vn 0.3743 -0.6483 -0.6630 -vn 0.7231 -0.1938 -0.6630 -vn 0.6483 0.3743 -0.6630 -vn 0.1938 0.7231 -0.6630 -vn -0.7231 -0.1938 0.6630 -vn -0.6483 0.3743 0.6630 -vn -0.6483 0.3743 -0.6630 -vn -0.1938 0.7231 0.6630 -vn -0.1938 0.7231 -0.6630 -vn 0.3743 0.6483 0.6630 -vn 0.3743 0.6483 -0.6630 -vn 0.7231 0.1938 0.6630 -vn 0.6483 -0.3743 0.6630 -vn 0.1938 -0.7231 0.6630 -vn -0.3743 -0.6483 0.6630 -vn -0.7231 -0.1938 -0.6630 -vn -0.3743 -0.6483 -0.6630 -vn 0.1938 -0.7231 -0.6630 -vn 0.6483 -0.3743 -0.6630 -vn 0.7231 0.1938 -0.6630 s off -f 29/1/1 13/2/1 53/3/1 -f 61/4/1 63/5/1 58/6/1 -f 73/7/1 74/8/1 49/9/1 -f 68/10/1 67/11/1 9/12/1 -f 72/13/1 71/14/1 25/15/1 -f 76/16/1 75/17/1 41/18/1 -f 65/19/1 66/20/1 17/21/1 -f 69/22/1 70/23/1 33/24/1 -f 81/25/1 82/26/1 39/27/1 -f 11/28/1 86/29/1 55/30/1 -f 80/31/1 79/32/1 15/33/1 -f 84/34/1 83/35/1 31/36/1 -f 19/37/1 87/38/1 47/39/1 -f 77/40/1 78/41/1 23/42/1 -f 39/27/1 52/43/1 51/44/1 -f 37/45/1 52/43/1 38/46/1 -f 12/47/1 55/30/1 54/48/1 -f 12/47/1 53/3/1 13/2/1 -f 14/49/1 27/50/1 15/33/1 -f 14/49/1 29/1/1 28/51/1 -f 30/52/1 43/53/1 31/36/1 -f 29/1/1 44/54/1 30/52/1 -f 19/37/1 46/55/1 20/56/1 -f 20/56/1 45/57/1 21/58/1 -f 23/42/1 36/59/1 35/60/1 -f 21/58/1 36/59/1 22/61/1 -f 69/62/2 94/63/2 70/64/2 -f 68/65/3 91/66/3 67/67/3 -f 76/68/4 99/69/4 75/70/4 -f 73/71/5 98/72/5 74/73/5 -f 72/74/6 95/75/6 71/76/6 -f 65/77/7 90/78/7 66/79/7 -f 135/80/1 136/81/1 129/82/1 -f 151/83/1 152/84/1 145/85/1 -f 125/86/1 127/87/1 121/88/1 -f 143/89/1 144/90/1 137/91/1 -f 159/92/1 160/93/1 153/94/1 -f 117/95/1 119/96/1 113/97/1 -f 165/98/1 169/99/1 161/100/1 -f 181/101/8 179/102/8 175/103/8 -f 186/104/9 187/105/9 185/106/9 -f 187/105/8 192/107/8 191/108/8 -f 192/107/10 189/109/10 191/108/10 -f 190/110/1 185/111/1 189/109/1 -f 191/108/10 189/109/10 196/112/10 -f 188/113/11 190/110/11 192/107/11 -f 193/114/9 204/115/9 195/116/9 -f 194/117/9 197/118/9 185/119/9 -f 203/120/8 219/121/8 204/115/8 -f 185/106/9 187/105/9 194/122/9 -f 197/123/8 206/124/8 198/125/8 -f 189/126/10 200/127/10 196/128/10 -f 185/129/3 198/130/3 189/126/3 -f 196/128/7 199/131/7 194/117/7 -f 191/108/12 194/117/12 187/105/12 -f 197/132/9 199/133/9 201/134/9 -f 220/135/10 217/136/10 219/121/10 -f 200/137/10 198/125/10 202/138/10 -f 207/139/13 209/140/13 205/141/13 -f 201/134/9 205/142/9 197/132/9 -f 202/138/1 207/143/1 201/134/1 -f 198/125/10 208/144/10 202/138/10 -f 210/145/7 211/146/7 209/147/7 -f 210/145/1 216/148/1 212/149/1 -f 211/150/8 213/151/8 209/152/8 -f 216/148/3 213/151/3 215/153/3 -f 209/154/8 206/124/8 205/155/8 -f 214/156/1 207/139/1 208/144/1 -f 206/124/11 214/156/11 208/144/11 -f 200/127/14 201/134/14 199/131/14 -f 217/157/1 193/114/1 195/116/1 -f 219/121/10 217/136/10 222/158/10 -f 203/120/15 218/159/15 220/160/15 -f 221/161/9 223/162/9 195/163/9 -f 195/116/9 204/115/9 221/164/9 -f 223/165/8 230/166/8 224/167/8 -f 217/168/10 226/169/10 222/170/10 -f 195/163/3 224/171/3 217/172/3 -f 222/170/7 225/173/7 221/161/7 -f 219/121/12 221/161/12 204/115/12 -f 223/165/9 225/174/9 227/175/9 -f 226/176/10 224/177/10 228/178/10 -f 227/175/9 229/179/9 223/165/9 -f 228/178/1 231/180/1 227/175/1 -f 224/177/10 232/181/10 228/178/10 -f 226/169/14 227/175/14 225/173/14 -f 212/182/16 230/183/16 211/184/16 -f 230/185/8 215/153/8 211/186/8 -f 215/153/15 231/180/15 216/148/15 -f 216/148/1 232/187/1 212/182/1 -f 259/188/12 263/189/12 260/190/12 -f 267/191/7 266/192/7 265/193/7 -f 271/194/3 269/195/3 270/196/3 -f 267/197/8 272/198/8 268/199/8 -f 266/192/1 270/200/1 265/201/1 -f 268/199/10 271/194/10 266/192/10 -f 283/202/10 285/203/10 287/204/10 -f 299/205/3 297/206/3 298/207/3 -f 294/208/10 300/209/10 299/205/10 -f 292/210/10 294/208/10 290/211/10 -f 289/212/9 295/213/9 291/214/9 -f 291/214/8 296/215/8 292/210/8 -f 290/211/1 293/216/1 289/217/1 -f 293/218/9 297/219/9 295/213/9 -f 295/213/8 300/209/8 296/215/8 -f 294/220/14 298/207/14 293/221/14 -f 302/222/7 303/223/7 301/224/7 -f 305/225/3 307/226/3 306/227/3 -f 308/228/8 303/229/8 304/230/8 -f 306/231/1 302/222/1 301/232/1 -f 307/226/9 304/230/9 302/222/9 -f 312/233/8 315/234/8 311/235/8 -f 309/236/1 314/237/1 310/238/1 -f 310/238/10 316/239/10 312/233/10 -f 311/235/9 313/240/9 309/241/9 -f 325/242/9 322/243/9 334/244/9 -f 331/245/10 318/246/10 338/247/10 -f 335/248/10 323/249/10 328/250/10 -f 339/251/9 320/252/9 330/253/9 -f 329/254/9 341/255/9 326/256/9 -f 327/257/10 344/258/10 332/259/10 -f 337/260/10 346/261/10 336/262/10 -f 333/263/9 348/264/9 340/265/9 -f 345/266/9 334/244/9 322/267/9 -f 336/262/10 321/268/10 335/248/10 -f 326/256/9 324/269/9 325/242/9 -f 342/270/10 328/250/10 323/271/10 -f 343/272/9 330/253/9 320/273/9 -f 332/259/10 319/274/10 331/245/10 -f 340/275/9 317/276/9 339/251/9 -f 347/277/10 338/247/10 318/278/10 -f 355/279/3 359/280/3 358/281/3 -f 352/282/10 355/279/10 350/283/10 -f 349/284/9 353/285/9 351/286/9 -f 357/287/3 353/285/3 354/288/3 -f 359/289/9 362/290/9 358/291/9 -f 357/292/10 364/293/10 360/294/10 -f 362/295/17 355/279/17 358/281/17 -f 361/296/17 354/288/17 349/297/17 -f 364/298/18 353/285/18 360/299/18 -f 363/300/18 356/301/18 352/302/18 -f 349/297/17 362/295/17 361/296/17 -f 351/303/18 363/300/18 352/302/18 -f 361/304/3 363/305/3 364/293/3 -f 381/306/1 385/307/1 377/308/1 -f 375/309/8 373/310/8 371/311/8 -f 421/312/8 429/313/8 416/314/8 -f 421/312/8 423/315/8 430/316/8 -f 418/317/8 424/318/8 423/315/8 -f 420/319/8 425/320/8 424/318/8 -f 422/321/8 425/320/8 415/322/8 -f 422/321/8 427/323/8 426/324/8 -f 419/325/8 427/326/8 417/327/8 -f 419/325/8 429/313/8 428/328/8 -f 481/329/8 477/330/8 473/331/8 -f 487/332/1 491/333/1 483/334/1 -f 258/335/12 259/188/12 260/190/12 -f 258/335/12 262/336/12 257/337/12 -f 506/338/9 505/339/9 509/340/9 -f 519/341/3 521/342/3 520/343/3 -f 516/344/9 522/345/9 518/346/9 -f 516/344/9 514/347/9 512/348/9 -f 517/349/10 511/350/10 513/351/10 -f 518/346/8 513/351/8 514/347/8 -f 515/352/1 512/348/1 511/353/1 -f 519/354/10 515/355/10 517/349/10 -f 522/345/8 517/349/8 518/346/8 -f 520/343/14 516/356/14 515/357/14 -f 555/358/8 563/359/8 550/360/8 -f 555/358/8 557/361/8 564/362/8 -f 552/363/8 558/364/8 557/361/8 -f 554/365/8 559/366/8 558/364/8 -f 556/367/8 559/366/8 549/368/8 -f 556/367/8 561/369/8 560/370/8 -f 553/371/8 561/372/8 551/373/8 -f 553/371/8 563/359/8 562/374/8 -f 613/375/8 621/376/8 608/377/8 -f 613/375/8 615/378/8 622/379/8 -f 610/380/8 616/381/8 615/378/8 -f 612/382/8 617/383/8 616/381/8 -f 614/384/8 617/383/8 607/385/8 -f 614/384/8 619/386/8 618/387/8 -f 611/388/8 619/389/8 609/390/8 -f 611/388/8 621/376/8 620/391/8 -f 671/392/8 679/393/8 666/394/8 -f 671/392/8 673/395/8 680/396/8 -f 668/397/8 674/398/8 673/395/8 -f 670/399/8 675/400/8 674/398/8 -f 672/401/8 675/400/8 665/402/8 -f 672/401/8 677/403/8 676/404/8 -f 669/405/8 677/406/8 667/407/8 -f 669/405/8 679/393/8 678/408/8 -f 729/409/8 737/410/8 724/411/8 -f 729/409/8 731/412/8 738/413/8 -f 726/414/8 732/415/8 731/412/8 -f 728/416/8 733/417/8 732/415/8 -f 730/418/8 733/417/8 723/419/8 -f 730/418/8 735/420/8 734/421/8 -f 727/422/8 735/423/8 725/424/8 -f 727/422/8 737/410/8 736/425/8 -f 787/426/8 795/427/8 782/428/8 -f 787/426/8 789/429/8 796/430/8 -f 784/431/8 790/432/8 789/429/8 -f 786/433/8 791/434/8 790/432/8 -f 788/435/8 791/434/8 781/436/8 -f 788/435/8 793/437/8 792/438/8 -f 785/439/8 793/440/8 783/441/8 -f 785/439/8 795/427/8 794/442/8 -f 53/3/1 37/45/1 29/1/1 -f 37/45/1 21/58/1 29/1/1 -f 21/58/1 45/57/1 29/1/1 -f 58/6/1 57/443/1 59/444/1 -f 59/444/1 60/445/1 61/4/1 -f 61/4/1 62/446/1 63/5/1 -f 63/5/1 64/447/1 58/6/1 -f 58/6/1 59/444/1 61/4/1 -f 81/25/1 50/448/1 74/8/1 -f 50/448/1 49/9/1 74/8/1 -f 49/9/1 56/449/1 73/7/1 -f 56/449/1 86/29/1 73/7/1 -f 85/450/1 10/451/1 67/11/1 -f 10/451/1 9/12/1 67/11/1 -f 9/12/1 16/452/1 68/10/1 -f 16/452/1 79/32/1 68/10/1 -f 80/31/1 26/453/1 71/14/1 -f 26/453/1 25/15/1 71/14/1 -f 25/15/1 32/454/1 72/13/1 -f 32/454/1 83/35/1 72/13/1 -f 84/34/1 42/455/1 75/17/1 -f 42/455/1 41/18/1 75/17/1 -f 41/18/1 48/456/1 76/16/1 -f 48/456/1 87/38/1 76/16/1 -f 88/457/1 18/458/1 66/20/1 -f 18/458/1 17/21/1 66/20/1 -f 17/21/1 24/459/1 65/19/1 -f 24/459/1 78/41/1 65/19/1 -f 77/40/1 34/460/1 70/23/1 -f 34/460/1 33/24/1 70/23/1 -f 33/24/1 40/461/1 69/22/1 -f 40/461/1 82/26/1 69/22/1 -f 82/26/1 40/461/1 39/27/1 -f 39/27/1 51/44/1 81/25/1 -f 51/44/1 50/448/1 81/25/1 -f 11/28/1 10/451/1 85/450/1 -f 85/450/1 86/29/1 11/28/1 -f 86/29/1 56/449/1 55/30/1 -f 79/32/1 16/452/1 15/33/1 -f 15/33/1 27/50/1 80/31/1 -f 27/50/1 26/453/1 80/31/1 -f 83/35/1 32/454/1 31/36/1 -f 31/36/1 43/53/1 84/34/1 -f 43/53/1 42/455/1 84/34/1 -f 19/37/1 18/458/1 88/457/1 -f 88/457/1 87/38/1 19/37/1 -f 87/38/1 48/456/1 47/39/1 -f 78/41/1 24/459/1 23/42/1 -f 23/42/1 35/60/1 77/40/1 -f 35/60/1 34/460/1 77/40/1 -f 39/27/1 38/46/1 52/43/1 -f 37/45/1 53/3/1 52/43/1 -f 12/47/1 11/28/1 55/30/1 -f 12/47/1 54/48/1 53/3/1 -f 14/49/1 28/51/1 27/50/1 -f 14/49/1 13/2/1 29/1/1 -f 30/52/1 44/54/1 43/53/1 -f 29/1/1 45/57/1 44/54/1 -f 19/37/1 47/39/1 46/55/1 -f 20/56/1 46/55/1 45/57/1 -f 23/42/1 22/61/1 36/59/1 -f 21/58/1 37/45/1 36/59/1 -f 69/62/2 93/462/2 94/63/2 -f 68/65/3 92/463/3 91/66/3 -f 76/68/4 100/464/4 99/69/4 -f 73/71/5 97/465/5 98/72/5 -f 72/74/6 96/466/6 95/75/6 -f 65/77/7 89/467/7 90/78/7 -f 129/82/1 130/468/1 131/469/1 -f 131/469/1 132/470/1 129/82/1 -f 132/470/1 133/471/1 129/82/1 -f 133/471/1 134/472/1 129/82/1 -f 134/472/1 135/80/1 129/82/1 -f 145/85/1 146/473/1 147/474/1 -f 147/474/1 148/475/1 145/85/1 -f 148/475/1 149/476/1 145/85/1 -f 149/476/1 150/477/1 145/85/1 -f 150/477/1 151/83/1 145/85/1 -f 121/88/1 122/478/1 123/479/1 -f 123/479/1 124/480/1 125/86/1 -f 125/86/1 126/481/1 127/87/1 -f 127/87/1 128/482/1 121/88/1 -f 121/88/1 123/479/1 125/86/1 -f 137/91/1 138/483/1 139/484/1 -f 139/484/1 140/485/1 137/91/1 -f 140/485/1 141/486/1 137/91/1 -f 141/486/1 142/487/1 137/91/1 -f 142/487/1 143/89/1 137/91/1 -f 153/94/1 154/488/1 155/489/1 -f 155/489/1 156/490/1 153/94/1 -f 156/490/1 157/491/1 153/94/1 -f 157/491/1 158/492/1 153/94/1 -f 158/492/1 159/92/1 153/94/1 -f 113/97/1 114/493/1 115/494/1 -f 115/494/1 116/495/1 117/95/1 -f 117/95/1 118/496/1 119/96/1 -f 119/96/1 120/497/1 113/97/1 -f 113/97/1 115/494/1 117/95/1 -f 161/100/1 162/498/1 163/499/1 -f 163/499/1 164/500/1 161/100/1 -f 164/500/1 165/98/1 161/100/1 -f 165/98/1 166/501/1 169/99/1 -f 166/501/1 167/502/1 169/99/1 -f 167/502/1 168/503/1 169/99/1 -f 169/99/1 170/504/1 171/505/1 -f 171/505/1 172/506/1 169/99/1 -f 172/506/1 161/100/1 169/99/1 -f 175/103/8 173/507/8 174/508/8 -f 174/508/8 184/509/8 175/103/8 -f 184/509/8 183/510/8 175/103/8 -f 183/510/8 182/511/8 181/101/8 -f 181/101/8 180/512/8 179/102/8 -f 179/102/8 178/513/8 175/103/8 -f 178/513/8 177/514/8 175/103/8 -f 177/514/8 176/515/8 175/103/8 -f 183/510/8 181/101/8 175/103/8 -f 186/104/9 188/516/9 187/105/9 -f 187/105/8 188/516/8 192/107/8 -f 192/107/10 190/110/10 189/109/10 -f 190/110/1 186/517/1 185/111/1 -f 188/113/11 186/518/11 190/110/11 -f 193/114/9 203/120/9 204/115/9 -f 194/117/9 199/131/9 197/118/9 -f 203/120/8 220/135/8 219/121/8 -f 197/123/8 205/519/8 206/124/8 -f 189/126/10 198/130/10 200/127/10 -f 185/129/3 197/520/3 198/130/3 -f 196/128/7 200/127/7 199/131/7 -f 191/108/12 196/128/12 194/117/12 -f 220/135/10 218/521/10 217/136/10 -f 207/139/13 210/522/13 209/140/13 -f 201/134/9 207/143/9 205/142/9 -f 202/138/1 208/144/1 207/143/1 -f 198/125/10 206/124/10 208/144/10 -f 210/145/7 212/149/7 211/146/7 -f 210/145/1 214/156/1 216/148/1 -f 211/150/8 215/153/8 213/151/8 -f 216/148/3 214/156/3 213/151/3 -f 209/154/8 213/151/8 206/124/8 -f 214/156/1 210/522/1 207/139/1 -f 206/124/11 213/151/11 214/156/11 -f 200/127/14 202/138/14 201/134/14 -f 217/157/1 218/523/1 193/114/1 -f 203/120/15 193/114/15 218/159/15 -f 221/161/9 225/173/9 223/162/9 -f 223/165/8 229/179/8 230/166/8 -f 217/168/10 224/524/10 226/169/10 -f 195/163/3 223/162/3 224/171/3 -f 222/170/7 226/169/7 225/173/7 -f 219/121/12 222/170/12 221/161/12 -f 227/175/9 231/180/9 229/179/9 -f 228/178/1 232/181/1 231/180/1 -f 224/177/10 230/525/10 232/181/10 -f 226/169/14 228/178/14 227/175/14 -f 212/182/16 232/187/16 230/183/16 -f 230/185/8 229/179/8 215/153/8 -f 215/153/15 229/179/15 231/180/15 -f 216/148/1 231/180/1 232/187/1 -f 259/188/12 261/526/12 263/189/12 -f 267/191/7 268/199/7 266/192/7 -f 271/194/3 272/198/3 269/195/3 -f 267/197/8 269/527/8 272/198/8 -f 266/192/1 271/194/1 270/200/1 -f 268/199/10 272/198/10 271/194/10 -f 281/528/10 282/529/10 283/202/10 -f 283/202/10 284/530/10 285/203/10 -f 285/203/10 286/531/10 287/204/10 -f 287/204/10 288/532/10 281/528/10 -f 281/528/10 283/202/10 287/204/10 -f 299/205/3 300/209/3 297/206/3 -f 294/208/10 296/215/10 300/209/10 -f 292/210/10 296/215/10 294/208/10 -f 289/212/9 293/218/9 295/213/9 -f 291/214/8 295/213/8 296/215/8 -f 290/211/1 294/208/1 293/216/1 -f 293/218/9 298/533/9 297/219/9 -f 295/213/8 297/219/8 300/209/8 -f 294/220/14 299/205/14 298/207/14 -f 302/222/7 304/230/7 303/223/7 -f 305/225/3 308/228/3 307/226/3 -f 308/228/8 305/534/8 303/229/8 -f 306/231/1 307/226/1 302/222/1 -f 307/226/9 308/228/9 304/230/9 -f 312/233/8 316/239/8 315/234/8 -f 309/236/1 313/535/1 314/237/1 -f 310/238/10 314/237/10 316/239/10 -f 311/235/9 315/234/9 313/240/9 -f 325/242/9 324/536/9 322/243/9 -f 331/245/10 319/537/10 318/246/10 -f 335/248/10 321/538/10 323/249/10 -f 339/251/9 317/539/9 320/252/9 -f 329/254/9 343/540/9 341/255/9 -f 327/257/10 342/541/10 344/258/10 -f 337/260/10 347/542/10 346/261/10 -f 333/263/9 345/543/9 348/264/9 -f 345/266/9 333/263/9 334/244/9 -f 336/262/10 346/544/10 321/268/10 -f 326/256/9 341/545/9 324/269/9 -f 342/270/10 327/257/10 328/250/10 -f 343/272/9 329/254/9 330/253/9 -f 332/259/10 344/546/10 319/274/10 -f 340/275/9 348/547/9 317/276/9 -f 347/277/10 337/548/10 338/247/10 -f 355/279/3 356/301/3 359/280/3 -f 352/282/10 356/301/10 355/279/10 -f 349/284/9 354/288/9 353/285/9 -f 357/287/3 360/299/3 353/285/3 -f 359/289/9 363/305/9 362/290/9 -f 357/292/10 361/304/10 364/293/10 -f 362/295/17 350/549/17 355/279/17 -f 361/296/17 357/287/17 354/288/17 -f 364/298/18 351/303/18 353/285/18 -f 363/300/18 359/280/18 356/301/18 -f 349/297/17 350/549/17 362/295/17 -f 351/303/18 364/298/18 363/300/18 -f 361/304/3 362/290/3 363/305/3 -f 377/308/1 378/550/1 379/551/1 -f 379/551/1 380/552/1 377/308/1 -f 380/552/1 381/306/1 377/308/1 -f 381/306/1 382/553/1 383/554/1 -f 383/554/1 384/555/1 385/307/1 -f 385/307/1 386/556/1 387/557/1 -f 387/557/1 388/558/1 377/308/1 -f 381/306/1 383/554/1 385/307/1 -f 385/307/1 387/557/1 377/308/1 -f 367/559/8 366/560/8 365/561/8 -f 365/561/8 376/562/8 375/309/8 -f 375/309/8 374/563/8 373/310/8 -f 373/310/8 372/564/8 371/311/8 -f 371/311/8 370/565/8 369/566/8 -f 369/566/8 368/567/8 371/311/8 -f 368/567/8 367/559/8 371/311/8 -f 367/559/8 365/561/8 371/311/8 -f 365/561/8 375/309/8 371/311/8 -f 421/312/8 430/316/8 429/313/8 -f 421/312/8 418/317/8 423/315/8 -f 418/317/8 420/319/8 424/318/8 -f 420/319/8 415/322/8 425/320/8 -f 422/321/8 426/324/8 425/320/8 -f 422/321/8 417/568/8 427/323/8 -f 419/325/8 428/328/8 427/326/8 -f 419/325/8 416/314/8 429/313/8 -f 473/331/8 472/569/8 481/329/8 -f 472/569/8 471/570/8 481/329/8 -f 471/570/8 482/571/8 481/329/8 -f 481/329/8 480/572/8 479/573/8 -f 479/573/8 478/574/8 481/329/8 -f 478/574/8 477/330/8 481/329/8 -f 477/330/8 476/575/8 473/331/8 -f 476/575/8 475/576/8 473/331/8 -f 475/576/8 474/577/8 473/331/8 -f 483/334/1 484/578/1 487/332/1 -f 484/578/1 485/579/1 487/332/1 -f 485/579/1 486/580/1 487/332/1 -f 487/332/1 488/581/1 491/333/1 -f 488/581/1 489/582/1 491/333/1 -f 489/582/1 490/583/1 491/333/1 -f 491/333/1 492/584/1 493/585/1 -f 493/585/1 494/586/1 491/333/1 -f 494/586/1 483/334/1 491/333/1 -f 258/335/12 257/337/12 259/188/12 -f 258/335/12 264/587/12 262/336/12 -f 505/339/9 504/588/9 509/340/9 -f 504/588/9 503/589/9 509/340/9 -f 503/589/9 510/590/9 509/340/9 -f 509/340/9 508/591/9 507/592/9 -f 507/592/9 506/338/9 509/340/9 -f 519/341/3 522/345/3 521/342/3 -f 516/344/9 521/342/9 522/345/9 -f 516/344/9 518/346/9 514/347/9 -f 517/349/10 515/355/10 511/350/10 -f 518/346/8 517/349/8 513/351/8 -f 515/352/1 516/344/1 512/348/1 -f 519/354/10 520/593/10 515/355/10 -f 522/345/8 519/354/8 517/349/8 -f 520/343/14 521/342/14 516/356/14 -f 555/358/8 564/362/8 563/359/8 -f 555/358/8 552/363/8 557/361/8 -f 552/363/8 554/365/8 558/364/8 -f 554/365/8 549/368/8 559/366/8 -f 556/367/8 560/370/8 559/366/8 -f 556/367/8 551/594/8 561/369/8 -f 553/371/8 562/374/8 561/372/8 -f 553/371/8 550/360/8 563/359/8 -f 613/375/8 622/379/8 621/376/8 -f 613/375/8 610/380/8 615/378/8 -f 610/380/8 612/382/8 616/381/8 -f 612/382/8 607/385/8 617/383/8 -f 614/384/8 618/387/8 617/383/8 -f 614/384/8 609/595/8 619/386/8 -f 611/388/8 620/391/8 619/389/8 -f 611/388/8 608/377/8 621/376/8 -f 671/392/8 680/396/8 679/393/8 -f 671/392/8 668/397/8 673/395/8 -f 668/397/8 670/399/8 674/398/8 -f 670/399/8 665/402/8 675/400/8 -f 672/401/8 676/404/8 675/400/8 -f 672/401/8 667/596/8 677/403/8 -f 669/405/8 678/408/8 677/406/8 -f 669/405/8 666/394/8 679/393/8 -f 729/409/8 738/413/8 737/410/8 -f 729/409/8 726/414/8 731/412/8 -f 726/414/8 728/416/8 732/415/8 -f 728/416/8 723/419/8 733/417/8 -f 730/418/8 734/421/8 733/417/8 -f 730/418/8 725/597/8 735/420/8 -f 727/422/8 736/425/8 735/423/8 -f 727/422/8 724/411/8 737/410/8 -f 787/426/8 796/430/8 795/427/8 -f 787/426/8 784/431/8 789/429/8 -f 784/431/8 786/433/8 790/432/8 -f 786/433/8 781/436/8 791/434/8 -f 788/435/8 792/438/8 791/434/8 -f 788/435/8 783/598/8 793/437/8 -f 785/439/8 794/442/8 793/440/8 -f 785/439/8 782/428/8 795/427/8 +f 681/1069/172 685/1070/172 677/1071/172 +f 697/1072/173 695/1073/173 691/1074/173 +f 702/1075/174 703/1076/174 701/1077/174 +f 703/1076/173 708/1078/173 707/1079/173 +f 708/1078/175 705/1080/175 707/1079/175 +f 706/1081/172 701/1082/172 705/1080/172 +f 707/1079/175 705/1080/175 712/1083/175 +f 704/1084/176 706/1081/176 708/1078/176 +f 709/1085/174 720/1086/174 711/1087/174 +f 710/1088/174 713/1089/174 701/1090/174 +f 719/1091/173 735/1092/173 720/1086/173 +f 701/1077/174 703/1076/174 710/1093/174 +f 713/1094/173 722/1095/173 714/1096/173 +f 705/1097/175 716/1098/175 712/1099/175 +f 701/1100/177 714/1101/177 705/1097/177 +f 712/1099/178 715/1102/178 710/1088/178 +f 707/1079/179 710/1088/179 703/1076/179 +f 713/1103/174 715/1104/174 717/1105/174 +f 736/1106/175 733/1107/175 735/1092/175 +f 716/1108/175 714/1096/175 718/1109/175 +f 723/1110/180 725/1111/180 721/1112/180 +f 717/1105/174 721/1113/174 713/1103/174 +f 718/1109/172 723/1114/172 717/1105/172 +f 714/1096/175 724/1115/175 718/1109/175 +f 726/1116/178 727/1117/178 725/1118/178 +f 726/1116/172 732/1119/172 728/1120/172 +f 727/1121/173 729/1122/173 725/1123/173 +f 732/1119/177 729/1122/177 731/1124/177 +f 725/1125/173 722/1095/173 721/1126/173 +f 730/1127/172 723/1110/172 724/1115/172 +f 722/1095/176 730/1127/176 724/1115/176 +f 716/1098/181 717/1105/181 715/1102/181 +f 733/1128/172 709/1085/172 711/1087/172 +f 735/1092/175 733/1107/175 738/1129/175 +f 719/1091/182 734/1130/182 736/1131/182 +f 737/1132/174 739/1133/174 711/1134/174 +f 711/1087/174 720/1086/174 737/1135/174 +f 739/1136/173 746/1137/173 740/1138/173 +f 733/1139/175 742/1140/175 738/1141/175 +f 711/1134/177 740/1142/177 733/1143/177 +f 738/1141/178 741/1144/178 737/1132/178 +f 735/1092/179 737/1132/179 720/1086/179 +f 739/1136/174 741/1145/174 743/1146/174 +f 742/1147/175 740/1148/175 744/1149/175 +f 743/1146/174 745/1150/174 739/1136/174 +f 744/1149/172 747/1151/172 743/1146/172 +f 740/1148/175 748/1152/175 744/1149/175 +f 742/1140/181 743/1146/181 741/1144/181 +f 728/1153/183 746/1154/183 727/1155/183 +f 746/1156/173 731/1124/173 727/1157/173 +f 731/1124/182 747/1151/182 732/1119/182 +f 732/1119/172 748/1158/172 728/1153/172 +f 775/1159/179 779/1160/179 776/1161/179 +f 783/1162/178 782/1163/178 781/1164/178 +f 787/1165/177 785/1166/177 786/1167/177 +f 783/1168/173 788/1169/173 784/1170/173 +f 782/1163/172 786/1171/172 781/1172/172 +f 784/1170/175 787/1165/175 782/1163/175 +f 790/1173/178 791/1174/178 789/1175/178 +f 793/1176/177 795/1177/177 794/1178/177 +f 796/1179/173 791/1180/173 792/1181/173 +f 794/1182/172 790/1173/172 789/1183/172 +f 795/1177/174 792/1181/174 790/1173/174 +f 803/1184/177 807/1185/177 806/1186/177 +f 800/1187/175 803/1184/175 798/1188/175 +f 797/1189/174 801/1190/174 799/1191/174 +f 805/1192/177 801/1190/177 802/1193/177 +f 807/1194/174 810/1195/174 806/1196/174 +f 805/1197/175 812/1198/175 808/1199/175 +f 810/1200/184 803/1184/184 806/1186/184 +f 809/1201/184 802/1193/184 797/1202/184 +f 812/1203/185 801/1190/185 808/1204/185 +f 811/1205/185 804/1206/185 800/1207/185 +f 797/1202/184 810/1200/184 809/1201/184 +f 799/1208/185 811/1205/185 800/1207/185 +f 809/1209/177 811/1210/177 812/1198/177 +f 774/1211/179 775/1159/179 776/1161/179 +f 774/1211/179 778/1212/179 773/1213/179 +f 677/1071/172 678/1214/172 679/1215/172 +f 679/1215/172 680/1216/172 677/1071/172 +f 680/1216/172 681/1069/172 677/1071/172 +f 681/1069/172 682/1217/172 685/1070/172 +f 682/1217/172 683/1218/172 685/1070/172 +f 683/1218/172 684/1219/172 685/1070/172 +f 685/1070/172 686/1220/172 687/1221/172 +f 687/1221/172 688/1222/172 685/1070/172 +f 688/1222/172 677/1071/172 685/1070/172 +f 691/1074/173 689/1223/173 690/1224/173 +f 690/1224/173 700/1225/173 691/1074/173 +f 700/1225/173 699/1226/173 691/1074/173 +f 699/1226/173 698/1227/173 697/1072/173 +f 697/1072/173 696/1228/173 695/1073/173 +f 695/1073/173 694/1229/173 691/1074/173 +f 694/1229/173 693/1230/173 691/1074/173 +f 693/1230/173 692/1231/173 691/1074/173 +f 699/1226/173 697/1072/173 691/1074/173 +f 702/1075/174 704/1232/174 703/1076/174 +f 703/1076/173 704/1232/173 708/1078/173 +f 708/1078/175 706/1081/175 705/1080/175 +f 706/1081/172 702/1233/172 701/1082/172 +f 704/1084/176 702/1234/176 706/1081/176 +f 709/1085/174 719/1091/174 720/1086/174 +f 710/1088/174 715/1102/174 713/1089/174 +f 719/1091/173 736/1106/173 735/1092/173 +f 713/1094/173 721/1235/173 722/1095/173 +f 705/1097/175 714/1101/175 716/1098/175 +f 701/1100/177 713/1236/177 714/1101/177 +f 712/1099/178 716/1098/178 715/1102/178 +f 707/1079/179 712/1099/179 710/1088/179 +f 736/1106/175 734/1237/175 733/1107/175 +f 723/1110/180 726/1238/180 725/1111/180 +f 717/1105/174 723/1114/174 721/1113/174 +f 718/1109/172 724/1115/172 723/1114/172 +f 714/1096/175 722/1095/175 724/1115/175 +f 726/1116/178 728/1120/178 727/1117/178 +f 726/1116/172 730/1127/172 732/1119/172 +f 727/1121/173 731/1124/173 729/1122/173 +f 732/1119/177 730/1127/177 729/1122/177 +f 725/1125/173 729/1122/173 722/1095/173 +f 730/1127/172 726/1238/172 723/1110/172 +f 722/1095/176 729/1122/176 730/1127/176 +f 716/1098/181 718/1109/181 717/1105/181 +f 733/1128/172 734/1239/172 709/1085/172 +f 719/1091/182 709/1085/182 734/1130/182 +f 737/1132/174 741/1144/174 739/1133/174 +f 739/1136/173 745/1150/173 746/1137/173 +f 733/1139/175 740/1240/175 742/1140/175 +f 711/1134/177 739/1133/177 740/1142/177 +f 738/1141/178 742/1140/178 741/1144/178 +f 735/1092/179 738/1141/179 737/1132/179 +f 743/1146/174 747/1151/174 745/1150/174 +f 744/1149/172 748/1152/172 747/1151/172 +f 740/1148/175 746/1241/175 748/1152/175 +f 742/1140/181 744/1149/181 743/1146/181 +f 728/1153/183 748/1158/183 746/1154/183 +f 746/1156/173 745/1150/173 731/1124/173 +f 731/1124/182 745/1150/182 747/1151/182 +f 732/1119/172 747/1151/172 748/1158/172 +f 775/1159/179 777/1242/179 779/1160/179 +f 783/1162/178 784/1170/178 782/1163/178 +f 787/1165/177 788/1169/177 785/1166/177 +f 783/1168/173 785/1243/173 788/1169/173 +f 782/1163/172 787/1165/172 786/1171/172 +f 784/1170/175 788/1169/175 787/1165/175 +f 790/1173/178 792/1181/178 791/1174/178 +f 793/1176/177 796/1179/177 795/1177/177 +f 796/1179/173 793/1244/173 791/1180/173 +f 794/1182/172 795/1177/172 790/1173/172 +f 795/1177/174 796/1179/174 792/1181/174 +f 803/1184/177 804/1206/177 807/1185/177 +f 800/1187/175 804/1206/175 803/1184/175 +f 797/1189/174 802/1193/174 801/1190/174 +f 805/1192/177 808/1204/177 801/1190/177 +f 807/1194/174 811/1210/174 810/1195/174 +f 805/1197/175 809/1209/175 812/1198/175 +f 810/1200/184 798/1245/184 803/1184/184 +f 809/1201/184 805/1192/184 802/1193/184 +f 812/1203/185 799/1208/185 801/1190/185 +f 811/1205/185 807/1185/185 804/1206/185 +f 797/1202/184 798/1245/184 810/1200/184 +f 799/1208/185 812/1203/185 811/1205/185 +f 809/1209/177 810/1195/177 811/1210/177 +f 774/1211/179 773/1213/179 775/1159/179 +f 774/1211/179 780/1246/179 778/1212/179 s 1 -f 3/599/9 57/600/15 2/601/15 -f 8/602/11 63/603/10 7/604/10 -f 6/605/16 61/606/7 5/607/7 -f 3/599/9 60/608/13 59/609/9 -f 2/601/15 58/610/3 1/611/3 -f 1/611/3 64/612/11 8/602/11 -f 7/604/10 62/613/16 6/605/16 -f 5/614/7 60/608/13 4/615/13 -f 80/616/19 103/617/20 79/618/20 -f 87/619/21 100/464/22 76/68/22 -f 88/620/23 111/621/21 87/619/21 -f 66/622/24 112/623/23 88/620/23 -f 85/624/25 110/625/26 86/626/26 -f 78/627/27 89/467/28 65/77/28 -f 67/67/29 109/628/25 85/624/25 -f 70/64/30 101/629/31 77/630/31 -f 79/618/20 92/463/32 68/65/32 -f 84/631/33 107/632/34 83/633/34 -f 82/634/35 93/462/36 69/62/36 -f 71/76/37 104/635/19 80/616/19 -f 77/630/31 102/636/27 78/627/27 -f 74/73/38 105/637/39 81/638/39 -f 83/633/34 96/466/40 72/74/40 -f 81/638/39 106/639/35 82/634/35 -f 86/626/26 97/465/41 73/71/41 -f 75/70/42 108/640/33 84/631/33 -f 29/641/6 132/642/43 28/643/43 -f 56/644/44 159/645/45 55/646/45 -f 16/647/13 119/648/9 15/649/9 -f 43/650/45 146/651/46 42/652/46 -f 30/653/47 133/654/6 29/655/6 -f 49/656/4 160/657/44 56/644/44 -f 9/658/7 120/659/13 16/647/13 -f 44/660/44 147/661/45 43/650/45 -f 31/662/48 134/663/47 30/653/47 -f 18/664/15 121/665/3 17/666/3 -f 45/667/4 148/668/44 44/660/44 -f 32/669/49 135/670/48 31/662/48 -f 19/671/9 122/672/15 18/664/15 -f 46/673/50 149/674/4 45/675/4 -f 25/676/2 136/677/49 32/669/49 -f 20/678/13 123/679/9 19/671/9 -f 47/680/51 150/681/50 46/673/50 -f 34/682/47 137/683/6 33/684/6 -f 21/685/7 124/686/13 20/678/13 -f 48/687/52 151/688/51 47/680/51 -f 35/689/48 138/690/47 34/682/47 -f 22/691/16 125/692/7 21/693/7 -f 41/694/5 152/695/52 48/687/52 -f 36/696/49 139/697/48 35/689/48 -f 23/698/10 126/699/16 22/691/16 -f 50/700/50 153/701/4 49/656/4 -f 10/702/16 113/703/7 9/658/7 -f 37/704/2 140/705/49 36/696/49 -f 24/706/11 127/707/10 23/698/10 -f 51/708/51 154/709/50 50/700/50 -f 11/710/10 114/711/16 10/702/16 -f 38/712/53 141/713/2 37/714/2 -f 17/666/3 128/715/11 24/706/11 -f 52/716/52 155/717/51 51/708/51 -f 12/718/11 115/719/10 11/710/10 -f 39/720/54 142/721/53 38/712/53 -f 26/722/53 129/723/2 25/676/2 -f 53/724/5 156/725/52 52/716/52 -f 13/726/3 116/727/11 12/718/11 -f 40/728/43 143/729/54 39/720/54 -f 27/730/54 130/731/53 26/722/53 -f 54/732/46 157/733/5 53/734/5 -f 14/735/15 117/736/3 13/737/3 -f 33/684/6 144/738/43 40/728/43 -f 28/643/43 131/739/54 27/730/54 -f 55/646/45 158/740/46 54/732/46 -f 15/649/9 118/741/15 14/735/15 -f 42/652/46 145/742/5 41/694/5 -f 163/743/5 176/744/9 164/745/9 -f 170/746/10 183/747/6 171/748/6 -f 167/749/7 180/750/54 168/751/54 -f 164/745/9 177/752/2 165/753/2 -f 171/748/6 184/754/51 172/755/51 -f 161/756/3 173/757/48 162/758/48 -f 168/751/54 181/759/4 169/760/4 -f 165/753/2 178/761/45 166/762/45 -f 172/755/51 174/763/3 161/756/3 -f 162/758/48 175/764/5 163/743/5 -f 169/760/4 182/765/10 170/746/10 -f 166/762/45 179/766/7 167/767/7 -f 242/768/55 236/769/56 234/770/57 -f 241/771/58 238/772/59 233/773/60 -f 244/774/61 239/775/62 236/769/56 -f 247/776/63 237/777/64 239/775/62 -f 243/778/65 233/779/60 235/780/66 -f 240/781/67 242/768/55 234/770/57 -f 237/777/64 243/778/65 235/780/66 -f 246/782/68 240/781/67 238/772/59 -f 247/783/63 244/784/61 255/785/69 -f 245/786/70 255/785/69 253/787/71 -f 241/788/58 251/789/72 249/790/73 -f 242/791/55 256/792/74 250/793/75 -f 243/794/65 253/787/71 251/789/72 -f 248/795/76 254/796/77 256/792/74 -f 242/791/55 252/797/78 244/784/61 -f 246/798/68 241/799/58 254/796/77 -f 255/800/69 261/526/79 253/801/71 -f 255/800/69 252/802/78 263/189/80 -f 250/803/75 260/804/81 252/802/78 -f 256/805/74 264/806/82 250/803/75 -f 254/807/77 264/806/82 256/805/74 -f 254/807/77 249/808/73 262/809/83 -f 249/810/73 259/811/84 257/812/85 -f 253/801/71 261/526/79 251/813/72 -f 280/814/12 287/815/7 279/816/7 -f 278/817/14 285/818/1 277/819/1 -f 276/820/86 283/821/3 275/822/3 -f 274/823/87 281/824/8 273/825/8 -f 273/825/8 288/826/12 280/814/12 -f 279/827/7 286/828/14 278/817/14 -f 277/819/1 284/829/86 276/820/86 -f 275/822/3 282/830/87 274/823/87 -f 332/259/88 326/256/89 327/257/89 -f 331/245/90 339/251/91 330/253/90 -f 333/263/92 337/260/93 336/262/92 -f 328/250/94 326/256/89 325/242/94 -f 330/253/90 332/259/88 331/245/90 -f 336/262/92 334/244/95 333/263/92 -f 340/275/93 338/247/91 337/548/93 -f 325/242/94 335/248/95 328/250/94 -f 345/831/88 347/542/89 348/832/89 -f 322/833/90 346/544/88 345/834/88 -f 322/835/90 323/249/91 321/538/90 -f 324/836/91 342/270/93 323/271/91 -f 341/837/93 344/258/92 342/541/93 -f 343/838/92 319/274/95 344/546/92 -f 317/839/94 319/537/95 320/840/95 -f 318/278/94 348/841/89 347/277/89 -f 255/785/69 244/784/61 252/797/78 -f 253/787/71 243/794/65 245/786/70 -f 263/189/80 252/802/78 260/804/81 -f 251/813/72 261/526/79 259/811/84 -f 254/796/77 241/799/58 249/842/73 -f 256/792/74 242/791/55 248/795/76 -f 250/803/75 264/806/82 258/843/96 -f 262/809/83 249/808/73 257/844/85 -f 372/845/54 383/846/7 371/847/7 -f 369/848/2 380/849/9 368/850/9 -f 376/851/51 387/852/6 375/853/6 -f 366/854/48 377/855/3 365/856/3 -f 373/857/4 384/858/54 372/845/54 -f 370/859/45 381/860/2 369/848/2 -f 365/856/3 388/861/51 376/851/51 -f 367/862/5 378/863/48 366/854/48 -f 374/864/10 385/865/4 373/857/4 -f 371/866/7 382/867/45 370/859/45 -f 368/850/9 379/868/5 367/862/5 -f 375/853/6 386/869/10 374/864/10 -f 397/870/97 404/871/16 403/872/98 -f 398/873/7 405/874/99 404/871/16 -f 413/875/13 397/876/97 414/877/100 -f 412/878/101 398/879/7 413/875/13 -f 391/880/9 414/877/100 390/881/102 -f 412/878/101 391/880/9 392/882/103 -f 408/883/104 391/880/9 390/881/102 -f 407/884/15 402/885/105 401/886/3 -f 410/887/11 402/885/105 409/888/106 -f 403/872/98 395/889/10 396/890/107 -f 395/889/10 409/888/106 396/890/107 -f 396/890/107 409/888/106 389/891/1 -f 409/888/106 402/885/105 389/892/1 -f 408/883/104 389/893/1 402/885/105 -f 389/894/1 408/883/104 390/881/102 -f 389/895/1 390/881/102 414/877/100 -f 414/877/100 397/876/97 389/896/1 -f 403/872/98 389/897/1 397/870/97 -f 389/898/1 403/872/98 396/890/107 -f 404/871/16 394/899/108 395/889/10 -f 410/887/11 394/899/108 411/900/109 -f 401/886/3 411/900/109 400/901/110 -f 393/902/8 411/900/109 394/899/108 -f 411/900/109 393/903/8 400/901/110 -f 406/904/111 401/886/3 400/901/110 -f 391/880/9 406/904/111 392/882/103 -f 393/905/8 406/904/111 400/901/110 -f 392/882/103 406/904/111 393/906/8 -f 392/882/103 393/907/8 412/878/101 -f 412/878/101 393/908/8 399/909/112 -f 405/874/99 399/910/112 393/911/8 -f 393/912/8 394/899/108 405/874/99 -f 430/316/13 445/913/9 429/313/9 -f 416/314/10 437/914/11 421/312/11 -f 417/327/7 432/915/16 419/325/16 -f 423/315/7 446/916/13 430/316/13 -f 424/318/16 440/917/7 423/315/7 -f 422/321/13 431/918/7 417/568/7 -f 425/320/10 439/919/16 424/318/16 -f 415/322/9 433/920/13 422/321/13 -f 426/324/11 441/921/10 425/320/10 -f 420/319/15 434/922/9 415/322/9 -f 427/323/3 442/923/11 426/324/11 -f 418/317/3 435/924/15 420/319/15 -f 428/328/15 443/925/3 427/326/3 -f 421/312/11 436/926/3 418/317/3 -f 429/313/9 444/927/15 428/328/15 -f 419/325/16 438/928/10 416/314/10 -f 450/929/9 461/930/5 449/931/5 -f 457/932/6 468/933/10 456/934/10 -f 454/935/54 465/936/7 453/937/7 -f 451/938/2 462/939/9 450/929/9 -f 458/940/51 469/941/6 457/932/6 -f 448/942/48 459/943/3 447/944/3 -f 455/945/4 466/946/54 454/935/54 -f 452/947/45 463/948/2 451/938/2 -f 447/944/3 470/949/51 458/940/51 -f 449/931/5 460/950/48 448/942/48 -f 456/934/10 467/951/4 455/945/4 -f 453/952/7 464/953/45 452/947/45 -f 482/954/51 493/955/6 481/956/6 -f 472/957/48 483/958/3 471/959/3 -f 479/960/4 490/961/54 478/962/54 -f 476/963/45 487/964/2 475/965/2 -f 471/959/3 494/966/51 482/954/51 -f 473/967/5 484/968/48 472/957/48 -f 480/969/10 491/970/4 479/960/4 -f 477/971/7 488/972/45 476/963/45 -f 474/973/9 485/974/5 473/967/5 -f 481/956/6 492/975/10 480/969/10 -f 478/962/54 489/976/7 477/977/7 -f 475/965/2 486/978/9 474/973/9 -f 509/979/7 502/980/12 501/981/7 -f 507/982/1 500/983/14 499/984/1 -f 505/985/3 498/986/86 497/987/3 -f 503/988/8 496/989/87 495/990/8 -f 510/991/12 495/990/8 502/980/12 -f 508/992/14 501/993/7 500/983/14 -f 506/994/86 499/984/1 498/986/86 -f 504/995/87 497/987/3 496/989/87 -f 531/996/105 538/997/15 537/998/104 -f 532/999/3 539/1000/111 538/997/15 -f 547/1001/11 531/1002/105 548/1003/106 -f 546/1004/109 532/1005/3 547/1001/11 -f 525/1006/10 548/1003/106 524/1007/107 -f 546/1004/109 525/1006/10 526/1008/108 -f 542/1009/98 525/1006/10 524/1007/107 -f 541/1010/16 536/1011/97 535/1012/7 -f 544/1013/13 536/1011/97 543/1014/100 -f 537/998/104 529/1015/9 530/1016/102 -f 529/1015/9 543/1014/100 530/1016/102 -f 530/1016/102 543/1014/100 523/1017/1 -f 543/1014/100 536/1011/97 523/1018/1 -f 542/1009/98 523/1019/1 536/1011/97 -f 523/1020/1 542/1009/98 524/1007/107 -f 523/1021/1 524/1007/107 548/1003/106 -f 548/1003/106 531/1002/105 523/1022/1 -f 537/998/104 523/1023/1 531/996/105 -f 523/1024/1 537/998/104 530/1016/102 -f 538/997/15 528/1025/103 529/1015/9 -f 544/1013/13 528/1025/103 545/1026/101 -f 535/1012/7 545/1026/101 534/1027/112 -f 527/1028/8 545/1026/101 528/1025/103 -f 545/1026/101 527/1029/8 534/1027/112 -f 540/1030/99 535/1012/7 534/1027/112 -f 525/1006/10 540/1030/99 526/1008/108 -f 527/1031/8 540/1030/99 534/1027/112 -f 526/1008/108 540/1030/99 527/1032/8 -f 526/1008/108 527/1033/8 546/1004/109 -f 546/1004/109 527/1034/8 533/1035/110 -f 539/1000/111 533/1036/110 527/1037/8 -f 527/1038/8 528/1025/103 539/1000/111 -f 564/362/11 579/1039/10 563/359/10 -f 550/360/9 571/1040/13 555/358/13 -f 551/373/3 566/1041/15 553/371/15 -f 557/361/3 580/1042/11 564/362/11 -f 558/364/15 574/1043/3 557/361/3 -f 556/367/11 565/1044/3 551/594/3 -f 559/366/9 573/1045/15 558/364/15 -f 549/368/10 567/1046/11 556/367/11 -f 560/370/13 575/1047/9 559/366/9 -f 554/365/16 568/1048/10 549/368/10 -f 561/369/7 576/1049/13 560/370/13 -f 552/363/7 569/1050/16 554/365/16 -f 562/374/16 577/1051/7 561/372/7 -f 555/358/13 570/1052/7 552/363/7 -f 563/359/10 578/1053/16 562/374/16 -f 553/371/15 572/1054/9 550/360/9 -f 589/1055/113 596/1056/53 595/1057/114 -f 591/1058/115 596/1056/53 590/1059/2 -f 606/1060/116 590/1061/2 589/1062/113 -f 604/1063/117 590/1061/2 605/1064/49 -f 583/1065/48 606/1060/116 582/1066/118 -f 604/1063/117 583/1065/48 584/1067/119 -f 599/1068/47 582/1066/118 600/1069/120 -f 593/1070/6 600/1069/120 594/1071/121 -f 602/1072/43 594/1071/121 601/1073/122 -f 595/1057/114 587/1074/54 588/1075/123 -f 588/1075/123 602/1072/43 601/1073/122 -f 588/1075/123 601/1073/122 581/1076/1 -f 601/1073/122 594/1071/121 581/1077/1 -f 600/1069/120 581/1078/1 594/1071/121 -f 581/1079/1 600/1069/120 582/1066/118 -f 581/1080/1 582/1066/118 606/1060/116 -f 606/1060/116 589/1062/113 581/1081/1 -f 595/1057/114 581/1082/1 589/1055/113 -f 581/1083/1 595/1057/114 588/1075/123 -f 587/1074/54 597/1084/124 586/1085/125 -f 603/1086/126 587/1074/54 586/1085/125 -f 593/1070/6 603/1086/126 592/1087/127 -f 585/1088/8 603/1086/126 586/1085/125 -f 603/1086/126 585/1089/8 592/1087/127 -f 598/1090/128 593/1070/6 592/1087/127 -f 584/1067/119 599/1068/47 598/1090/128 -f 585/1091/8 598/1090/128 592/1087/127 -f 584/1067/119 598/1090/128 585/1092/8 -f 584/1067/119 585/1093/8 604/1063/117 -f 604/1063/117 585/1094/8 591/1095/115 -f 597/1084/124 591/1058/115 585/1096/8 -f 585/1097/8 586/1085/125 597/1084/124 -f 622/379/49 637/1098/48 621/376/48 -f 608/377/54 629/1099/43 613/375/43 -f 609/390/2 624/1100/53 611/388/53 -f 615/378/2 638/1101/49 622/379/49 -f 616/381/53 632/1102/2 615/378/2 -f 614/384/49 623/1103/2 609/595/2 -f 617/383/54 631/1104/53 616/381/53 -f 607/385/48 625/1105/49 614/384/49 -f 618/387/43 633/1106/54 617/383/54 -f 612/382/47 626/1107/48 607/385/48 -f 619/386/6 634/1108/43 618/387/43 -f 610/380/6 627/1109/47 612/382/47 -f 620/391/47 635/1110/6 619/389/6 -f 613/375/43 628/1111/6 610/380/6 -f 621/376/48 636/1112/47 620/391/47 -f 611/388/53 630/1113/54 608/377/54 -f 647/1114/121 654/1115/47 653/1116/120 -f 649/1117/127 654/1115/47 648/1118/6 -f 664/1119/122 648/1120/6 647/1121/121 -f 662/1122/126 648/1120/6 663/1123/43 -f 641/1124/54 664/1119/122 640/1125/123 -f 662/1122/126 641/1124/54 642/1126/125 -f 657/1127/53 640/1125/123 658/1128/114 -f 651/1129/2 658/1128/114 652/1130/113 -f 660/1131/49 652/1130/113 659/1132/116 -f 653/1116/120 645/1133/48 646/1134/118 -f 646/1134/118 660/1131/49 659/1132/116 -f 646/1134/118 659/1132/116 639/1135/1 -f 659/1132/116 652/1130/113 639/1136/1 -f 658/1128/114 639/1137/1 652/1130/113 -f 639/1138/1 658/1128/114 640/1125/123 -f 639/1139/1 640/1125/123 664/1119/122 -f 664/1119/122 647/1121/121 639/1140/1 -f 653/1116/120 639/1141/1 647/1114/121 -f 639/1142/1 653/1116/120 646/1134/118 -f 645/1133/48 655/1143/128 644/1144/119 -f 661/1145/117 645/1133/48 644/1144/119 -f 651/1129/2 661/1145/117 650/1146/115 -f 643/1147/8 661/1145/117 644/1144/119 -f 661/1145/117 643/1148/8 650/1146/115 -f 656/1149/124 651/1129/2 650/1146/115 -f 642/1126/125 657/1127/53 656/1149/124 -f 643/1150/8 656/1149/124 650/1146/115 -f 642/1126/125 656/1149/124 643/1151/8 -f 642/1126/125 643/1152/8 662/1122/126 -f 662/1122/126 643/1153/8 649/1154/127 -f 655/1143/128 649/1117/127 643/1155/8 -f 643/1156/8 644/1144/119 655/1143/128 -f 680/396/43 695/1157/54 679/393/54 -f 666/394/48 687/1158/49 671/392/49 -f 667/407/6 682/1159/47 669/405/47 -f 673/395/6 696/1160/43 680/396/43 -f 674/398/47 690/1161/6 673/395/6 -f 672/401/43 681/1162/6 667/596/6 -f 675/400/48 689/1163/47 674/398/47 -f 665/402/54 683/1164/43 672/401/43 -f 676/404/49 691/1165/48 675/400/48 -f 670/399/53 684/1166/54 665/402/54 -f 677/403/2 692/1167/49 676/404/49 -f 668/397/2 685/1168/53 670/399/53 -f 678/408/53 693/1169/2 677/406/2 -f 671/392/49 686/1170/2 668/397/2 -f 679/393/54 694/1171/53 678/408/53 -f 669/405/47 688/1172/48 666/394/48 -f 706/1173/5 711/1174/129 705/1175/130 -f 707/1176/131 712/1177/46 706/1173/5 -f 721/1178/52 705/1179/130 722/1180/132 -f 707/1181/131 721/1178/52 720/1182/133 -f 699/1183/51 722/1180/132 698/1184/134 -f 700/1185/135 721/1178/52 699/1183/51 -f 715/1186/50 698/1184/134 716/1187/136 -f 709/1188/4 716/1187/136 710/1189/137 -f 717/1190/138 709/1188/4 710/1189/137 -f 711/1174/129 703/1191/45 704/1192/139 -f 704/1192/139 718/1193/44 717/1190/138 -f 704/1192/139 717/1190/138 697/1194/1 -f 717/1190/138 710/1189/137 697/1195/1 -f 716/1187/136 697/1196/1 710/1189/137 -f 697/1197/1 716/1187/136 698/1184/134 -f 697/1198/1 698/1184/134 722/1180/132 -f 722/1180/132 705/1179/130 697/1199/1 -f 711/1174/129 697/1200/1 705/1175/130 -f 697/1201/1 711/1174/129 704/1192/139 -f 703/1191/45 713/1202/140 702/1203/141 -f 719/1204/142 703/1191/45 702/1203/141 -f 709/1188/4 719/1204/142 708/1205/143 -f 701/1206/8 719/1204/142 702/1203/141 -f 719/1204/142 701/1207/8 708/1205/143 -f 714/1208/144 709/1188/4 708/1205/143 -f 699/1183/51 714/1208/144 700/1185/135 -f 701/1209/8 714/1208/144 708/1205/143 -f 700/1185/135 714/1208/144 701/1210/8 -f 700/1185/135 701/1211/8 720/1182/133 -f 720/1182/133 701/1212/8 707/1181/131 -f 713/1202/140 707/1176/131 701/1213/8 -f 701/1214/8 702/1203/141 713/1202/140 -f 738/413/52 753/1215/51 737/410/51 -f 724/411/45 745/1216/44 729/409/44 -f 725/424/5 740/1217/46 727/422/46 -f 731/412/5 754/1218/52 738/413/52 -f 732/415/46 748/1219/5 731/412/5 -f 730/418/52 739/1220/5 725/597/5 -f 733/417/45 747/1221/46 732/415/46 -f 723/419/51 741/1222/52 730/418/52 -f 734/421/44 749/1223/45 733/417/45 -f 728/416/50 742/1224/51 723/419/51 -f 735/420/4 750/1225/44 734/421/44 -f 726/414/4 743/1226/50 728/416/50 -f 736/425/50 751/1227/4 735/423/4 -f 729/409/44 744/1228/4 726/414/4 -f 737/410/51 752/1229/50 736/425/50 -f 727/422/46 746/1230/45 724/411/45 -f 764/1231/4 769/1232/136 763/1233/137 -f 765/1234/143 770/1235/50 764/1231/4 -f 779/1236/44 763/1237/137 780/1238/138 -f 765/1239/143 779/1236/44 778/1240/142 -f 757/1241/45 780/1238/138 756/1242/139 -f 758/1243/141 779/1236/44 757/1241/45 -f 773/1244/46 756/1242/139 774/1245/129 -f 767/1246/5 774/1245/129 768/1247/130 -f 775/1248/132 767/1246/5 768/1247/130 -f 769/1232/136 761/1249/51 762/1250/134 -f 762/1250/134 776/1251/52 775/1248/132 -f 762/1250/134 775/1248/132 755/1252/1 -f 775/1248/132 768/1247/130 755/1253/1 -f 774/1245/129 755/1254/1 768/1247/130 -f 755/1255/1 774/1245/129 756/1242/139 -f 755/1256/1 756/1242/139 780/1238/138 -f 780/1238/138 763/1237/137 755/1257/1 -f 769/1232/136 755/1258/1 763/1233/137 -f 755/1259/1 769/1232/136 762/1250/134 -f 761/1249/51 771/1260/144 760/1261/135 -f 777/1262/133 761/1249/51 760/1261/135 -f 767/1246/5 777/1262/133 766/1263/131 -f 759/1264/8 777/1262/133 760/1261/135 -f 777/1262/133 759/1265/8 766/1263/131 -f 772/1266/140 767/1246/5 766/1263/131 -f 757/1241/45 772/1266/140 758/1243/141 -f 759/1267/8 772/1266/140 766/1263/131 -f 758/1243/141 772/1266/140 759/1268/8 -f 758/1243/141 759/1269/8 778/1240/142 -f 778/1240/142 759/1270/8 765/1239/143 -f 771/1260/144 765/1234/143 759/1271/8 -f 759/1272/8 760/1261/135 771/1260/144 -f 796/430/44 811/1273/45 795/427/45 -f 782/428/51 803/1274/52 787/426/52 -f 783/441/4 798/1275/50 785/439/50 -f 789/429/4 812/1276/44 796/430/44 -f 790/432/50 806/1277/4 789/429/4 -f 788/435/44 797/1278/4 783/598/4 -f 791/434/51 805/1279/50 790/432/50 -f 781/436/45 799/1280/44 788/435/44 -f 792/438/52 807/1281/51 791/434/51 -f 786/433/46 800/1282/45 781/436/45 -f 793/437/5 808/1283/52 792/438/52 -f 784/431/5 801/1284/46 786/433/46 -f 794/442/46 809/1285/5 793/440/5 -f 787/426/52 802/1286/5 784/431/5 -f 795/427/45 810/1287/46 794/442/46 -f 785/439/50 804/1288/51 782/428/51 -f 3/599/9 59/609/9 57/600/15 -f 8/602/11 64/612/11 63/603/10 -f 6/605/16 62/613/16 61/606/7 -f 3/599/9 4/615/13 60/608/13 -f 2/601/15 57/600/15 58/610/3 -f 1/611/3 58/610/3 64/612/11 -f 7/604/10 63/603/10 62/613/16 -f 5/614/7 61/1289/7 60/608/13 -f 80/616/19 104/635/19 103/617/20 -f 87/619/21 111/621/21 100/464/22 -f 88/620/23 112/623/23 111/621/21 -f 66/622/24 90/1290/24 112/623/23 -f 85/624/25 109/628/25 110/625/26 -f 78/627/27 102/636/27 89/467/28 -f 67/67/29 91/66/29 109/628/25 -f 70/64/30 94/63/30 101/629/31 -f 79/618/20 103/617/20 92/463/32 -f 84/631/33 108/640/33 107/632/34 -f 82/634/35 106/639/35 93/462/36 -f 71/76/37 95/75/37 104/635/19 -f 77/630/31 101/629/31 102/636/27 -f 74/73/38 98/72/38 105/637/39 -f 83/633/34 107/632/34 96/466/40 -f 81/638/39 105/637/39 106/639/35 -f 86/626/26 110/625/26 97/465/41 -f 75/70/42 99/69/42 108/640/33 -f 29/641/6 133/1291/6 132/642/43 -f 56/644/44 160/657/44 159/645/45 -f 16/647/13 120/659/13 119/648/9 -f 43/650/45 147/661/45 146/651/46 -f 30/653/47 134/663/47 133/654/6 -f 49/656/4 153/701/4 160/657/44 -f 9/658/7 113/703/7 120/659/13 -f 44/660/44 148/668/44 147/661/45 -f 31/662/48 135/670/48 134/663/47 -f 18/664/15 122/672/15 121/665/3 -f 45/667/4 149/1292/4 148/668/44 -f 32/669/49 136/677/49 135/670/48 -f 19/671/9 123/679/9 122/672/15 -f 46/673/50 150/681/50 149/674/4 -f 25/676/2 129/723/2 136/677/49 -f 20/678/13 124/686/13 123/679/9 -f 47/680/51 151/688/51 150/681/50 -f 34/682/47 138/690/47 137/683/6 -f 21/685/7 125/1293/7 124/686/13 -f 48/687/52 152/695/52 151/688/51 -f 35/689/48 139/697/48 138/690/47 -f 22/691/16 126/699/16 125/692/7 -f 41/694/5 145/742/5 152/695/52 -f 36/696/49 140/705/49 139/697/48 -f 23/698/10 127/707/10 126/699/16 -f 50/700/50 154/709/50 153/701/4 -f 10/702/16 114/711/16 113/703/7 -f 37/704/2 141/1294/2 140/705/49 -f 24/706/11 128/715/11 127/707/10 -f 51/708/51 155/717/51 154/709/50 -f 11/710/10 115/719/10 114/711/16 -f 38/712/53 142/721/53 141/713/2 -f 17/666/3 121/665/3 128/715/11 -f 52/716/52 156/725/52 155/717/51 -f 12/718/11 116/727/11 115/719/10 -f 39/720/54 143/729/54 142/721/53 -f 26/722/53 130/731/53 129/723/2 -f 53/724/5 157/1295/5 156/725/52 -f 13/726/3 117/1296/3 116/727/11 -f 40/728/43 144/738/43 143/729/54 -f 27/730/54 131/739/54 130/731/53 -f 54/732/46 158/740/46 157/733/5 -f 14/735/15 118/741/15 117/736/3 -f 33/684/6 137/683/6 144/738/43 -f 28/643/43 132/642/43 131/739/54 -f 55/646/45 159/645/45 158/740/46 -f 15/649/9 119/648/9 118/741/15 -f 42/652/46 146/651/46 145/742/5 -f 163/743/5 175/764/5 176/744/9 -f 170/746/10 182/765/10 183/747/6 -f 167/749/7 179/1297/7 180/750/54 -f 164/745/9 176/744/9 177/752/2 -f 171/748/6 183/747/6 184/754/51 -f 161/756/3 174/763/3 173/757/48 -f 168/751/54 180/750/54 181/759/4 -f 165/753/2 177/752/2 178/761/45 -f 172/755/51 184/754/51 174/763/3 -f 162/758/48 173/757/48 175/764/5 -f 169/760/4 181/759/4 182/765/10 -f 166/762/45 178/761/45 179/766/7 -f 242/768/55 244/774/61 236/769/56 -f 241/771/58 246/782/68 238/772/59 -f 244/774/61 247/776/63 239/775/62 -f 247/776/63 245/1298/70 237/777/64 -f 243/778/65 241/1299/58 233/779/60 -f 240/781/67 248/1300/76 242/768/55 -f 237/777/64 245/1298/70 243/778/65 -f 246/782/68 248/1300/76 240/781/67 -f 245/786/70 247/783/63 255/785/69 -f 241/788/58 243/794/65 251/789/72 -f 248/795/76 246/798/68 254/796/77 -f 242/791/55 250/793/75 252/797/78 -f 255/800/69 263/189/80 261/526/79 -f 250/803/75 258/843/96 260/804/81 -f 254/807/77 262/809/83 264/806/82 -f 249/810/73 251/813/72 259/811/84 -f 280/814/12 288/826/12 287/815/7 -f 278/817/14 286/828/14 285/818/1 -f 276/820/86 284/829/86 283/821/3 -f 274/823/87 282/830/87 281/824/8 -f 273/825/8 281/824/8 288/826/12 -f 279/827/7 287/1301/7 286/828/14 -f 277/819/1 285/818/1 284/829/86 -f 275/822/3 283/821/3 282/830/87 -f 332/259/88 329/254/88 326/256/89 -f 331/245/90 338/247/91 339/251/91 -f 333/263/92 340/265/93 337/260/93 -f 328/250/94 327/257/89 326/256/89 -f 330/253/90 329/254/88 332/259/88 -f 336/262/92 335/248/95 334/244/95 -f 340/275/93 339/251/91 338/247/91 -f 325/242/94 334/244/95 335/248/95 -f 345/831/88 346/261/88 347/542/89 -f 322/833/90 321/268/90 346/544/88 -f 322/835/90 324/1302/91 323/249/91 -f 324/836/91 341/1303/93 342/270/93 -f 341/837/93 343/1304/92 344/258/92 -f 343/838/92 320/1305/95 319/274/95 -f 317/839/94 318/246/94 319/537/95 -f 318/278/94 317/1306/94 348/841/89 -f 372/845/54 384/858/54 383/846/7 -f 369/848/2 381/860/2 380/849/9 -f 376/851/51 388/861/51 387/852/6 -f 366/854/48 378/863/48 377/855/3 -f 373/857/4 385/865/4 384/858/54 -f 370/859/45 382/867/45 381/860/2 -f 365/856/3 377/855/3 388/861/51 -f 367/862/5 379/868/5 378/863/48 -f 374/864/10 386/869/10 385/865/4 -f 371/866/7 383/1307/7 382/867/45 -f 368/850/9 380/849/9 379/868/5 -f 375/853/6 387/852/6 386/869/10 -f 397/870/97 398/873/7 404/871/16 -f 398/873/7 399/910/112 405/874/99 -f 413/875/13 398/879/7 397/876/97 -f 412/878/101 399/909/112 398/879/7 -f 391/880/9 413/875/13 414/877/100 -f 412/878/101 413/875/13 391/880/9 -f 408/883/104 407/884/15 391/880/9 -f 407/884/15 408/883/104 402/885/105 -f 410/887/11 401/886/3 402/885/105 -f 403/872/98 404/871/16 395/889/10 -f 395/889/10 410/887/11 409/888/106 -f 404/871/16 405/874/99 394/899/108 -f 410/887/11 395/889/10 394/899/108 -f 401/886/3 410/887/11 411/900/109 -f 406/904/111 407/884/15 401/886/3 -f 391/880/9 407/884/15 406/904/111 -f 430/316/13 446/916/13 445/913/9 -f 416/314/10 438/928/10 437/914/11 -f 417/327/7 431/1308/7 432/915/16 -f 423/315/7 440/917/7 446/916/13 -f 424/318/16 439/919/16 440/917/7 -f 422/321/13 433/920/13 431/918/7 -f 425/320/10 441/921/10 439/919/16 -f 415/322/9 434/922/9 433/920/13 -f 426/324/11 442/923/11 441/921/10 -f 420/319/15 435/924/15 434/922/9 -f 427/323/3 443/1309/3 442/923/11 -f 418/317/3 436/926/3 435/924/15 -f 428/328/15 444/927/15 443/925/3 -f 421/312/11 437/914/11 436/926/3 -f 429/313/9 445/913/9 444/927/15 -f 419/325/16 432/915/16 438/928/10 -f 450/929/9 462/939/9 461/930/5 -f 457/932/6 469/941/6 468/933/10 -f 454/935/54 466/946/54 465/936/7 -f 451/938/2 463/948/2 462/939/9 -f 458/940/51 470/949/51 469/941/6 -f 448/942/48 460/950/48 459/943/3 -f 455/945/4 467/951/4 466/946/54 -f 452/947/45 464/953/45 463/948/2 -f 447/944/3 459/943/3 470/949/51 -f 449/931/5 461/930/5 460/950/48 -f 456/934/10 468/933/10 467/951/4 -f 453/952/7 465/1310/7 464/953/45 -f 482/954/51 494/966/51 493/955/6 -f 472/957/48 484/968/48 483/958/3 -f 479/960/4 491/970/4 490/961/54 -f 476/963/45 488/972/45 487/964/2 -f 471/959/3 483/958/3 494/966/51 -f 473/967/5 485/974/5 484/968/48 -f 480/969/10 492/975/10 491/970/4 -f 477/971/7 489/1311/7 488/972/45 -f 474/973/9 486/978/9 485/974/5 -f 481/956/6 493/955/6 492/975/10 -f 478/962/54 490/961/54 489/976/7 -f 475/965/2 487/964/2 486/978/9 -f 509/979/7 510/991/12 502/980/12 -f 507/982/1 508/992/14 500/983/14 -f 505/985/3 506/994/86 498/986/86 -f 503/988/8 504/995/87 496/989/87 -f 510/991/12 503/988/8 495/990/8 -f 508/992/14 509/1312/7 501/993/7 -f 506/994/86 507/982/1 499/984/1 -f 504/995/87 505/985/3 497/987/3 -f 531/996/105 532/999/3 538/997/15 -f 532/999/3 533/1036/110 539/1000/111 -f 547/1001/11 532/1005/3 531/1002/105 -f 546/1004/109 533/1035/110 532/1005/3 -f 525/1006/10 547/1001/11 548/1003/106 -f 546/1004/109 547/1001/11 525/1006/10 -f 542/1009/98 541/1010/16 525/1006/10 -f 541/1010/16 542/1009/98 536/1011/97 -f 544/1013/13 535/1012/7 536/1011/97 -f 537/998/104 538/997/15 529/1015/9 -f 529/1015/9 544/1013/13 543/1014/100 -f 538/997/15 539/1000/111 528/1025/103 -f 544/1013/13 529/1015/9 528/1025/103 -f 535/1012/7 544/1013/13 545/1026/101 -f 540/1030/99 541/1010/16 535/1012/7 -f 525/1006/10 541/1010/16 540/1030/99 -f 564/362/11 580/1042/11 579/1039/10 -f 550/360/9 572/1054/9 571/1040/13 -f 551/373/3 565/1313/3 566/1041/15 -f 557/361/3 574/1043/3 580/1042/11 -f 558/364/15 573/1045/15 574/1043/3 -f 556/367/11 567/1046/11 565/1044/3 -f 559/366/9 575/1047/9 573/1045/15 -f 549/368/10 568/1048/10 567/1046/11 -f 560/370/13 576/1049/13 575/1047/9 -f 554/365/16 569/1050/16 568/1048/10 -f 561/369/7 577/1314/7 576/1049/13 -f 552/363/7 570/1052/7 569/1050/16 -f 562/374/16 578/1053/16 577/1051/7 -f 555/358/13 571/1040/13 570/1052/7 -f 563/359/10 579/1039/10 578/1053/16 -f 553/371/15 566/1041/15 572/1054/9 -f 589/1055/113 590/1059/2 596/1056/53 -f 591/1058/115 597/1084/124 596/1056/53 -f 606/1060/116 605/1064/49 590/1061/2 -f 604/1063/117 591/1095/115 590/1061/2 -f 583/1065/48 605/1064/49 606/1060/116 -f 604/1063/117 605/1064/49 583/1065/48 -f 599/1068/47 583/1065/48 582/1066/118 -f 593/1070/6 599/1068/47 600/1069/120 -f 602/1072/43 593/1070/6 594/1071/121 -f 595/1057/114 596/1056/53 587/1074/54 -f 588/1075/123 587/1074/54 602/1072/43 -f 587/1074/54 596/1056/53 597/1084/124 -f 603/1086/126 602/1072/43 587/1074/54 -f 593/1070/6 602/1072/43 603/1086/126 -f 598/1090/128 599/1068/47 593/1070/6 -f 584/1067/119 583/1065/48 599/1068/47 -f 622/379/49 638/1101/49 637/1098/48 -f 608/377/54 630/1113/54 629/1099/43 -f 609/390/2 623/1315/2 624/1100/53 -f 615/378/2 632/1102/2 638/1101/49 -f 616/381/53 631/1104/53 632/1102/2 -f 614/384/49 625/1105/49 623/1103/2 -f 617/383/54 633/1106/54 631/1104/53 -f 607/385/48 626/1107/48 625/1105/49 -f 618/387/43 634/1108/43 633/1106/54 -f 612/382/47 627/1109/47 626/1107/48 -f 619/386/6 635/1316/6 634/1108/43 -f 610/380/6 628/1111/6 627/1109/47 -f 620/391/47 636/1112/47 635/1110/6 -f 613/375/43 629/1099/43 628/1111/6 -f 621/376/48 637/1098/48 636/1112/47 -f 611/388/53 624/1100/53 630/1113/54 -f 647/1114/121 648/1118/6 654/1115/47 -f 649/1117/127 655/1143/128 654/1115/47 -f 664/1119/122 663/1123/43 648/1120/6 -f 662/1122/126 649/1154/127 648/1120/6 -f 641/1124/54 663/1123/43 664/1119/122 -f 662/1122/126 663/1123/43 641/1124/54 -f 657/1127/53 641/1124/54 640/1125/123 -f 651/1129/2 657/1127/53 658/1128/114 -f 660/1131/49 651/1129/2 652/1130/113 -f 653/1116/120 654/1115/47 645/1133/48 -f 646/1134/118 645/1133/48 660/1131/49 -f 645/1133/48 654/1115/47 655/1143/128 -f 661/1145/117 660/1131/49 645/1133/48 -f 651/1129/2 660/1131/49 661/1145/117 -f 656/1149/124 657/1127/53 651/1129/2 -f 642/1126/125 641/1124/54 657/1127/53 -f 680/396/43 696/1160/43 695/1157/54 -f 666/394/48 688/1172/48 687/1158/49 -f 667/407/6 681/1317/6 682/1159/47 -f 673/395/6 690/1161/6 696/1160/43 -f 674/398/47 689/1163/47 690/1161/6 -f 672/401/43 683/1164/43 681/1162/6 -f 675/400/48 691/1165/48 689/1163/47 -f 665/402/54 684/1166/54 683/1164/43 -f 676/404/49 692/1167/49 691/1165/48 -f 670/399/53 685/1168/53 684/1166/54 -f 677/403/2 693/1318/2 692/1167/49 -f 668/397/2 686/1170/2 685/1168/53 -f 678/408/53 694/1171/53 693/1169/2 -f 671/392/49 687/1158/49 686/1170/2 -f 679/393/54 695/1157/54 694/1171/53 -f 669/405/47 682/1159/47 688/1172/48 -f 706/1173/5 712/1177/46 711/1174/129 -f 707/1176/131 713/1202/140 712/1177/46 -f 721/1178/52 706/1319/5 705/1179/130 -f 707/1181/131 706/1319/5 721/1178/52 -f 699/1183/51 721/1178/52 722/1180/132 -f 700/1185/135 720/1182/133 721/1178/52 -f 715/1186/50 699/1183/51 698/1184/134 -f 709/1188/4 715/1186/50 716/1187/136 -f 717/1190/138 718/1193/44 709/1188/4 -f 711/1174/129 712/1177/46 703/1191/45 -f 704/1192/139 703/1191/45 718/1193/44 -f 703/1191/45 712/1177/46 713/1202/140 -f 719/1204/142 718/1193/44 703/1191/45 -f 709/1188/4 718/1193/44 719/1204/142 -f 714/1208/144 715/1186/50 709/1188/4 -f 699/1183/51 715/1186/50 714/1208/144 -f 738/413/52 754/1218/52 753/1215/51 -f 724/411/45 746/1230/45 745/1216/44 -f 725/424/5 739/1320/5 740/1217/46 -f 731/412/5 748/1219/5 754/1218/52 -f 732/415/46 747/1221/46 748/1219/5 -f 730/418/52 741/1222/52 739/1220/5 -f 733/417/45 749/1223/45 747/1221/46 -f 723/419/51 742/1224/51 741/1222/52 -f 734/421/44 750/1225/44 749/1223/45 -f 728/416/50 743/1226/50 742/1224/51 -f 735/420/4 751/1321/4 750/1225/44 -f 726/414/4 744/1228/4 743/1226/50 -f 736/425/50 752/1229/50 751/1227/4 -f 729/409/44 745/1216/44 744/1228/4 -f 737/410/51 753/1215/51 752/1229/50 -f 727/422/46 740/1217/46 746/1230/45 -f 764/1231/4 770/1235/50 769/1232/136 -f 765/1234/143 771/1260/144 770/1235/50 -f 779/1236/44 764/1322/4 763/1237/137 -f 765/1239/143 764/1322/4 779/1236/44 -f 757/1241/45 779/1236/44 780/1238/138 -f 758/1243/141 778/1240/142 779/1236/44 -f 773/1244/46 757/1241/45 756/1242/139 -f 767/1246/5 773/1244/46 774/1245/129 -f 775/1248/132 776/1251/52 767/1246/5 -f 769/1232/136 770/1235/50 761/1249/51 -f 762/1250/134 761/1249/51 776/1251/52 -f 761/1249/51 770/1235/50 771/1260/144 -f 777/1262/133 776/1251/52 761/1249/51 -f 767/1246/5 776/1251/52 777/1262/133 -f 772/1266/140 773/1244/46 767/1246/5 -f 757/1241/45 773/1244/46 772/1266/140 -f 796/430/44 812/1276/44 811/1273/45 -f 782/428/51 804/1288/51 803/1274/52 -f 783/441/4 797/1323/4 798/1275/50 -f 789/429/4 806/1277/4 812/1276/44 -f 790/432/50 805/1279/50 806/1277/4 -f 788/435/44 799/1280/44 797/1278/4 -f 791/434/51 807/1281/51 805/1279/50 -f 781/436/45 800/1282/45 799/1280/44 -f 792/438/52 808/1283/52 807/1281/51 -f 786/433/46 801/1284/46 800/1282/45 -f 793/437/5 809/1324/5 808/1283/52 -f 784/431/5 802/1286/5 801/1284/46 -f 794/442/46 810/1287/46 809/1285/5 -f 787/426/52 803/1274/52 802/1286/5 -f 795/427/45 811/1273/45 810/1287/46 -f 785/439/50 798/1275/50 804/1288/51 +f 679/1247/186 692/1248/174 680/1249/174 +f 686/1250/175 699/1251/187 687/1252/187 +f 683/1253/178 696/1254/188 684/1255/188 +f 680/1249/174 693/1256/189 681/1257/189 +f 687/1252/187 700/1258/190 688/1259/190 +f 677/1260/177 689/1261/191 678/1262/191 +f 684/1255/188 697/1263/192 685/1264/192 +f 681/1257/189 694/1265/193 682/1266/193 +f 688/1259/190 690/1267/177 677/1260/177 +f 678/1262/191 691/1268/186 679/1247/186 +f 685/1264/192 698/1269/175 686/1250/175 +f 682/1266/193 695/1270/178 683/1271/178 +f 758/1272/194 752/1273/195 750/1274/196 +f 757/1275/197 754/1276/198 749/1277/199 +f 760/1278/200 755/1279/201 752/1273/195 +f 763/1280/202 753/1281/203 755/1279/201 +f 759/1282/204 749/1283/199 751/1284/205 +f 756/1285/206 758/1272/194 750/1274/196 +f 753/1281/203 759/1282/204 751/1284/205 +f 762/1286/207 756/1285/206 754/1276/198 +f 763/1287/202 760/1288/200 771/1289/208 +f 761/1290/209 771/1289/208 769/1291/210 +f 757/1292/197 767/1293/211 765/1294/212 +f 758/1295/194 772/1296/213 766/1297/214 +f 759/1298/204 769/1291/210 767/1293/211 +f 764/1299/215 770/1300/216 772/1296/213 +f 758/1295/194 768/1301/217 760/1288/200 +f 762/1302/207 757/1303/197 770/1300/216 +f 771/1304/208 777/1242/218 769/1305/210 +f 771/1304/208 768/1306/217 779/1160/219 +f 766/1307/214 776/1308/220 768/1306/217 +f 772/1309/213 780/1310/221 766/1307/214 +f 770/1311/216 780/1310/221 772/1309/213 +f 770/1311/216 765/1312/212 778/1313/222 +f 765/1314/212 775/1315/223 773/1316/224 +f 769/1305/210 777/1242/218 767/1317/211 +f 771/1289/208 760/1288/200 768/1301/217 +f 769/1291/210 759/1298/204 761/1290/209 +f 779/1160/219 768/1306/217 776/1308/220 +f 767/1317/211 777/1242/218 775/1315/223 +f 770/1300/216 757/1303/197 765/1318/212 +f 772/1296/213 758/1295/194 764/1299/215 +f 766/1307/214 780/1310/221 774/1319/225 +f 778/1313/222 765/1312/212 773/1320/224 +f 679/1247/186 691/1268/186 692/1248/174 +f 686/1250/175 698/1269/175 699/1251/187 +f 683/1253/178 695/1321/178 696/1254/188 +f 680/1249/174 692/1248/174 693/1256/189 +f 687/1252/187 699/1251/187 700/1258/190 +f 677/1260/177 690/1267/177 689/1261/191 +f 684/1255/188 696/1254/188 697/1263/192 +f 681/1257/189 693/1256/189 694/1265/193 +f 688/1259/190 700/1258/190 690/1267/177 +f 678/1262/191 689/1261/191 691/1268/186 +f 685/1264/192 697/1263/192 698/1269/175 +f 682/1266/193 694/1265/193 695/1270/178 +f 758/1272/194 760/1278/200 752/1273/195 +f 757/1275/197 762/1286/207 754/1276/198 +f 760/1278/200 763/1280/202 755/1279/201 +f 763/1280/202 761/1322/209 753/1281/203 +f 759/1282/204 757/1323/197 749/1283/199 +f 756/1285/206 764/1324/215 758/1272/194 +f 753/1281/203 761/1322/209 759/1282/204 +f 762/1286/207 764/1324/215 756/1285/206 +f 761/1290/209 763/1287/202 771/1289/208 +f 757/1292/197 759/1298/204 767/1293/211 +f 764/1299/215 762/1302/207 770/1300/216 +f 758/1295/194 766/1297/214 768/1301/217 +f 771/1304/208 779/1160/219 777/1242/218 +f 766/1307/214 774/1319/225 776/1308/220 +f 770/1311/216 778/1313/222 780/1310/221 +f 765/1314/212 767/1317/211 775/1315/223 diff --git a/src/main/resources/assets/hbm/sounds.json b/src/main/resources/assets/hbm/sounds.json index 02bb67a4c..543f67a45 100644 --- a/src/main/resources/assets/hbm/sounds.json +++ b/src/main/resources/assets/hbm/sounds.json @@ -208,6 +208,8 @@ "weapon.coilgunShoot": {"category": "player", "sounds": [{"name": "weapon/coilgunShoot", "stream": false}]}, "weapon.glReload": {"category": "player", "sounds": [{"name": "weapon/glReload", "stream": false}]}, "weapon.glShoot": {"category": "player", "sounds": [{"name": "weapon/glShoot", "stream": false}]}, + "weapon.glOpen": {"category": "player", "sounds": [{"name": "weapon/glOpen", "stream": false}]}, + "weapon.glClose": {"category": "player", "sounds": [{"name": "weapon/glClose", "stream": false}]}, "weapon.44Shoot": {"category": "player", "sounds": [{"name": "weapon/44Shoot", "stream": false}]}, "weapon.trainImpact": {"category": "player", "sounds": [{"name": "weapon/trainImpact", "stream": false}]}, "weapon.nuclearExplosion": {"category": "player", "sounds": [{"name": "weapon/nuclearExplosion", "stream": true}]}, @@ -220,6 +222,33 @@ "weapon.switchmode1": {"category": "player", "sounds": [{"name": "weapon/switchmode1", "stream": false}]}, "weapon.switchmode2": {"category": "player", "sounds": [{"name": "weapon/switchmode2", "stream": false}]}, + "weapon.fire.blackPowder": {"category": "player", "sounds": [{"name": "weapon/fire/blackPowder", "stream": false}]}, + + "weapon.reload.boltClose": {"category": "player", "sounds": ["weapon/reload/boltClose"]}, + "weapon.reload.boltOpen": {"category": "player", "sounds": ["weapon/reload/boltOpen"]}, + "weapon.reload.closeClick": {"category": "player", "sounds": ["weapon/reload/closeClick"]}, + "weapon.reload.dryFireClick": {"category": "player", "sounds": ["weapon/reload/dryFireClick"]}, + "weapon.reload.insertCanister": {"category": "player", "sounds": ["weapon/reload/insertCanister"]}, + "weapon.reload.insertGrenade": {"category": "player", "sounds": ["weapon/reload/insertGrenade"]}, + "weapon.reload.insertLarge": {"category": "player", "sounds": ["weapon/reload/insertLarge"]}, + "weapon.reload.insertRocket": {"category": "player", "sounds": ["weapon/reload/insertRocket"]}, + "weapon.reload.leverCock": {"category": "player", "sounds": ["weapon/reload/leverCock"]}, + "weapon.reload.magInsert": {"category": "player", "sounds": ["weapon/reload/magInsert"]}, + "weapon.reload.magRemove": {"category": "player", "sounds": ["weapon/reload/magRemove"]}, + "weapon.reload.magSmallInsert": {"category": "player", "sounds": ["weapon/reload/magSmallInsert"]}, + "weapon.reload.magSmallRemove": {"category": "player", "sounds": ["weapon/reload/magSmallRemove"]}, + "weapon.reload.openLatch": {"category": "player", "sounds": ["weapon/reload/openLatch"]}, + "weapon.reload.pistolCock": {"category": "player", "sounds": ["weapon/reload/pistolCock"]}, + "weapon.reload.pressureValve": {"category": "player", "sounds": ["weapon/reload/pressureValve"]}, + "weapon.reload.revolverClose": {"category": "player", "sounds": ["weapon/reload/revolverClose"]}, + "weapon.reload.revolverCock": {"category": "player", "sounds": ["weapon/reload/revolverCock"]}, + "weapon.reload.revolverSpin": {"category": "player", "sounds": ["weapon/reload/revolverSpin"]}, + "weapon.reload.rifleCock": {"category": "player", "sounds": ["weapon/reload/rifleCock"]}, + "weapon.reload.shotgunCock": {"category": "player", "sounds": ["weapon/reload/shotgunCock"]}, + "weapon.reload.shotgunReload": {"category": "player", "sounds": ["weapon/reload/shotgunReload1", "weapon/reload/shotgunReload2", "weapon/reload/shotgunReload3"]}, + "weapon.reload.tubeFwoomp": {"category": "player", "sounds": ["weapon/reload/tubeFwoomp"]}, + "weapon.reload.impact": {"category": "player", "sounds": ["weapon/reload/impact1", "weapon/reload/impact2", "weapon/reload/impact3"]}, + "turret.chekhov_fire": {"category": "block", "sounds": [{"name": "turret/chekhov_fire", "stream": false}]}, "turret.jeremy_fire": {"category": "block", "sounds": ["turret/jeremy_fire1", "turret/jeremy_fire2", "turret/jeremy_fire3", "turret/jeremy_fire4", "turret/jeremy_fire5"]}, "turret.jeremy_reload": {"category": "block", "sounds": [{"name": "turret/jeremy_reload", "stream": false}]}, @@ -269,10 +298,6 @@ "potatos.random": {"category": "player", "sounds": ["potatos/randResponse0", "potatos/randResponse1", "potatos/randResponse2", "potatos/randResponse3", "potatos/randResponse4", "potatos/randResponse5", "potatos/randResponse6", "potatos/randResponse7"]}, - "fm.clap": {"category": "block", "sounds": [{"name": "clap", "stream": false}]}, - "fm.mug": {"category": "block", "sounds": [{"name": "mug", "stream": false}]}, - "fm.sample": {"category": "block", "sounds": [{"name": "sample", "stream": false}]}, - "alarm.amsSiren": {"category": "record", "sounds": [{"name": "alarm/amsSiren", "stream": false}]}, "alarm.apcLoop": {"category": "record", "sounds": [{"name": "alarm/apcLoop", "stream": false}]}, "alarm.apcPass": {"category": "record", "sounds": [{"name": "alarm/apcPass", "stream": false}]}, diff --git a/src/main/resources/assets/hbm/sounds/weapon/fire/blackPowder.ogg b/src/main/resources/assets/hbm/sounds/weapon/fire/blackPowder.ogg new file mode 100644 index 000000000..ea73cad21 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/fire/blackPowder.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/glClose.ogg b/src/main/resources/assets/hbm/sounds/weapon/glClose.ogg new file mode 100644 index 000000000..c69c2bcf9 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/glClose.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/glOpen.ogg b/src/main/resources/assets/hbm/sounds/weapon/glOpen.ogg new file mode 100644 index 000000000..27ba81c76 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/glOpen.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/loudestNoiseOnEarth.ogg b/src/main/resources/assets/hbm/sounds/weapon/loudestNoiseOnEarth.ogg new file mode 100644 index 000000000..15b4cb7fe Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/loudestNoiseOnEarth.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/boltClose.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/boltClose.ogg new file mode 100644 index 000000000..45bd93171 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/boltClose.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/boltOpen.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/boltOpen.ogg new file mode 100644 index 000000000..3124cec57 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/boltOpen.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/closeClick.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/closeClick.ogg new file mode 100644 index 000000000..39f036143 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/closeClick.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/dryFireClick.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/dryFireClick.ogg new file mode 100644 index 000000000..a34d6da1d Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/dryFireClick.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/impact1.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/impact1.ogg new file mode 100644 index 000000000..1e2a681ea Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/impact1.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/impact2.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/impact2.ogg new file mode 100644 index 000000000..8612f6f03 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/impact2.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/impact3.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/impact3.ogg new file mode 100644 index 000000000..8cacd6138 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/impact3.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/insertCanister.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/insertCanister.ogg new file mode 100644 index 000000000..bff37cdd3 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/insertCanister.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/insertGrenade.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/insertGrenade.ogg new file mode 100644 index 000000000..0b7a888a0 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/insertGrenade.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/insertLarge.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/insertLarge.ogg new file mode 100644 index 000000000..35e2a855b Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/insertLarge.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/insertRocket.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/insertRocket.ogg new file mode 100644 index 000000000..eb24d346a Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/insertRocket.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/leverCock.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/leverCock.ogg new file mode 100644 index 000000000..1591a4903 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/leverCock.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/magInsert.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/magInsert.ogg new file mode 100644 index 000000000..3db4f7dfe Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/magInsert.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/magRemove.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/magRemove.ogg new file mode 100644 index 000000000..995ada889 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/magRemove.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/magSmallInsert.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/magSmallInsert.ogg new file mode 100644 index 000000000..7c9b92a31 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/magSmallInsert.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/magSmallRemove.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/magSmallRemove.ogg new file mode 100644 index 000000000..2411f23eb Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/magSmallRemove.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/openLatch.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/openLatch.ogg new file mode 100644 index 000000000..57ce982d2 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/openLatch.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/pistolCock.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/pistolCock.ogg new file mode 100644 index 000000000..0898895cb Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/pistolCock.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/pressureValve.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/pressureValve.ogg new file mode 100644 index 000000000..ba3c3fc1b Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/pressureValve.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/revolverClose.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/revolverClose.ogg new file mode 100644 index 000000000..1e682c858 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/revolverClose.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/revolverCock.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/revolverCock.ogg new file mode 100644 index 000000000..184cade5f Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/revolverCock.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/revolverSpin.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/revolverSpin.ogg new file mode 100644 index 000000000..25cd591a6 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/revolverSpin.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/rifleCock.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/rifleCock.ogg new file mode 100644 index 000000000..474c91826 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/rifleCock.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunCock.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunCock.ogg new file mode 100644 index 000000000..8e36020b2 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunCock.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunReload1.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunReload1.ogg new file mode 100644 index 000000000..7ab6c8105 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunReload1.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunReload2.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunReload2.ogg new file mode 100644 index 000000000..43e966250 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunReload2.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunReload3.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunReload3.ogg new file mode 100644 index 000000000..512c6ea81 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/shotgunReload3.ogg differ diff --git a/src/main/resources/assets/hbm/sounds/weapon/reload/tubeFwoomp.ogg b/src/main/resources/assets/hbm/sounds/weapon/reload/tubeFwoomp.ogg new file mode 100644 index 000000000..f50d3f8b5 Binary files /dev/null and b/src/main/resources/assets/hbm/sounds/weapon/reload/tubeFwoomp.ogg differ diff --git a/src/main/resources/assets/hbm/textures/blocks/basalt.png b/src/main/resources/assets/hbm/textures/blocks/basalt.png index 8cc74f42c..ddf35c770 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/basalt.png and b/src/main/resources/assets/hbm/textures/blocks/basalt.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/basalt_top.png b/src/main/resources/assets/hbm/textures/blocks/basalt_top.png new file mode 100644 index 000000000..77a745592 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/basalt_top.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/machine_shredder_bottom_alt.png b/src/main/resources/assets/hbm/textures/blocks/machine_shredder_bottom_alt.png index be4b6d73c..051390fba 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/machine_shredder_bottom_alt.png and b/src/main/resources/assets/hbm/textures/blocks/machine_shredder_bottom_alt.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/machine_shredder_front_alt.png b/src/main/resources/assets/hbm/textures/blocks/machine_shredder_front_alt.png index 7049ae709..b8ac27800 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/machine_shredder_front_alt.png and b/src/main/resources/assets/hbm/textures/blocks/machine_shredder_front_alt.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/machine_shredder_side_alt.png b/src/main/resources/assets/hbm/textures/blocks/machine_shredder_side_alt.png index de74959ec..817e0e6b7 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/machine_shredder_side_alt.png and b/src/main/resources/assets/hbm/textures/blocks/machine_shredder_side_alt.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/machine_shredder_top_alt.png b/src/main/resources/assets/hbm/textures/blocks/machine_shredder_top_alt.png index a1c241c4c..edc004f2c 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/machine_shredder_top_alt.png and b/src/main/resources/assets/hbm/textures/blocks/machine_shredder_top_alt.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_asbestos.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_asbestos.png index b808e9ec0..08bae3077 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_asbestos.png and b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_asbestos.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_asbestos_top.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_asbestos_top.png new file mode 100644 index 000000000..b914d277a Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_asbestos_top.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_fluorite.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_fluorite.png index a257b53ba..f5f3482c7 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_fluorite.png and b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_fluorite.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_fluorite_top.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_fluorite_top.png new file mode 100644 index 000000000..8fbfac92d Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_fluorite_top.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_gem.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_gem.png index 53be07abe..f3eb2c406 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_gem.png and b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_gem.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_gem_top.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_gem_top.png new file mode 100644 index 000000000..1f331204b Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_gem_top.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_molysite.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_molysite.png index e688aeaac..22f49d3f5 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_molysite.png and b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_molysite.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_molysite_top.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_molysite_top.png new file mode 100644 index 000000000..b19ad36c9 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_molysite_top.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_overlay.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_overlay.png deleted file mode 100644 index dba5f8339..000000000 Binary files a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_overlay.png and /dev/null differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_sulfur.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_sulfur.png index 4cb524681..eaf1ed5ac 100644 Binary files a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_sulfur.png and b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_sulfur.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/ore_basalt_sulfur_top.png b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_sulfur_top.png new file mode 100644 index 000000000..db2e0d04b Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/ore_basalt_sulfur_top.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/playground/stainless_frame_thick.png b/src/main/resources/assets/hbm/textures/blocks/playground/stainless_frame_thick.png new file mode 100644 index 000000000..f985a1319 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/playground/stainless_frame_thick.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/playground/stainless_frame_thin.png b/src/main/resources/assets/hbm/textures/blocks/playground/stainless_frame_thin.png new file mode 100644 index 000000000..4a11a3bfe Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/playground/stainless_frame_thin.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/playground/stainless_frameless.png b/src/main/resources/assets/hbm/textures/blocks/playground/stainless_frameless.png new file mode 100644 index 000000000..4e111cba4 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/playground/stainless_frameless.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/playground/stainless_kit.png b/src/main/resources/assets/hbm/textures/blocks/playground/stainless_kit.png new file mode 100644 index 000000000..4b2906b25 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/playground/stainless_kit.png differ diff --git a/src/main/resources/assets/hbm/textures/blocks/playground/stainless_kit_bright.png b/src/main/resources/assets/hbm/textures/blocks/playground/stainless_kit_bright.png new file mode 100644 index 000000000..126670dc6 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/blocks/playground/stainless_kit_bright.png differ diff --git a/src/main/resources/assets/hbm/textures/gui/gui_shredder.png b/src/main/resources/assets/hbm/textures/gui/gui_shredder.png index 34e2e4ea5..19b774c76 100644 Binary files a/src/main/resources/assets/hbm/textures/gui/gui_shredder.png and b/src/main/resources/assets/hbm/textures/gui/gui_shredder.png differ diff --git a/src/main/resources/assets/hbm/textures/gui/gui_wiki.png b/src/main/resources/assets/hbm/textures/gui/gui_wiki.png new file mode 100644 index 000000000..90785445b Binary files /dev/null and b/src/main/resources/assets/hbm/textures/gui/gui_wiki.png differ diff --git a/src/main/resources/assets/hbm/textures/gui/processing/gui_rotary_furnace.png b/src/main/resources/assets/hbm/textures/gui/processing/gui_rotary_furnace.png new file mode 100644 index 000000000..54854a28d Binary files /dev/null and b/src/main/resources/assets/hbm/textures/gui/processing/gui_rotary_furnace.png differ diff --git a/src/main/resources/assets/hbm/textures/gui/processing/gui_rotary_furnace_alt.png b/src/main/resources/assets/hbm/textures/gui/processing/gui_rotary_furnace_alt.png new file mode 100644 index 000000000..d521b49e8 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/gui/processing/gui_rotary_furnace_alt.png differ diff --git a/src/main/resources/assets/hbm/textures/gui/processing/gui_soldering_station.png b/src/main/resources/assets/hbm/textures/gui/processing/gui_soldering_station.png index cb3081743..b99c7f982 100644 Binary files a/src/main/resources/assets/hbm/textures/gui/processing/gui_soldering_station.png and b/src/main/resources/assets/hbm/textures/gui/processing/gui_soldering_station.png differ diff --git a/src/main/resources/assets/hbm/textures/items/agar.png b/src/main/resources/assets/hbm/textures/items/agar.png new file mode 100644 index 000000000..8d83b359d Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/agar.png differ diff --git a/src/main/resources/assets/hbm/textures/items/agar_base.png b/src/main/resources/assets/hbm/textures/items/agar_base.png new file mode 100644 index 000000000..74d5be9bf Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/agar_base.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo.png b/src/main/resources/assets/hbm/textures/items/ammo.png new file mode 100644 index 000000000..afb65b571 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.g12.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.g12.png new file mode 100644 index 000000000..73659c905 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.g12.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.g12_bp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.g12_bp.png new file mode 100644 index 000000000..e6cf463dd Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.g12_bp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.g12_bp_magnum.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.g12_bp_magnum.png new file mode 100644 index 000000000..2e3b56e7e Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.g12_bp_magnum.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.g12_bp_slug.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.g12_bp_slug.png new file mode 100644 index 000000000..98643063f Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.g12_bp_slug.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.g40.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.g40.png new file mode 100644 index 000000000..42a048f47 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.g40.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.g40_flare.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.g40_flare.png new file mode 100644 index 000000000..2aa6a543f Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.g40_flare.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_ap.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_ap.png new file mode 100644 index 000000000..a9dbde5aa Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_ap.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_express.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_express.png new file mode 100644 index 000000000..cad8fbc2d Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_express.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_fmj.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_fmj.png new file mode 100644 index 000000000..7025adb2a Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_fmj.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_jhp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_jhp.png new file mode 100644 index 000000000..6f13cbeb7 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_jhp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_sp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_sp.png new file mode 100644 index 000000000..0aecdede2 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.m357_sp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_ap.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_ap.png new file mode 100644 index 000000000..dc528cbf0 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_ap.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_express.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_express.png new file mode 100644 index 000000000..e83865576 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_express.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_fmj.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_fmj.png new file mode 100644 index 000000000..c12398df4 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_fmj.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_jhp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_jhp.png new file mode 100644 index 000000000..9fb718610 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_jhp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_sp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_sp.png new file mode 100644 index 000000000..9f055e5d1 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.m44_sp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_ap.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_ap.png new file mode 100644 index 000000000..2a751e076 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_ap.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_fmj.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_fmj.png new file mode 100644 index 000000000..1112b26c1 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_fmj.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_jhp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_jhp.png new file mode 100644 index 000000000..62179c6c3 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_jhp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_sp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_sp.png new file mode 100644 index 000000000..40470f133 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.p22_sp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_ap.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_ap.png new file mode 100644 index 000000000..b736f2d6d Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_ap.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_fmj.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_fmj.png new file mode 100644 index 000000000..dd6d98de3 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_fmj.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_jhp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_jhp.png new file mode 100644 index 000000000..0c8b0d981 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_jhp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_sp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_sp.png new file mode 100644 index 000000000..d3a773451 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.p9_sp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_ap.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_ap.png new file mode 100644 index 000000000..7fc1069d6 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_ap.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_du.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_du.png new file mode 100644 index 000000000..69e21c070 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_du.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_fmj.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_fmj.png new file mode 100644 index 000000000..e5b3f474d Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_fmj.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_jhp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_jhp.png new file mode 100644 index 000000000..fb7683576 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_jhp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_sp.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_sp.png new file mode 100644 index 000000000..e876a5060 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.r762_sp.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.stone.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.stone.png new file mode 100644 index 000000000..cf4a12ddf Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.stone.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.stone_ap.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.stone_ap.png new file mode 100644 index 000000000..24e72420f Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.stone_ap.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.stone_iron.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.stone_iron.png new file mode 100644 index 000000000..8beb92f44 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.stone_iron.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ammo_standard.stone_shot.png b/src/main/resources/assets/hbm/textures/items/ammo_standard.stone_shot.png new file mode 100644 index 000000000..b783a6da0 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ammo_standard.stone_shot.png differ diff --git a/src/main/resources/assets/hbm/textures/items/casing.buckshot.png b/src/main/resources/assets/hbm/textures/items/casing.buckshot.png new file mode 100644 index 000000000..b894a48fb Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/casing.buckshot.png differ diff --git a/src/main/resources/assets/hbm/textures/items/casing.large.png b/src/main/resources/assets/hbm/textures/items/casing.large.png new file mode 100644 index 000000000..5c220d1b9 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/casing.large.png differ diff --git a/src/main/resources/assets/hbm/textures/items/casing.large_steel.png b/src/main/resources/assets/hbm/textures/items/casing.large_steel.png new file mode 100644 index 000000000..afd72532d Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/casing.large_steel.png differ diff --git a/src/main/resources/assets/hbm/textures/items/casing.shotshell.png b/src/main/resources/assets/hbm/textures/items/casing.shotshell.png new file mode 100644 index 000000000..f6b55e841 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/casing.shotshell.png differ diff --git a/src/main/resources/assets/hbm/textures/items/casing.small.png b/src/main/resources/assets/hbm/textures/items/casing.small.png new file mode 100644 index 000000000..87e9269eb Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/casing.small.png differ diff --git a/src/main/resources/assets/hbm/textures/items/casing.small_steel.png b/src/main/resources/assets/hbm/textures/items/casing.small_steel.png new file mode 100644 index 000000000..741e1d23a Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/casing.small_steel.png differ diff --git a/src/main/resources/assets/hbm/textures/items/chem_icon_SATURN.png b/src/main/resources/assets/hbm/textures/items/chem_icon_SATURN.png index 06149dfa9..af0895d30 100644 Binary files a/src/main/resources/assets/hbm/textures/items/chem_icon_SATURN.png and b/src/main/resources/assets/hbm/textures/items/chem_icon_SATURN.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ingot_beskar_single_alt.png b/src/main/resources/assets/hbm/textures/items/ingot_beskar_single_alt.png new file mode 100644 index 000000000..0f0a229de Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ingot_beskar_single_alt.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ingot_ceramic.png b/src/main/resources/assets/hbm/textures/items/ingot_ceramic.png new file mode 100644 index 000000000..6b0805212 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ingot_ceramic.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ingot_gunmetal.png b/src/main/resources/assets/hbm/textures/items/ingot_gunmetal.png new file mode 100644 index 000000000..dc26658ee Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ingot_gunmetal.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ingot_gunsteel.png b/src/main/resources/assets/hbm/textures/items/ingot_gunsteel.png new file mode 100644 index 000000000..b97acdc54 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/ingot_gunsteel.png differ diff --git a/src/main/resources/assets/hbm/textures/items/ingot_saturnite.png b/src/main/resources/assets/hbm/textures/items/ingot_saturnite.png index f1280a32b..8c8d04d9b 100644 Binary files a/src/main/resources/assets/hbm/textures/items/ingot_saturnite.png and b/src/main/resources/assets/hbm/textures/items/ingot_saturnite.png differ diff --git a/src/main/resources/assets/hbm/textures/items/mold_barrel_heavy.png b/src/main/resources/assets/hbm/textures/items/mold_barrel_heavy.png new file mode 100644 index 000000000..62f61b3c4 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/mold_barrel_heavy.png differ diff --git a/src/main/resources/assets/hbm/textures/items/mold_barrel_light.png b/src/main/resources/assets/hbm/textures/items/mold_barrel_light.png new file mode 100644 index 000000000..0e3bbe8e5 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/mold_barrel_light.png differ diff --git a/src/main/resources/assets/hbm/textures/items/mold_grip.png b/src/main/resources/assets/hbm/textures/items/mold_grip.png new file mode 100644 index 000000000..e59e52749 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/mold_grip.png differ diff --git a/src/main/resources/assets/hbm/textures/items/mold_mechanism.png b/src/main/resources/assets/hbm/textures/items/mold_mechanism.png new file mode 100644 index 000000000..041996d88 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/mold_mechanism.png differ diff --git a/src/main/resources/assets/hbm/textures/items/mold_receiver_heavy.png b/src/main/resources/assets/hbm/textures/items/mold_receiver_heavy.png new file mode 100644 index 000000000..4036ee57b Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/mold_receiver_heavy.png differ diff --git a/src/main/resources/assets/hbm/textures/items/mold_receiver_light.png b/src/main/resources/assets/hbm/textures/items/mold_receiver_light.png new file mode 100644 index 000000000..98d550222 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/mold_receiver_light.png differ diff --git a/src/main/resources/assets/hbm/textures/items/mold_steel_base.png b/src/main/resources/assets/hbm/textures/items/mold_steel_base.png new file mode 100644 index 000000000..fd2c59e1b Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/mold_steel_base.png differ diff --git a/src/main/resources/assets/hbm/textures/items/mold_stock.png b/src/main/resources/assets/hbm/textures/items/mold_stock.png new file mode 100644 index 000000000..f8e24f415 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/mold_stock.png differ diff --git a/src/main/resources/assets/hbm/textures/items/part_barrel_heavy.png b/src/main/resources/assets/hbm/textures/items/part_barrel_heavy.png new file mode 100644 index 000000000..44f07bfcc Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/part_barrel_heavy.png differ diff --git a/src/main/resources/assets/hbm/textures/items/part_barrel_light.png b/src/main/resources/assets/hbm/textures/items/part_barrel_light.png new file mode 100644 index 000000000..c407b692e Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/part_barrel_light.png differ diff --git a/src/main/resources/assets/hbm/textures/items/part_grip.png b/src/main/resources/assets/hbm/textures/items/part_grip.png new file mode 100644 index 000000000..cf73e7502 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/part_grip.png differ diff --git a/src/main/resources/assets/hbm/textures/items/part_mechanism.png b/src/main/resources/assets/hbm/textures/items/part_mechanism.png new file mode 100644 index 000000000..734659e14 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/part_mechanism.png differ diff --git a/src/main/resources/assets/hbm/textures/items/part_receiver_heavy.png b/src/main/resources/assets/hbm/textures/items/part_receiver_heavy.png new file mode 100644 index 000000000..696cf78f4 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/part_receiver_heavy.png differ diff --git a/src/main/resources/assets/hbm/textures/items/part_receiver_light.png b/src/main/resources/assets/hbm/textures/items/part_receiver_light.png new file mode 100644 index 000000000..ea2057903 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/part_receiver_light.png differ diff --git a/src/main/resources/assets/hbm/textures/items/part_stock.png b/src/main/resources/assets/hbm/textures/items/part_stock.png new file mode 100644 index 000000000..a93b55f67 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/part_stock.png differ diff --git a/src/main/resources/assets/hbm/textures/items/plate_gunmetal.png b/src/main/resources/assets/hbm/textures/items/plate_gunmetal.png new file mode 100644 index 000000000..84a7b470c Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/plate_gunmetal.png differ diff --git a/src/main/resources/assets/hbm/textures/items/plate_gunsteel.png b/src/main/resources/assets/hbm/textures/items/plate_gunsteel.png new file mode 100644 index 000000000..833e792f1 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/plate_gunsteel.png differ diff --git a/src/main/resources/assets/hbm/textures/items/plate_saturnite.png b/src/main/resources/assets/hbm/textures/items/plate_saturnite.png index 9f3e071ac..9cca74517 100644 Binary files a/src/main/resources/assets/hbm/textures/items/plate_saturnite.png and b/src/main/resources/assets/hbm/textures/items/plate_saturnite.png differ diff --git a/src/main/resources/assets/hbm/textures/items/playground/mekanisms_new_textures_suck_balls.png b/src/main/resources/assets/hbm/textures/items/playground/mekanisms_new_textures_suck_balls.png new file mode 100644 index 000000000..e3793924b Binary files /dev/null and b/src/main/resources/assets/hbm/textures/items/playground/mekanisms_new_textures_suck_balls.png differ diff --git a/src/main/resources/assets/hbm/textures/models/machines/rotary_furnace.png b/src/main/resources/assets/hbm/textures/models/machines/rotary_furnace.png new file mode 100644 index 000000000..851cf91ab Binary files /dev/null and b/src/main/resources/assets/hbm/textures/models/machines/rotary_furnace.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/am180.png b/src/main/resources/assets/hbm/textures/models/weapons/am180.png new file mode 100644 index 000000000..dec10075a Binary files /dev/null and b/src/main/resources/assets/hbm/textures/models/weapons/am180.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/congolake.png b/src/main/resources/assets/hbm/textures/models/weapons/congolake.png index 2d611e459..849c27b4e 100644 Binary files a/src/main/resources/assets/hbm/textures/models/weapons/congolake.png and b/src/main/resources/assets/hbm/textures/models/weapons/congolake.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/dani_celestial.png b/src/main/resources/assets/hbm/textures/models/weapons/dani_celestial.png new file mode 100644 index 000000000..ebe3ebd70 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/models/weapons/dani_celestial.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/dani_lunar.png b/src/main/resources/assets/hbm/textures/models/weapons/dani_lunar.png new file mode 100644 index 000000000..4ea531472 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/models/weapons/dani_lunar.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/flaregun.png b/src/main/resources/assets/hbm/textures/models/weapons/flaregun.png new file mode 100644 index 000000000..248dc94f3 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/models/weapons/flaregun.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/greasegun.png b/src/main/resources/assets/hbm/textures/models/weapons/greasegun.png index faa19137b..3af33de68 100644 Binary files a/src/main/resources/assets/hbm/textures/models/weapons/greasegun.png and b/src/main/resources/assets/hbm/textures/models/weapons/greasegun.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/heavy_revolver.png b/src/main/resources/assets/hbm/textures/models/weapons/heavy_revolver.png new file mode 100644 index 000000000..c1bf5c1ba Binary files /dev/null and b/src/main/resources/assets/hbm/textures/models/weapons/heavy_revolver.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/henry.png b/src/main/resources/assets/hbm/textures/models/weapons/henry.png index dfc361696..d822e7665 100644 Binary files a/src/main/resources/assets/hbm/textures/models/weapons/henry.png and b/src/main/resources/assets/hbm/textures/models/weapons/henry.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/huntsman.png b/src/main/resources/assets/hbm/textures/models/weapons/huntsman.png index e29aabfbc..0b40e3aa8 100644 Binary files a/src/main/resources/assets/hbm/textures/models/weapons/huntsman.png and b/src/main/resources/assets/hbm/textures/models/weapons/huntsman.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/liberator.png b/src/main/resources/assets/hbm/textures/models/weapons/liberator.png index d4536cee0..d900422e6 100644 Binary files a/src/main/resources/assets/hbm/textures/models/weapons/liberator.png and b/src/main/resources/assets/hbm/textures/models/weapons/liberator.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/maresleg.png b/src/main/resources/assets/hbm/textures/models/weapons/maresleg.png index b520a29b3..9d8abca1b 100644 Binary files a/src/main/resources/assets/hbm/textures/models/weapons/maresleg.png and b/src/main/resources/assets/hbm/textures/models/weapons/maresleg.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/moonlight.png b/src/main/resources/assets/hbm/textures/models/weapons/moonlight.png new file mode 100644 index 000000000..b4303c8c8 Binary files /dev/null and b/src/main/resources/assets/hbm/textures/models/weapons/moonlight.png differ diff --git a/src/main/resources/assets/hbm/textures/models/weapons/pepperbox.png b/src/main/resources/assets/hbm/textures/models/weapons/pepperbox.png index 26c6e8c93..2334c4e2c 100644 Binary files a/src/main/resources/assets/hbm/textures/models/weapons/pepperbox.png and b/src/main/resources/assets/hbm/textures/models/weapons/pepperbox.png differ diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta deleted file mode 100644 index 6476c146a..000000000 --- a/src/main/resources/pack.mcmeta +++ /dev/null @@ -1,18 +0,0 @@ -{ - "pack" : { - "pack_format" : 1, - "description" : "NTM language pack" - }, - "language" : { - "te_ST" : { - "name" : "This is a testing language", - "region" : "ST", - "bidirectional" : false - }, - "en_NT" : { - "name" : "Advanced English", - "region" : "Minecraftia", - "bidirectional" : false - } - } -} diff --git a/tools/export-json-animation-2_79.py b/tools/export-json-animation-2_79.py new file mode 100644 index 000000000..5a724e87b --- /dev/null +++ b/tools/export-json-animation-2_79.py @@ -0,0 +1,293 @@ +# HOW TO USE +# Make sure all your animation actions start on frame 0 and are named as such: +# Name.Part +# and run the export, they'll be split into Animation groups with each part being assigned as a Bus. +# EG. Reload.Body will apply an animation called Reload to the bus called Body +# For best results, make sure your object Transform Mode is set to YZX Euler, so rotations match in-game +# When importing, you can use the Action Editor to assign the imported animations to parts to view and modify them + +bl_info = { + "name": "Export JSON Animation", + "blender": (2, 79, 0), + "category": "Import-Export", +} + +import bpy +import json +import math +import mathutils + +from bpy_extras.io_utils import ExportHelper, ImportHelper +from bpy.props import StringProperty, BoolProperty, EnumProperty +from bpy.types import Operator + + +class ExportJSONAnimation(Operator, ExportHelper): + """Exports an animation in a NTM JSON format""" + bl_idname = "export.ntm_json" # Unique identifier for buttons and menu items to reference. + bl_label = "Export NTM .json" # Display name in the interface. + bl_options = {'REGISTER'} + + # ExportHelper mix-in class uses this. + filename_ext = ".json" + + filter_glob = StringProperty( + default="*.json", + options={'HIDDEN'}, + maxlen=255, # Max internal buffer length, longer would be clamped. + ) + + def execute(self, context): # execute() is called when running the operator. + print("writing JSON data to file...") + f = open(self.filepath, 'w', encoding='utf-8') + + collection = {"anim": {}, "offset": {}, "hierarchy": {}} + dimensions = ["x", "z", "y"] # Swizzled to X, Z, Y + mult = [1, -1, 1] # +X, -Z, +Y + + # Reset to first frame, so our offsets are set to model defaults + # If you get weird offset issues, make sure your model is in its rest pose before exporting + context.scene.frame_set(0) + + animations = collection['anim'] + offsets = collection['offset'] + hierarchy = collection['hierarchy'] + + actions = bpy.data.actions + for action in actions: + split = action.name.split('.') + if len(split) != 2: + continue + name = split[0] + part = split[1] + + if name not in animations: + animations[name] = {} + + animations[name][part] = {} + animation = animations[name][part] + + # Fetch all the animation data + for fcu in action.fcurves: + dimension = dimensions[fcu.array_index] + + if not fcu.data_path in animation: + animation[fcu.data_path] = {} + if not dimension in animation[fcu.data_path]: + animation[fcu.data_path][dimension] = [] + + multiplier = mult[fcu.array_index] + if fcu.data_path == 'rotation_euler': + multiplier *= 180 / math.pi + + previousMillis = 0 + previousInterpolation = "" + + for keyframe in fcu.keyframe_points: + timeToFrame = keyframe.co.x * (1 / context.scene.render.fps) * 1000 + millis = timeToFrame - previousMillis + value = keyframe.co.y * multiplier + tuple = [value, millis, keyframe.interpolation, keyframe.easing] + if previousInterpolation == "BEZIER": + tuple.append(keyframe.handle_left.x * (1 / context.scene.render.fps) * 1000) + tuple.append(keyframe.handle_left.y * multiplier) + tuple.append(keyframe.handle_left_type) + if keyframe.interpolation == "BEZIER": + tuple.append(keyframe.handle_right.x * (1 / context.scene.render.fps) * 1000) + tuple.append(keyframe.handle_right.y * multiplier) + tuple.append(keyframe.handle_right_type) + if keyframe.interpolation == "ELASTIC": + tuple.append(keyframe.amplitude) + tuple.append(keyframe.period) + if keyframe.interpolation == "BACK": + tuple.append(keyframe.back) + previousMillis = timeToFrame + previousInterpolation = keyframe.interpolation + animation[fcu.data_path][dimension].append(tuple) + + for object in bpy.data.objects: + if object.type != 'MESH': + continue + + if object.parent: + hierarchy[object.name] = object.parent.name + + if object.location == mathutils.Vector(): # don't export 0,0,0 + continue + + offsets[object.name] = [object.location.x, object.location.z, -object.location.y] + + + + f.write(json.dumps(collection)) + f.close() + + return {'FINISHED'} # Lets Blender know the operator finished successfully. + + + + + +class ImportJSONAnimation(Operator, ImportHelper): + """Imports an animation from a NTM JSON format""" + bl_idname = "import.ntm_json" # important since its how bpy.ops.import_test.some_data is constructed + bl_label = "Import NTM .json" + bl_options = {'REGISTER'} + + # ImportHelper mix-in class uses this. + filename_ext = ".json" + + filter_glob = StringProperty( + default="*.json", + options={'HIDDEN'}, + maxlen=255, # Max internal buffer length, longer would be clamped. + ) + + def execute(self, context): + print("reading JSON data from file...") + f = open(self.filepath, 'r', encoding='utf-8') + data = f.read() + f.close() + + dimensions = ["x", "z", "y"] # Swizzled to X, Z, Y + mult = [1, -1, 1] # +X, -Z, +Y + + collection = json.loads(data) + animations = collection["anim"] + for name in animations: + for part in animations[name]: + actionName = name + '.' + part + animation = animations[name][part] + action = bpy.data.actions.find(actionName) >= 0 and bpy.data.actions[actionName] or bpy.data.actions.new(actionName) + + action.use_fake_user = True + + # Keep the actions, in case they're already associated with objects + # but remove the frames to replace with fresh ones + for fcurve in action.fcurves: + action.fcurves.remove(fcurve) + # action.fcurves.clear() + + for path in animation: + for dimension in animation[path]: + dimIndex = dimensions.index(dimension) + curve = action.fcurves.new(path, index=dimIndex) + + multiplier = mult[dimIndex] + if path == 'rotation_euler': + multiplier *= math.pi / 180 + + millis = 0 + previousInterpolation = '' + + for tuple in animation[path][dimension]: + value = tuple[0] * multiplier + millis = millis + tuple[1] + frame = round(millis * context.scene.render.fps / 1000) + + keyframe = curve.keyframe_points.insert(frame, value) + keyframe.interpolation = 'LINEAR' + if len(tuple) >= 3: + keyframe.interpolation = tuple[2] + + if len(tuple) >= 4: + keyframe.easing = tuple[3] + + i = 4 + + if previousInterpolation == 'BEZIER': + keyframe.handle_left.x = tuple[i] * context.scene.render.fps / 1000 + i += 1 + keyframe.handle_left.y = tuple[i] * multiplier + i += 1 + keyframe.handle_left_type = tuple[i] + i += 1 + if keyframe.interpolation == 'BEZIER': + keyframe.handle_right.x = tuple[i] * context.scene.render.fps / 1000 + i += 1 + keyframe.handle_right.y = tuple[i] * multiplier + i += 1 + keyframe.handle_right_type = tuple[i] + i += 1 + if keyframe.interpolation == 'ELASTIC': + keyframe.amplitude = tuple[i] + i += 1 + keyframe.period = tuple[i] + i += 1 + if keyframe.interpolation == 'BACK': + keyframe.back = tuple[i] + i += 1 + + previousInterpolation = keyframe.interpolation + + for object in bpy.data.objects: + if object.type != 'MESH': + continue + + bpy.ops.object.select_all(action='DESELECT') + object.select = True + bpy.ops.object.transform_apply(location=False, rotation=True, scale=False) + object.rotation_mode = 'YZX' + + if 'hierarchy' in collection: + hierarchy = collection["hierarchy"] + for name in hierarchy: + parent = hierarchy[name] + + bpy.data.objects[name].parent = bpy.data.objects[parent] + + offsets = collection["offset"] + for name in offsets: + offset = offsets[name] + + for object in bpy.data.objects: + if object.type != 'MESH': + continue + + bpy.ops.object.select_all(action='DESELECT') + object.select = True + + if object.name == name: + savedLocation = bpy.context.scene.cursor_location + bpy.context.scene.cursor_location = (-offset[0], -offset[2], offset[1]) + bpy.ops.object.origin_set(type='ORIGIN_CURSOR') + bpy.context.scene.cursor_location = savedLocation + + return {'FINISHED'} + + + + + + +def menu_export(self, context): + self.layout.operator(ExportJSONAnimation.bl_idname) + +def menu_import(self, context): + self.layout.operator(ImportJSONAnimation.bl_idname) + +def register(): + bpy.utils.register_class(ExportJSONAnimation) + bpy.utils.register_class(ImportJSONAnimation) + if hasattr(bpy.types, "TOPBAR_MT_file_export"): + bpy.types.TOPBAR_MT_file_export.append(menu_export) + bpy.types.TOPBAR_MT_file_import.append(menu_import) + elif hasattr(bpy.types, "INFO_MT_file_export"): + bpy.types.INFO_MT_file_export.append(menu_export) + bpy.types.INFO_MT_file_import.append(menu_import) + +def unregister(): + bpy.utils.unregister_class(ExportJSONAnimation) + bpy.utils.unregister_class(ImportJSONAnimation) + if hasattr(bpy.types, "TOPBAR_MT_file_export"): + bpy.types.TOPBAR_MT_file_export.remove(menu_export) + bpy.types.TOPBAR_MT_file_import.remove(menu_import) + elif hasattr(bpy.types, "INFO_MT_file_export"): + bpy.types.INFO_MT_file_export.remove(menu_export) + bpy.types.INFO_MT_file_import.remove(menu_import) + + +# This allows you to run the script directly from Blender's Text editor +# to test the add-on without having to install it. +if __name__ == "__main__": + register() diff --git a/tools/export-json-animation-3_2.py b/tools/export-json-animation-3_2.py new file mode 100644 index 000000000..73c0afdc0 --- /dev/null +++ b/tools/export-json-animation-3_2.py @@ -0,0 +1,286 @@ +# HOW TO USE +# Make sure all your animation actions start on frame 0 and are named as such: +# Name.Part +# and run the export, they'll be split into Animation groups with each part being assigned as a Bus. +# EG. Reload.Body will apply an animation called Reload to the bus called Body +# For best results, make sure your object Transform Mode is set to YZX Euler, so rotations match in-game +# When importing, you can use the Action Editor to assign the imported animations to parts to view and modify them + +bl_info = { + "name": "Export JSON Animation", + "blender": (3, 2, 0), + "category": "Import-Export", +} + +import bpy +import json +import math +import mathutils + +from bpy_extras.io_utils import ExportHelper, ImportHelper +from bpy.props import StringProperty, BoolProperty, EnumProperty +from bpy.types import Operator + + +class ExportJSONAnimation(Operator, ExportHelper): + """Exports an animation in a NTM JSON format""" + bl_idname = "export.ntm_json" # Unique identifier for buttons and menu items to reference. + bl_label = "Export NTM .json" # Display name in the interface. + bl_options = {'REGISTER'} + + # ExportHelper mix-in class uses this. + filename_ext = ".json" + + filter_glob: StringProperty( + default="*.json", + options={'HIDDEN'}, + maxlen=255, # Max internal buffer length, longer would be clamped. + ) + + def execute(self, context): # execute() is called when running the operator. + print("writing JSON data to file...") + f = open(self.filepath, 'w', encoding='utf-8') + + collection = {"anim": {}, "offset": {}, "hierarchy": {}} + dimensions = ["x", "z", "y"] # Swizzled to X, Z, Y + mult = [1, -1, 1] # +X, -Z, +Y + + # Reset to first frame, so our offsets are set to model defaults + # If you get weird offset issues, make sure your model is in its rest pose before exporting + context.scene.frame_set(0) + + animations = collection['anim'] + offsets = collection['offset'] + hierarchy = collection['hierarchy'] + + actions = bpy.data.actions + for action in actions: + split = action.name.split('.') + if len(split) != 2: + continue + name = split[0] + part = split[1] + + if name not in animations: + animations[name] = {} + + animations[name][part] = {} + animation = animations[name][part] + + # Fetch all the animation data + for fcu in action.fcurves: + dimension = dimensions[fcu.array_index] + + if not fcu.data_path in animation: + animation[fcu.data_path] = {} + if not dimension in animation[fcu.data_path]: + animation[fcu.data_path][dimension] = [] + + multiplier = mult[fcu.array_index] + if fcu.data_path == 'rotation_euler': + multiplier *= 180 / math.pi + + previousMillis = 0 + previousInterpolation = "" + + for keyframe in fcu.keyframe_points: + timeToFrame = keyframe.co.x * (1 / context.scene.render.fps) * 1000 + millis = timeToFrame - previousMillis + value = keyframe.co.y * multiplier + tuple = [value, millis, keyframe.interpolation, keyframe.easing] + if previousInterpolation == "BEZIER": + tuple.append(keyframe.handle_left.x * (1 / context.scene.render.fps) * 1000) + tuple.append(keyframe.handle_left.y * multiplier) + tuple.append(keyframe.handle_left_type) + if keyframe.interpolation == "BEZIER": + tuple.append(keyframe.handle_right.x * (1 / context.scene.render.fps) * 1000) + tuple.append(keyframe.handle_right.y * multiplier) + tuple.append(keyframe.handle_right_type) + if keyframe.interpolation == "ELASTIC": + tuple.append(keyframe.amplitude) + tuple.append(keyframe.period) + if keyframe.interpolation == "BACK": + tuple.append(keyframe.back) + previousMillis = timeToFrame + previousInterpolation = keyframe.interpolation + animation[fcu.data_path][dimension].append(tuple) + + for object in bpy.data.objects: + if object.type != 'MESH': + continue + + if object.parent: + hierarchy[object.name] = object.parent.name + + if object.location == mathutils.Vector(): # don't export 0,0,0 + continue + + offsets[object.name] = [object.location.x, object.location.z, -object.location.y] + + + + f.write(json.dumps(collection)) + f.close() + + return {'FINISHED'} # Lets Blender know the operator finished successfully. + + + + + +class ImportJSONAnimation(Operator, ImportHelper): + """Imports an animation from a NTM JSON format""" + bl_idname = "import.ntm_json" # important since its how bpy.ops.import_test.some_data is constructed + bl_label = "Import NTM .json" + bl_options = {'REGISTER'} + + # ImportHelper mix-in class uses this. + filename_ext = ".json" + + filter_glob: StringProperty( + default="*.json", + options={'HIDDEN'}, + maxlen=255, # Max internal buffer length, longer would be clamped. + ) + + def execute(self, context): + print("reading JSON data from file...") + f = open(self.filepath, 'r', encoding='utf-8') + data = f.read() + f.close() + + dimensions = ["x", "z", "y"] # Swizzled to X, Z, Y + mult = [1, -1, 1] # +X, -Z, +Y + + collection = json.loads(data) + animations = collection["anim"] + for name in animations: + for part in animations[name]: + actionName = name + '.' + part + animation = animations[name][part] + action = bpy.data.actions.find(actionName) >= 0 and bpy.data.actions[actionName] or bpy.data.actions.new(actionName) + + action.use_fake_user = True + + # Keep the actions, in case they're already associated with objects + # but remove the frames to replace with fresh ones + for fcurve in action.fcurves: + action.fcurves.remove(fcurve) + # action.fcurves.clear() + + for path in animation: + for dimension in animation[path]: + dimIndex = dimensions.index(dimension) + curve = action.fcurves.new(path, index=dimIndex) + + multiplier = mult[dimIndex] + if path == 'rotation_euler': + multiplier *= math.pi / 180 + + millis = 0 + previousInterpolation = '' + + for tuple in animation[path][dimension]: + value = tuple[0] * multiplier + millis = millis + tuple[1] + frame = round(millis * context.scene.render.fps / 1000) + + keyframe = curve.keyframe_points.insert(frame, value) + keyframe.interpolation = 'LINEAR' + if len(tuple) >= 3: + keyframe.interpolation = tuple[2] + + if len(tuple) >= 4: + keyframe.easing = tuple[3] + + i = 4 + + if previousInterpolation == 'BEZIER': + keyframe.handle_left.x = tuple[i] * context.scene.render.fps / 1000 + i += 1 + keyframe.handle_left.y = tuple[i] * multiplier + i += 1 + keyframe.handle_left_type = tuple[i] + i += 1 + if keyframe.interpolation == 'BEZIER': + keyframe.handle_right.x = tuple[i] * context.scene.render.fps / 1000 + i += 1 + keyframe.handle_right.y = tuple[i] * multiplier + i += 1 + keyframe.handle_right_type = tuple[i] + i += 1 + if keyframe.interpolation == 'ELASTIC': + keyframe.amplitude = tuple[i] + i += 1 + keyframe.period = tuple[i] + i += 1 + if keyframe.interpolation == 'BACK': + keyframe.back = tuple[i] + i += 1 + + previousInterpolation = keyframe.interpolation + + + for object in bpy.data.objects: + if object.type != 'MESH': + continue + + bpy.ops.object.select_all(action='DESELECT') + object.select_set(True) + bpy.ops.object.transform_apply(location=False, rotation=True, scale=False, properties=False) + object.rotation_mode = 'YZX' + + if 'hierarchy' in collection: + hierarchy = collection["hierarchy"] + for name in hierarchy: + parent = hierarchy[name] + + bpy.data.objects[name].parent = bpy.data.objects[parent] + + offsets = collection["offset"] + for name in offsets: + offset = offsets[name] + + for object in bpy.data.objects: + if object.type != 'MESH': + continue + + bpy.ops.object.select_all(action='DESELECT') + object.select_set(True) + + if object.name == name: + savedLocation = bpy.context.scene.cursor.location + bpy.context.scene.cursor.location = (-offset[0], -offset[2], offset[1]) + bpy.ops.object.origin_set(type='ORIGIN_CURSOR') + bpy.context.scene.cursor.location = savedLocation + + return {'FINISHED'} + + + + + + +def menu_export(self, context): + self.layout.operator(ExportJSONAnimation.bl_idname) + +def menu_import(self, context): + self.layout.operator(ImportJSONAnimation.bl_idname) + +def register(): + bpy.utils.register_class(ExportJSONAnimation) + bpy.utils.register_class(ImportJSONAnimation) + bpy.types.TOPBAR_MT_file_export.append(menu_export) + bpy.types.TOPBAR_MT_file_import.append(menu_import) + +def unregister(): + bpy.utils.unregister_class(ExportJSONAnimation) + bpy.utils.unregister_class(ImportJSONAnimation) + bpy.types.TOPBAR_MT_file_export.remove(menu_export) + bpy.types.TOPBAR_MT_file_import.remove(menu_import) + + +# This allows you to run the script directly from Blender's Text editor +# to test the add-on without having to install it. +if __name__ == "__main__": + register() diff --git a/tools/export-json-animation-4_0.py b/tools/export-json-animation-4_0.py new file mode 100644 index 000000000..86b973585 --- /dev/null +++ b/tools/export-json-animation-4_0.py @@ -0,0 +1,283 @@ +# HOW TO USE +# Make sure all your animation actions start on frame 0 and are named as such: +# Name.Part +# and run the export, they'll be split into Animation groups with each part being assigned as a Bus. +# EG. Reload.Body will apply an animation called Reload to the bus called Body +# For best results, make sure your object Transform Mode is set to YZX Euler, so rotations match in-game +# When importing, you can use the Action Editor to assign the imported animations to parts to view and modify them + +bl_info = { + "name": "Export JSON Animation", + "blender": (4, 0, 0), + "category": "Import-Export", +} + +import bpy +import json +import math +import mathutils + +from bpy_extras.io_utils import ExportHelper, ImportHelper +from bpy.props import StringProperty, BoolProperty, EnumProperty +from bpy.types import Operator + + +class ExportJSONAnimation(Operator, ExportHelper): + """Exports an animation in a NTM JSON format""" + bl_idname = "export.ntm_json" # Unique identifier for buttons and menu items to reference. + bl_label = "Export NTM .json" # Display name in the interface. + bl_options = {'REGISTER'} + + # ExportHelper mix-in class uses this. + filename_ext = ".json" + + filter_glob: StringProperty( + default="*.json", + options={'HIDDEN'}, + maxlen=255, # Max internal buffer length, longer would be clamped. + ) + + def execute(self, context): # execute() is called when running the operator. + print("writing JSON data to file...") + f = open(self.filepath, 'w', encoding='utf-8') + + collection = {"anim": {}, "offset": {}, "hierarchy": {}} + dimensions = ["x", "z", "y"] # Swizzled to X, Z, Y + mult = [1, -1, 1] # +X, -Z, +Y + + # Reset to first frame, so our offsets are set to model defaults + # If you get weird offset issues, make sure your model is in its rest pose before exporting + context.scene.frame_set(0) + + animations = collection['anim'] + offsets = collection['offset'] + hierarchy = collection['hierarchy'] + + actions = bpy.data.actions + for action in actions: + split = action.name.split('.') + if len(split) != 2: + continue + name = split[0] + part = split[1] + + if name not in animations: + animations[name] = {} + + animations[name][part] = {} + animation = animations[name][part] + + # Fetch all the animation data + for fcu in action.fcurves: + dimension = dimensions[fcu.array_index] + + if not fcu.data_path in animation: + animation[fcu.data_path] = {} + if not dimension in animation[fcu.data_path]: + animation[fcu.data_path][dimension] = [] + + multiplier = mult[fcu.array_index] + if fcu.data_path == 'rotation_euler': + multiplier *= 180 / math.pi + + previousMillis = 0 + previousInterpolation = "" + + for keyframe in fcu.keyframe_points: + timeToFrame = keyframe.co.x * (1 / context.scene.render.fps) * 1000 + millis = timeToFrame - previousMillis + value = keyframe.co.y * multiplier + tuple = [value, millis, keyframe.interpolation, keyframe.easing] + if previousInterpolation == "BEZIER": + tuple.append(keyframe.handle_left.x * (1 / context.scene.render.fps) * 1000) + tuple.append(keyframe.handle_left.y * multiplier) + tuple.append(keyframe.handle_left_type) + if keyframe.interpolation == "BEZIER": + tuple.append(keyframe.handle_right.x * (1 / context.scene.render.fps) * 1000) + tuple.append(keyframe.handle_right.y * multiplier) + tuple.append(keyframe.handle_right_type) + if keyframe.interpolation == "ELASTIC": + tuple.append(keyframe.amplitude) + tuple.append(keyframe.period) + if keyframe.interpolation == "BACK": + tuple.append(keyframe.back) + previousMillis = timeToFrame + previousInterpolation = keyframe.interpolation + animation[fcu.data_path][dimension].append(tuple) + + for object in bpy.data.objects: + if object.type != 'MESH': + continue + + if object.parent: + hierarchy[object.name] = object.parent.name + + if object.location == mathutils.Vector(): # don't export 0,0,0 + continue + + offsets[object.name] = [object.location.x, object.location.z, -object.location.y] + + + + f.write(json.dumps(collection)) + f.close() + + return {'FINISHED'} # Lets Blender know the operator finished successfully. + + + + + +class ImportJSONAnimation(Operator, ImportHelper): + """Imports an animation from a NTM JSON format""" + bl_idname = "import.ntm_json" # important since its how bpy.ops.import_test.some_data is constructed + bl_label = "Import NTM .json" + bl_options = {'REGISTER'} + + # ImportHelper mix-in class uses this. + filename_ext = ".json" + + filter_glob: StringProperty( + default="*.json", + options={'HIDDEN'}, + maxlen=255, # Max internal buffer length, longer would be clamped. + ) + + def execute(self, context): + print("reading JSON data from file...") + f = open(self.filepath, 'r', encoding='utf-8') + data = f.read() + f.close() + + dimensions = ["x", "z", "y"] # Swizzled to X, Z, Y + mult = [1, -1, 1] # +X, -Z, +Y + + collection = json.loads(data) + animations = collection["anim"] + for name in animations: + for part in animations[name]: + actionName = name + '.' + part + animation = animations[name][part] + action = bpy.data.actions.find(actionName) >= 0 and bpy.data.actions[actionName] or bpy.data.actions.new(actionName) + + action.use_fake_user = True + + # Keep the actions, in case they're already associated with objects + # but remove the frames to replace with fresh ones + action.fcurves.clear() + + for path in animation: + for dimension in animation[path]: + dimIndex = dimensions.index(dimension) + curve = action.fcurves.new(path, index=dimIndex) + + multiplier = mult[dimIndex] + if path == 'rotation_euler': + multiplier *= math.pi / 180 + + millis = 0 + previousInterpolation = '' + + for tuple in animation[path][dimension]: + value = tuple[0] * multiplier + millis = millis + tuple[1] + frame = round(millis * context.scene.render.fps / 1000) + + keyframe = curve.keyframe_points.insert(frame, value) + keyframe.interpolation = 'LINEAR' + if len(tuple) >= 3: + keyframe.interpolation = tuple[2] + + if len(tuple) >= 4: + keyframe.easing = tuple[3] + + i = 4 + + if previousInterpolation == 'BEZIER': + keyframe.handle_left.x = tuple[i] * context.scene.render.fps / 1000 + i += 1 + keyframe.handle_left.y = tuple[i] * multiplier + i += 1 + keyframe.handle_left_type = tuple[i] + i += 1 + if keyframe.interpolation == 'BEZIER': + keyframe.handle_right.x = tuple[i] * context.scene.render.fps / 1000 + i += 1 + keyframe.handle_right.y = tuple[i] * multiplier + i += 1 + keyframe.handle_right_type = tuple[i] + i += 1 + if keyframe.interpolation == 'ELASTIC': + keyframe.amplitude = tuple[i] + i += 1 + keyframe.period = tuple[i] + i += 1 + if keyframe.interpolation == 'BACK': + keyframe.back = tuple[i] + i += 1 + + previousInterpolation = keyframe.interpolation + + for object in bpy.data.objects: + if object.type != 'MESH': + continue + + bpy.ops.object.select_all(action='DESELECT') + object.select_set(True) + bpy.ops.object.transform_apply(location=False, rotation=True, scale=False, properties=False) + object.rotation_mode = 'YZX' + + if 'hierarchy' in collection: + hierarchy = collection["hierarchy"] + for name in hierarchy: + parent = hierarchy[name] + + bpy.data.objects[name].parent = bpy.data.objects[parent] + + offsets = collection["offset"] + for name in offsets: + offset = offsets[name] + + for object in bpy.data.objects: + if object.type != 'MESH': + continue + + bpy.ops.object.select_all(action='DESELECT') + object.select_set(True) + + if object.name == name: + savedLocation = bpy.context.scene.cursor.location + bpy.context.scene.cursor.location = (-offset[0], -offset[2], offset[1]) + bpy.ops.object.origin_set(type='ORIGIN_CURSOR') + bpy.context.scene.cursor.location = savedLocation + + return {'FINISHED'} + + + + + + +def menu_export(self, context): + self.layout.operator(ExportJSONAnimation.bl_idname) + +def menu_import(self, context): + self.layout.operator(ImportJSONAnimation.bl_idname) + +def register(): + bpy.utils.register_class(ExportJSONAnimation) + bpy.utils.register_class(ImportJSONAnimation) + bpy.types.TOPBAR_MT_file_export.append(menu_export) + bpy.types.TOPBAR_MT_file_import.append(menu_import) + +def unregister(): + bpy.utils.unregister_class(ExportJSONAnimation) + bpy.utils.unregister_class(ImportJSONAnimation) + bpy.types.TOPBAR_MT_file_export.remove(menu_export) + bpy.types.TOPBAR_MT_file_import.remove(menu_import) + + +# This allows you to run the script directly from Blender's Text editor +# to test the add-on without having to install it. +if __name__ == "__main__": + register()